-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 755 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 755 Bytes
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
{
"name": "anorgan/laravel-cache",
"description": "Laravel Cache package that supports tagging",
"license": "MIT",
"authors": [{"name": "Marin Crnković", "email": "marin.crnkovic@gmail.com"}],
"autoload": {
"psr-4": {
"Anorgan\\LaravelCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Anorgan\\LaravelCache\\Test\\": "tests"
}
},
"require": {
"php": "^7.0",
"illuminate/contracts": "~5.2.0|~5.3.0|~5.4.0",
"illuminate/support": "~5.2.0|~5.3.0|~5.4.0",
"kargnas/alternative-laravel-cache": "0.1",
"spatie/laravel-fractal": "^2.0|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.1",
"roave/security-advisories": "dev-master"
}
}