-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 956 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": "rezzza/jadd",
"description": "Jadd : Another Documentation Dumper",
"license": "MIT",
"authors": [
{
"name": "ReZzZa Team",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Rezzza\\Jadd\\": "src/" },
"classmap": [ "app/CliApp.php", "app/Kernel.php" ]
},
"bin": ["bin/jadd"],
"require": {
"psr/http-message": "^1.0",
"php-di/php-di": "^5.3",
"symfony/console": "^3.0",
"symfony/routing": "^3.1",
"symfony/config": "^3.1",
"symfony/yaml": "^3.1"
},
"require-dev": {
"guzzlehttp/psr7": "^1.3",
"behat/behat": "^3.1",
"atoum/atoum": "^2.8",
"symfony/process": "^3.1",
"rezzza/rest-api-behat-extension": "^5.0",
"php-http/curl-client": "^1.5",
"php-http/client-common": "^1.2",
"rezzza/moco-behat-extension": "^1.0"
}
}