fix(composer): do what is needed to work with fork of picocms/pico

feat/use-default-theme
dufraissejeremy 2 years ago
parent 001cf24668
commit 16f9a41a54
  1. 71
      composer.json
  2. 50
      composer.lock

@ -6,7 +6,8 @@
"minimum-stability": "dev", "minimum-stability": "dev",
"require": { "require": {
"php": "^8.0", "php": "^8.0",
"seacms/manager": "*" "picocms/pico": "dev-fix-compatibility-php8 as v3.0.0-alpha.2",
"seacms/manager": "dev-master"
}, },
"config": { "config": {
"optimize-autoloader": true, "optimize-autoloader": true,
@ -38,6 +39,74 @@
{ {
"type": "vcs", "type": "vcs",
"url": "https://git.defis.info/SeaCMS/seacms-manager" "url": "https://git.defis.info/SeaCMS/seacms-manager"
},
{
"type": "package",
"package": {
"name": "picocms/pico",
"version": "dev-fix-compatibility-php8",
"source": {
"url": "https://git.defis.info/SeaCMS/pico",
"type": "git",
"reference": "fix-compatibility-php8"
},
"type": "library",
"description": "Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create .md files in the \"content\" folder and that becomes a page.",
"keywords": ["pico", "picocms", "pico-cms", "simple", "flat-file", "cms", "content-management", "website", "markdown-to-html", "php", "markdown", "yaml", "twig" ],
"homepage": "http://picocms.org/",
"license": "MIT",
"authors": [
{
"name": "Gilbert Pellegrom",
"email": "gilbert@pellegrom.me",
"role": "Project Founder"
},
{
"name": "Daniel Rudolf",
"email": "picocms.org@daniel-rudolf.de",
"role": "Lead Developer"
},
{
"name": "The Pico Community",
"homepage": "http://picocms.org/"
},
{
"name": "Contributors",
"homepage": "https://github.com/picocms/Pico/graphs/contributors"
}
],
"support": {
"docs": "http://picocms.org/docs",
"issues": "https://github.com/picocms/Pico/issues",
"source": "https://github.com/picocms/Pico"
},
"require": {
"php": "^7.0.8 || ^8.0",
"ext-mbstring": "*",
"twig/twig": "^2.12",
"symfony/yaml" : "^3.4",
"erusev/parsedown": "1.7.4",
"erusev/parsedown-extra": "0.8.1"
},
"suggest": {
"picocms/pico-theme": "Pico requires a theme to actually display the contents of your website. This is Pico's official default theme.",
"picocms/pico-deprecated": "PicoDeprecated's purpose is to maintain backward compatibility to older versions of Pico.",
"picocms/composer-installer": "This Composer plugin is responsible for installing Pico plugins and themes using the Composer package manager."
},
"autoload": {
"psr-0": {
"Pico": "lib/",
"PicoPluginInterface": "lib/",
"AbstractPicoPlugin": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-pico-3.0": "3.0.x-dev"
}
}
}
} }
] ]
} }

