2022-08-20 16:00:15 +00:00
|
|
|
{
|
|
|
|
"name": "gkcld/skeleton",
|
|
|
|
"description": "GKcld Laravel package skeleton",
|
2023-05-29 20:52:34 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "library",
|
2022-08-20 16:00:15 +00:00
|
|
|
"keywords": [
|
|
|
|
"gkcld",
|
|
|
|
"skeleton"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Gertjan Krol",
|
|
|
|
"email": "hello@gertjankrol.nl"
|
|
|
|
}
|
|
|
|
],
|
2023-05-29 20:52:34 +00:00
|
|
|
"homepage": "https://git.gertjankrol.nl/gkcld/laravel-package-skeleton",
|
2022-08-20 16:00:15 +00:00
|
|
|
"require": {
|
|
|
|
"php": "^8.1",
|
2023-05-29 20:52:34 +00:00
|
|
|
"laravel/framework": "^10.0"
|
2022-08-20 16:00:15 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-05-29 20:52:34 +00:00
|
|
|
"crawl/coding-standard": "^1.1",
|
2022-08-20 16:00:15 +00:00
|
|
|
"enlightn/security-checker": "^1.10",
|
2023-05-29 20:52:34 +00:00
|
|
|
"ergebnis/composer-normalize": "^2.31",
|
|
|
|
"icanhazstring/composer-unused": "^0.8.8",
|
|
|
|
"maglnet/composer-require-checker": "^4.6",
|
2022-08-20 16:00:15 +00:00
|
|
|
"mockery/mockery": "^1.5",
|
2023-05-29 20:52:34 +00:00
|
|
|
"orchestra/testbench": "^8.5",
|
|
|
|
"overtrue/phplint": "^9.0",
|
|
|
|
"phpunit/phpunit": "^10.1"
|
2022-08-20 16:00:15 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"GKcld\\Skeleton\\": "src"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"GKcld\\Skeleton\\Tests\\": "tests"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
2023-05-29 20:52:34 +00:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
|
|
"ergebnis/composer-normalize": true
|
|
|
|
},
|
|
|
|
"optimize-autoloader": true,
|
|
|
|
"sort-packages": true
|
2022-08-20 16:00:15 +00:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"laravel": {
|
|
|
|
"aliases": {
|
|
|
|
"Skeleton": "GKcld\\Skeleton\\SkeletonFacade"
|
2023-05-29 20:52:34 +00:00
|
|
|
},
|
|
|
|
"providers": [
|
|
|
|
"GKcld\\Skeleton\\SkeletonServiceProvider"
|
|
|
|
]
|
2022-08-20 16:00:15 +00:00
|
|
|
}
|
2023-05-29 20:52:34 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"fix-style": "vendor/bin/phpcbf --standard=phpcs.xml",
|
|
|
|
"lint": "vendor/bin/phplint ./ --exclude=vendor",
|
|
|
|
"require-check": "vendor/bin/composer-require-checker check composer.json",
|
|
|
|
"security-check": "vendor/bin/security-checker security:check composer.lock",
|
|
|
|
"style": "vendor/bin/phpcs --standard=phpcs.xml",
|
|
|
|
"test-all": [
|
|
|
|
"composer unit",
|
|
|
|
"composer lint",
|
|
|
|
"composer style",
|
|
|
|
"composer require-check",
|
|
|
|
"composer security-check",
|
|
|
|
"composer unused-check",
|
|
|
|
"composer normalize --dry-run"
|
|
|
|
],
|
|
|
|
"unit": "vendor/bin/phpunit --configuration phpunit.xml --colors=never",
|
|
|
|
"unused-check": "vendor/bin/composer-unused"
|
2022-08-20 16:00:15 +00:00
|
|
|
}
|
|
|
|
}
|