forked from surveywp/kk-star-ratings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bhittani/kk-star-ratings",
"type": "wordpress-plugin",
"license": "GPL",
"description": "Allow blog visitors to involve and interact more effectively with your website by rating posts.",
"homepage": "https://github.com/kamalkhan/kk-star-ratings",
"authors": [
{
"role": "developer",
"name": "Kamal Khan",
"email": "[email protected]",
"homepage": "http://bhittani.com"
}
],
"support": {
"source": "https://github.com/kamalkhan/kk-star-ratings",
"issues": "https://github.com/kamalkhan/kk-star-ratings/issues"
},
"autoload": {},
"autoload-dev": {
"psr-4": {
"Bhittani\\StarRating\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"platform": { "php": "5.5.9" }
},
"require": {
"php": ">=5.5.9,<8.0-DEV"
},
"require-dev": {
"php": ">=5.5.9,<8.0-DEV",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "*"
},
"scripts": {
"install-test-suite": "bin/install-test-suite.sh tests/_wp_",
"test": "phpunit --colors=always",
"coverage": "phpunit --colors=always --coverage-clover coverage.xml",
"check": "php-cs-fixer fix --dry-run --using-cache=no",
"fix": "php-cs-fixer fix --using-cache=no",
"ci": ["@check", "@test"]
},
"archive": {
"exclude": [
"*",
"!/index.php",
"!/readme.txt",
"!/LICENSE.txt",
"!/freemius.php",
"!/src",
"!/views",
"!/public",
"!/freemius",
"!/languages"
]
}
}