| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "name": "cyrildewit/eloquent-viewable",
- "description": "Laravel package that allows you to associate views with Eloquent models",
- "type": "library",
- "license": "MIT",
- "homepage": "https://github.com/cyrildewit/eloquent-viewable",
- "keywords": [
- "laravel",
- "eloquent",
- "views",
- "viewable",
- "visits",
- "visitable",
- "hits",
- "counter"
- ],
- "authors": [
- {
- "name": "Cyril de Wit",
- "email": "info@cyrildewit.nl",
- "homepage": "http://cyrildewit.nl",
- "role": "Developer"
- }
- ],
- "require": {
- "php": "^7.4|^8.0",
- "illuminate/cache": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "illuminate/contracts": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "illuminate/cookie": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "illuminate/database": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "illuminate/http": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "illuminate/support": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "jaybizzle/crawler-detect": "^1.0",
- "nesbot/carbon": "^2.0|^3.0"
- },
- "require-dev": {
- "illuminate/config": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
- "mockery/mockery": "^1.2.4",
- "orchestra/testbench": "^4.9.1|^5.9.1|^6.6.1|^7.0.0|^8.0.0",
- "laravel/legacy-factories": "^1.1|^1.3",
- "phpunit/phpunit": "^9.6.0|^10.0||^11.0"
- },
- "autoload": {
- "psr-4": {
- "CyrildeWit\\EloquentViewable\\": "src/"
- },
- "files": [
- "src/helpers.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "CyrildeWit\\EloquentViewable\\Tests\\": "tests/"
- }
- },
- "scripts": {
- "test": "vendor/bin/phpunit",
- "test:cov": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
- },
- "config": {
- "sort-packages": true
- },
- "minimum-stability": "dev",
- "prefer-stable": true,
- "extra": {
- "laravel": {
- "providers": [
- "CyrildeWit\\EloquentViewable\\EloquentViewableServiceProvider"
- ]
- }
- }
- }
|