forked from stfalcon-studio/ApiBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "stfalcon-studio/api-bundle",
"description": "Base classes and helper services to build API application via Symfony.",
"keywords": ["bundle", "symfony", "api"],
"homepage": "https://github.com/stfalcon-studio/ApiBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Community",
"homepage": "https://github.com/stfalcon-studio/ApiBundle/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"issues": "https://github.com/stfalcon-studio/ApiBundle/issues"
},
"require": {
"php": ">=8.2",
"egulias/email-validator": "^4.0",
"fresh/datetime": "^3.0",
"ircmaxell/password-compat": "^v1.0.4",
"justinrainbow/json-schema": "^5.2.12",
"predis/predis": "^2.0",
"sentry/sentry-symfony": "^4.13.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/flex": "^2.4",
"symfony/http-kernel": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/serializer": "^7.0",
"symfony/translation": "^7.0",
"symfony/validator": "^7.0"
},
"require-dev": {
"doctrine/common": "^3.4",
"doctrine/mongodb-odm": "^2.6",
"doctrine/orm": "^2.18",
"escapestudios/symfony2-coding-standard": "^3.13",
"gesdinet/jwt-refresh-token-bundle": "^v1.1.1",
"jetbrains/phpstorm-attributes": "^1.0",
"lexik/jwt-authentication-bundle": "^v2.20",
"phpstan/phpstan": "^1.10.58",
"phpstan/phpstan-deprecation-rules": "^1.1.1",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^11.0",
"slam/phpstan-extensions": "^6.0",
"symfony/asset": "^7.0",
"symfony/console": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/form": "^7.0",
"symfony/http-client": "^7.0",
"symfony/messenger": "^7.0",
"symfony/routing": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/security-core": "^7.0",
"symfony/security-csrf": "^7.0",
"symfony/workflow": "^7.0",
"twig/twig": "^v3.8"
},
"autoload": {
"psr-4": {
"StfalconStudio\\ApiBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"StfalconStudio\\ApiBundle\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true
}
}
}