-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
82 lines (82 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
{
"name": "typo3-contentblocks/composer-plugin",
"type": "composer-plugin",
"description": "This composer plugin manages registration of Content Blocks for the Content Blocks API",
"keywords": [
"typo3",
"content-blocks"
],
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Structured Content Initiative"
}
],
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
"symfony/filesystem": "^4.4 || ^5.0"
},
"require-dev": {
"composer/composer": "^2.0",
"ergebnis/composer-normalize": "2.7.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"config": {
"sort-packages": true
},
"extra": {
"class": "Typo3Contentblocks\\ComposerPlugin\\Plugin"
},
"autoload": {
"psr-4": {
"Typo3Contentblocks\\ComposerPlugin\\": "src/"
}
},
"scripts": {
"fix-staged:cgl:php-cs": [
"php-cs-fixer --config=.php_cs.dist fix -v --using-cache=no `git diff --cached --name-only '*.php'`"
],
"fix:cgl": [
"@fix:cgl:php-cs",
"@fix:cgl:composer"
],
"fix:cgl:composer": [
"composer normalize --no-update-lock"
],
"fix:cgl:php-cs": [
"php-cs-fixer --config=.php_cs.dist fix --using-cache=no"
],
"test": [
"@test:cgl"
],
"test-staged": [
"@test-staged:cgl"
],
"test-staged:cgl": [
"@test-staged:cgl:php-cs",
"@test:cgl:composer"
],
"test-staged:cgl:php-cs": [
"php-cs-fixer --config=.php_cs.dist fix -v --using-cache=no --dry-run `git diff --cached --name-only '*.php'`"
],
"test:cgl": [
"@test:cgl:php-cs",
"@test:cgl:composer"
],
"test:cgl:composer": [
"composer normalize --no-update-lock --dry-run"
],
"test:cgl:php-cs": [
"php-cs-fixer --config=.php_cs.dist fix -v --using-cache=no --dry-run"
],
"tests-for:ci": [
"@test"
]
},
"support": {
"issues": "https://github.com/TYPO3-Initiatives/content-blocks-composer-plugin/issues",
"source": "https://github.com/TYPO3-Initiatives/content-blocks-composer-plugin"
}
}