-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
69 lines (69 loc) · 2.07 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "adrosoftware/circle-so-api-php-sdk",
"description": "A PHP SDK to interact with the circle.so API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Adro Morelos",
"email": "me@adro.rocks"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1.0",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"symfony/options-resolver": "^6.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"AdroSoftware\\CircleSoSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AdroSoftware\\CircleSoSdk\\Tests\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@phpunit",
"@phpstan",
"@cscheck"
],
"githooks": [
"@pre-commit",
"@pre-push"
],
"pre-commit": "cp ./.githooks/pre-commit ./.git/hooks/pre-commit && chmod a+x ./.git/hooks/pre-commit",
"pre-push": "cp ./.githooks/pre-push ./.git/hooks/pre-push && chmod a+x ./.git/hooks/pre-push",
"phpunit": "./vendor/bin/phpunit",
"cscheck": "./vendor/bin/phpcs",
"csfix": "./vendor/bin/phpcbf",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html ./.phpunit.cache/logs/html && chmod a+x ./coverage && ./coverage"
}
}