-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
80 lines (80 loc) · 2.82 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
{
"name": "bitbag/vuestorefront-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "sylius vuestorefront"],
"description": "BitBag VueStorefront bridge for Sylius.",
"license": "MIT",
"require": {
"php": "^7.3",
"ext-json": "*",
"friendsofsymfony/elastica-bundle": "^5.1",
"ruflin/elastica": "^6.1",
"sylius/sylius": "^1.8 || ^1.9",
"nelmio/cors-bundle": "^2.1",
"symfony/messenger": "^4.4 || ^5.2",
"lexik/jwt-authentication-bundle": "^2.6",
"gesdinet/jwt-refresh-token-bundle": "^v0.11",
"imagine/imagine": "^1.2",
"symfony/serializer": "^4.4 || ^5.0 || ^5.2",
"symfony/property-info": "^4.4 || ^5.2"
},
"suggest": {
"nelmio/cors-bundle": "Allows you to send Cross-Origin Ajax API requests"
},
"require-dev": {
"lchrusciel/api-test-case": "^4.1",
"phpspec/phpspec": "^6.1",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^5.0",
"sylius-labs/coding-standard": "^2.0",
"symfony/browser-kit": "^4.4",
"symfony/debug-bundle": "^4.4 || ^5.2",
"symfony/dotenv": "^4.4 || ^5.2",
"symfony/intl": "^4.4 || ^5.2",
"symfony/web-profiler-bundle": "^4.4 || ^5.2",
"symfony/web-server-bundle": "^4.4 || ^5.2"
},
"conflict": {
"symfony/symfony": "4.1.8",
"symfony/browser-kit": "4.1.8",
"symfony/dependency-injection": "4.1.8",
"symfony/dom-crawler": "4.1.8",
"symfony/routing": "4.1.8"
},
"autoload": {
"psr-4": {
"BitBag\\SyliusVueStorefrontPlugin\\": "src/",
"Tests\\BitBag\\SyliusVueStorefrontPlugin\\Application\\": "tests/Application/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\BitBag\\SyliusVueStorefrontPlugin\\": "spec/",
"Tests\\BitBag\\SyliusVueStorefrontPlugin\\Controller\\": "tests/Controller/"
},
"classmap": ["tests/Application/Kernel.php"]
},
"scripts": {
"php:check": [
"composer validate --strict",
"@php:analyse",
"@php:tests"
],
"php:analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests",
"vendor/bin/phpstan analyse --ansi --no-progress -l 1 src tests"
],
"php:tests": [
"vendor/bin/phpspec run --ansi",
"vendor/bin/phpunit --colors=always"
],
"php:fix-style": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests --fix"
]
}
}