Skip to content

Commit

Permalink
Merge pull request #40 from BjornDCode/feature/php-8-rc3
Browse files Browse the repository at this point in the history
Add php8.0-rc3 support
  • Loading branch information
BjornDCode authored Nov 26, 2020
2 parents eb41eb5 + 749dd4e commit 7462799
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.4.2]

- PHP 8 Release Candidate 3 support

## [0.4.1]

- Fix issue where some DB environment variables weren't updated on import
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "Bjørn Lindholm",
"email": "[email protected]"
},
"version": "0.4.1",
"version": "0.4.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProjectSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<Stack align="stretch" width="2/5" :space="8">
<SelectField
label="Version"
:options="['7.4', '7.3']"
:options="['8.0-rc3', '7.4', '7.3']"
:value="values.php.version"
@input="onInput('php.version', $event)"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/create/Laravel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<Stack align="stretch" width="2/5" :space="8">
<SelectField
label="Version"
:options="['7.4', '7.3']"
:options="['8.0-rc3', '7.4', '7.3']"
:value="project.php.version"
@input="onInput('php.version', $event)"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/import/Php.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Stack align="stretch" width="full" :space="8">
<SelectField
label="Version"
:options="['7.4', '7.3']"
:options="['8.0-rc3', '7.4', '7.3']"
:value="values.php.version"
@input="
$emit('input', { key: 'php.version', value: $event })
Expand Down

0 comments on commit 7462799

Please sign in to comment.