-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "netzmacht/contao-font-awesome-inserttag",
"description": "Provides an insert tag for using font awesome icons.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"icons",
"font awesome",
"icon font"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.9 || ^5.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4.13 || ^5.1.5 || ^6.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpcq/coding-standard": "^2.1",
"phpcq/runner-bootstrap": "^1.0@dev",
"phpspec/phpspec": "^5.0 || ^6.0 || ^7.0"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"suggest": {
"components/font-awesome": "Font awesome components package",
"fortawesome/font-awesome": "Official font awesome package"
},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\FontAwesomeInsertTag\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"contao/manager-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.3.x-dev",
"dev-master": "2.2.x-dev"
},
"contao-manager-plugin": "Netzmacht\\Contao\\FontAwesomeInsertTag\\ContaoManager\\Plugin"
}
}