57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "cviebrock/eloquent-sluggable",
|
|
"description": "Easy creation of slugs for your Eloquent models in Laravel 5.",
|
|
"keywords": [
|
|
"eloquent-sluggable",
|
|
"eloquent",
|
|
"sluggable",
|
|
"laravel",
|
|
"lumen",
|
|
"slug"
|
|
],
|
|
"homepage": "https://github.com/cviebrock/eloquent-sluggable",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Colin Viebrock",
|
|
"email": "colin@viebrock.ca"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.0",
|
|
"illuminate/config": "~5.6.0",
|
|
"illuminate/database": "~5.6.0",
|
|
"illuminate/support": "~5.6.0",
|
|
"cocur/slugify": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^0.9.4",
|
|
"orchestra/database": "~3.6.0",
|
|
"orchestra/testbench": "~3.6.0",
|
|
"phpunit/phpunit": "~7.0",
|
|
"codedungeon/phpunit-result-printer": "^0.6.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Cviebrock\\EloquentSluggable\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Cviebrock\\EloquentSluggable\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "./vendor/bin/phpunit"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Cviebrock\\EloquentSluggable\\ServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|