-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "baraja-core/cms",
"description": "Simple smart CMS for Nette and Vue.js.",
"homepage": "https://github.com/baraja-core/cms",
"authors": [
{
"name": "Jan Barášek",
"homepage": "https://baraja.cz"
}
],
"require": {
"php": "^8.0",
"composer-runtime-api": "^2.0.0",
"baraja-core/cas": "^1.0",
"baraja-core/dynamic-configuration": "^2.1",
"baraja-core/doctrine": "^3.0",
"baraja-core/structured-api": "^4.1",
"baraja-core/admin-bar": "^2.3",
"baraja-core/plugin-system": "^2.3",
"baraja-core/localization": "^2.0",
"baraja-core/baraja-cloud": "^2.0",
"baraja-core/url": "^1.1",
"baraja-core/path-resolvers": "^1.0",
"baraja-core/phone-number": "^1.0",
"baraja-core/email-type": "^1.0",
"baraja-core/network": "^1.0",
"baraja-core/markdown-latte-filter": "^3.0",
"php-middleware/request-id": "^4.1",
"jean85/pretty-package-versions": "^2.0.1",
"guzzlehttp/psr7": "^2.0",
"nette/di": "^3.0",
"latte/latte": "^2.5 | ^3.0",
"nette/utils": "^3.0",
"nette/http": "^3.1",
"nette/caching": "^3.0",
"piwik/device-detector": "^4.2"
},
"require-dev": {
"baraja-core/assets-loader": "^2.0",
"baraja-core/doctrine-fulltext-search": "^3.0",
"baraja-core/tracy-sentry-bridge": "^1.0",
"sentry/sdk": "^3.1",
"tracy/tracy": "^2.8",
"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": "^2.0",
"roave/security-advisories": "dev-master"
},
"conflict": {
"nette/http": "<3.1",
"baraja-core/admin-bar": "<2.1"
},
"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
}
}
}