This repository has been archived on 2026-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
php-api/composer.json
Snider 1e75a4a293
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 3s
feat: rename package to lthn/php-api for Packagist
2026-03-09 17:59:56 +00:00

35 lines
772 B
JSON

{
"name": "lthn/php-api",
"description": "REST API module for Core PHP framework",
"keywords": [
"laravel",
"api",
"rest",
"json"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"lthn/php": "*",
"symfony/yaml": "^7.0"
},
"autoload": {
"psr-4": {
"Core\\Api\\": "src/Api/",
"Core\\Website\\Api\\": "src/Website/Api/",
"Core\\Front\\Api\\": "src/Front/Api/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Front\\Api\\Boot"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"replace": {
"core/php-api": "self.version"
}
}