This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
80 lines (80 loc) · 2.3 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
{
"name": "t3g/svg-sanitizer",
"type": "typo3-cms-extension",
"description": "Sanitize SVG files on upload",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 GmbH",
"homepage": "https://typo3.com/",
"role": "Developer"
},
{
"name": "Frank Nägler",
"homepage": "https://naegler.hamburg/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"enshrined/svg-sanitize": "^0.14",
"typo3/cms-core": "^8.7.13 || ^9.2 || ^10.1 || 11.*@dev",
"typo3/cms-extbase": "^8.7.13 || ^9.2 || ^10.1 || 11.*@dev",
"typo3/cms-install": "^8.7.13 || ^9.2 || ^10.1 || 11.*@dev"
},
"replace": {
"t3g/svg_sanitizer": "self.version"
},
"require-dev": {
"bk2k/extension-helper": "^1.0",
"friendsofphp/php-cs-fixer": "^2.14",
"overtrue/phplint": "^1.1",
"roave/security-advisories": "dev-latest",
"typo3/testing-framework": "^2 || ^4.9 || ^5.0 || ^6.2"
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"typo3/cms": {
"extension-key": "svg_sanitizer",
"web-dir": ".build"
}
},
"autoload": {
"psr-4": {
"T3G\\SvgSanitizer\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\SvgSanitizer\\Tests\\": "Tests/"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/svg_sanitizer ] || ln -snvf ../../../../. .build/web/typo3conf/ext/svg_sanitizer"
],
"t3g:cgl": [
"php-cs-fixer fix --config Build/.php_cs.dist"
],
"t3g:test": [
"@t3g:test:php:lint",
"@t3g:test:php:functional"
],
"t3g:test:php:functional": [
"phpunit -c Build/FunctionalTest.xml --testsuite \"Functional Test Suite\""
],
"t3g:test:php:lint": [
"phplint -c Build/.phplint.yml"
]
}
}