You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
{ |
|
"name": "spatie/eloquent-sortable", |
|
"description": "Sortable behaviour for eloquent models", |
|
"homepage": "https://github.com/spatie/eloquent-sortable", |
|
"authors": [ |
|
{ |
|
"name": "Freek Van der Herten", |
|
"email": "freek@spatie.be" |
|
} |
|
], |
|
"keywords": |
|
[ |
|
"sort", |
|
"sortable", |
|
"eloquent", |
|
"model", |
|
"laravel", |
|
"behaviour" |
|
], |
|
"license": "MIT", |
|
"require": { |
|
"php": "^7.3|^8.0", |
|
"illuminate/database": "^6.0|^7.0|^8.0", |
|
"illuminate/support": "^6.0|^7.0|^8.0" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit" : "^8.0|^9.0", |
|
"orchestra/testbench": "^4.0|^5.0|^6.0" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"Spatie\\EloquentSortable\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Spatie\\EloquentSortable\\Test\\": "tests" |
|
} |
|
}, |
|
"minimum-stability": "dev", |
|
"prefer-stable": true, |
|
"scripts": { |
|
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes", |
|
"test": "vendor/bin/phpunit" |
|
}, |
|
"extra": { |
|
"laravel": { |
|
"providers": [ |
|
"Spatie\\EloquentSortable\\EloquentSortableServiceProvider" |
|
] |
|
} |
|
} |
|
}
|
|
|