Pico/composer.json
2015-08-28 18:28:49 +02:00

28 lines
790 B
JSON

{
"name": "picocms/pico",
"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": ["cms"],
"homepage": "http://picocms.org/",
"license": "MIT",
"authors": [
{
"name": "Gilbert Pellegrom",
"email": "gilbert@pellegrom.me"
}
],
"require": {
"php": ">=5.3.2",
"twig/twig": "1.18.*",
"erusev/parsedown-extra": "dev-master@dev",
"symfony/yaml" : "2.3"
},
"autoload": {
"files": [
"lib/Pico.php",
"lib/IPicoPlugin.php",
"lib/AbstractPicoPlugin.php"
]
}
}