-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
47 lines (47 loc) · 1.33 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
{
"name": "jcc/laravel-vote",
"description": "The package helps you to add user based vote system to your model",
"authors": [
{
"name": "jcc",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"laravel/framework": "^5.5|~6.0|~7.0|~8.0|~9.0",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^3.5|~4.0|~5.0|~6.0",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12.81"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Jcc\\LaravelVote\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jcc\\LaravelVote\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Jcc\\LaravelVote\\VoteServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"check-style": "vendor/bin/php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
"fix-style": "vendor/bin/php-cs-fixer fix --using-cache=no --config=.php_cs --ansi",
"test": "vendor/bin/phpunit --colors=always",
"phpstan": "vendor/bin/phpstan analyse src -l 5"
}
}