-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.85 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.85 KB
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
{
"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.5",
"elasticsearch/elasticsearch": "^7.6.1",
"hybridauth/hybridauth": "^3.13.0",
"lcobucci/jwt": "^5.4",
"overblog/graphql-bundle": "^1.9",
"overblog/graphiql-bundle": "^1.0",
"overblog/dataloader-bundle": "^1.1",
"shopsys/form-types-bundle": "19.0.x-dev",
"shopsys/framework": "19.0.x-dev",
"shopsys/migrations": "19.0.x-dev",
"shopsys/plugin-interface": "19.0.x-dev",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/clock": "^7.4",
"symfony/security-core": "^7.4",
"symfony/security-http": "^7.4",
"symfony/routing": "^7.4",
"webonyx/graphql-php": "^15.29.1"
},
"require-dev": {
"phpstan/phpstan": "^2.1.16",
"phpstan/phpstan-doctrine": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.6",
"phpstan/phpstan-symfony": "^2.0.6",
"phpunit/phpunit": "^12.5",
"shopsys/coding-standards": "19.0.x-dev"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}