{
"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": "[email protected]"
}
],
"require": {
"php": ">=7.0.0"
},
"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"
]
}
}
}
|