-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.53 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
{
"name": "jweiland/yellowpages2",
"type": "typo3-cms-extension",
"description": "With this extension you can build your own industry directory",
"license": "GPL-2.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "yellowpages", "industry", "directory"],
"homepage": "https://jweiland.net",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Hoja Mustaffa Abdul Latheef",
"email": "[email protected]",
"role": "Senior Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jweiland-net/yellowpages2/issues",
"source": "https://github.com/jweiland-net/yellowpages2"
},
"require": {
"typo3/cms-core": "^12.4.8",
"jweiland/glossary2": ">=6.0.0"
},
"require-dev": {
"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"
},
"autoload": {
"psr-4": {
"JWeiland\\Yellowpages2\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JWeiland\\Yellowpages2\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/yellowpages2": "self.version"
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "yellowpages2",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}