-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.68 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/nxstyleguide",
"description": "netlogix styleguide",
"license": "MIT",
"type": "typo3-cms-extension",
"require": {
"ext-fileinfo": "*",
"typo3/cms-core": "^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\\Nxstyleguide\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Netlogix\\Nxstyleguide\\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": "nxstyleguide",
"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"
}
}