-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 787 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"yiisoft/yii2": "^2.1.0@dev",
"yiisoft/yii2-bootstrap": "~2.0.0",
"joshtronic/php-loremipsum": "^1.0.2",
"guzzlehttp/guzzle": "~6.0",
"ext-mbstring": "*",
"ext-readline": "*",
"ext-pcntl": "*",
"symfony/dotenv": "^4.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"phpunit/phpunit": "^7.3",
"blackfire/php-sdk": "^1.17",
"ext-blackfire": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"app\\": "src",
"app\\tests\\": "tests"
}
}
}