forked from Sylius/ShopApiPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 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
{
"name": "sylius/shop-api-plugin",
"type": "sylius-plugin",
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^7.3",
"sylius/sylius": "^1.8",
"lexik/jwt-authentication-bundle": "^2.5",
"symfony/messenger": "^4.4|5.2",
"doctrine/doctrine-bundle": "^2.0",
"friendsofsymfony/oauth-server-bundle": ">2.0.0-alpha.0 ^2.0@dev"
},
"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": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12",
"phpunit/phpunit": "^9.0",
"sylius-labs/coding-standard": "^3.0",
"symfony/debug-bundle": "^4.4|5.2",
"symfony/dotenv": "^4.4|5.2",
"symfony/web-profiler-bundle": "^4.4|5.2",
"symfony/web-server-bundle": "^4.4",
"mamazu/documentation-validator": "^1.0.1"
},
"autoload": {
"psr-4": {
"Sylius\\ShopApiPlugin\\": "src/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"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"
],
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests/Controller tests/DataFixtures tests/Request --fix"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\ShopApiPlugin\\": "tests/"
}
},
"suggest": {
"nelmio/cors-bundle": "allows you to send Cross-Origin Ajax API Request"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}