forked from Climba-Commerce/getnet-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.33 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
{
"name":"climba-commerce/getnet-php",
"description":"SDK php para integração com a API Getnet",
"minimum-stability":"stable",
"license":"MIT",
"type":"library",
"require":{
"php": ">=7.4"
},
"require-dev":{
"phpunit/phpunit":"^9",
"phpstan/phpstan":"^1.8.0",
"kint-php/kint":"^3.3",
"monolog/monolog":"*"
},
"autoload":{
"psr-4":{
"Getnet\\":"src//Getnet"
}
},
"autoload-dev":{
"psr-4":{
"Tests\\": "tests"
}
},
"scripts":{
"phpstan":"phpstan analyse -c phpstan.neon",
"phpunit":"phpunit --configuration phpunit.xml --testdox",
"test":[
"@phpstan",
"@phpunit"
],
"test:unit":"phpunit --configuration phpunit.xml --testdox --exclude e2e",
"test:e2e":"phpunit --configuration phpunit.xml --testdox --group e2e",
"test:coverage":"phpunit --configuration phpunit.xml --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
},
"authors":[
{
"name":"Bruno Paz",
"email":"brunopaz@azpay.com.br"
},
{
"name":"Edson Nascimento",
"email":"edson27bn@gmail.com"
}
],
"homepage":"https://github.com/edson-nascimento/getnet-php"
}