-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 850 Bytes
/
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
{
"name": "chippyash/db-plantuml",
"description": "Support for creating DB logical and physical diagrams using the awesome PlantUml",
"keywords": ["plantuml", "database", "diagrams"],
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ashley Kitson",
"email": "ashley@zf4.biz"
}
],
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-xsl": "*",
"symfony/console": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"Chippyash\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"scripts-descriptions": {
"test": "Run unit tests for plantuml-2-SQL binary"
}
}