26 lines
525 B
JSON
26 lines
525 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|