-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.88 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
{
"name": "acme/sylius-awesome-plugin",
"description": "My brand new Sylius plugin!",
"type": "sylius-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Acme\\SyliusAwesomePlugin\\": "src/",
"Tests\\Acme\\SyliusAwesomePlugin\\Behat\\": "tests/Behat"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Acme\\SyliusAwesomePlugin\\": "tests/",
"App\\": "tests/Application/src/"
}
},
"require": {
"php": "^8.0",
"sylius/core-bundle": "^1.12"
},
"conflict": {
"sylius/sylius": "<1.12"
},
"require-dev": {
"ext-readline": "*",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"sylius/sylius": "^1.12",
"symfony/debug-bundle": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/flex": "^2.2.2",
"symfony/intl": "^6.4",
"symfony/maker-bundle": "^1.50",
"symfony/web-profiler-bundle": "^6.4"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"symfony": {
"require": "^6.4"
}
},
"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"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
}
}
}