-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 971 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 971 Bytes
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
{
"name": "bellangelo/phpadr",
"description": "A PHP based command-line interface tool for working with ADR",
"type": "library",
"license": "MIT",
"keywords": [
"adr",
"architecture-decision-records",
"architecture-decision",
"documentation",
"agility"
],
"authors": [
{
"name": "Aggelos Bellos",
"email": "aggelosbellos7@gmail.com"
}
],
"require": {
"php": ">=7.2.5 || ^8.0",
"ext-mbstring": "*",
"symfony/console": "^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0.0",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls" : "v2.0.0"
},
"autoload": {
"psr-4": {
"ADR\\": "src/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit"
},
"bin": [
"bin/phpadr"
]
}