forked from iRail/iRail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.24 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
43
44
45
46
47
48
49
50
51
52
{
"name": "irail/irail",
"description": "The iRail API",
"license": "AGPL-3.0",
"authors": [
{
"name": "Pieter Colpaert",
"email": "pieter.colpaert@okfn.org"
}
],
"require": {
"irail/stations": "^1.6.13",
"monolog/monolog": "^1.25",
"ptachoire/tac": "1.0.*",
"sebastian/environment": "4.2.*",
"vlucas/phpdotenv": "^5.5",
"mongodb/mongodb": "^1.6",
"cache/apcu-adapter": "^1.0",
"cache/array-adapter": "^1.0",
"cache/apc-adapter": "^1.0@dev",
"nesbot/carbon": "^2.63",
"ext-json": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-tidy": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-mongodb": "*",
"ext-libxml": "*",
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.8",
"guzzlehttp/guzzle": "^7.2",
"symfony/process": "^v5.1"
},
"scripts": {
"post-install-cmd": [
"cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
],
"post-update-cmd" : "cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
},
"autoload": {
"psr-4": {"Irail\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability" : "stable"
}