-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 995 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": "michele-angioni/support",
"description": "Support is a Laravel package which promotes the use of best practices and design patterns.",
"keywords": ["laravel", "support", "cache", "repos", "helpers", "semaphores"],
"license": "MIT",
"authors": [
{
"name": "Michele Angioni",
"email": "michele.angioni@gmail.com",
"role": "Author"
}
],
"require": {
"php": ">=7.1.3 <8.0.0",
"illuminate/cache": "5.8.x",
"illuminate/console": "5.8.x",
"illuminate/database": "5.8.x",
"illuminate/pagination": "5.8.x",
"illuminate/support": "5.8.x",
"illuminate/validation": "5.8.x"
},
"require-dev": {
"mockery/mockery": "^1.1",
"phpunit/phpunit": "^7.5",
"sami/sami": "~3.3|~4.0"
},
"autoload": {
"psr-4": {
"MicheleAngioni\\Support\\": "src/MicheleAngioni/Support"
}
}
}