-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.73 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": "shopsys/frontend-api",
"type": "library",
"description": "Shopsys Platform Frontend API support",
"keywords": ["api", "Shopsys Platform", "GraphQL", "SSFW"],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\FrontendApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\FrontendApiBundle\\": "tests/"
}
},
"require": {
"php": "^8.3",
"elasticsearch/elasticsearch": "^7.6.1",
"hybridauth/hybridauth": "^3.11",
"lcobucci/clock": "^3.3",
"lcobucci/jwt": "^5.4",
"overblog/graphql-bundle": "1.3.2",
"overblog/graphiql-bundle": "^1.0",
"overblog/dataloader-bundle": "^1.1",
"shopsys/form-types-bundle": "17.0.x-dev",
"shopsys/framework": "17.0.x-dev",
"shopsys/migrations": "17.0.x-dev",
"shopsys/plugin-interface": "17.0.x-dev",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/routing": "^6.4",
"webonyx/graphql-php": "^15.6"
},
"require-dev": {
"phpstan/phpstan": "^1.11.7",
"phpstan/phpstan-doctrine": "^1.4.8.",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-symfony": "^1.4.6",
"phpunit/phpunit": "^11.2.1",
"shopsys/coding-standards": "17.0.x-dev"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}