Scape/composer.json

35 lines
694 B
JSON
Raw Permalink Normal View History

2026-01-06 23:29:10 +00:00
{
"name": "getphred/scape",
"description": "A Lightweight PHP Template Engine",
2026-01-06 23:29:10 +00:00
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Phred",
"email": "phred@getphred.com",
"homepage": "https://getphred.com",
"role": "Owner"
2026-01-06 23:29:10 +00:00
}
],
"require": {
"php": "^8.2",
"ext-intl": "*"
2026-01-06 23:29:10 +00:00
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Scape\\": "src/"
2026-01-06 23:29:10 +00:00
}
},
"autoload-dev": {
"psr-4": {
"Scape\\Tests\\": "tests/"
2026-01-06 23:29:10 +00:00
}
},
"config": {
"sort-packages": true
}
}