forked from bjyoungblood/BjyAuthorize
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from driehle/feature/php80
Updated dependencies allowing PHP 8.0
- Loading branch information
Showing
3 changed files
with
35 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
composer.lock | ||
composer.phar | ||
clover.xml | ||
phpunit.xml | ||
vendor | ||
.idea | ||
.idea | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,51 @@ | ||
{ | ||
"name": "kokspflanze/bjy-authorize", | ||
"description": "Laminas\\Acl based firewall system for Laminas/ZF2/3 dispatch protection", | ||
"description": "Laminas\\Acl based firewall system for Laminas dispatch protection", | ||
"type": "library", | ||
"license": "BSD-3-Clause", | ||
"homepage": "https://github.com/kokspflanze/BjyAuthorize", | ||
"keywords": [ | ||
"laminas", | ||
"zf", | ||
"zf2", | ||
"zf3", | ||
"acl", | ||
"lmc-user", | ||
"zfc-user" | ||
"authorization", | ||
"lmc-user" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Ben Youngblood", | ||
"email": "[email protected]", | ||
"homepage": "http://bjyoungblood.com/", | ||
"role": "Developer" | ||
"name": "Ben Youngblood", | ||
"email": "[email protected]", | ||
"homepage": "http://bjyoungblood.com/", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Marco Pivetta", | ||
"email": "[email protected]", | ||
"homepage": "http://ocramius.github.com/", | ||
"role": "Developer" | ||
"name": "Marco Pivetta", | ||
"email": "[email protected]", | ||
"homepage": "http://ocramius.github.com/", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3", | ||
"laminas/laminas-permissions-acl": "^2.7", | ||
"laminas/laminas-mvc": "^3.2", | ||
"laminas/laminas-eventmanager": "^3.3", | ||
"laminas/laminas-servicemanager": "^3.6", | ||
"laminas/laminas-http": "^2.14", | ||
"laminas/laminas-view": "^2.12", | ||
"laminas/laminas-authentication": "^2.7", | ||
"laminas/laminas-cache": "^2.10" | ||
"php": "^7.3 || ~8.0.0", | ||
"laminas/laminas-permissions-acl": "^2.8.0", | ||
"laminas/laminas-mvc": "^3.2.0", | ||
"laminas/laminas-eventmanager": "^3.4.0", | ||
"laminas/laminas-servicemanager": "^3.7.0", | ||
"laminas/laminas-http": "^2.15.0", | ||
"laminas/laminas-view": "^2.12.0", | ||
"laminas/laminas-authentication": "^2.8.0", | ||
"laminas/laminas-cache": "^2.13.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5", | ||
"laminas/laminas-console": "^2.8", | ||
"laminas/laminas-db": "^2.12", | ||
"doctrine/persistence": "^1.3.3 || ^2.0", | ||
"laminas/laminas-developer-tools": "^2.1", | ||
"lm-commons/lmc-user": "^3.1" | ||
"phpunit/phpunit": "^9.5.9", | ||
"laminas/laminas-console": "^2.8.0", | ||
"laminas/laminas-db": "^2.13.4", | ||
"doctrine/persistence": "^1.3.8 || ^2.2.2", | ||
"laminas/laminas-developer-tools": "^2.1.1", | ||
"lm-commons/lmc-user": "^3.5.0" | ||
}, | ||
"suggests": { | ||
"laminas/laminas-developer-tools": "if you need to see current authorization details while developing", | ||
"lm-commons/lmc-user": "LmcUser provides a good default setup to get started with bjyauthorize", | ||
"laminas/laminas-developer-tools": "if you need to see current authorization details while developing", | ||
"lm-commons/lmc-user": "LmcUser provides a good default setup to get started with bjyauthorize", | ||
"lm-commons/lmc-user-doctrine-orm": "To support Doctrine with LmcUser" | ||
}, | ||
"autoload": { | ||
|