forked from stavarengo/php-sigep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.23 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
49
{
"name": "stavarengo/php-sigep",
"type": "library",
"description": "Integração com Web Service do Correios. Gera etiquetas, consulta preços e prazos, imprime etiquetas e PLP, etc.",
"keywords": ["correios", "sigep"],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"require": {
"php": ">=7.2",
"ext-soap": "*",
"ext-mbstring": "*",
"stavarengo/php-sigep-fpdf": "dev-master",
"vria/nodiacritic": "^0.1.2"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-0": {
"PhpSigep": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSigep\\Test\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --verbose --colors=always",
"stan": "./vendor/bin/phpstan analyse src tests exemplos"
},
"license": "MIT",
"authors": [
{
"name": "Rafael Stavarengo",
"email": "[email protected]"
}
]
}