-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
101 lines (101 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "blueways/bw-icons",
"type": "typo3-cms-extension",
"description": "TYPO3-Extension that adds a icon form element",
"keywords": [
"TYPO3",
"extension",
"icons"
],
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public",
"extension-key": "bw_icons"
}
},
"config": {
"sort-packages": true,
"vendor-dir": "vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"helhum/typo3-console-plugin": true
}
},
"authors": [
{
"name": "Maik Schneider",
"role": "Developer",
"email": "[email protected]"
}
],
"license": [
"GPL-2.0-or-later"
],
"require-dev": {
"bk2k/bootstrap-package": "dev-master",
"clue/phar-composer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.12",
"phpmd/phpmd": "^2.13.0",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/cms-backend": "^12.0",
"typo3/cms-belog": "^12.0",
"typo3/cms-beuser": "^12.0",
"typo3/cms-dashboard": "^12.0",
"typo3/cms-extbase": "^12.0",
"typo3/cms-extensionmanager": "^12.0",
"typo3/cms-felogin": "^12.0",
"typo3/cms-filelist": "^12.0",
"typo3/cms-fluid": "^12.0",
"typo3/cms-fluid-styled-content": "^12.0",
"typo3/cms-form": "^12.0",
"typo3/cms-frontend": "^12.0",
"typo3/cms-impexp": "^12.0",
"typo3/cms-indexed-search": "^12.0",
"typo3/cms-info": "^12.0",
"typo3/cms-install": "^12.0",
"typo3/cms-linkvalidator": "^12.0",
"typo3/cms-lowlevel": "^12.0",
"typo3/cms-opendocs": "^12.0",
"typo3/cms-redirects": "^12.0",
"typo3/cms-reports": "^12.0",
"typo3/cms-rte-ckeditor": "^12.0",
"typo3/cms-scheduler": "^12.0",
"typo3/cms-seo": "^12.0",
"typo3/cms-setup": "^12.0",
"typo3/cms-tstemplate": "^12.0",
"typo3/testing-framework": "^8.0"
},
"autoload": {
"psr-4": {
"Blueways\\BwIcons\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Blueways\\BwIconsTest\\": "Tests/"
}
},
"scripts": {
"create-libs": [
"mkdir -p Libraries",
"vendor/bin/phar-composer build 'sabberworm/php-css-parser=8.4.0' Libraries/sabberworm-php-css-parser.phar",
"vendor/bin/phar-composer build 'phenx/php-font-lib=0.5.4' Libraries/phenx-php-font-lib.phar",
"chmod -x Libraries/*"
],
"php:fixer": "php vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "php vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"php:md": "php vendor/bin/phpmd Classes ansi phpmd.xml --generate-baseline"
},
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"phenx/php-font-lib": "0.5.4 || 0.5.6",
"sabberworm/php-css-parser": "8.4.0",
"typo3/cms-core": "^12.4"
}
}