-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 933 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
35
36
37
{
"name": "amethyst/cli",
"keywords": ["laravel"],
"license": "MIT",
"require": {
"php": ">=7.2",
"doctrine/inflector": "^1.3",
"eloquent/composer-config-reader": "^2.1",
"railken/bag": "^1.2",
"corneltek/getoptionkit": "^2.6",
"symfony/console": "4.*|5.*",
"laravel/installer": "^4.0",
"twig/twig": "^2.0",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "2.*",
"nunomaduro/larastan": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"danielstjules/stringy": "~3.1.0",
"amethyst/core": "0.2.*"
},
"autoload": {
"psr-4" : {
"Amethyst\\Cli\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amethyst\\Cli\\Tests\\": "tests/",
"Author\\Test\\": "var/cache/src"
}
},
"bin": [
"bin/amethyst"
]
}