-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1013 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "marcelofj/library-app",
"description": "Just another PHP app",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Marcelofj\\LibraryApp\\": "src/"
}
},
"scripts": {
"run-dev": "php -S localhost:8080",
"init-db": "php src/Infra/Persistence/SQLite/DatabaseInitializer.php",
"delete-db": "php src/Infra/Persistence/SQLite/DatabaseDeleter.php",
"run-test": "./vendor/bin/pest"
},
"authors": [
{
"name": "Marcelo Francisco",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^3.5",
"mockery/mockery": "^1.6",
"kint-php/kint": "^5.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"process-timeout": 0
},
"require": {
"php": "^8.3",
"slim/slim": "4.*",
"slim/psr7": "^1.7",
"php-di/php-di": "^7.0"
}
}