Skip to content

Commit 0dc8f0b

Browse files
committedFeb 20, 2021
Revert back to PHP 7.3
- Fix Vue in Mix 6
1 parent 056b9ac commit 0dc8f0b

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed
 

‎.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Copy ENV Laravel Configuration for CI
1616
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
1717
- name: Install Dependencies
18-
run: composer install
18+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
1919
- name: Install NPM Dependencies
2020
run: npm install
2121
- name: Compile Assets

‎CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ All notable changes to this project will be documented in this file.
1515

1616
- Updated composer
1717
- Updated yarn
18-
- Make minimum PHP version 7.4
1918
- Update to Laravel commit: f0de9fd9967d4e1b4427d8458bf8983bc2cde201
2019
- Upgrade to Laravel Mix 6
2120
- Fixed 2fa/admin issue (https://github.com/rappasoft/laravel-boilerplate/pull/1488)

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"license": "MIT",
1111
"require": {
12-
"php": "^7.4|^8.0",
12+
"php": "^7.3|^8.0",
1313
"arcanedev/log-viewer": "8.x",
1414
"darkghosthunter/laraguard": "dev-master",
1515
"fideloper/proxy": "^4.4",

‎resources/js/frontend/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
require('../bootstrap');
88
require('../plugins');
99

10-
window.Vue = require('vue');
10+
import Vue from 'vue';
1111

1212
/**
1313
* The following block of code may be used to automatically register your

0 commit comments

Comments
 (0)
Failed to load comments.