picea/composer.json

29 lines
659 B
JSON
Raw Normal View History

2019-08-21 20:11:39 +00:00
{
"name": "mcnd/picea",
"description": "A templating engine based on Twig's syntax and Plates's native uses of PHP transpiling code into vanilla PHP template.",
2019-08-21 20:11:39 +00:00
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dave Mc Nicoll",
2023-02-02 18:12:31 +00:00
"email": "info@mcnd.ca"
2019-08-21 20:11:39 +00:00
}
],
"autoload": {
"psr-4": {
"Picea\\": "src/"
}
},
"require": {
"psr/http-message": "^1.0"
2023-11-16 03:12:25 +00:00
},
"extra": {
"lean": {
"autoload": {
"definitions": [
"meta/definitions.php"
]
}
}
2019-08-21 20:11:39 +00:00
}
2023-11-16 03:12:25 +00:00
}