54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "thecodeholic/laravel-hostinger-deploy",
|
|
"description": "Laravel package for automated Hostinger deployment with GitHub Actions support",
|
|
"type": "library",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"laravel",
|
|
"hostinger",
|
|
"deployment",
|
|
"github-actions",
|
|
"ssh"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Zura Sekhniashvili",
|
|
"email": "zura@thecodeholic.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"illuminate/support": "^11.0|^12.0",
|
|
"illuminate/console": "^11.0|^12.0",
|
|
"illuminate/process": "^11.0|^12.0",
|
|
"symfony/console": "^7.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0",
|
|
"orchestra/testbench": "^8.0|^9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"TheCodeholic\\LaravelHostingerDeploy\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"TheCodeholic\\LaravelHostingerDeploy\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"TheCodeholic\\LaravelHostingerDeploy\\HostingerDeployServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|