This repository was archived by the owner on Dec 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.16 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/import",
"description": "Endroid Import",
"keywords": ["endroid", "import", "php"],
"homepage": "https://github.com/endroid/import",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "info@endroid.nl"
}
],
"require": {
"php": ">=7.2",
"ext-gd": "*",
"endroid/flusher": "^2.0",
"endroid/property-access": "^2.0",
"halilim/xml-iterator": "^1.0",
"league/flysystem": "^1.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\\Import\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\Import\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"config": {
"sort-packages": true
}
}