-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1001 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": "ilyahoilik/php-gtfs",
"description": "A PHP library for manipulating with General Transit Feed Specification",
"keywords": ["php", "gtfs", "transport"],
"homepage": "https://malanka.dev/php-gtfs",
"license": "MIT",
"authors": [
{
"name": "Ilya Hoilik",
"email": "[email protected]",
"homepage": "https://hoilik.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ilyahoilik/php-gtfs/issues",
"docs": "https://malanka.dev/php-gtfs"
},
"require": {
"ext-curl": "*",
"ext-zip": "*"
},
"require-dev": {
"symfony/var-dumper": "^6.3",
"pestphp/pest": "^2.9"
},
"autoload": {
"psr-4": {
"GTFS\\Static\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}