-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.23 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
{
"name": "netlogix/nxsimplecdn",
"description": "Simple cdn extension for TYPO3",
"license": "MIT",
"type": "typo3-cms-extension",
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"ext-sqlite3": "*",
"ssch/typo3-rector": "^1.5",
"typo3/testing-framework": "^8.0",
"phpunit/phpcov": "^9.0",
"netlogix/coding-guidelines-php": "^1.0"
},
"autoload": {
"psr-4": {
"Netlogix\\Nxsimplecdn\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Netlogix\\Nxsimplecdn\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "nxsimplecdn",
"web-dir": ".Build/public"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"rector": "rector process --dry-run",
"rector-fix": "rector process",
"lint": "ecs check",
"lint-fix": "ecs check --fix",
"test-unit": "phpunit -c phpunit.xml",
"test-functional": "phpunit -c phpunit_functional.xml",
"post-autoload-dump": [
"@prepare-extension-test-structure"
],
"prepare-extension-test-structure": [
"Nimut\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
}
}