Pico/composer.json

28 lines
789 B
JSON
Raw Normal View History

{
2014-03-25 15:05:40 +00:00
"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"],
2014-03-25 15:05:40 +00:00
"homepage": "http://picocms.org/",
"license": "MIT",
"authors": [
{
"name": "Gilbert Pellegrom",
"email": "gilbert@pellegrom.me"
}
],
"require": {
"php": ">=5.3.6",
"twig/twig": "1.18.*",
"erusev/parsedown-extra": "0.7.*",
2015-08-28 16:28:49 +00:00
"symfony/yaml" : "2.3"
},
"autoload": {
2015-08-28 16:28:49 +00:00
"files": [
"lib/Pico.php",
"lib/PicoPluginInterface.php",
2015-08-28 16:28:49 +00:00
"lib/AbstractPicoPlugin.php"
]
}
2013-07-10 13:12:44 +00:00
}