forked from IIcuxoIIaTiK/ShopApiPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (49 loc) · 1.62 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
{
"name": "sylius/shop-api-plugin",
"type": "sylius-plugin",
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^7.2",
"sylius/sylius": "^1.4",
"lexik/jwt-authentication-bundle": "^2.5",
"symfony/messenger": "~4.3.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^4.0",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/phpspec": "^5.0",
"phpstan/phpstan-shim": "^0.11",
"phpstan/phpstan-webmozart-assert": "^0.11",
"phpunit/phpunit": "^8.0",
"sensiolabs/security-checker": "^5.0",
"sylius-labs/coding-standard": "^3.0",
"symfony/debug-bundle": "^4.1",
"symfony/dotenv": "^4.1",
"symfony/web-profiler-bundle": "^4.1",
"symfony/web-server-bundle": "^4.1"
},
"autoload": {
"psr-4": {
"Sylius\\ShopApiPlugin\\": "src/"
}
},
"scripts": {
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests/Controller tests/DataFixtures tests/Request --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests/Controller tests/DataFixtures tests/Request",
"vendor/bin/phpstan analyse -c phpstan.neon --no-progress src"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\ShopApiPlugin\\": "tests/"
}
},
"suggest": {
"nelmio/cors-bundle": "allows you to send Cross-Origin Ajax API Request"
}
}