-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.08 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
73
{
"name": "netzmacht/contao-page-context",
"description": "This library provides tools to bootstrap the contao page contexts for custom routes.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"page",
"context"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/contao-page-context/issues",
"source": "https://github.com/netzmacht/contao-page-context"
},
"require": {
"php": "^8.1",
"beberlei/assert": "^2.7 || ^3.0",
"contao/core-bundle": "^4.13 || ^5.2",
"netzmacht/contao-toolkit": "^3.9 || ^4.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/security-core": "^5.4 || ^6.0",
"symfony/translation-contracts": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"doctrine/coding-standard": "^12.0",
"friends-of-phpspec/phpspec-expect": "^4.0",
"netzmacht/phpspec-phpcq-plugin": "@dev",
"phpcq/runner-bootstrap": "^1.0@dev",
"phpspec/phpspec": "^7.0"
},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\PageContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Netzmacht\\Contao\\PageContext\\": "spec/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "1.3.x-dev",
"dev-master": "1.2.x-dev"
},
"contao-manager-plugin": "Netzmacht\\Contao\\PageContext\\ContaoManager\\Plugin"
}
}