-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
37 lines (33 loc) · 880 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
{
"name": "dms/meetup-api-client",
"abandoned": true,
"description": "Meetup.com API client written on top of Guzzle. This supports all API operations.",
"keywords": ["meetup.com", "dms", "api", "guzzle"],
"license": "MIT",
"authors": [
{
"name": "Rafael Dohms",
"homepage": "http://doh.ms"
}
],
"require": {
"php": "^5.3.10 | ^7.0",
"guzzle/guzzle": "~3.7"
},
"require-dev": {
"symfony/css-selector": "~2.2",
"symfony/dom-crawler": "~2.2",
"symfony/console": "~2.2",
"phpunit/phpunit": "^4.8",
"symfony/var-dumper": "~2.6",
"mathiasgrimm/arraypath": "~1.3"
},
"autoload": {
"psr-0": {"DMS": ["src/", "tests/"]}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}