This repository was archived by the owner on Jul 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +80
-3
lines changed
Expand file tree Collapse file tree 4 files changed +80
-3
lines changed Original file line number Diff line number Diff line change 1+ name : " Run Tests - Laravel 5"
2+
3+ on :
4+ push :
5+ branches : [ v1.x ]
6+
7+ pull_request :
8+ branches : [ v1.x ]
9+
10+ jobs :
11+ tests :
12+
13+ runs-on : ubuntu-latest
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ php : [7.2, 7.3, 7.4]
18+ laravel : [5.*]
19+ include :
20+ - laravel : 5.*
21+
22+ name : P${{ matrix.php }} - L${{ matrix.laravel }}
23+
24+ steps :
25+ - name : Checkout code
26+ uses : actions/checkout@v2
27+
28+ - name : Setup PHP
29+ uses : shivammathur/setup-php@v2
30+ with :
31+ php-version : ${{ matrix.php }}
32+ extensions : pdo, sqlite, pdo_sqlite
33+
34+ - name : Install Dependencies
35+ run : composer install
Original file line number Diff line number Diff line change 1+ name : " Run Tests - Laravel 6"
2+
3+ on :
4+ push :
5+ branches : [ v1.x ]
6+
7+ pull_request :
8+ branches : [ v1.x ]
9+
10+ jobs :
11+ tests :
12+
13+ runs-on : ubuntu-latest
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ php : [7.2, 7.3, 7.4]
18+ laravel : [6.*]
19+ include :
20+ - laravel : 6.*
21+
22+ name : P${{ matrix.php }} - L${{ matrix.laravel }}
23+
24+ steps :
25+ - name : Checkout code
26+ uses : actions/checkout@v2
27+
28+ - name : Setup PHP
29+ uses : shivammathur/setup-php@v2
30+ with :
31+ php-version : ${{ matrix.php }}
32+ extensions : pdo, sqlite, pdo_sqlite
33+
34+ - name : Install Dependencies
35+ run : composer install
Original file line number Diff line number Diff line change 22
33A MongoDB session driver for Laravel
44
5+ | ** Laravel<br />Version** | ** Package<br />Version** | ** Install using<br />this command** |
6+ | ------------------------| -------------------------| ---------------------------------------------------|
7+ | 5.x.x, 6.x | 1.x.x | composer require 1ff/laravel-mongodb-session:^1.0 |
8+ | 7.x | 2.x.x | composer require 1ff/laravel-mongodb-session:^2.0 |
9+ | 8.x | 3.x.x | composer require 1ff/laravel-mongodb-session:^3.0 |
10+ | 9.x | 4.x.x | Comming soon |
11+
512Installation
613------------
714
Original file line number Diff line number Diff line change 22 "name" : " 1ff/laravel-mongodb-session" ,
33 "description" : " A mongodb session driver for laravel" ,
44 "type" : " library" ,
5- "version" : " 1.1.1 " ,
5+ "version" : " 1.1.2 " ,
66 "require" : {
7- "jenssegers/mongodb" : " 3.* " ,
8- "illuminate/session" : " 5.*|6.* "
7+ "jenssegers/mongodb" : " ^3.5|^3.6 " ,
8+ "illuminate/session" : " ^5.0|^6.0 "
99 },
1010 "license" : " MIT" ,
1111 "authors" : [
You can’t perform that action at this time.
0 commit comments