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

30 lines
616 B
JSON
Raw Normal View History

2026-01-26 20:47:46 +00:00
{
"name": "core/php-api",
2026-01-26 20:57:08 +00:00
"description": "REST API module for Core PHP framework",
"keywords": [
"laravel",
"api",
"rest",
"json"
],
2026-01-26 20:47:46 +00:00
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"core/php-framework": "@dev",
2026-01-26 20:57:08 +00:00
"symfony/yaml": "^7.0"
2026-01-26 20:47:46 +00:00
},
"autoload": {
"psr-4": {
"Core\\Api\\": "src/Api/",
2026-01-26 20:57:08 +00:00
"Core\\Website\\Api\\": "src/Website/Api/"
2026-01-26 20:47:46 +00:00
}
},
"extra": {
"laravel": {
2026-01-26 20:57:08 +00:00
"providers": []
2026-01-26 20:47:46 +00:00
}
},
"minimum-stability": "stable",
"prefer-stable": true
}