This repository was archived by the owner on Mar 24, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.26 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "endroid/guide-bundle",
"description": "Endroid Guide Bundle",
"keywords": ["endroid", "guide", "symfony", "bundle", "php"],
"homepage": "https://github.com/endroid/guide-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "info@endroid.nl"
}
],
"require": {
"php": "^7.3||^8.0",
"endroid/guide": "^2.0.1",
"endroid/installer": "^1.2.2",
"symfony/asset": "^3.4||^4.4||^5.0",
"symfony/twig-bundle": "^3.4||^4.4||^5.0",
"symfony/web-link": "^3.4||^4.4||^5.0"
},
"require-dev": {
"endroid/quality": "dev-master"
},
"suggest": {
"roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
"symfony/security-checker": "Checks your composer.lock for vulnerabilities"
},
"autoload": {
"psr-4": {
"Endroid\\GuideBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\GuideBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"config": {
"sort-packages": true
}
}