generated from syntatis/composer-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (73 loc) · 1.69 KB
/
composer.json
File metadata and controls
74 lines (73 loc) · 1.69 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
{
"name": "syntatis/version-cli",
"description": "A simple PHP CLI tool for working with SemVer version strings",
"keywords": [
"version",
"cli",
"semver"
],
"authors": [
{
"name": "Thoriq Firdaus"
}
],
"bin": [
"bin/version"
],
"license": "MIT",
"autoload": {
"psr-4": {
"Syntatis\\Version\\CLI\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Syntatis\\Tests\\": ["tests/", "tests/phpunit/"]
}
},
"require": {
"php": "^7.4 || ^8.0",
"beberlei/assert": "^3.3",
"nikolaposa/version": "^4.1.1",
"symfony/console": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"nunomaduro/collision": "^5.11",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-beberlei-assert": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6",
"shipmonk/phpstan-rules": "^4.1",
"squizlabs/php_codesniffer": "^3.0",
"symfony/var-dumper": "^5.4",
"syntatis/coding-standard": "^2.0"
},
"suggest": {
"nunomaduro/collision": "Provide better error rendering in the console",
"symfony/var-dumper": "Provide better debugging output"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyze": "phpstan",
"format": "phpcbf",
"lint": "phpcs",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"non-feature-branches": [
"dependabot/*"
]
}