35 lines
694 B
JSON
35 lines
694 B
JSON
{
|
|
"name": "getphred/scape",
|
|
"description": "A Lightweight PHP Template Engine",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Phred",
|
|
"email": "phred@getphred.com",
|
|
"homepage": "https://getphred.com",
|
|
"role": "Owner"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-intl": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Scape\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Scape\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|