Skip to content

Commit 441732c

Browse files
committed
feat: added asset-packagist.org repository to the composer.json
1 parent 2b496cb commit 441732c

File tree

1 file changed

+45
-33
lines changed

1 file changed

+45
-33
lines changed

composer.json

Lines changed: 45 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,49 @@
11
{
2-
"name": "filsh/yii2-oauth2-server",
3-
"description": "OAuth2 Server for PHP",
4-
"keywords": ["yii", "extension", "module", "oauth", "oauth2"],
5-
"homepage": "https://github.com/filsh/yii2-oauth2-server",
6-
"type": "yii2-extension",
7-
"license": "MIT",
8-
"support": {
9-
"email": "[email protected]",
10-
"source": "https://github.com/filsh/yii2-oauth2-server"
2+
"name": "filsh/yii2-oauth2-server",
3+
"description": "OAuth2 Server for PHP",
4+
"keywords": [
5+
"yii",
6+
"extension",
7+
"module",
8+
"oauth",
9+
"oauth2"
10+
],
11+
"homepage": "https://github.com/filsh/yii2-oauth2-server",
12+
"type": "yii2-extension",
13+
"license": "MIT",
14+
"support": {
15+
"email": "[email protected]",
16+
"source": "https://github.com/filsh/yii2-oauth2-server"
17+
},
18+
"authors": [
19+
{
20+
"name": "Igor Maliy",
21+
"email": "[email protected]"
1122
},
12-
"authors": [
13-
{
14-
"name": "Igor Maliy",
15-
"email": "[email protected]"
16-
},
17-
{
18-
"name": "Vardan Pogosian",
19-
"email": "[email protected]"
20-
}
21-
],
22-
"require": {
23-
"yiisoft/yii2": "*",
24-
"bshaffer/oauth2-server-php": "^1.7"
25-
},
26-
"autoload": {
27-
"psr-4": {
28-
"filsh\\yii2\\oauth2server\\": "src/"
29-
}
30-
},
31-
"extra": {
32-
"bootstrap": "filsh\\yii2\\oauth2server\\Bootstrap",
33-
"branch-alias": {
34-
"dev-master": "2.1.x-dev"
35-
}
23+
{
24+
"name": "Vardan Pogosian",
25+
"email": "[email protected]"
26+
}
27+
],
28+
"require": {
29+
"yiisoft/yii2": "*",
30+
"bshaffer/oauth2-server-php": "^1.7"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"filsh\\yii2\\oauth2server\\": "src/"
35+
}
36+
},
37+
"repositories": [
38+
{
39+
"type": "composer",
40+
"url": "https://asset-packagist.org"
41+
}
42+
],
43+
"extra": {
44+
"bootstrap": "filsh\\yii2\\oauth2server\\Bootstrap",
45+
"branch-alias": {
46+
"dev-master": "2.1.x-dev"
3647
}
48+
}
3749
}

0 commit comments

Comments
 (0)