-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.35 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
{
"name": "derrabus/twig-awesome-bundle",
"type": "symfony-bundle",
"description": "Inline FontAwesome icons into Twig templates.",
"license": "MIT",
"authors": [
{
"name": "Alexander M. Turek",
"email": "me@derrabus.de"
}
],
"require": {
"php": ">= 8.2",
"composer-runtime-api": "^2.1",
"fortawesome/font-awesome": "^6.6",
"symfony/dependency-injection": "^6.4 || ^7",
"symfony/http-kernel": "^6.4 || ^7",
"twig/twig": "^3.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^11.1.3",
"symfony/filesystem": "^6.4 || ^7",
"symfony/framework-bundle": "^6.4 || ^7",
"symfony/twig-bundle": "^6.4 || ^7"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Rabus\\TwigAwesomeBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rabus\\TwigAwesomeBundle\\": "tests"
}
}
}