-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 817 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 817 Bytes
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
{
"name": "sanjayojha/modern-php-app",
"description": "A modern PHP app without a full framework",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"require": {
"php": ">=8.3",
"nikic/fast-route": "^1.3",
"twig/twig": "^3.21",
"php-di/php-di": "^7.0",
"monolog/monolog": "^3.9",
"vlucas/phpdotenv": "^5.6",
"psr/http-message": "^1.1",
"psr/http-server-handler": "^1.0",
"guzzlehttp/psr7": "^2.7",
"nyholm/psr7-server": "^1.1",
"nyholm/psr7": "^1.8",
"http-interop/http-factory-diactoros": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}