-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.4 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "dandelion/dandelion",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
}
],
"keywords": [
"Monorepo"
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-phar": "*",
"ext-sysvsem": "*",
"guzzlehttp/guzzle": "^7.0.0",
"phpdocumentor/reflection-docblock": "^5.0.0",
"pimple/pimple": "^3.3.0",
"swaggest/json-schema": "^0.12.0",
"symfony/console": "^5.0.0",
"symfony/finder": "^5.0.0",
"symfony/lock": "^5.0.0",
"symfony/process": "^5.0.0",
"symfony/property-access": "^5.0.0",
"symfony/property-info": "^5.0.0",
"symfony/serializer": "^5.0.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls": "^2.2",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-master as 1.0.0",
"sebastian/phpcpd": "^5.0",
"sllh/composer-versions-check": "^2.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Dandelion\\": "src/Dandelion"
}
},
"autoload-dev": {
"psr-4": {
"Dandelion\\": "tests/Dandelion"
}
},
"bin": "bin/dandelion",
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"github-protocols": [
"https"
]
}
}