64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"name": "gkrol/skeleton",
|
|
"description": "Laravel package skeleton",
|
|
"keywords": [
|
|
"gkrol",
|
|
"skeleton"
|
|
],
|
|
"homepage": "https://git.gertjankrol.nl/gertjan/gkrol-laravel-package-skeleton",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Gertjan Krol",
|
|
"email": "hello@gertjankrol.nl"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"illuminate/support": "^8.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^6.24",
|
|
"enlightn/security-checker": "^1.10",
|
|
"crawl/coding-standard": "^1.0",
|
|
"mockery/mockery": "^1.5",
|
|
"overtrue/phplint": "^4.3",
|
|
"phpunit/phpunit": "^9.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"GKrol\\Skeleton\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"GKrol\\Skeleton\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "vendor/bin/phplint ./ --exclude=vendor",
|
|
"style": "vendor/bin/phpcs --standard=phpcs.xml",
|
|
"fix-style": "vendor/bin/phpcbf --standard=phpcs.xml",
|
|
"security-checker": "vendor/bin/security-checker security:check composer.lock",
|
|
"test": "vendor/bin/phpunit --configuration phpunit.xml --colors=never"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"GKrol\\Skeleton\\SkeletonServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Skeleton": "GKrol\\Skeleton\\SkeletonFacade"
|
|
}
|
|
}
|
|
}
|
|
}
|