-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (50 loc) · 1.26 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
46
47
48
49
50
{
"name": "smeghead/php-class-diagram",
"description": "A CLI tool that parses the PHP source directory and outputs PlantUML scripts.",
"type": "library",
"keywords": [
"classdiagram",
"PlantUML"
],
"require": {
"php" : ">=8.0",
"symfony/finder": "^5.3|^6.0|^7.0",
"nikic/php-parser": "^5.2",
"phpstan/phpdoc-parser": "^1.30"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"clue/phar-composer": "^1.2",
"phpstan/phpstan": "^1.10",
"smeghead/php-vendor-credits": "~0.0.4"
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Smeghead\\PhpClassDiagram\\": "src/"
}
},
"authors": [
{
"name": "smeghead",
"email": "smeghead7@gmail.com"
}
],
"scripts": {
"test": [
"php vendor/phpunit/phpunit/phpunit --colors test/"
],
"build": [
"php -d phar.readonly=off ./vendor/bin/phar-composer build ./"
],
"phpstan": [
"vendor/bin/phpstan analyse"
],
"update-vendor-credits": [
"vendor/bin/php-vendor-credits . > CREDITS"
]
},
"bin": [
"bin/php-class-diagram"
]
}