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 1ddfc00699
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s
chore: rename package to core/php-api
Aligns composer package name with forge repo path
(forge.lthn.ai/core/php-api). Part of host-uk/* → core/* migration.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-03 10:38:58 +00:00

29 lines
616 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-framework": "@dev",
"symfony/yaml": "^7.0"
},
"autoload": {
"psr-4": {
"Core\\Api\\": "src/Api/",
"Core\\Website\\Api\\": "src/Website/Api/"
}
},
"extra": {
"laravel": {
"providers": []
}
},
"minimum-stability": "stable",
"prefer-stable": true
}