forked from sulu/SuluContentBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.33 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
{
"name": "sulu/content-bundle",
"type": "sulu-bundle",
"description": "Experimental content implementation for sulu.",
"authors": [
{
"name": "SuluContentBundle",
"homepage": "https://github.com/sulu/SuluContentBundle/contributors"
}
],
"homepage": "https://github.com/sulu/SuluContentBundle",
"license": "MIT",
"require": {
"php": "^7.1.3",
"doctrine/doctrine-bundle": "^1.6",
"friendsofsymfony/rest-bundle": "^2.2",
"jms/serializer": "^1.13",
"sulu/sulu": "dev-develop",
"symfony/config": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/http-foundation": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/messenger": "^4.1",
"webmozart/assert": "^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"jackalope/jackalope-doctrine-dbal": "^1.2.5",
"jangregor/phpstan-prophecy": "^0.2",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-doctrine": "^0.10",
"phpstan/phpstan-phpunit": "^0.10.0",
"phpstan/phpstan-symfony": "^0.10.2",
"phpstan/phpstan-webmozart-assert": "^0.10.0",
"phpunit/phpunit": "^7.2",
"symfony/browser-kit": "^4.2",
"symfony/dotenv": "^4.1",
"symfony/monolog-bundle": "^3.3",
"zendframework/zend-stdlib": "~2.3",
"zendframework/zendsearch": "@dev"
},
"conflict": {
"symfony/dependency-injection": "4.1.8"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\ContentBundle\\": ""
}
},
"scripts": {
"initialize": [
"@php Tests/Application/bin/console doctrine:database:create --if-not-exists -e test",
"@php Tests/Application/bin/console doctrine:schema:update --force -e test"
],
"test": [
"@phpunit",
"@phpstan",
"@php-cs"
],
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyze -c ./phpstan.neon . -l max",
"php-cs": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}