-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
66 lines (66 loc) · 1.84 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
{
"name": "manuxi/sulu-event-bundle",
"description": "Say hello to Sulu events!",
"type": "symfony-bundle",
"keywords": [
"sulu",
"suluCms",
"events",
"event"
],
"homepage": "https://github.com/manuxi/SuluEventBundle",
"license": "MIT",
"authors": [
{
"name": "Manuel Bertrams",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"doctrine/doctrine-bundle": "^2.13",
"phpcr/phpcr-migrations-bundle": "^1.6",
"sulu/sulu": "^2.5",
"sulu/automation-bundle": "^2.1",
"symfony/config": "^6.2 | ^7.0",
"symfony/dependency-injection": "^6.2 | ^7.0",
"symfony/framework-bundle": "^6.2 | ^7.0",
"symfony/http-foundation": "^6.2 | ^7.0",
"symfony/http-kernel": "^6.2 | ^7.0",
"symfony/intl": "^6.2 | ^7.0",
"symfony/translation": "^6.2 | ^7.0",
"symfony/security-core": "^6.2 | ^7.0",
"twig/intl-extra": "^3.12",
"twig/extra-bundle": "^3.12"
},
"require-dev": {
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^4.4 | ^5.0 | ^6.2 | ^7.0",
"symfony/phpunit-bridge": "^4.4 | ^5.0 | ^6.2 | ^7.0",
"symfony/console": "^4.4 | ^5.0 | ^6.2 | ^7.0",
"phpspec/prophecy": "^1.17"
},
"autoload": {
"psr-4": {
"Manuxi\\SuluEventBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Manuxi\\SuluEventBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true
}
}
}