This repository has been archived by the owner on Jan 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 2.05 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
54
55
{
"name" : "anolilab/wordpress-salt-generator",
"type" : "library",
"description": "Generates the salts for the Wordpress Composer projects.",
"keywords" : [
"wordpress", "salts", "generator", "composer"
],
"license" : "MIT",
"homepage" : "https://github.com/anolilab/wordpress-salt-generator",
"support" : {
"issues" : "https://github.com/anolilab/wordpress-salt-generator/issues",
"source" : "https://github.com/anolilab/wordpress-salt-generator"
},
"authors" : [
{
"name" : "Daniel Bannert",
"email" : "[email protected]",
"homepage": "http://anolilab.de",
"role" : "Developer"
}
],
"require": {
"php" : ">=5.4.0",
"ircmaxell/random-lib" : "^1.1"
},
"require-dev": {
"composer/composer" : "^1",
"fabpot/php-cs-fixer" : "~1.10",
"mockery/mockery" : "~0.9.4",
"phpunit/phpunit" : "~4.8.8",
"scrutinizer/ocular" : "~1.1"
},
"autoload": {
"psr-4": {
"Anolilab\\Wordpress\\SaltGenerator\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Anolilab\\Wordpress\\SaltGenerator\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "1.1.0-dev"
}
},
"scripts": {
"test" : "sh vendor/bin/phpunit",
"check-cs" : "sh vendor/bin/php-cs-fixer fix -v --dry-run",
"fix-cs" : "sh vendor/bin/php-cs-fixer fix"
},
"minimum-stability" : "dev",
"prefer-stable" : true
}