-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.69 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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/nxvarnish",
"description": "Adds varnish integration to TYPO3",
"license": "MIT",
"type": "typo3-cms-extension",
"require": {
"typo3/cms-core": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"require-dev": {
"ext-sqlite3": "*",
"ergebnis/composer-normalize": "^2.45",
"phpunit/phpcov": "^10.0",
"ssch/typo3-rector": "^3.0",
"typo3/testing-framework": "^9.0"
},
"autoload": {
"psr-4": {
"Netlogix\\Nxvarnish\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Netlogix\\Nxvarnish\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "nxvarnish",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-autoload-dump": [
"@prepare-extension-test-structure"
],
"composer:normalize": "@composer normalize --no-check-lock --dry-run",
"composer:normalize:fix": "@composer normalize --no-check-lock",
"composer:psr-verify": "@composer dumpautoload --optimize --strict-psr --no-plugins",
"php:lint": "find src -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
"rector": "rector process --dry-run",
"rector:fix": "rector process",
"test:functional": "phpunit -c phpunit_functional.xml",
"test:unit": "phpunit -c phpunit.xml"
}
}