-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
75 lines (75 loc) · 2.53 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
{
"name": "sulu/sylius-consumer-bundle",
"type": "sulu-bundle",
"description": "Consumer for synchronization products with sylius.",
"authors": [
{
"name": "Sulu Sylius Consumer Bundle",
"homepage": "https://github.com/sulu/SuluSyliusConsumerBundle/contributors"
}
],
"homepage": "https://github.com/sulu/SuluSyliusConsumerBundle",
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"sulu/sulu": "^2.4 || 2.x-dev",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/messenger": "^5.4 || ^6.0 || ^7.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"handcraftedinthealps/zendsearch": "^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.3.4|| ^2.0",
"jangregor/phpstan-prophecy": "^1.0",
"php-cs-fixer/shim": "^3.9",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.6.20 || ^10.5.28",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
"symfony/error-handler": "^5.4 || ^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.3"
},
"conflict": {
"dantleech/phpcr-migrations-bundle": "<1.3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\SyliusConsumerBundle\\": ""
}
},
"scripts": {
"initialize": [
"Tests/Application/console doctrine:database:create --if-not-exists",
"Tests/Application/console doctrine:schema:update --force",
"Tests/Application/console cache:clear"
],
"test": [
"@phpunit"
],
"lint": [
"@phpstan",
"@php-cs"
],
"phpunit": "vendor/bin/phpunit",
"phpstan": [
"Tests/Application/console cache:warmup --env dev",
"vendor/bin/phpstan analyze -c ./phpstan.neon"
],
"php-cs": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "vendor/bin/php-cs-fixer fix"
}
}