-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·35 lines (35 loc) · 972 Bytes
/
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
{
"name": "paseto/atm-api-rest",
"description": "Api for AT&M Averba - REST",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giovani Paseto",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^1.10.48",
"phpunit/phpunit": "^10.5.2"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Paseto\\": "src/"
}
},
"scripts": {
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src; vendor/bin/phpcbf --standard=psr2 tests",
"phpcs": "vendor/bin/phpcs --standard=psr2 src; vendor/bin/phpcs --standard=psr2 tests",
"phpstan": "vendor/bin/phpstan analyse --level 1 src/"
}
}