-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.61 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "msgphp/symfony-demo-app",
"type": "project",
"license": "MIT",
"description": "A Symfony demo application with basic user management, a REST/GraphQL API and OAuth/JWT authentication.",
"require": {
"php": "^7.3",
"api-platform/api-pack": "^1.2",
"elasticsearch/elasticsearch": "^7.6",
"hwi/oauth-bundle": "^1.1@dev",
"lexik/jwt-authentication-bundle": "^2.6",
"msgphp/eav-bundle": "^0.15",
"msgphp/user-bundle": "^0.15",
"msgphp/user-eav": "^0.15",
"pascaldevink/shortuuid": "^2.2",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug-bundle": "^1.17",
"ramsey/uuid": "^3.9",
"ramsey/uuid-doctrine": "^1.6",
"sensio/framework-extra-bundle": "^5.5",
"symfony/console": "5.0.*",
"symfony/dependency-injection": "5.0.*",
"symfony/dotenv": "5.0.*",
"symfony/flex": "^1.6",
"symfony/form": "5.0.*",
"symfony/framework-bundle": "5.0.*",
"symfony/mailer": "5.0.*",
"symfony/messenger": "5.0.*",
"symfony/monolog-bundle": "^3.5",
"symfony/orm-pack": "^1.0",
"symfony/security-bundle": "5.0.*",
"symfony/translation": "5.0.*",
"symfony/validator": "5.0.*",
"webonyx/graphql-php": "^0.13"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "^1.14",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.0.*"
}
}
}