-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
55 lines (55 loc) · 1.73 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
{
"name": "monsieurbiz/sylius-menu-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "monsieurbiz"],
"description": "This plugins allows you to manage menus.",
"license": "MIT",
"require": {
"php": "^8.0",
"sylius/sylius": ">=1.11 <1.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^1.8.4",
"phpstan/phpstan-doctrine": "^1.3.2",
"phpstan/phpstan-webmozart-assert": "^1.1",
"phpunit/phpunit": "^10.5",
"phpmd/phpmd": "^2.15"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MonsieurBiz\\SyliusMenuPlugin\\": "src/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --using-cache=no",
"phpstan": "phpstan analyse -c phpstan.neon src/",
"phpmd": "phpmd --exclude Migrations/* src/ ansi phpmd.xml",
"phpunit": "phpunit",
"phpspec": "phpspec run"
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
},
"symfony": {
"docker": false,
"endpoint": ["https://api.github.com/repos/monsieurbiz/symfony-recipes/contents/index.json?ref=flex/master", "flex://defaults"]
}
},
"config": {
"allow-plugins": {
"symfony/thanks": true,
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": true
}
}
}