-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.08 KB
/
composer.json
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
{
"name": "janalis/bumpversion",
"type": "project",
"description": "A small command line tool aiming to simplify releasing process by updating all version strings in your source code by the correct increment.",
"homepage": "https://github.com/janalis/bumpversion",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"bin": [
"bin/bumpversion"
],
"config": {
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": "^7.1.3",
"symfony/console": "4.3.*",
"symfony/finder": "4.3.*",
"symfony/process": "^4.3",
"symfony/yaml": "4.3.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^8.2",
"symfony/var-dumper": "^4.3"
},
"scripts": {
"lint": [
"php-cs-fixer fix src --rules=@Symfony"
]
}
}