-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
44 lines (44 loc) · 1.23 KB
/
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
44
{
"name": "arbor-education/arbor-sdk-php",
"type": "library",
"description": "Arbor Education PHP SDK",
"keywords": ["arbor", "mis", "library", "SDK", "REST api"],
"homepage": "https://github.com/arbor-education/sis-sdk-php",
"license": "Apache-2.0",
"repositories": [
{
"type": "vcs",
"url": "git@github.com:arbor-education/php-coding-standard.git"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.7",
"arbor-education/php-coding-standard": ">=1",
"fakerphp/faker": "^v1.19.0"
},
"autoload": {
"psr-0": {
"Arbor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arbor\\Test\\": "tests/"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix",
"ci-cs": "git fetch; php-cs-fixer fix -v --dry-run --using-cache=no --path-mode=intersection `git diff --name-only --diff-filter=d origin/master | xargs`"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}