Skip to content

Commit

Permalink
PHP 8.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Jacko committed Dec 20, 2023
1 parent e8245d3 commit 2d5782e
Show file tree
Hide file tree
Showing 3 changed files with 1,146 additions and 821 deletions.
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
"description": "Deploy your Laravel app via Bitbucket pipelines and envoyer",
"type": "library",
"require": {
"php": "^7.3",
"php": "^8.0",
"illuminate/support": "^6.6"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"orchestra/testbench": "^4.4"
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^4.4"
},
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Erdmenchen\\LaravelBitbucketDeploy\\": "src"
}
},
"psr-4": {
"Erdmenchen\\LaravelBitbucketDeploy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"psr-4": {
"Erdmenchen\\LaravelBitbucketDeploy\\Test\\": "tests"
}
}
},
"extra": {
"laravel": {
"laravel": {
"providers": [
"Erdmenchen\\LaravelBitbucketDeploy\\LaravelBitbucketDeployServiceProvider"
"Erdmenchen\\LaravelBitbucketDeploy\\LaravelBitbucketDeployServiceProvider"
]
}
}
}
}
}
Loading

0 comments on commit 2d5782e

Please sign in to comment.