From eace1d6e8acd8cda3769feaab75dc41e1c62ed8b Mon Sep 17 00:00:00 2001 From: thanhnc Date: Fri, 3 Sep 2021 08:49:14 +0700 Subject: [PATCH 1/2] fix laravel 7 --- .idea/MinkExtension.iml | 12 ++++++++++ .idea/misc.xml | 6 +++++ .idea/modules.xml | 8 +++++++ .idea/php.xml | 4 ++++ .idea/vcs.xml | 6 +++++ .idea/workspace.xml | 50 +++++++++++++++++++++++++++++++++++++++++ .travis.yml | 6 +++++ 7 files changed, 92 insertions(+) create mode 100644 .idea/MinkExtension.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/MinkExtension.iml b/.idea/MinkExtension.iml new file mode 100644 index 00000000..9f0e5ad8 --- /dev/null +++ b/.idea/MinkExtension.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..28a804d8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..bcab8bda --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 00000000..01514959 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..8714a95a --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,50 @@ + + + + + + + + + $PROJECT_DIR$/composer.json + + + + + + + + + + + + + + + + + + + + + + 1630633326967 + + + + + + \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 4d1d614f..17195783 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ php: - 7.0 - 7.1 - 7.2 + - 7.3 + - 8.0 - hhvm matrix: @@ -26,6 +28,10 @@ matrix: # Test against dev dependencies - php: 7.2 env: DEPS=dev + - php: 7.3 + env: DEPS=dev + - php: 8.0 + env: DEPS=dev before_install: - if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/lts=$SYMFONY_VERSION; fi; From a5b3150aa43626aaa4947ae3b5a83a96d4491018 Mon Sep 17 00:00:00 2001 From: thanhnc Date: Fri, 3 Sep 2021 08:53:00 +0700 Subject: [PATCH 2/2] add new laravel 7 --- .DS_Store | Bin 0 -> 6148 bytes .gitignore | 1 + .idea/.gitignore | 2 ++ .idea/MinkExtension.iml | 12 ---------- .idea/misc.xml | 6 ----- .idea/modules.xml | 8 ------- .idea/php.xml | 4 ---- .idea/vcs.xml | 6 ----- .idea/workspace.xml | 50 ---------------------------------------- 9 files changed, 3 insertions(+), 86 deletions(-) create mode 100644 .DS_Store create mode 100644 .idea/.gitignore delete mode 100644 .idea/MinkExtension.iml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/php.xml delete mode 100644 .idea/vcs.xml delete mode 100644 .idea/workspace.xml diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..2d159974898e060138e12e1f07b1195cba299973 GIT binary patch literal 6148 zcmeHKy-ve07(CMm0*IE81u0KZsT*T}bf^RjbYp@xg@V#1qI6)(&O7i5yZ{@I!ILn- zeYTNOm#Pv2Lf}ub&x!Bse3u``0Mx-WZ2{W=LKeYbgVh%y{Zi&)#hz&pl^){`P26LI zjOfEV;2rqw4#>M(M-KxGae?alo8lT1+;y_N-^=nIdGe9iXKB9cU<+8Mc1mW3l<$1O zQ3^-#hUsE5~?NsdgP@jdSGaJFEwX72=YkN-k55J;21_zd8JX zSKq>(JG;*Gv65*>-k3!^T9jv%zlI}paELZe&_&z13dya?UdJh!`$%w1Y|@|9QAnOu zML^FA=I8n$`Bix}@@`$0WT)zt>>6}y%-kfujH9NA=wq($EALTu)#~>1QNgi4V~Jvv zCy9M-!n5bq^0j!8XJ@G@{f4R-&RyN-ReD_PfHGa-=36Xyj0K^P%j_%I;8< zo}J@Inhq5k^tE@uJ22}&%^Ysa`rlr>|DP54BkzEB;7>WAf~1=qFeSUT≪nZNzfU qA|brepq8+*%du|AQoO^WgME=Sh_S`eAkQ%TkASwpSKfgib>IVWM8>!P literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore index e3897102..10e3a071 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.phar composer.lock vendor +.i diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..5c98b428 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/MinkExtension.iml b/.idea/MinkExtension.iml deleted file mode 100644 index 9f0e5ad8..00000000 --- a/.idea/MinkExtension.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 28a804d8..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index bcab8bda..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml deleted file mode 100644 index 01514959..00000000 --- a/.idea/php.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 8714a95a..00000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - $PROJECT_DIR$/composer.json - - - - - - - - - - - - - - - - - - - - - - 1630633326967 - - - - - - \ No newline at end of file