Initial commit
.github/FUNDING.yml
deleted
100644 → 0
.github/SECURITY.md
deleted
100644 → 0
SECURITY.md
0 → 100644
{ | ||
"name": ":vendor_slug/:package_slug", | ||
"description": ":package_description", | ||
"name": "dterumal/laravel-installer", | ||
"description": "Laravel Installer provides an easy way to install your Laravel application", | ||
"keywords": [ | ||
":vendor_name", | ||
"dterumal", | ||
"laravel", | ||
":package_slug" | ||
"laravel-installer" | ||
], | ||
"homepage": "https://github.com/:vendor_slug/:package_slug", | ||
"homepage": "https://gitlab.sib.swiss/clinbio/packagist/laravel-installer", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": ":author_name", | ||
"email": "author@domain.com", | ||
"name": "dterumal", | ||
"email": "dillenn.terumalai@sib.swiss", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0", | ||
"spatie/laravel-package-tools": "^1.9.2", | ||
"php": "^7.4|^8.0", | ||
"illuminate/contracts": "^8.73" | ||
}, | ||
"require-dev": { | ||
... | ... | @@ -30,20 +29,25 @@ |
"phpstan/phpstan-deprecation-rules": "^1.0", | ||
"phpstan/phpstan-phpunit": "^1.0", | ||
"phpunit/phpunit": "^9.5", | ||
"spatie/laravel-ray": "^1.26" | ||
"spatie/laravel-ray": "^1.26", | ||
"vimeo/psalm": "^4.15" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"VendorName\\Skeleton\\": "src", | ||
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories" | ||
} | ||
"Dterumal\\LaravelInstaller\\": "src", | ||
"Dterumal\\LaravelInstaller\\Database\\Factories\\": "database/factories" | ||
}, | ||
"files": [ | ||
"src/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"VendorName\\Skeleton\\Tests\\": "tests" | ||
"Dterumal\\LaravelInstaller\\Tests\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
"psalm": "vendor/bin/psalm", | ||
"analyse": "vendor/bin/phpstan analyse", | ||
"test": "vendor/bin/pest", | ||
"test-coverage": "vendor/bin/pest coverage" | ||
... | ... | @@ -54,10 +58,10 @@ |
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"VendorName\\Skeleton\\SkeletonServiceProvider" | ||
"Dterumal\\LaravelInstaller\\LaravelInstallerServiceProvider" | ||
], | ||
"aliases": { | ||
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton" | ||
"LaravelInstaller": "Dterumal\\LaravelInstaller\\Facades\\LaravelInstaller" | ||
} | ||
} | ||
}, | ||
... | ... |
config/laravel-installer.php
0 → 100644
config/skeleton.php
deleted
100644 → 0
configure.php
deleted
100644 → 0