50
composer.lock generated

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "7eb2b90de8b7704986cf5d10b5f01470", "content-hash": "dd56c9f1efa3163d0514f67f341b6e5b",
"packages": [ "packages": [
{ {
"name": "erusev/parsedown", "name": "erusev/parsedown",
@ -178,23 +178,17 @@
}, },
{ {
"name": "picocms/pico", "name": "picocms/pico",
"version": "v3.0.0-alpha.2", "version": "dev-fix-compatibility-php8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/picocms/Pico.git", "url": "https://git.defis.info/SeaCMS/pico",
"reference": "f7637ad335a97a639d69f9e7a1ef500762bad6f7" "reference": "fix-compatibility-php8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/picocms/Pico/zipball/f7637ad335a97a639d69f9e7a1ef500762bad6f7",
"reference": "f7637ad335a97a639d69f9e7a1ef500762bad6f7",
"shasum": ""
}, },
"require": { "require": {
"erusev/parsedown": "1.7.4", "erusev/parsedown": "1.7.4",
"erusev/parsedown-extra": "0.8.1", "erusev/parsedown-extra": "0.8.1",
"ext-mbstring": "*", "ext-mbstring": "*",
"php": ">=7.0.8", "php": "^7.0.8 || ^8.0",
"symfony/yaml": "^3.4", "symfony/yaml": "^3.4",
"twig/twig": "^2.12" "twig/twig": "^2.12"
}, },
@ -213,11 +207,10 @@
"autoload": { "autoload": {
"psr-0": { "psr-0": {
"Pico": "lib/", "Pico": "lib/",
"AbstractPicoPlugin": "lib/", "PicoPluginInterface": "lib/",
"PicoPluginInterface": "lib/" "AbstractPicoPlugin": "lib/"
} }
}, },
"notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"MIT" "MIT"
], ],
@ -244,7 +237,6 @@
"description": "Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create .md files in the \"content\" folder and that becomes a page.", "description": "Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create .md files in the \"content\" folder and that becomes a page.",
"homepage": "http://picocms.org/", "homepage": "http://picocms.org/",
"keywords": [ "keywords": [
"Simple",
"cms", "cms",
"content-management", "content-management",
"flat-file", "flat-file",
@ -254,6 +246,7 @@
"pico", "pico",
"pico-cms", "pico-cms",
"picocms", "picocms",
"simple",
"twig", "twig",
"website", "website",
"yaml" "yaml"
@ -262,14 +255,7 @@
"docs": "http://picocms.org/docs", "docs": "http://picocms.org/docs",
"issues": "https://github.com/picocms/Pico/issues", "issues": "https://github.com/picocms/Pico/issues",
"source": "https://github.com/picocms/Pico" "source": "https://github.com/picocms/Pico"
},
"funding": [
{
"url": "https://www.bountysource.com/teams/picocms",
"type": "custom"
} }
],
"time": "2020-12-24T16:41:20+00:00"
}, },
{ {
"name": "picocms/pico-theme", "name": "picocms/pico-theme",
@ -337,7 +323,7 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.defis.info/SeaCMS/seacms-manager", "url": "https://git.defis.info/SeaCMS/seacms-manager",
"reference": "bc1cb3ad68ddc2af2bf6b2ea138aaef58695f397" "reference": "f7c89281a190be1ca75ff4e2158f2fce63bdb459"
}, },
"require": { "require": {
"composer": "^2.4", "composer": "^2.4",
@ -348,7 +334,7 @@
"ext-pcre": "*", "ext-pcre": "*",
"php": "^8.0", "php": "^8.0",
"picocms/composer-installer": "dev-pico-3.0", "picocms/composer-installer": "dev-pico-3.0",
"picocms/pico": "^3.0.0-alpha.2", "picocms/pico": "dev-fix-compatibility-php8 as v3.0.0-alpha.2",
"picocms/pico-theme": "^3.0" "picocms/pico-theme": "^3.0"
}, },
"default-branch": true, "default-branch": true,
@ -378,7 +364,7 @@
"license": [ "license": [
"EUPL-1.2" "EUPL-1.2"
], ],
"time": "2023-01-23T18:18:59+00:00" "time": "2023-01-24T10:27:03+00:00"
}, },
{ {
"name": "symfony/polyfill-ctype", "name": "symfony/polyfill-ctype",
@ -774,9 +760,19 @@
} }
], ],
"packages-dev": [], "packages-dev": [],
"aliases": [], "aliases": [
{
"package": "picocms/pico",
"version": "dev-fix-compatibility-php8",
"alias": "v3.0.0-alpha.2",
"alias_normalized": "3.0.0.0-alpha2"
}
],
"minimum-stability": "dev", "minimum-stability": "dev",
"stability-flags": [], "stability-flags": {
"picocms/pico": 20,
"seacms/manager": 20
},
"prefer-stable": true, "prefer-stable": true,
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {

Loading…
Cancel
Save