-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.5 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
53
{
"name": "lajax/yii2-http-auth",
"description": "Yii2 Http Authentication extension",
"type": "yii2-extension",
"keywords": ["yii2", "extension", "authentication", "http", "security", " username", "password", "allowedIps"],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/lajax/yii2-http-auth/issues?state=open",
"source": "https://github.com/lajax/yii2-http-auth"
},
"authors": [
{
"name": "Lajos Molnár",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpspec/phpspec": "^5.1",
"leanphp/phpspec-code-coverage": "dev-patch-1"
},
"autoload": {
"psr-4": {
"lajax\\httpauth\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type" : "vcs",
"url" : "https://github.com/samsonasik/phpspec-code-coverage",
"no-api": true
}
],
"scripts": {
"test": "phpspec run --format=pretty",
"cs-fix": "php-cs-fixer fix --config=.php_cs",
"cs-check": "php-cs-fixer fix --config=.php_cs --dry-run --diff"
},
"scripts-descriptions": {
"cs-fix": "Fix coding style issues",
"cs-check": "Check for coding style issues"
},
"config": {
"bin-dir": "bin"
}
}