forked from sulu/SuluRedirectBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 3.83 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sulu/redirect-bundle",
"description": "Sulu bundle for managing redirects",
"type": "sulu-bundle",
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"sulu/sulu": "^2.2.5 || ^2.3@dev",
"ramsey/uuid": "^3.1 || ^4.0",
"symfony/dependency-injection": "^4.3 || ^5.0",
"symfony/config": "^4.3 || ^5.0",
"symfony/console": "^4.3 || ^5.0",
"symfony/http-foundation": "^4.3 || ^5.0",
"handcraftedinthealps/rest-routing-bundle": "^1.0",
"friendsofsymfony/rest-bundle": "^2.8 || ^3.0",
"symfony/http-kernel": "^4.3 || ^5.0",
"doctrine/orm": "^2.5.3",
"symfony/event-dispatcher": "^4.3 || ^5.0",
"symfony/property-access": "^4.3 || ^5.0",
"symfony/routing": "^4.3 || ^5.0",
"symfony-cmf/routing": "^2.1"
},
"require-dev": {
"doctrine/data-fixtures": "^1.1",
"jangregor/phpstan-prophecy": "^0.8",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.17",
"symfony/browser-kit": "^4.3 || ^5.0",
"symfony/dotenv": "^4.3 || ^5.0",
"symfony/monolog-bundle": "^3.1",
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"handcraftedinthealps/zendsearch": "^2.0",
"symfony/framework-bundle": "^4.3 || ^5.0",
"phpspec/prophecy": "^1.10",
"symfony/debug": "^4.3 || ^5.0"
},
"keywords": [
"redirects"
],
"authors": [
{
"name": "Sulu Redirect",
"homepage": "https://github.com/sulu/SuluRedirectBundle/contributors"
}
],
"homepage": "https://github.com/sulu/SuluRedirectBundle",
"autoload": {
"psr-4": {
"Sulu\\Bundle\\RedirectBundle\\": ""
}
},
"scripts": {
"bootstrap-test-environment": [
"Tests/Application/bin/adminconsole doctrine:database:drop --if-exists --force --env test",
"Tests/Application/bin/adminconsole doctrine:database:create --env test",
"Tests/Application/bin/adminconsole doctrine:schema:update --force --env test"
],
"lint": [
"@phpstan",
"@php-cs",
"@lint-yaml",
"@lint-container",
"@lint-composer",
"@lint-doctrine"
],
"test": [
"@phpunit"
],
"phpunit": "vendor/bin/phpunit",
"phpstan": [
"Tests/Application/bin/adminconsole cache:warmup --env=dev",
"vendor/bin/phpstan analyse"
],
"php-cs": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "vendor/bin/php-cs-fixer fix",
"lint-yaml": "Tests/Application/bin/adminconsole lint:yaml Resources/config Tests/Application/config",
"lint-composer": "@composer validate --strict",
"lint-container": [
"Tests/Application/bin/adminconsole lint:container --env dev",
"Tests/Application/bin/websiteconsole lint:container --env dev",
"Tests/Application/bin/adminconsole lint:container --env test",
"Tests/Application/bin/websiteconsole lint:container --env test",
"Tests/Application/bin/adminconsole lint:container --env stage",
"Tests/Application/bin/websiteconsole lint:container --env stage",
"Tests/Application/bin/adminconsole lint:container --env prod",
"Tests/Application/bin/websiteconsole lint:container --env prod"
],
"lint-doctrine": [
"Tests/Application/bin/adminconsole doctrine:schema:validate --skip-sync",
"Tests/Application/bin/adminconsole doctrine:ensure-production-settings --env prod"
]
}
}