-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 918 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
{
"name": "communityds/deputy-api-wrapper",
"description": "Deputy API Wrapper",
"keywords": [
"deputy"
],
"homepage": "https://github.com/communityds/deputy-api-wrapper.git",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Community Data Solutions",
"homepage": "https://communityds.com.au/"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^10.5"
},
"autoload": {
"psr-4": {
"CommunityDS\\Deputy\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CommunityDS\\Deputy\\Api\\Tests\\": "tests/"
},
"files": ["tests/Bridge/autoload.php"]
},
"archive": {
"exclude": ["/phpunit.xml", "/tests", "/.*"]
}
}