-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
84 lines (84 loc) · 2.34 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
{
"name" : "digedag/t3sportstats",
"description" : "Statistics extension for T3sports.",
"type" : "typo3-cms-extension",
"keywords" : [
"TYPO3 CMS",
"mvc",
"sports"
],
"homepage" : "http://www.system25.de/",
"license" : "GPL-2.0-or-later",
"authors" : [{
"name" : "René Nitzsche",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"source" : "https://github.com/digedag/t3sportstats",
"issues" : "https://github.com/digedag/t3sportstats/issues"
},
"replace" : {
"typo3-ter/t3sportstats" : "self.version"
},
"require" : {
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4 || ^11.5 || ^12.1",
"digedag/rn-base": "^1.16.0",
"digedag/cfc-league": "^1.10.0",
"digedag/cfc-league-fe": "^1.10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1.0",
"mikey179/vfsstream": "^1.4 || ^1.6",
"nimut/testing-framework": "^4.0 || ^5.0 || ^6.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.0"
},
"autoload" : {
"psr-4": {
"System25\\T3sports\\" : "Classes"
},
"classmap" : [
"Deprecations/"
]
},
"autoload-dev": {
"psr-4": {
"System25\\T3sports\\Tests\\" : "Tests/Unit/PHP",
"TYPO3\\CMS\\Core\\Tests\\":".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
},
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test:phplint": "find *.php Classes Configuration Deprecations Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:phpcompat": ".Build/bin/phpcs --ignore=.Build/*,Resources/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion ",
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/t3sportstats ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/t3sportstats"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "t3sportstats",
"web-dir": ".Build/Web"
},
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}