-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
56 lines (56 loc) · 1.26 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
{
"name": "ecomailcz/flexibee-client",
"description": "ECOMAIL.CZ - Simple client for communication with FlexiBee API",
"license": [
"MIT"
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ecomailcz/purl": "^2.0",
"rakit/validation": "^1.4"
},
"require-dev": {
"brianium/paratest": "^6.10.0",
"ergebnis/composer-normalize": "^2.34.0",
"fzaninotto/faker": "^1.9",
"mockery/mockery": "^1.6.4",
"phing/phing": "^2.17.4",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.26",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^9.6.10",
"slevomat/coding-standard": "^6.0 || ^7.2.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EcomailFlexibee\\": [
"src/"
],
"EcomailFlexibeeTest\\": [
"tests/"
]
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}