76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
{
|
|
"name": ":vendor_slug/:package_slug",
|
|
"description": ":package_description",
|
|
"keywords": [
|
|
":vendor_name",
|
|
"laravel",
|
|
":package_slug"
|
|
],
|
|
"homepage": "https://github.com/:vendor_slug/:package_slug",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": ":author_name",
|
|
"email": "author@domain.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.4",
|
|
"spatie/laravel-package-tools": "^1.16",
|
|
"illuminate/contracts": "^11.0||^12.0"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.14",
|
|
"nunomaduro/collision": "^8.8",
|
|
"larastan/larastan": "^3.0",
|
|
"orchestra/testbench": "^10.0.0||^9.0.0",
|
|
"pestphp/pest": "^4.0",
|
|
"pestphp/pest-plugin-arch": "^4.0",
|
|
"pestphp/pest-plugin-laravel": "^4.0",
|
|
"phpstan/extension-installer": "^1.4",
|
|
"phpstan/phpstan-deprecation-rules": "^2.0",
|
|
"phpstan/phpstan-phpunit": "^2.0",
|
|
"spatie/laravel-ray": "^1.35"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"VendorName\\Skeleton\\": "src/",
|
|
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"VendorName\\Skeleton\\Tests\\": "tests/",
|
|
"Workbench\\App\\": "workbench/app/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": "@composer run prepare",
|
|
"prepare": "@php vendor/bin/testbench package:discover --ansi",
|
|
"analyse": "vendor/bin/phpstan analyse",
|
|
"test": "vendor/bin/pest",
|
|
"test-coverage": "vendor/bin/pest --coverage",
|
|
"format": "vendor/bin/pint"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"VendorName\\Skeleton\\SkeletonServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
|
|
}
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|