80 lines
2.4 KiB
JSON
80 lines
2.4 KiB
JSON
|
{
|
||
|
"name": "vertumnus/skeleton",
|
||
|
"description": "Vertumnus Laravel package skeleton",
|
||
|
"license": "MIT",
|
||
|
"type": "library",
|
||
|
"keywords": [
|
||
|
"vertumnus",
|
||
|
"laravel",
|
||
|
"skeleton"
|
||
|
],
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Gertjan Krol",
|
||
|
"email": "contact@gertjankrol.nl"
|
||
|
}
|
||
|
],
|
||
|
"homepage": "https://git.gertjankrol.nl/vertumnus/skeleton",
|
||
|
"require": {
|
||
|
"php": "^8.2",
|
||
|
"laravel/framework": "^10.21"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"crawl/coding-standard": "^1.1",
|
||
|
"enlightn/security-checker": "^1.10",
|
||
|
"ergebnis/composer-normalize": "^2.35",
|
||
|
"icanhazstring/composer-unused": "^0.8",
|
||
|
"maglnet/composer-require-checker": "^4.6",
|
||
|
"mockery/mockery": "^1.6",
|
||
|
"orchestra/testbench": "^8.10",
|
||
|
"overtrue/phplint": "^9.0",
|
||
|
"phpunit/phpunit": "^10.3"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Vertumnus\\Skeleton\\": "src"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"Vertumnus\\Skeleton\\Tests\\": "tests"
|
||
|
}
|
||
|
},
|
||
|
"config": {
|
||
|
"allow-plugins": {
|
||
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||
|
"ergebnis/composer-normalize": true
|
||
|
},
|
||
|
"optimize-autoloader": true,
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"extra": {
|
||
|
"laravel": {
|
||
|
"aliases": {
|
||
|
"Skeleton": "Vertumnus\\Skeleton\\SkeletonFacade"
|
||
|
},
|
||
|
"providers": [
|
||
|
"Vertumnus\\Skeleton\\SkeletonServiceProvider"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"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"
|
||
|
}
|
||
|
}
|