-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.06 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
{
"name": "endroid/embed",
"description": "Endroid Embed",
"keywords": ["endroid", "embed"],
"homepage": "https://github.com/endroid/embed",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"endroid/installer": "^1.3.1",
"twig/twig": "^3.0"
},
"require-dev": {
"endroid/quality": "dev-main"
},
"suggest": {
"roave/security-advisories": "Avoids installation of package versions with vulnerabilities"
},
"autoload": {
"psr-4": {
"Endroid\\Embed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\Embed\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true
}
}
}