Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@ jobs:
run: |
composer install --prefer-dist --no-progress --no-suggest

- name: install dependencies of cake app
run: |
cd vendor/cakephp/app
composer install --prefer-dist --no-progress --no-suggest

- name: Run test suite
run: ./vendor/bin/phpunit

Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@

/vendor/

composer.lock

.idea/
*.iml

# coverage report
/build
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
],
"license": "Apache-2.0",
"require": {
"cakephp/cakephp": "3.*",
"casbin/casbin": "~3.1"
"php": ">=7.2.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please format .

"cakephp/cakephp": "~4.0",
"casbin/casbin": "~3.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"cakephp/app": "3.*"
"phpunit/phpunit": "~8.5.0 || ^9.3"
},
"autoload": {
"psr-4": {
Expand Down
Loading