-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1 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
{
"name": "sequra/integration-core",
"description": "Core SeQura integration library",
"type": "library",
"license": "proprietary",
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"SeQura\\Core\\Infrastructure\\": "src/Infrastructure",
"SeQura\\Core\\BusinessLogic\\": "src/BusinessLogic"
}
},
"autoload-dev": {
"psr-4": {
"SeQura\\Core\\Tests\\Infrastructure\\": "tests/Infrastructure",
"SeQura\\Core\\Tests\\BusinessLogic\\": "tests/BusinessLogic",
"SeQura\\Core\\Console\\": "console"
}
},
"require-dev": {
"phpunit/phpunit": "8.5.14",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "^1.12"
},
"prefer-stable": true,
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist"
}
}