-
Notifications
You must be signed in to change notification settings - Fork 89
/
composer.json
62 lines (62 loc) · 1.86 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
{
"name": "sylius/shop-api-plugin",
"type": "sylius-plugin",
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^8.0",
"sylius/sylius": "~1.11.10 || ~1.12.0",
"lexik/jwt-authentication-bundle": "^2.5",
"symfony/messenger": "^5.4 || ^6.0",
"doctrine/doctrine-bundle": "^2.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^5.1",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.0",
"sylius-labs/coding-standard": "^4.0",
"symfony/debug-bundle": "^5.4 || ^6.0",
"symfony/dotenv": "^5.4 || ^6.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0",
"symfony/webpack-encore-bundle": "^1.15"
},
"autoload": {
"psr-4": {
"Sylius\\ShopApiPlugin\\": "src/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check --ansi --no-progress-bar",
"vendor/bin/phpstan analyse -c phpstan.neon --no-progress src"
],
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar --fix"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\ShopApiPlugin\\": "tests/"
}
},
"suggest": {
"nelmio/cors-bundle": "allows you to send Cross-Origin Ajax API Request"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": false,
"symfony/thanks": false
}
},
"extra": {
"branch-alias": {
"dev-1.7": "1.7-dev"
}
}
}