-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
73 lines (72 loc) · 2.39 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/sylius-producer-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin"],
"description": "Producer for synchronization products with sulu.",
"license": "MIT",
"require": {
"php": "^8.1",
"sylius/sylius": "1.13.* || 1.14.*",
"symfony/messenger": "^5.4 || ^6.4",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15 || ^3.0",
"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",
"jangregor/phpstan-prophecy": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"phpstan/extension-installer": "^1.0",
"symfony/intl": "^5.4 || ^6.4",
"symfony/web-profiler-bundle": "^5.4 || ^6.4"
},
"autoload": {
"psr-4": {
"Sulu\\Bundle\\SyliusConsumerBundle\\": "lib/",
"Sulu\\SyliusProducerPlugin\\": "src/",
"Tests\\Sulu\\SyliusProducerPlugin\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": false
}
},
"scripts": {
"post-install-cmd": [
"php bin/create_node_symlink.php"
],
"post-update-cmd": [
"php bin/create_node_symlink.php"
],
"post-create-project-cmd": [
"php bin/create_node_symlink.php"
],
"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": "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"
}
}