We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b433b commit 9d788b9Copy full SHA for 9d788b9
1 file changed
composer.json
@@ -29,6 +29,19 @@
29
}
30
],
31
32
+ "scripts": {
33
+ "phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
34
+ "phpstan": "vendor/bin/phpstan analyse --level 6 src --memory-limit 256M",
35
+ "phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
36
+ "phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
37
+ "test": [
38
+ "@phpunit",
39
+ "@phpstan",
40
+ "@phpcs",
41
+ "@phpmd"
42
+ ]
43
+ },
44
+
45
"autoload": {
46
"psr-4": {
47
"Gt\\TypeSafeGetter\\": "./src"
0 commit comments