4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 15
15
- name : Copy ENV Laravel Configuration for CI
16
16
run : php -r "file_exists('.env') || copy('.env.example', '.env');"
17
17
- name : Install Dependencies
18
- run : composer install
18
+ run : composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
19
19
- name : Install NPM Dependencies
20
20
run : npm install
21
21
- name : Compile Assets
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ All notable changes to this project will be documented in this file.
15
15
16
16
- Updated composer
17
17
- Updated yarn
18
- - Make minimum PHP version 7.4
19
18
- Update to Laravel commit: f0de9fd9967d4e1b4427d8458bf8983bc2cde201
20
19
- Upgrade to Laravel Mix 6
21
20
- Fixed 2fa/admin issue (https://github.com/rappasoft/laravel-boilerplate/pull/1488 )
Original file line number Diff line number Diff line change 9
9
],
10
10
"license" : " MIT" ,
11
11
"require" : {
12
- "php" : " ^7.4 |^8.0" ,
12
+ "php" : " ^7.3 |^8.0" ,
13
13
"arcanedev/log-viewer" : " 8.x" ,
14
14
"darkghosthunter/laraguard" : " dev-master" ,
15
15
"fideloper/proxy" : " ^4.4" ,
Original file line number Diff line number Diff line change 7
7
require ( '../bootstrap' ) ;
8
8
require ( '../plugins' ) ;
9
9
10
- window . Vue = require ( 'vue' ) ;
10
+ import Vue from 'vue' ;
11
11
12
12
/**
13
13
* The following block of code may be used to automatically register your
0 commit comments