-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1004 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
38
39
40
41
42
{
"name": "rahulabs/yii2-toastr",
"description": "Simple javascript toast notifications",
"keywords": ["yii2", "extension", "jquery", "toastr", "notification"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"homepage": "https://github.com/rahulabs/yii2-toastr",
"support": {
"source": "https://github.com/rahulabs/yii2-toastr",
"issues": "https://github.com/rahulabs/yii2-toastr/issues"
},
"authors": [
{
"name": "Rahul Oberai",
"email": "[email protected]",
"homepage": "https://github.com/rahulabs"
}
],
"require": {
"php": ">=7.4",
"yiisoft/yii2": "~2.0.14",
"bower-asset/toastr": "^2.1"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"rahulabs\\widgets\\toastr\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}