-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
45
{
"name": "leviy/release-tool",
"type": "library",
"description": "Command line tool for releasing new versions of a project",
"license": "MIT",
"require": {
"php": "^8.3",
"beberlei/assert": "^3.2",
"consolidation/self-update": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"behat/behat": "^3.12",
"leviy/coding-standard": "^4.0",
"mockery/mockery": "^1.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.0",
"symfony/process": "^5.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Leviy\\ReleaseTool\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Leviy\\ReleaseTool\\Tests\\Unit\\": "tests/unit",
"Leviy\\ReleaseTool\\Tests\\Integration\\": "tests/integration",
"Leviy\\ReleaseTool\\Tests\\System\\": "tests/system"
}
},
"bin": [
"bin/release"
]
}