Skip to content

Commit 9590645

Browse files
authored
Merge pull request #7 from basakest/update-policies
feat: support updatePolicies method
2 parents c178a5d + eac1345 commit 9590645

File tree

10 files changed

+1318
-1636
lines changed

10 files changed

+1318
-1636
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ jobs:
4747
run: |
4848
composer install --prefer-dist --no-progress --no-suggest
4949
50-
- name: install dependencies of cake app
51-
run: |
52-
cd vendor/cakephp/app
53-
composer install --prefer-dist --no-progress --no-suggest
54-
5550
- name: Run test suite
5651
run: ./vendor/bin/phpunit
5752

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1+
12
/vendor/
3+
4+
composer.lock
5+
6+
.idea/
7+
*.iml
8+
9+
# coverage report
10+
/build

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
],
1111
"license": "Apache-2.0",
1212
"require": {
13-
"cakephp/cakephp": "3.*",
14-
"casbin/casbin": "~3.1"
13+
"php": ">=7.2.0",
14+
"cakephp/cakephp": "~4.0",
15+
"casbin/casbin": "~3.1"
1516
},
1617
"require-dev": {
17-
"phpunit/phpunit": "^7.0",
18-
"cakephp/app": "3.*"
18+
"phpunit/phpunit": "~8.5.0 || ^9.3"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)