-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
65 lines (65 loc) · 1.47 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
61
62
63
64
65
{
"name": "mrcnpdlk/teryt-api",
"description": "Teryt WS1 Api",
"keywords": [
"teryt",
"address",
"soap"
],
"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": "*",
"ext-dom": "*",
"mrcnpdlk/lib-exception": "^0",
"mrcnpdlk/lib-configuration": "^0",
"robrichards/wse-php": "^2",
"mrcnpdlk/psr16cache-adapter": "^0"
},
"require-dev": {
"phpunit/php-code-coverage": "^7",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1",
"jangregor/phpstan-prophecy": "^1",
"phpunit/phpunit": "^8",
"mockery/mockery": "^1",
"monolog/monolog": "^1.23",
"phpfastcache/phpfastcache": "^7"
},
"suggest": {
"monolog/monolog": "^1",
"phpfastcache/phpfastcache": "^7"
},
"autoload": {
"psr-4": {
"mrcnpdlk\\Teryt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\mrcnpdlk\\Teryt\\": "tests/suits/"
}
},
"scripts": {
"test": [
"@phpstan",
"@lint",
"@phpunit"
],
"phpunit": "phpunit --configuration phpunit.xml --coverage-text --colors=never",
"phpstan": "phpstan analyse",
"fixer": "php-cs-fixer fix --diff --show-progress=dots",
"lint": "php-cs-fixer fix --diff --dry-run"
}
}