forked from elcobvg/laravel-opcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "elcobvg/laravel-opcache",
"description": "Custom OPcache Cache Driver for Laravel. Faster than Redis or memcached.",
"keywords": ["laravel", "cache", "driver", "opcache", "webprofiler"],
"homepage": "https://github.com/elcobvg/laravel-opcache",
"license": "MIT",
"authors": [
{
"name": "Elco Brouwer von Gonzenbach",
"email": "elco.brouwer@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"symfony/var-exporter": "^5.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.2",
"orchestra/testbench": "3.5",
"phpunit/phpunit": "6.5",
"mockery/mockery": "1.0"
},
"autoload": {
"psr-4": {
"ElcoBvg\\Opcache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElcoBvg\\Opcache\\Test\\": "tests"
}
},
"scripts": {
"lint": "./vendor/bin/phpcs -sw --standard=PSR2 src/*",
"test": "./vendor/bin/phpunit --bootstrap=vendor/autoload.php tests"
},
"extra": {
"laravel": {
"providers": [
"ElcoBvg\\Opcache\\ServiceProvider"
]
}
}
}