-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "ebanx/benjamin-local",
"description": "EBANX Pay's API library for local payments",
"type": "library",
"license": "proprietary",
"require": {
"php": ">=5.4",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"fzaninotto/faker": "^1.6@dev",
"justinrainbow/json-schema": "^5.0@dev",
"vlucas/phpdotenv": "^2.4@dev",
"sebastian/phpcpd": "^2.0.4",
"friendsofphp/php-cs-fixer": "^2.2.3"
},
"autoload": {
"psr-4": {
"Ebanx\\Benjamin\\": "src/"
},
"files": ["main.php"]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-only": "phpunit --filter",
"dup-check": "phpcpd src && phpcpd tests",
"test-all": "composer test && composer style-check && composer dup-check",
"style-check" : "php-cs-fixer fix --dry-run --verbose --diff ./",
"style-fix" : "php-cs-fixer fix --verbose ./"
}
}