-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
42 lines (42 loc) · 1.1 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
{
"name": "opendatach/transport",
"description": "Swiss public transport API",
"homepage": "http://transport.opendata.ch/",
"license": "MIT",
"authors": [
{
"name": "Opendata.ch",
"homepage": "http://opendata.ch/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/OpendataCH/Transport/contributors"
}
],
"require": {
"php": ">=5.5.9",
"silex/silex": "~1.3",
"kriswallsmith/buzz": "^0.16.1",
"predis/predis": "~1.0",
"twig/twig": "~1.23",
"monolog/monolog": "~1.17",
"symfony/serializer": "~2.3|^3.0",
"ekino/newrelic-bundle": "~1.3",
"zircote/swagger-php": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"symfony/browser-kit": "~2.3"
},
"autoload": {
"psr-4": {"Transport\\": "lib/Transport/"}
},
"autoload-dev": {
"psr-4": {"Transport\\Test\\": "test/Transport/Test/"}
},
"config": {
"platform": {
"php": "7.4"
}
}
}