-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 906 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
{
"name" : "metroapps/national_rail_timetable",
"description" : "National Rail Timetable on the web",
"type" : "project",
"license" : "AGPL-3.0-or-later",
"require" : {
"php" : "^8.1",
"thecodingmachine/safe": "^2.1",
"mongodb/mongodb": "^1.12",
"ext-mongodb" : "*",
"miklcct/thin_php_app": "^0.6.1",
"guzzlehttp/guzzle": "^7.5",
"http-interop/http-factory-guzzle": "^1.2",
"php-di/php-di": "^6.4",
"psr/simple-cache": "^1.0",
"symfony/cache": "^6.1",
"filp/whoops": "^2.14",
"miklcct/rail_open_timetable_data": "^1.5"
},
"require-dev" : {
"roave/security-advisories" : "dev-latest"
},
"autoload" : {
"psr-4" : {
"Metroapps\\NationalRailTimetable\\" : "src/"
},
"files" : [
"src/Views/functions.php"
]
}
}