-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
72 lines (72 loc) · 2.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "friendsoftypo3/fontawesome-provider",
"description": "Integrates legacy FontawesomeIconProvider and FontAwesome 4.7",
"license": "GPL-2.0+",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Andreas Fernandez",
"email": "[email protected]"
}
],
"require": {
"ext-simplexml": "*",
"typo3/cms-backend": "^11.5 || ^12.0 || 12.*.*@dev || ^13",
"typo3/cms-core": "^11.5 || ^12.0 || 12.*.*@dev || ^13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\FontawesomeProvider\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"public-dir": ".build/public",
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"Package": {
"serviceProvider": "FriendsOfTYPO3\\FontawesomeProvider\\ServiceProvider"
},
"app-dir": ".build",
"extension-key": "fontawesome_provider",
"web-dir": ".build/public"
}
},
"scripts": {
"cgl": [
"php -r \"is_dir('.cache') || mkdir('.cache');\"",
"php-cs-fixer fix --config=Build/php-cs-fixer.php -v --dry-run"
],
"cgl:fix": [
"php -r \"is_dir('.cache') || mkdir('.cache');\"",
"php-cs-fixer fix --config=Build/php-cs-fixer.php"
],
"phpstan": [
"phpstan analyze --configuration Build/phpstan.neon"
],
"tests": [
"phpunit -c Build/phpunit.xml"
]
}
}