forked from SomosAMambo/API-3.0-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.04 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
{
"name": "developercielo/api-3.0-php",
"description": "Integração com a API 3.0 da Cielo",
"type": "library",
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^11.1.2",
"phpstan/phpstan": "^1.10.67",
"kint-php/kint": "^5.1.0"
},
"autoload": {
"psr-0": {
"Cielo": "src"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/"
}
},
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
},
"homepage": "https://github.com/DeveloperCielo/API-3.0-PHP",
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon",
"phpunit": "phpunit --configuration phpunit.xml --testdox --exclude-group payment",
"test": [
"@phpstan",
"@phpunit"
],
"test:unit": "phpunit tests/Unit --configuration phpunit.xml --testdox",
"test:e2e": "phpunit tests/E2E --configuration phpunit.xml --testdox"
},
"license": "MIT",
"minimum-stability": "stable"
}