-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.72 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.72 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
56
57
58
59
{
"name": "uuf6429/php-cs-fixer-blockstring",
"description": "A PHP-CS-Fixer extension for formatting the contents of PHP heredoc and nowdoc string blocks.",
"keywords": [
"php",
"php-cs-fixer",
"php-cs-fixer-extension",
"static-analysis",
"code-formatting",
"code-style",
"block-string",
"heredoc",
"nowdoc"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Sciberras",
"email": "christian@sciberras.me"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/process": "^5 || ^6 || ^7 || ^8",
"friendsofphp/php-cs-fixer": "^3",
"symfony/deprecation-contracts": "^2 || ^3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.7",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"uuf6429\\PhpCsFixerBlockstring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"uuf6429\\PhpCsFixerBlockstringTests\\": "tests/"
}
},
"scripts": {
"test": "phpunit -dzend_extension=php_xdebug -dxdebug.mode=coverage --colors=always ./tests/",
"lint": "phpstan analyse --verbose --no-progress --ansi",
"readme:render": "\\uuf6429\\PhpCsFixerBlockstring\\Readmerator\\Readmerator::render",
"readme:update": "composer readme:render > README.md"
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}