This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.57 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
{
"name": "erunion/mill",
"description": "☴ An annotation-based DSL for documenting a REST API.",
"license": "MIT",
"authors": [
{
"name": "Jon Ursenbach",
"email": "[email protected]"
}
],
"homepage": "https://github.com/erunion/mill",
"support": {
"issues": "https://github.com/erunion/mill/issues",
"source": "https://github.com/erunion/mill",
"wiki": "https://github.com/erunion/mill/wiki"
},
"minimum-stability": "RC",
"bin": ["bin/mill"],
"require": {
"php": ">=7.2.0",
"ext-intl": "*",
"ext-xml": "*",
"composer/semver": "^3.0",
"cocur/slugify": "^4.0",
"dflydev/dot-access-data": "^2.0",
"gossi/docblock": "^2.0",
"league/flysystem": "^1.0",
"nicmart/string-template": "^0.1.1",
"ocramius/package-versions": "^1.1",
"pimple/pimple": "^3.0",
"symfony/console": "^3.2 || ^4.0 || ^5.0"
},
"require-dev": {
"league/flysystem-memory": "^1.0",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.0",
"vimeo/psalm": "^3.0"
},
"suggest": {
"ext-xml": "Required for config file processing."
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"Mill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mill\\Examples\\": "examples",
"Mill\\Tests\\": "tests/",
"Mill\\Tests\\Fixtures\\": "tests/_fixtures"
}
}
}