-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "bizkit/versioning-bundle",
"description": "Symfony bundle which provides a way to version your application using various versioning strategies.",
"type": "symfony-bundle",
"keywords": [
"versioning",
"version",
"semver",
"vcs",
"git"
],
"homepage": "https://github.com/HypeMC/versioning-bundle",
"license": "MIT",
"authors": [
{
"name": "HypeMC",
"email": "hypemc@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/process": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^8.0"
},
"autoload": {
"psr-4": {
"Bizkit\\VersioningBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bizkit\\VersioningBundle\\Tests\\": "tests/"
}
},
"scripts": {
"run-checks": [
"php-cs-fixer fix -vvv",
"simple-phpunit",
"phpstan analyse"
]
},
"config": {
"audit": {
"block-insecure": false
},
"sort-packages": true
}
}