-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 920 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
{
"name": "dmitrijivanenko/hotrod-cli",
"description": "Magento 2 code generation cli tool",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Dmitrij Ivanenko",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"require": {
"symfony/console": "^2.0 || ^3.2 || ^4.0",
"symfony/finder": "^2.0 || ^3.0 || ^4.0",
"vlucas/phpdotenv": "^2.4",
"symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
"eloquent/composer-npm-bridge": "^4",
"slim/slim": "^3.0"
},
"autoload": {
"psr-4": {"HotRodCli\\": "src/"}
},
"bin": [
"hotrod",
"hotrod-ui"
],
"scripts": {
"hotrod-ui": [
"ng build --base-href='/dist/ui-app/' --prod",
"php -S localhost:8000"
]
}
}