-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
60 lines (60 loc) · 1.29 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mrcnpdlk/regon-api",
"description": "GUS Regon API",
"keywords": [
"gus",
"regon",
"soap",
"krs",
"nip"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcin Pudełek",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-soap": "*",
"psr/log": "^1",
"psr/simple-cache": "^1",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"mrcnpdlk/lib-configuration": "^0",
"mrcnpdlk/lib-mapper": "^0",
"mrcnpdlk/lib-exception": "^0",
"myclabs/php-enum": "^1",
"gregwar/cache": "^1",
"laminas/laminas-json": "^3"
},
"require-dev": {
"monolog/monolog": "^1",
"phpunit/phpunit": "^8",
"phpunit/php-code-coverage": "^7",
"friendsofphp/php-cs-fixer": "^2",
"phpstan/phpstan": "^0",
"phpstan/phpstan-phpunit": "^0",
"jangregor/phpstan-prophecy": "^0"
},
"autoload": {
"psr-4": {
"Mrcnpdlk\\Api\\Regon\\": "src"
}
},
"scripts": {
"test": [
"@phpstan",
"@lint"
],
"phpstan": "phpstan analyse",
"fixer": "php-cs-fixer fix --diff --show-progress=dots",
"lint": "php-cs-fixer fix --diff --dry-run"
}
}