You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
seacms/composer.json

124 lines
4.6 KiB

{
"name": "seacms/seacma",
"readme": "README.md",
"license": "EUPL-1.2",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"picocms/pico": "dev-fix-compatibility-php8 as v3.0.0-alpha.2",
"seacms/manager": "dev-master",
"seacms/seacms-theme": "dev-master"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.0.0"
},
"platform-check": true,
"sort-packages": true,
"allow-plugins": {
"picocms/composer-installer": true
}
},
"extra": {
"pico-plugin-dir": "vendor/picocms/plugins/",
"pico-theme-dir": "vendor/picocms/themes/"
},
"scripts": {
"post-autoload-dump": [
"picocms\\ComposerInstaller\\Installer::postAutoloadDump"
],
"auto-archive": [
"@composer archive --format=zip --dir=archives"
]
},
"archive": {
"exclude": ["node_modules","/archives","/*.zip","/*.gz","/*.bz2"]
},
"repositories": [
{
"type": "vcs",
"url": "https://git.defis.info/SeaCMS/seacms-manager"
},
{
"type": "path",
"url": "../seacms-theme",
"options": {
"name": "seacms/seacms-theme",
"versions": {
"seacms/seacms-theme": "dev-master",
"symlink": true
}
}
},
{
"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"
}
}
}
}
]
}