-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 993 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
{
"name": "bchubbweb/phntm_framework",
"description": "a basic framework build from symfony, with filesystem based routing",
"type": "project",
"license": "MIT",
"version": "1.0.0",
"autoload": {
"psr-4": {
"App\\": "src/",
"Pages\\": "pages/",
"Bchubbweb\\PhntmFramework\\": "phntm/"
}
},
"authors": [
{
"name": "Billy Chubb",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"symfony/http-foundation": "^7.0",
"symfony/routing": "^7.0",
"twig/twig": "^3.0",
"predis/predis": "^2.2",
"vlucas/phpdotenv": "^5.6",
"relay/relay": "^2.1",
"maximebf/debugbar": "^1.22",
"symfony/psr-http-message-bridge": "^7.0",
"nyholm/psr7": "^1.8",
"middlewares/debugbar": "^2.1",
"middlewares/whoops": "^2.0",
"nyholm/psr7-server": "^1.1"
}
}