-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
75 lines (75 loc) · 1.67 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
{
"name": "jweiland/replacer",
"description": "Replaces string patterns from the page. You can use it to replace URLs for Content Delivery Network (CDN).",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"TYPO3 CMS",
"jw",
"replacer"
],
"authors": [
{
"name": "Hoja Mustaffa Abdul Latheef",
"email": "projects@jweiland.net",
"role": "Developer"
},
{
"name": "Stefan Froemken",
"email": "projects@jweiland.net",
"role": "Developer"
}
],
"homepage": "https://jweiland.net",
"support": {
"email": "projects@jweiland.net",
"issues": "https://github.com/jweiland-net/replacer/issues",
"source": "https://github.com/jweiland-net/replacer"
},
"require": {
"typo3/cms-core": "^11.5.37 || ^12.4.15"
},
"require-dev": {
"ergebnis/composer-normalize": "~2.42.0",
"friendsofphp/php-cs-fixer": "^3.14",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"typo3/coding-standards": "^0.6",
"typo3/testing-framework": "^7.0.2"
},
"replace": {
"phorax/ja-replacer": "*",
"typo3-ter/ja-replacer": "*",
"typo3-ter/replacer": "self.version"
},
"conflict": {
"sgalinski/scriptmerger": "<7.0.0"
},
"autoload": {
"psr-4": {
"JWeiland\\Replacer\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JWeiland\\Replacer\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "replacer",
"web-dir": ".Build/Web"
}
}
}