This repository has been archived by the owner on May 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
127 lines (127 loc) · 3.83 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ioni14/starcitizen-fleet-manager",
"description": "Fleet Manager is a web application to manage Star Citizen players' fleets.",
"type": "project",
"license": "AGPL",
"require": {
"php": ">=8.0",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zend-opcache": "*",
"auth0/jwt-auth-bundle": "^4.0",
"doctrine/annotations": "^1.12",
"doctrine/common": "^3.0",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^2.2",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^2.1",
"moneyphp/money": "^3.3",
"nelmio/api-doc-bundle": "^4.2",
"nyholm/psr7": "^1.4",
"paypal/paypal-checkout-sdk": "^1.0",
"paypal/rest-api-sdk-php": "^1.14",
"php-http/client-common": "^2.1",
"php-http/httplug": "^2.1",
"php-http/httplug-bundle": "^1.20",
"sensio/framework-extra-bundle": "^5.5",
"sentry/sentry-symfony": "^4.0.3",
"symfony/amazon-mailer": "*",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/discord-notifier": "5.2.*",
"symfony/doctrine-bridge": "*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.12",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/http-client": "*",
"symfony/mailer": "*",
"symfony/messenger": "*",
"symfony/monolog-bundle": "^3.6",
"symfony/notifier": "5.2.*",
"symfony/property-access": "*",
"symfony/property-info": "*",
"symfony/security-bundle": "*",
"symfony/serializer": "*",
"symfony/string": "*",
"symfony/translation": "*",
"symfony/twig-bundle": "5.2.*",
"symfony/uid": "*",
"symfony/validator": "*",
"symfony/web-link": "*",
"symfony/yaml": "*",
"twig/cssinliner-extra": "^3.3",
"twig/extra-bundle": "^3.3",
"twig/inky-extra": "^3.3",
"twig/twig": "^3.3",
"webmozart/assert": "^1.10"
},
"require-dev": {
"doctrine/data-fixtures": "^1.4",
"friendsofphp/php-cs-fixer": "^2.15",
"hautelook/alice-bundle": "^2.3",
"symfony/browser-kit": "*",
"symfony/debug-bundle": "*",
"symfony/panther": "v0.9.0",
"symfony/phpunit-bridge": "*",
"symfony/stopwatch": "*",
"symfony/var-dumper": "*",
"symfony/web-profiler-bundle": "*"
},
"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-intl-icu": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php74": "*",
"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.2.*"
}
}
}