This repository was archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (74 loc) · 2.37 KB
/
composer.json
File metadata and controls
79 lines (74 loc) · 2.37 KB
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
70
71
72
73
74
75
76
77
78
79
{
"name": "gocardless/enterprise",
"type": "library",
"description": "A php library for interfacing with the GoCardless Pro (formerly GoCardless Enterprise) REST API. Please note this library is not for use with their standard API.",
"keywords": ["GoCardless", "GoCardless Enterprise", "GoCardless Pro", "Direct Debit", "Lendable"],
"homepage": "https://www.lendable.co.uk",
"license": "MIT",
"authors": [
{
"name": "Lendable Ltd",
"email": "dev@lendable.co.uk",
"homepage": "https://www.lendable.co.uk"
}
],
"autoload": {
"psr-4": {
"Lendable\\GoCardlessEnterprise\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lendable\\GoCardlessEnterprise\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.6|^7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"jakub-onderka/php-parallel-lint": "^1.0",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpunit/phpunit": "^7.3",
"symfony/phpunit-bridge": "^2.8|^3.0|^4.0"
},
"scripts": {
"check-code-style": [
"bin/php-cs-fixer fix --config='./.php_cs' --show-progress=none --dry-run --no-interaction --diff -v"
],
"check-security": [
"bin/local-php-security-checker"
],
"fix-code-style": [
"bin/php-cs-fixer fix --config='./.php_cs' --show-progress=none --no-interaction --diff -v"
],
"run-static-analysis": [
"bin/phpstan analyse --level=7 src/"
],
"run-static-analysis-including-tests": [
"@run-static-analysis",
"bin/phpstan analyse --level=7 tests/"
],
"run-tests": [
"bin/phpunit tests/Unit/"
],
"run-integration-tests": [
"bin/phpunit tests/Integration/"
],
"run-tests-with-clover": [
"bin/phpunit tests/Unit/ --coverage-clover build/logs/clover.xml"
],
"validate-files": [
"bin/parallel-lint --exclude vendor --exclude bin ."
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"prefer-stable": true
}