-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.76 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": "cpsit/typo3-project-template",
"description": "TYPO3 CMS project template",
"license": "GPL-3.0-or-later",
"type": "project-builder-template",
"authors": [
{
"name": "Elias Häußler",
"email": "e.haeussler@familie-redlich.de",
"homepage": "https://www.familie-redlich.de",
"role": "Maintainer"
}
],
"require": {
"cpsit/project-builder": "^1.6 || ^2.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"ergebnis/composer-normalize": "^2.28",
"friendsoftwig/twigcs": "^6.0"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "ec --fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:twig"
],
"lint:composer": "@composer normalize --dry-run",
"lint:editorconfig": "ec",
"lint:twig": "twigcs templates",
"validate-schema": "docker run --rm -v \"$(pwd)\":/code swaggest/json-cli json-cli validate-schema config.yaml vendor/cpsit/project-builder/resources/config.schema.json"
},
"scripts-descriptions": {
"fix": "Fix all code quality issues reported by the registered linters",
"fix:composer": "Fix all issues in `composer.json`",
"fix:editorconfig": "Fix all styling issues violating the `.editorconfig` rules",
"lint": "Run all registered linters to detect code quality issues",
"lint:composer": "Lint `composer.json` to detect unnormalized styles",
"lint:editorconfig": "Lint all project files to detect violations of the `.editorconfig` rules",
"lint:twig": "Lint all Twig templates to detect coding style violations",
"validate-schema": "Validate the `config.yaml` file for possible schema violations"
}
}