-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (38 loc) · 1007 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
36
37
38
39
{
"name": "irail/brail2gtfs",
"description": "Creates a GTFS for the Belgian Railway company",
"require": {
"guzzlehttp/guzzle": "~5.0",
"monolog/monolog": "1.0.*",
"jms/parser-lib": "~1.0",
"iRail/stations": "dev-master"
},
"repositories": [
{
"url": "[email protected]:iRail/stations.git",
"type": "git"
}
],
"autoload": {
"psr-0": {
"iRail\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Pieter Colpaert",
"email": "[email protected]"
},
{
"name": "Brecht Van de Vyvere",
"email": "[email protected]"
}
],
"scripts": {
"post-install-cmd": [
"cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
],
"posint-update-cmd" : "cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
}
}