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
48 lines (48 loc) · 1.34 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "endroid/tile-bundle",
"description": "Endroid Tile Bundle",
"keywords": ["endroid", "delft", "blue", "tile", "symfony", "bundle", "php"],
"homepage": "https://github.com/endroid/tile-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "info@endroid.nl"
}
],
"require": {
"php": "^7.3||^8.0",
"endroid/installer": "^1.3.2",
"endroid/tile": "^2.0.1",
"symfony/config": "^3.4||^4.4||^5.0",
"symfony/dependency-injection": "^3.4||^4.4||^5.0",
"symfony/http-foundation": "^3.4||^4.4||^5.0",
"symfony/http-kernel": "^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\\TileBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\TileBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}