-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
52 lines (52 loc) · 1.11 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "rmrevin/yii2-fontawesome",
"description": "Asset Bundle for Yii2 with Font Awesome",
"keywords": [
"yii",
"font",
"awesome",
"asset",
"bundle"
],
"type": "yii2-extension",
"license": "MIT",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/rmrevin/yii2-fontawesome/issues",
"source": "https://github.com/rmrevin/yii2-fontawesome"
},
"authors": [
{
"name": "Revin Roman",
"email": "roman@rmrevin.com",
"homepage": "https://rmrevin.com/"
}
],
"require": {
"php": ">=5.4.0",
"fortawesome/font-awesome": "^5.15.0",
"yiisoft/yii2": "^2.0.0"
},
"require-dev": {
"doctrine/instantiator": "1.0.*",
"phpdocumentor/reflection-docblock": "~3.1.0",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"rmrevin\\yii\\fontawesome\\": ""
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}