-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 900 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
{
"name": "walecloud/rating",
"description": "A rating system that can be integrated with any customer satisfaction and feedback system",
"type": "library",
"keywords": ["rating", "rate", "star", "numeric", "feedback", "rank", "ranking"],
"license": "MIT",
"authors": [
{
"name": "Wale Ayandiran",
"email": "[email protected]",
"homepage": "https://www.github.com/waleCloud/Rating",
"role": "Software Engineer"
}
],
"autoload": {
"psr-4": {"App\\": "app/"}
},
"autoload-dev": {
"psr-4": {"Tests\\": "tests/"}
},
"minimum-stability": "dev",
"require": {
"php": "7.2"
},
"require-dev": {
"phpunit/phpunit": "8",
"codeclimate/php-test-reporter": "^0.3.0@dev"
},
"scripts": {
"test": "./vendor/bin/phpunit tests"
}
}