forked from sulu/SuluArticleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
88 lines (88 loc) · 2.78 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
{
"name": "sulu/article-bundle",
"description": "Sulu bundle for managing articles",
"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.2",
"elasticsearch/elasticsearch": "~5.0 || ~6.0",
"jms/serializer": "^3.3",
"jms/serializer-bundle": "^3.3",
"ongr/elasticsearch-bundle": "^5.2",
"ongr/elasticsearch-dsl": "~5.0 || ~6.0",
"sulu/sulu": "^2.0.1",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/http-foundation": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony-cmf/slugifier-api": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/data-fixtures": "^1.1",
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"jackalope/jackalope-jackrabbit": "^1.3",
"massive/build-bundle": "^0.3 || ^0.4",
"php-ffmpeg/php-ffmpeg": "^0.13 || ^0.14",
"phpcr/phpcr-shell": "^1.1",
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^8.2",
"sulu/automation-bundle": "2.0.0-alpha1",
"symfony/browser-kit": "^4.3",
"symfony/dotenv": "^4.3",
"symfony/monolog-bundle": "^3.1",
"symfony/stopwatch": "^4.3",
"zendframework/zend-stdlib": "^2.3",
"zendframework/zendsearch": "@dev"
},
"suggest": {
"sulu/automation-bundle": "Allows to outsource long-running route update processes."
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\ArticleBundle\\": ""
}
},
"scripts": {
"bootstrap-test-environment": [
"Tests/Application/bin/adminconsole doctrine:database:create --if-not-exists --env test",
"Tests/Application/bin/adminconsole doctrine:schema:update --force --env test",
"Tests/Application/bin/adminconsole ongr:es:index:create --manager=default --if-not-exists --env test",
"Tests/Application/bin/adminconsole ongr:es:index:create --manager=live --if-not-exists --env test"
],
"lint": [
"@phpstan"
],
"test": [
"@phpunit"
],
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "2.0-dev"
}
}
}