forked from monsieurbiz/SyliusNoCommercePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.8 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
{
"name": "monsieurbiz/sylius-no-commerce-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "monsieurbiz"],
"description": "Disable the e-commerce on your Sylius.",
"license": "MIT",
"require": {
"php": "~7.4|~8.0|~8.1",
"sylius/sylius": ">=1.8 <1.13",
"monsieurbiz/sylius-settings-plugin": "^1.0.9"
},
"require-dev": {
"behat/behat": "^3.6.1",
"behat/mink-selenium2-driver": "^1.4",
"dmore/behat-chrome-extension": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"doctrine/data-fixtures": "^1.4",
"friends-of-behat/mink": "^1.8",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"friends-of-behat/mink-extension": "^2.4",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/symfony-extension": "^2.1",
"friends-of-behat/variadic-extension": "^1.3",
"hwi/oauth-bundle": "^1.1",
"lchrusciel/api-test-case": "^5.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.4",
"pamil/prophecy-common": "^0.1",
"phpspec/phpspec": "@stable",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-doctrine": "@stable",
"phpstan/phpstan-webmozart-assert": "@stable",
"psalm/plugin-mockery": "@stable",
"psr/event-dispatcher": "@stable",
"symfony/browser-kit": "@stable",
"symfony/debug-bundle": "@stable",
"symfony/dotenv": "@stable",
"symfony/flex": "@stable",
"symfony/routing": "^5.4",
"symfony/web-profiler-bundle": "@stable",
"phpmd/phpmd": "@stable",
"friendsofphp/php-cs-fixer": "@stable"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MonsieurBiz\\SyliusNoCommercePlugin\\": "src/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"phpcs": "php-cs-fixer fix --using-cache=no",
"phpstan": "phpstan analyse -c phpstan.neon src/ -vvv",
"phpmd": "phpmd --exclude Migrations/* src/ ansi phpmd.xml",
"phpunit": "phpunit",
"phpspec": "phpspec run"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"symfony": {
"docker": false,
"endpoint": [
"https://api.github.com/repos/monsieurbiz/symfony-recipes/contents/index.json?ref=flex/master",
"flex://defaults"
]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true
}
}
}