-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 KB
/
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
41
42
{
"autoload": {
"psr-4": {
"Acme\\ToDo\\": "src/"
},
"files": [
"src/_functions.php",
"vendor/oscarotero/env/src/env_function.php"
]
},
"autoload-dev": {
"psr-4": {
"Acme\\ToDo\\": "test/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"beberlei/assert": "^3.2",
"league/route": "^4.2",
"middlewares/http-authentication": "^1.1",
"middlewares/negotiation": "^1.1",
"middlewares/payload": "^2.1",
"monolog/monolog": "^1.24",
"ocramius/proxy-manager": "^2.2",
"oscarotero/env": "^1.2",
"php-di/php-di": "^6.0",
"ramsey/uuid": "^3.8",
"lcobucci/clock": "^1.2",
"doctrine/instantiator": "^1.2",
"laminas/laminas-diactoros": "^2.3",
"laminas/laminas-httphandlerrunner": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.1"
}
}