-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 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
{
"name": "spojenet/subreg",
"description": "PHP Based Library for easy interaction with soap.subreg.cz",
"license": "MIT",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "[email protected]"
}
],
"require": {
"ext-soap": "*",
"vitexsoftware/ease-core": ">=1.41"
},
"autoload": {
"psr-4": {
"Subreg\\": "src/Subreg/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": "vendor/vitexsoftware/ease-core/tests/src/Ease",
"Test\\Subreg\\": "testing/src/Subreg/",
"Test\\": "testing/"
}
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.61",
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34",
"phpstan/phpstan-phpunit": "2.0.x-dev"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}