-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 850 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 850 Bytes
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
{
"name": "galantom/galantom-api-php",
"description": "Official PHP Client Library for the Galantom Web API Edit",
"type": "library",
"keywords": [
"library",
"Galantom",
"Fundraising",
"guzzle",
"guzzlehttp",
"guzzle-services"
],
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"GalantomApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GalantomApi\\Tests\\": "tests/",
"GalantomApi\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle-services": "^1.1",
"symfony/config": "~3.4|~4.0"
},
"require-dev": {
"vlucas/phpdotenv": "^2.3",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0"
}
}