-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 985 Bytes
/
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
{
"name": "baraja-core/country",
"description": "Country manager.",
"homepage": "https://github.com/baraja-core/country",
"authors": [
{
"name": "Jan Barášek",
"homepage": "https://baraja.cz"
}
],
"require": {
"php": "^8.0",
"baraja-core/ecommerce-standard": "^0.0",
"baraja-core/doctrine": "^3.0"
},
"require-dev": {
"baraja-core/structured-api": "^3.0",
"baraja-core/plugin-system": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"spaze/phpstan-disallowed-calls": "^3.1",
"roave/security-advisories": "dev-master"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse src -c phpstan.neon --level 9 --no-progress"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}