forked from allejo/PhpSoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 944 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
40
41
42
43
{
"name": "allejo/php-soda",
"description": "A PHP library for working with both the consumer and producer Socrata API",
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5",
"php-vcr/php-vcr": "^1.3",
"twig/twig": "~1.20",
"sami/sami": "^3.3.0"
},
"autoload": {
"psr-4": {
"allejo\\Socrata\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/utilities"
]
},
"authors": [
{
"name": "Vladimir Jimenez",
"homepage": "https://allejo.io",
"role": "Project Maintainer"
}
],
"support": {
"issues": "https://github.com/allejo/PhpSoda/issues",
"irc": "irc://irc.freenode.net/socrata-soda",
"wiki": "https://github.com/allejo/PhpSoda/wiki",
"source": "https://github.com/allejo/PhpSoda"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}