Files
api-wipay/composer.json

26 lines
525 B
JSON
Raw Permalink Normal View History

{
"name": "timo-wipay/api",
"description": "Slim 4 API Application",
"type": "project",
"require": {
"php": "^8.1",
"slim/slim": "^4.12",
"slim/psr7": "^1.6",
"slim/http": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"scripts": {
"start": "php -S localhost:8000 -t public"
}
}