forked from sulu/SuluArticleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
145 lines (145 loc) · 6.14 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "sulu/article-bundle",
"description": "Bundle for managing localized content-rich entities like blog-posts in the Sulu content management system",
"type": "sulu-bundle",
"license": "MIT",
"homepage": "https://github.com/sulu/SuluArticleBundle",
"keywords": [
"articles",
"sulu",
"publishing",
"news",
"blog"
],
"authors": [
{
"name": "Sulu Article",
"homepage": "https://github.com/sulu/SuluArticleBundle/contributors"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"doctrine/collections": "^1.0",
"doctrine/orm": "^2.5.3",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"doctrine/persistence": "^1.3 || ^2.0",
"jms/serializer": "^3.3",
"jms/serializer-bundle": "^3.3 || ^4.0",
"ramsey/uuid": "^3.1 || ^4.0",
"sulu/sulu": "^2.3 || ^2.3@dev",
"symfony/config": "^4.3 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.3 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.3 || ^5.0 || ^6.0",
"symfony-cmf/slugifier-api": "^1.0 || ^2.0",
"twig/twig": "^1.41 || ^2.0 || ^3.0"
},
"require-dev": {
"doctrine/data-fixtures": "^1.3.3",
"elasticsearch/elasticsearch": "^5.0 || ^6.0 || ^7.0",
"friendsofphp/php-cs-fixer": "^2.17",
"handcraftedinthealps/elasticsearch-bundle": "^5.2.6.4",
"handcraftedinthealps/elasticsearch-dsl": "^5.0.7.1 || ^6.2.0.1 || ^7.2.0.1",
"handcraftedinthealps/zendsearch": "^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"jackalope/jackalope-jackrabbit": "^1.3",
"jangregor/phpstan-prophecy": "^1.0",
"massive/build-bundle": "^0.3 || ^0.4 || ^0.5",
"phpcr/phpcr-shell": "^1.1",
"phpspec/prophecy": "^1.15",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^8.2",
"sulu/automation-bundle": "^2.0@dev",
"sulu/content-bundle": "^0.6.1",
"sulu/headless-bundle": "^0.8.0@dev",
"symfony/browser-kit": "^4.3 || ^5.0 || ^6.0",
"symfony/dotenv": "^4.3 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0",
"symfony/monolog-bundle": "^3.1",
"symfony/security-bundle": "^4.3 || ^5.0 || ^6.0",
"symfony/stopwatch": "^4.3 || ^5.0 || ^6.0"
},
"conflict": {
"guzzlehttp/ringphp": "<1.1.1"
},
"conflict": {
"doctrine/doctrine-bundle": "2.3.0",
"elasticsearch/elasticsearch": "<5.0 || >=8.0",
"handcraftedinthealps/elasticsearch-bundle": "<5.2.6.4 || >=6.0",
"handcraftedinthealps/elasticsearch-dsl": "<5.0.7.1 || 6.0 - 6.2.0 || 7.0 - 7.2.0 || >=8.0"
},
"suggest": {
"elasticsearch/elasticsearch": "Required for the default article phpcr storage.",
"handcraftedinthealps/elasticsearch-bundle": "Required for the default article phpcr storage.",
"sulu/automation-bundle": "Allows publish automation and outsource long-running route update processes.",
"sulu/content-bundle": "Allows to use the experimental article storage."
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\ArticleBundle\\": ""
},
"exclude-from-classmap": [
"/Resources/phpcr-migrations/",
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Sulu\\Bundle\\ArticleBundle\\Tests\\": "Tests/"
}
},
"scripts": {
"bootstrap-test-environment": [
"@php Tests/Application/bin/adminconsole doctrine:database:drop --if-exists --force --env test",
"@php Tests/Application/bin/adminconsole doctrine:database:create --env test",
"@php Tests/Application/bin/adminconsole doctrine:schema:update --force --env test",
"@php Tests/Application/bin/adminconsole ongr:es:index:create --manager=default --if-not-exists --env test",
"@php Tests/Application/bin/adminconsole ongr:es:index:create --manager=live --if-not-exists --env test"
],
"lint": [
"@phpstan",
"@php-cs",
"@lint-twig",
"@lint-yaml",
"@lint-container",
"@lint-composer",
"@lint-doctrine"
],
"test": [
"Composer\\Config::disableProcessTimeout",
"@phpunit"
],
"phpunit": "@php vendor/bin/phpunit",
"phpstan": [
"@php Tests/Application/bin/adminconsole cache:warmup --env=dev",
"@php vendor/bin/phpstan analyse"
],
"php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"lint-composer": "@composer validate --strict",
"lint-twig": "@php Tests/Application/bin/adminconsole lint:twig Resources/doc",
"lint-yaml": "@php Tests/Application/bin/adminconsole lint:yaml Resources/config Tests/Application/config",
"lint-container": [
"@php Tests/Application/bin/adminconsole lint:container --env dev",
"@php Tests/Application/bin/websiteconsole lint:container --env dev",
"@php Tests/Application/bin/adminconsole lint:container --env test",
"@php Tests/Application/bin/websiteconsole lint:container --env test",
"@php Tests/Application/bin/adminconsole lint:container --env stage",
"@php Tests/Application/bin/websiteconsole lint:container --env stage",
"@php Tests/Application/bin/adminconsole lint:container --env prod",
"@php Tests/Application/bin/websiteconsole lint:container --env prod"
],
"lint-doctrine": [
"@php Tests/Application/bin/adminconsole doctrine:schema:validate --skip-sync",
"@php Tests/Application/bin/adminconsole doctrine:ensure-production-settings --env prod"
]
},
"config": {
"sort-packages": true
}
}