Skip to content

Commit b2b8696

Browse files
authored
Merge pull request #38 from articstudio/develop
Release
2 parents fcd477f + 43c7cc7 commit b2b8696

32 files changed

+1004
-1928
lines changed

.phpcs.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,9 @@
2626
<rule ref="Internal.Tokenizer.Exception">
2727
<type>error</type>
2828
</rule>
29-
30-
<!-- PSR -->
31-
<!-- <rule ref="PSR1"/>
32-
<rule ref="PSR2"/>
33-
<rule ref="PSR12"/> -->
3429

3530
<!-- Style -->
31+
3632
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
3733
<rule ref="Generic.Files.ByteOrderMark"/>
3834
<rule ref="Generic.Files.LineEndings"/>

composer.json

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "articstudio/php-bin",
33
"type": "library",
4-
"license": "MIT",
54
"description": "",
65
"keywords": [
76
"php",
87
"bin"
98
],
109
"homepage": "https://github.com/articstudio/php-bin",
10+
"license": "MIT",
1111
"authors": [
1212
{
1313
"name": "Artic studio",
@@ -16,16 +16,18 @@
1616
],
1717
"require": {
1818
"php": ">=7.3",
19-
"jakub-onderka/php-console-highlighter": "^0.4.0",
20-
"jakub-onderka/php-parallel-lint": "^1.0",
21-
"localheinz/composer-normalize": "^1.0",
22-
"php-school/cli-menu": "^3.0",
23-
"phpmetrics/phpmetrics": "^2.3",
24-
"phpunit/phpunit": "~8.0",
19+
"ergebnis/composer-normalize": "^2.2",
20+
"ergebnis/phpstan-rules": "^0.14.2",
21+
"nunomaduro/phpinsights": "^1.11",
22+
"php-school/cli-menu": "^3.2",
23+
"phpmetrics/phpmetrics": "^2.5",
24+
"phpstan/phpstan": "^0.12.4",
25+
"phpstan/phpstan-strict-rules": "^0.12.1",
26+
"phpunit/phpunit": "^8.0",
2527
"squizlabs/php_codesniffer": "^3.5",
26-
"symfony/console": "^4.2",
27-
"symfony/process": "^4.2",
28-
"nunomaduro/phpinsights": "^1.0"
28+
"symfony/console": "^4.4",
29+
"symfony/process": "^4.4",
30+
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
2931
},
3032
"replace": {},
3133
"require-dev": {},
@@ -63,14 +65,14 @@
6365
"bin/phpbin"
6466
],
6567
"scripts": {
66-
"lint": "php ./vendor/bin/parallel-lint . --exclude vendor --exclude build --colors",
67-
"style": "php ./vendor/bin/phpcs --colors ./",
6868
"fix-style": "php ./vendor/bin/phpcbf --colors ./",
69+
"insights": "php ./vendor/bin/phpinsights",
70+
"lint": "php ./vendor/bin/phpstan analyse --ansi",
6971
"metrics": "php ./vendor/bin/phpmetrics --report-html=\"./build/metrics\" ./",
70-
"insights": "php ./vendor/bin/phpinsights"
72+
"style": "php ./vendor/bin/phpcs --colors ./"
7173
},
7274
"support": {
7375
"issues": "https://github.com/articstudio/php-bin/issues",
7476
"source": "https://github.com/articstudio/php-bin"
7577
}
76-
}
78+
}

0 commit comments

Comments
 (0)