-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (39 loc) · 1.12 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
{
"name": "digitalkaoz/yuml-php",
"homepage": "https://github.com/digitalkaoz/yuml-php",
"description": "a PHP Adapter for http://yuml.me",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Robert Schönthal",
"email": "robert.schoenthal@gmail.com",
"homepage": "http://digitalkaoz.net"
}
],
"require": {
"php": ">=5.4",
"pimple/pimple": "~3.0",
"symfony/console": "~2.3",
"kriswallsmith/buzz": "@stable",
"roave/better-reflection": "dev-master",
"symfony/finder": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~4"
},
"autoload": {
"psr-4": {
"YumlPhp\\": "src/YumlPhp"
}
},
"autoload-dev": {
"psr-4": {
"YumlPhp\\Tests\\": "tests/YumlPhp/Tests",
"YumlPhp\\Tests\\Integration\\": "tests/Integration"
}
},
"bin": ["bin/yuml-php"]
}