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.

40 lines
900 B

{
"name": "luthfi/simple-crud-generator",
"description": "A simple CRUD generator for Laravel 5.5.",
"license": "MIT",
"authors": [
{
"name": "Nafies Luthfi",
"email": "nafiesl@gmail.com"
}
],
"autoload": {
"psr-4": {
"Luthfi\\CrudGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.0",
"illuminate/support": "5.4.* || 5.5.*",
"laravel/browser-kit-testing": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.0"
},
"extra": {
"laravel": {
"providers": [
"Luthfi\\CrudGenerator\\ServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}