-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.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
{
"name": "pixelopen/sulu-blockbundle",
"description": "A Symfony Bundle for Sulu content management platform containing boilerplate blocks",
"type": "library",
"require": {
"php": "^8.0",
"pixeldev/protocol-stream": "^1.0",
"sulu/sulu": "^2.5",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.0 || ^6.0",
"sulu/web-twig": "^2.5"
},
"require-dev": {
"dantleech/phpcr-migrations-bundle": "^1.3",
"jackalope/jackalope-doctrine-dbal": "^1.3.2",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"symplify/easy-coding-standard": "^11.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Pixel\\BlockBundle\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": false
}
},
"scripts": {
"analyse": "composer-require-checker"
}
}