-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 857 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": "ostark/yii2-artisan-bridge",
"description": "Brings the ease of Artisan commands and the power of Symfony console to Yii2.",
"type": "library",
"keywords": [
"craftcms",
"yii2",
"artisan",
"laravel",
"symfony",
"console"
],
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"homepage": "https://www.fortrabbit.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ostark/yii2-artisan-bridge/issues",
"source": "https://github.com/ostark/yii2-artisan-bridge",
"docs": "https://github.com/ostark/yii2-artisan-bridge"
},
"require": {
"yiisoft/yii2": "^2.0",
"symfony/console": "^6.0",
"symfony/process": "^3.0 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"ostark\\Yii2ArtisanBridge\\": "src/"
}
}
}