File tree 5 files changed +23
-14
lines changed
5 files changed +23
-14
lines changed Original file line number Diff line number Diff line change 26
26
matrix :
27
27
php : [7.4, '8.0', 8.1]
28
28
lib :
29
+ - { laravel: ^10.0 }
29
30
- { laravel: ^9.0 }
30
31
- { laravel: ^8.0 }
31
32
- { laravel: ^7.0 }
35
36
- { php: 8.1, lib: { laravel: ^7.0 } }
36
37
- { php: 8.1, lib: { laravel: ^6.0 } }
37
38
- { php: 8.1, lib: { laravel: ^6.0, flags: --prefer-lowest } }
39
+ - { php: 8.0, lib: { laravel: ^10.0 } }
40
+ - { php: 7.4, lib: { laravel: ^10.0 } }
38
41
- { php: 7.4, lib: { laravel: ^9.0 } }
39
42
include :
43
+ - { php: 8.1, lib: { laravel: ^10.0 }, phpstan: '1' }
40
44
- { php: 8.1, lib: { laravel: ^9.0 }, phpstan: '1' }
41
45
- { php: 8.1, lib: { laravel: ^8.0 }, phpstan: '1' }
42
46
- { php: '8.0', lib: { laravel: ^9.0 }, phpstan: '1' }
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ filter:
10
10
11
11
build :
12
12
13
+ image : default-bionic
14
+
13
15
nodes :
14
16
analysis :
15
17
tests :
28
30
- 3306
29
31
30
32
environment :
31
- php : ' 7.4 '
33
+ php : ' 8.1.8 '
32
34
docker : true
33
35
34
36
dependencies :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ A tiny extension of `MySqlConnection` that manages **session** system variables
7
7
| Package | Version | Mandatory |
8
8
| :---| :---| :---:|
9
9
| PHP | <code >^7.4 | ;| ; ^8.0</code > | ✅ |
10
- | Laravel | <code >^6.0 | ;| ; ^7.0 | ;| ; ^8.0 | ;| ; ^9.0</code > | ✅ |
10
+ | Laravel | <code >^6.0 | ;| ; ^7.0 | ;| ; ^8.0 | ;| ; ^9.0 &# 124 ;&# 124 ; ^10.0 </code > | ✅ |
11
11
| PHPStan | <code >> ; =1.1</code > | |
12
12
13
13
## Installing
Original file line number Diff line number Diff line change 1
- version : ' 3 '
1
+ version : ' Compose-Spec '
2
2
3
3
services :
4
4
5
5
php :
6
- image : circleci /php:7.4
6
+ image : joseluisq /php-fpm:8.1
7
7
volumes :
8
8
- .:/code:cached
9
- command :
10
- sh -c '
11
- sudo docker-php-ext-install pdo_mysql;
12
- cd /code;
13
- tail -F /dev/null;
14
- '
9
+ working_dir : /code
10
+ entrypoint : ['tail', '-f', '/dev/null']
11
+ command : []
15
12
16
13
mysql :
17
- image: mysql:5.7
14
+ image : mysql:8.0
18
15
environment :
19
16
MYSQL_DATABASE : testing
20
17
MYSQL_USER : testing
21
18
MYSQL_PASSWORD : testing
22
19
MYSQL_ROOT_PASSWORD : testing
20
+
Original file line number Diff line number Diff line change 24
24
"require" : {
25
25
"php" : " ^7.4 || ^8.0" ,
26
26
"ext-pdo" : " *" ,
27
- "illuminate/support" : " ^6.0 || ^7.0 || ^8.0 || ^9.0" ,
28
- "illuminate/database" : " ^6.0 || ^7.0 || ^8.0 || ^9.0" ,
27
+ "illuminate/support" : " ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 " ,
28
+ "illuminate/database" : " ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 " ,
29
29
"mpyw/unclosure" : " ^3.0" ,
30
30
"mpyw/laravel-pdo-emulation-control" : " ^2.0.2"
31
31
},
35
35
"phpunit/phpunit" : " >=9.5" ,
36
36
"phpstan/phpstan" : " >=1.1" ,
37
37
"phpstan/extension-installer" : " >=1.1" ,
38
- "nunomaduro/larastan" : " ^ 1.0"
38
+ "nunomaduro/larastan" : " >= 1.0"
39
39
},
40
40
"scripts" : {
41
41
"test" : " vendor/bin/phpunit" ,
49
49
" extension.neon"
50
50
]
51
51
}
52
+ },
53
+ "config" : {
54
+ "allow-plugins" : {
55
+ "phpstan/extension-installer" : true
56
+ }
52
57
}
53
58
}
You can’t perform that action at this time.
0 commit comments