32 lines
603 B
JSON
32 lines
603 B
JSON
|
|
{
|
||
|
|
"name": "getphred/eyrie",
|
||
|
|
"description": "The templating engine for the Phred Framework",
|
||
|
|
"license": "MIT",
|
||
|
|
"type": "library",
|
||
|
|
"authors": [
|
||
|
|
{
|
||
|
|
"name": "Junie",
|
||
|
|
"email": "junie@example.com"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"require": {
|
||
|
|
"php": "^8.2"
|
||
|
|
},
|
||
|
|
"require-dev": {
|
||
|
|
"phpunit/phpunit": "^10.0"
|
||
|
|
},
|
||
|
|
"autoload": {
|
||
|
|
"psr-4": {
|
||
|
|
"Eyrie\\": "src/"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"autoload-dev": {
|
||
|
|
"psr-4": {
|
||
|
|
"Eyrie\\Tests\\": "tests/"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"config": {
|
||
|
|
"sort-packages": true
|
||
|
|
}
|
||
|
|
}
|