-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 988 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
35
36
37
38
39
40
41
42
43
44
{
"name": "jawira/plantuml-to-image",
"description": "PlantUml wrapper to convert puml diagrams to images.",
"license": [
"MIT"
],
"type": "library",
"authors": [
{
"name": "Jawira Portugal",
"email": "dev@tugal.be"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/process": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"ext-libxml": "*",
"ext-simplexml": "*",
"ergebnis/composer-normalize": "^2.28",
"jawira/plantuml": "^1.2022",
"jawira/skeleton": "^2.16",
"jawira/the-lost-functions": "^1.5.0",
"phpunit/phpunit": "^9.6.17",
"vimeo/psalm": "^4.30.0"
},
"suggest": {
"jawira/plantuml": "Provides PlantUml (jar and executable)"
},
"autoload": {
"psr-4": {
"Jawira\\PlantUmlToImage\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform-check": true,
"preferred-install": "dist",
"sort-packages": true
}
}