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 5a512fda14
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s
fix: rename core/php-framework dependency to core/php
2026-03-09 17:38:39 +00:00

32 lines
709 B
JSON

{
"name": "core/php-api",
"description": "REST API module for Core PHP framework",
"keywords": [
"laravel",
"api",
"rest",
"json"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"core/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
}