Skip to content

Commit f65479d

Browse files
committed
BREAKING CHANGE: upgrade to PHP 8.0 and PHP-Casbin 4.0
1 parent 77f644d commit f65479d

File tree

5 files changed

+41
-59
lines changed

5 files changed

+41
-59
lines changed

.github/workflows/build.yml

+7-26
Original file line numberDiff line numberDiff line change
@@ -27,36 +27,17 @@ jobs:
2727
# medoo: [ ]
2828
# stability: [ prefer-lowest, prefer-stable ]
2929
include:
30-
# medoo 1.7
31-
- php: 7.1
32-
medoo: 1.7.*
33-
phpunit: ~7.0
34-
- php: 7.2
35-
medoo: 1.7.*
36-
phpunit: ~7.0
37-
- php: 7.3
38-
medoo: 1.7.*
39-
phpunit: ~7.0
40-
41-
# medoo 2.0
42-
- php: 7.3
43-
medoo: 2.0.*
44-
phpunit: ~7.0
45-
- php: 7.4
46-
medoo: 2.0.*
47-
phpunit: ~7.0
30+
# medoo 2.1
4831
- php: 8.0
49-
medoo: 2.0.*
32+
medoo: 2.1.*
5033
phpunit: ~9.0
51-
52-
# medoo 2.1
53-
- php: 7.3
34+
- php: 8.1
5435
medoo: 2.1.*
55-
phpunit: ~8.0
56-
- php: 7.4
36+
phpunit: ~9.0
37+
- php: 8.2
5738
medoo: 2.1.*
58-
phpunit: ~8.0
59-
- php: 8.0
39+
phpunit: ~9.0
40+
- php: 8.3
6041
medoo: 2.1.*
6142
phpunit: ~9.0
6243

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ composer.lock
66
.idea/
77
*.iml
88

9+
.phpunit*
910
# coverage report
1011
/build

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Medoo Adapter for Casbin
22

3-
[![Build Status](https://travis-ci.org/php-casbin/medoo-adapter.svg?branch=master)](https://travis-ci.org/php-casbin/medoo-adapter)
3+
[![Build Status](https://github.com/php-casbin/medoo-adapter/actions/workflows/build.yml/badge.svg)](https://github.com/php-casbin/medoo-adapter/actions/workflows/build.yml)
44
[![Coverage Status](https://coveralls.io/repos/github/php-casbin/medoo-adapter/badge.svg)](https://coveralls.io/github/php-casbin/medoo-adapter)
55
[![Latest Stable Version](https://poser.pugx.org/casbin/medoo-adapter/v/stable)](https://packagist.org/packages/casbin/medoo-adapter)
66
[![Total Downloads](https://poser.pugx.org/casbin/medoo-adapter/downloads)](https://packagist.org/packages/casbin/medoo-adapter)

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
],
1919
"license": "Apache-2.0",
2020
"require": {
21-
"php": ">=7.1.0",
22-
"casbin/casbin": "~3.1",
23-
"catfan/medoo": "~1.7|~2.0"
21+
"php": ">=8.0",
22+
"casbin/casbin": "~4.0",
23+
"catfan/medoo": "~2.1"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "~7.0|~8.0|~9.0",
27-
"php-coveralls/php-coveralls": "^2.4"
26+
"phpunit/phpunit": "~9.0",
27+
"php-coveralls/php-coveralls": "^2.7"
2828
},
2929
"autoload": {
3030
"psr-4": {

phpunit.xml.dist phpunit.xml

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
11-
<testsuites>
12-
<testsuite name="Application Test Suite">
13-
<directory>./tests/</directory>
14-
</testsuite>
15-
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18-
<directory suffix=".php">./src</directory>
19-
</whitelist>
20-
</filter>
21-
<logging>
22-
<log type="coverage-clover" target="build/logs/clover.xml"/>
23-
<log type="coverage-html" target="build/html"/>
24-
</logging>
25-
<php>
26-
<env name="DB_DATABASE" value="casbin"/>
27-
</php>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false">
11+
<testsuites>
12+
<testsuite name="Application Test Suite">
13+
<directory>./tests/</directory>
14+
</testsuite>
15+
</testsuites>
16+
<filter>
17+
<whitelist processUncoveredFilesFromWhitelist="true">
18+
<directory suffix=".php">./src</directory>
19+
</whitelist>
20+
</filter>
21+
<logging>
22+
<log type="coverage-clover" target="build/logs/clover.xml"/>
23+
<log type="coverage-html" target="build/html"/>
24+
</logging>
25+
<php>
26+
<env name="DB_DATABASE" value="casbin"/>
27+
</php>
2828
</phpunit>

0 commit comments

Comments
 (0)