-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
68 lines (68 loc) · 2.04 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
{
"name": "thecadien/sulu-news-bundle",
"type": "sulu-bundle",
"description": "Simple News Bundle for Sulu 2 CMS",
"keywords": [
"sulu",
"suluCms",
"news"
],
"homepage": "https://github.com/TheCadien/SuluNewsBundle",
"license": "MIT",
"authors": [
{
"name": "Oliver Kossin"
}
],
"require": {
"php": "^8.1",
"laminas/laminas-zendframework-bridge": "^1.4",
"rector/rector": "^0.15.7",
"sulu/sulu": "2.5.*",
"sulu/sulu-rector": "^0.1.3",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"coduo/php-matcher": "^5.0 || ^6.0",
"friendsofphp/php-cs-fixer": "^3.1",
"handcraftedinthealps/code-coverage-checker": "^0.2.1",
"handcraftedinthealps/zendsearch": "^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy": "^1.15",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-doctrine": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^8.4",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/dotenv": "^4.4 || ^5.0 || ^6.0",
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0",
"symfony/monolog-bundle": "^3.1",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"scripts": {
"phpstan": [
"@php vendor/bin/phpstan analyse"
],
"phpunit": "@php vendor/bin/phpunit",
"bootstrap-test-environment": [
"@php Tests/Application/bin/console doctrine:database:create --if-not-exists",
"@php Tests/Application/bin/console doctrine:schema:update --force"
]
},
"autoload": {
"psr-4": {
"TheCadien\\Bundle\\SuluNewsBundle\\": ""
}
},
"config": {
"sort-packages": true
}
}