-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.01 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
{
"name": "hnuti-brontosaurus/wp-theme",
"description": "WP theme for Hnutí Brontosaurus",
"scripts": {
"phpstan": "phpstan analyze --no-progress -c phpstan.neon --memory-limit 1G"
},
"require": {
"grifart/geocoding-client": "^0.2.0",
"hnuti-brontosaurus/php-bis-api-client": "^4.0.0-beta",
"latte/latte": "^3.0",
"nette/neon": "^3.2",
"nette/utils": "^4.0",
"sentry/sdk": "^3.1",
"tracy/tracy": "^2.8"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.1"
},
"autoload": {
"psr-4": {
"HnutiBrontosaurus\\Theme\\": ".",
"HnutiBrontosaurus\\Theme\\Events\\": "hb-events"
},
"classmap": [
"exceptions.php"
]
},
"config": {
"platform": {
"php": "8.0.0"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"repositories": [
{
"url": "https://github.com/grifart/geocoding-client.git",
"type": "vcs"
},
{
"url": "https://github.com/hnuti-brontosaurus/php-bis-api-client.git",
"type": "vcs"
}
]
}