-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
109 lines (109 loc) · 4.35 KB
/
composer.json
File metadata and controls
109 lines (109 loc) · 4.35 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "loevgaard/sylius-barcode-plugin",
"type": "sylius-plugin",
"description": "Add barcodes to your products using this plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"doctrine/persistence": "^1.3 || ^2.0 || ^3.0",
"setono/doctrine-orm-batcher-bundle": "^0.3.1",
"symfony/config": "^5.4 || ^6.4",
"symfony/event-dispatcher": "^5.4 || ^6.4",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/messenger": "^5.4 || ^6.4",
"violuke/php-barcodes": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^7.5",
"phpspec/prophecy-phpunit": "^2.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.19.2",
"psalm/plugin-symfony": "^5.2",
"setono/code-quality-pack": "^2.1.3",
"sylius/sylius": "~1.10.0",
"symfony/browser-kit": "^5.4 || ^6.4",
"symfony/debug-bundle": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"symfony/intl": "^5.4 || ^6.4",
"symfony/web-profiler-bundle": "^5.4 || ^6.4"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/thanks": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"autoload": {
"psr-4": {
"Loevgaard\\SyliusBarcodePlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Loevgaard\\SyliusBarcodePlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"prefer-stable": true,
"scripts": {
"all": [
"@checks",
"@tests"
],
"analyse": "psalm",
"assets": [
"@ensure-assets-installed",
"@ensure-assets-compiled"
],
"behat": [
"SYMFONY_ENV=test composer ensure-database-ready",
"SYMFONY_ENV=test composer ensure-env-copied",
"vendor/bin/behat --tags=\"~@javascript\" --no-interaction --format=progress"
],
"check-style": "ecs check",
"checks": [
"composer validate --strict",
"composer normalize --dry-run",
"@check-style",
"@analyse"
],
"ensure-assets-compiled": "[[ -d tests/Application/public/assets ]] || (cd tests/Application && yarn build && composer ensure-env-copied && bin/console assets:install public -e ${SYMFONY_ENV:-'dev'})",
"ensure-assets-installed": "[[ -d tests/Application/node_modules ]] || (cd tests/Application && yarn install)",
"ensure-database-created": "composer ensure-env-copied && (cd tests/Application && bin/console doctrine:database:create --if-not-exists -e ${SYMFONY_ENV:-'dev'})",
"ensure-database-ready": [
"@ensure-database-created",
"@ensure-schema-updated"
],
"ensure-env-copied": "([[ ${SYMFONY_ENV:-'dev'} == 'dev' ]] && composer ensure-env-dev-copied) || ([[ ${SYMFONY_ENV:-'dev'} == 'test' ]] && composer ensure-env-test-copied) || echo 'Unknown environment ${SYMFONY_ENV}'",
"ensure-env-dev-copied": "(cd tests/Application && ([[ -f .env.dev.local ]] || cp .env .env.dev.local))",
"ensure-env-test-copied": "(cd tests/Application && ([[ -f .env.test.local ]] || cp .env.test .env.test.local))",
"ensure-schema-updated": "composer ensure-env-copied && (cd tests/Application && bin/console doctrine:schema:update --force -e ${SYMFONY_ENV:-'dev'})",
"ensure-vendors-installed": "[[ -f vendor/autoload.php ]] || php -d memory_limit=-1 /usr/local/bin/composer install",
"fix-style": "ecs check --fix",
"fixtures": [
"@ensure-database-ready",
"(cd tests/Application && bin/console sylius:fixtures:load --no-interaction -e ${SYMFONY_ENV:-'dev'})"
],
"phpspec": "vendor/bin/phpspec run",
"phpunit": "vendor/bin/phpunit",
"run": [
"@ensure-env-copied",
"(cd tests/Application && bin/console server:run -d public -e ${SYMFONY_ENV:-'dev'})"
],
"tests": [
"@phpspec",
"@phpunit",
"@behat"
],
"try": [
"@ensure-vendors-installed",
"@assets",
"@fixtures",
"@run"
]
}
}