Skip to content

Commit

Permalink
Version 8 (#1030)
Browse files Browse the repository at this point in the history
* ✨ πŸ’‘ πŸ“Ό ❄️ Remove 5.6 & 7.0. Bump min to 7.1

* ✨ Test nightly PHP version but allow failure

* 🚧 Add back rewrites passing to sites

* πŸš‘ Aliases file and composer should be owned and run by vagrant user

* 🚧 Enable box version check
  • Loading branch information
svpernova09 authored Jan 15, 2019
1 parent 17e7e5b commit 237387c
Show file tree
Hide file tree
Showing 14 changed files with 258 additions and 749 deletions.
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly

before_script:
- phpenv config-rm xdebug.ini || true
- composer install --no-interaction

script:
- vendor/bin/phpunit

-
matrix:
include:
- php: 5.6
env: dependencies=lowest
allow_failures:
- php: 5.6
- php: nightly
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
if File.exist? aliasesPath then
config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases"
config.vm.provision "shell" do |s|
s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases"
s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases && chown vagrant:vagrant /home/vagrant/.bash_aliases"
end
end

Expand Down
2 changes: 1 addition & 1 deletion bin/homestead
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

require __DIR__.'/../../../autoload.php';

$app = new Symfony\Component\Console\Application('Laravel Homestead', '7.20.0');
$app = new Symfony\Component\Console\Application('Laravel Homestead', '8.0.0');

$app->add(new Laravel\Homestead\MakeCommand);

Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
"name": "laravel/homestead",
"description": "A virtual machine for web artisans.",
"require": {
"php": "^5.6 || ^7.0",
"symfony/console": "~3.3|~4.0",
"symfony/process": "~3.3|~4.0",
"symfony/yaml": "~3.3|~4.0"
"php": "^7.1",
"symfony/console": "~4.0",
"symfony/process": "~4.0",
"symfony/yaml": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0",
"phly/changelog-generator": "^2.2"
"phpunit/phpunit": "^6.0"
},
"license": "MIT",
"authors": [
Expand Down
Loading

0 comments on commit 237387c

Please sign in to comment.