-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 946 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
{
"name": "blacksmoke26/yii2cdn",
"description": "A Yii Framework 2 component for using assets in different environments (Local/CDNs)",
"keywords": ["yii2", "cdn", "assets", "extension"],
"homepage": "https://github.com/blacksmoke26/yii2cdn",
"version": "1.0.1",
"type": "yii2-extension",
"license": "Apache-2.0",
"support":{
"email": "[email protected]",
"wiki" : "https://github.com/blacksmoke26/yii2cdn/wiki",
"issues" : "https://github.com/blacksmoke26/yii2cdn/issues"
},
"require": {
"php": "^8.0",
"yiisoft/yii2": "^2.0.12"
},
"authors": [
{
"name": "Junaid Atari",
"email": "[email protected]",
"homepage": "http://junaidatari.com",
"role": "Author"
}
],
"minimum-stability": "stable",
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"yii2cdn\\": "src/"
}
}
}