File tree Expand file tree Collapse file tree 4 files changed +17
-22
lines changed Expand file tree Collapse file tree 4 files changed +17
-22
lines changed Original file line number Diff line number Diff line change 5
5
push : ~
6
6
schedule :
7
7
# Do not make it the first of the month and/or midnight since it is a very busy time
8
- - cron : " * 10 5 * *"
8
+ - cron : " 10 10 5 * *"
9
9
10
10
jobs :
11
11
tests :
@@ -14,17 +14,13 @@ jobs:
14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- include :
18
- # Lowest Deps
19
- - php : 8.1
20
- symfony : 5.4.*
21
- composer-flags : ' --prefer-stable'
22
- can-fail : false
23
- # Stable deps
24
- - php : 8.2
25
- symfony : 6.3.*
26
- composer-flags : ' --prefer-stable'
27
- can-fail : false
17
+ php : ['8.1', '8.2', '8.3']
18
+ symfony : ['5.4.*', '6.4.*', '7.0.*']
19
+ composer-flags : ['--prefer-stable']
20
+ can-fail : [false]
21
+ exclude :
22
+ - php : " 8.1"
23
+ symfony : " 7.0.*"
28
24
29
25
name : " PHP ${{ matrix.php }} - Symfony ${{ matrix.symfony }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"
30
26
35
31
- name : " checkout"
36
32
uses : " actions/checkout@v4"
37
33
38
- - name : " build the PHP8 environment"
39
- run : " dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.2.0' php"
40
- if : startsWith(matrix.php, '8')
34
+ - name : " build the PHP environment"
35
+ run : " dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.3.1' php"
41
36
42
37
- name : " install dependencies"
43
38
run : " dev/bin/php composer update --ansi ${{ matrix.composer-flags }}"
Original file line number Diff line number Diff line change 22
22
"league/oauth2-server" : " ^8.3" ,
23
23
"nyholm/psr7" : " ^1.4" ,
24
24
"psr/http-factory" : " ^1.0" ,
25
- "symfony/event-dispatcher" : " ^5.4|^6.2" ,
26
- "symfony/framework-bundle" : " ^5.4|^6.2" ,
25
+ "symfony/event-dispatcher" : " ^5.4|^6.2|^7.0 " ,
26
+ "symfony/framework-bundle" : " ^5.4|^6.2|^7.0 " ,
27
27
"symfony/polyfill-php81" : " ^1.22" ,
28
28
"symfony/psr-http-message-bridge" : " ^2.0|^6|^7" ,
29
- "symfony/security-bundle" : " ^5.4|^6.2"
29
+ "symfony/security-bundle" : " ^5.4|^6.2|^7.0 "
30
30
},
31
31
"require-dev" : {
32
32
"ext-pdo" : " *" ,
33
33
"ext-pdo_sqlite" : " *" ,
34
- "symfony/browser-kit" : " ^5.4|^6.2" ,
35
- "symfony/phpunit-bridge" : " ^5.4|^6.2"
34
+ "symfony/browser-kit" : " ^5.4|^6.2|^7.0 " ,
35
+ "symfony/phpunit-bridge" : " ^5.4|^6.2|^7.0 "
36
36
},
37
37
"autoload" : {
38
38
"psr-4" : { "League\\ Bundle\\ OAuth2ServerBundle\\ " : " src/" }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ LABEL maintainer="Petar Obradović <petar.obradovic@trikoder.net>"
7
7
RUN mkdir -p /app/bin
8
8
ENV PATH /app/bin:$PATH
9
9
10
- ARG XDEBUG_VERSION=3.1.6
10
+ ARG XDEBUG_VERSION=3.3.1
11
11
12
12
# Install needed core and PECL extensions
13
13
RUN apk add --update --no-cache --virtual .build-deps \
Original file line number Diff line number Diff line change 4
4
5
5
namespace League \Bundle \OAuth2ServerBundle \EventListener ;
6
6
7
- use Symfony \Bundle \Security \ Core \Security ;
7
+ use Symfony \Bundle \SecurityBundle \Security ;
8
8
use Symfony \Component \Security \Core \Security as LegacySecurity ;
9
9
10
10
if (class_exists (Security::class)) {
You can’t perform that action at this time.
0 commit comments