-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
127 lines (127 loc) · 3.83 KB
/
composer.json
File metadata and controls
127 lines (127 loc) · 3.83 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
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": "oat-sa/simple-roster",
"type": "project",
"description": "REST back-end service that handles authentication and eligibilities",
"license": "GPL-2.0",
"require": {
"php": "^8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"aws/aws-sdk-php": "^3.81",
"blackfire/php-sdk": "^1.23",
"doctrine/dbal": "^3.7",
"doctrine/doctrine-bundle": "^2.14",
"doctrine/orm": "^2.20",
"lcobucci/jwt": "^4.2.1",
"league/csv": "^9.0",
"league/flysystem-aws-s3-v3": "^3",
"league/flysystem-bundle": "^3.0",
"nelmio/cors-bundle": "^2.0",
"oat-sa/bundle-lti1p3": "^8.2",
"oat-sa/lib-lti1p3-basic-outcome": "^5.0",
"oneup/flysystem-bundle": "^4.4",
"ramsey/uuid": "^4.7",
"symfony/amazon-sqs-messenger": "^7.4",
"symfony/browser-kit": "^7.4",
"symfony/console": "^7.4",
"symfony/dotenv": "^7.4",
"symfony/flex": "^2.0",
"symfony/framework-bundle": "^7.4",
"symfony/messenger": "^7.4",
"symfony/monolog-bundle": "^3.0",
"symfony/process": "^7.4.5",
"symfony/security-bundle": "^7.4",
"symfony/serializer": "^7.4",
"symfony/twig-bundle": "^7.4",
"symfony/validator": "^7.4",
"symfony/yaml": "^7.4"
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/theofidry/AliceBundle"
}
],
"require-dev": {
"ext-intl": "*",
"doctrine/doctrine-fixtures-bundle": "^3.1",
"ergebnis/composer-normalize": "2.9",
"hautelook/alice-bundle": "^2.3",
"infection/infection": "^0.31",
"league/flysystem": "^3.0",
"league/flysystem-memory": "^3",
"phpmd/phpmd": "^2.10",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.8.0",
"phpstan/phpstan-doctrine": "^1.3.12",
"phpstan/phpstan-phpunit": "^1.1.3",
"phpstan/phpstan-symfony": "^1.2.6",
"phpunit/phpunit": "^11",
"psalm/plugin-phpunit": "^0.19.5",
"psalm/plugin-symfony": "^5",
"roave/security-advisories": "dev-latest",
"sebastian/comparator": "^6.3",
"squizlabs/php_codesniffer": "^3.5",
"symfony/debug-bundle": "^7.4",
"symfony/phpunit-bridge": "^7.4",
"symfony/stopwatch": "^7.4",
"symfony/var-dumper": "^7.4",
"symfony/web-profiler-bundle": "^7.4",
"vimeo/psalm": "^6.10"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"symfony/flex": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^7.4"
}
},
"autoload": {
"psr-4": {
"OAT\\SimpleRoster\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAT\\SimpleRoster\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}