-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.12 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "articstudio/php-bin",
"type": "library",
"description": "",
"keywords": [
"php",
"bin"
],
"homepage": "https://github.com/articstudio/php-bin",
"license": "MIT",
"authors": [
{
"name": "Artic studio",
"email": "developers@articstudio.com"
}
],
"require": {
"php": ">=7.3",
"ergebnis/composer-normalize": "^2.2",
"ergebnis/phpstan-rules": "^0.14.2",
"nunomaduro/phpinsights": "^1.11",
"php-school/cli-menu": "^3.2",
"phpmetrics/phpmetrics": "^2.5",
"phpstan/phpstan": "^0.12.4",
"phpstan/phpstan-strict-rules": "^0.12.1",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/console": "^4.4",
"symfony/process": "^4.4",
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
},
"replace": {},
"require-dev": {},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"subtree": {},
"versions": {}
},
"extra": {},
"autoload": {
"psr-4": {
"Articstudio\\PhpBin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Articstudio\\PhpBin\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://composer.articstudio.com"
},
{
"type": "composer",
"url": "https://packagist.org"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/phpbin"
],
"scripts": {
"fix-style": "php ./vendor/bin/phpcbf --colors ./",
"insights": "php ./vendor/bin/phpinsights",
"lint": "php ./vendor/bin/phpstan analyse --ansi",
"metrics": "php ./vendor/bin/phpmetrics --report-html=\"./build/metrics\" ./",
"style": "php ./vendor/bin/phpcs --colors ./"
},
"support": {
"issues": "https://github.com/articstudio/php-bin/issues",
"source": "https://github.com/articstudio/php-bin"
}
}