-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
50 lines (50 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "irail/hyperrail",
"description": "The web interface of iRail.be",
"keywords": [],
"license": "CC0-1.0",
"type": "project",
"require": {
"php": ">=8.0",
"laravel/framework": "^6.19",
"easyrdf/easyrdf": "*",
"semsol/arc2": "*",
"ml/json-ld": "1.*",
"irail/stations": "^1.6",
"guzzlehttp/guzzle": "^7.2",
"willdurand/negotiation": "^1.5.0",
"ext-intl": "*"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^9.0",
"phpspec/phpspec": "^7.5"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
],
"pre-update-cmd": [
],
"post-update-cmd": [
"cd vendor/irail/stations; npm install ; node bin/build.js > stations.jsonld"
]
},
"config": {
"preferred-install": "dist"
}
}