-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set platform to php:8.1.99 in composer.json configuration
Signed-off-by: Eric Richer [email protected] <[email protected]>
- Loading branch information
Showing
1 changed file
with
82 additions
and
77 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,84 +1,89 @@ | ||
{ | ||
"name": "lm-commons/lmc-user", | ||
"description": "A generic user registration and authentication module for Laminas. Supports Laminas\\Db and Doctrine2.", | ||
"type": "library", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"laminas" | ||
], | ||
"homepage": "https://github.com/LM-Commons/LmcUser", | ||
"authors": [ | ||
{ | ||
"name": "Evan Coury", | ||
"email": "[email protected]", | ||
"homepage": "http://blog.evan.pro/" | ||
}, | ||
{ | ||
"name": "Kyle Spraggs", | ||
"email": "[email protected]", | ||
"homepage": "http://www.spiffyjr.me/" | ||
}, | ||
{ | ||
"name": "Mat Wright", | ||
"email": "[email protected]", | ||
"homepage": "https://matwright.dev/" | ||
} | ||
], | ||
|
||
"require": { | ||
"php" : "^7.3 || ^8.0", | ||
"laminas/laminas-authentication" : "^2.7", | ||
"laminas/laminas-crypt" : "^3.0", | ||
"laminas/laminas-form" : "^3.0", | ||
"laminas/laminas-inputfilter" : "^2.10", | ||
"laminas/laminas-loader" : "^2.6", | ||
"laminas/laminas-modulemanager" : "^2.8", | ||
"laminas/laminas-mvc" : "^3.0", | ||
"laminas/laminas-servicemanager" : "^3.0", | ||
"laminas/laminas-stdlib" : "^3.0", | ||
"laminas/laminas-validator" : "^2.13", | ||
"laminas/laminas-db" : "^2.11", | ||
"laminas/laminas-view" : "^2.11", | ||
"laminas/laminas-session" : "^2.9", | ||
"laminas/laminas-http" : "^2.11", | ||
"laminas/laminas-mvc-plugin-flashmessenger" : "^1.2", | ||
"laminas/laminas-i18n" : "^2.10", | ||
"laminas/laminas-mvc-plugin-prg" : "^1.2", | ||
"laminas/laminas-hydrator" : "^4.1" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^9.5.4", | ||
"phpmd/phpmd" : "^2.7.0", | ||
"squizlabs/php_codesniffer" : "^3.5.5", | ||
"laminas/laminas-captcha" : "^2.6" | ||
}, | ||
"suggest": { | ||
"laminas/laminas-captcha" : "Laminas\\Captcha if you want to use the captcha component" | ||
"name": "lm-commons/lmc-user", | ||
"description": "A generic user registration and authentication module for Laminas. Supports Laminas\\Db and Doctrine2.", | ||
"type": "library", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"laminas" | ||
], | ||
"homepage": "https://github.com/LM-Commons/LmcUser", | ||
"authors": [ | ||
{ | ||
"name": "Evan Coury", | ||
"email": "[email protected]", | ||
"homepage": "http://blog.evan.pro/" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LmcUser\\": "src/" | ||
} | ||
{ | ||
"name": "Kyle Spraggs", | ||
"email": "[email protected]", | ||
"homepage": "http://www.spiffyjr.me/" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"LmcUserTest\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laminas": { | ||
"module": "LmcUser" | ||
{ | ||
"name": "Mat Wright", | ||
"email": "[email protected]", | ||
"homepage": "https://matwright.dev/" | ||
} | ||
], | ||
|
||
"require": { | ||
"php" : "^7.3 || ^8.0", | ||
"laminas/laminas-authentication" : "^2.7", | ||
"laminas/laminas-crypt" : "^3.0", | ||
"laminas/laminas-form" : "^3.0", | ||
"laminas/laminas-inputfilter" : "^2.10", | ||
"laminas/laminas-loader" : "^2.6", | ||
"laminas/laminas-modulemanager" : "^2.8", | ||
"laminas/laminas-mvc" : "^3.0", | ||
"laminas/laminas-servicemanager" : "^3.0", | ||
"laminas/laminas-stdlib" : "^3.0", | ||
"laminas/laminas-validator" : "^2.13", | ||
"laminas/laminas-db" : "^2.11", | ||
"laminas/laminas-view" : "^2.11", | ||
"laminas/laminas-session" : "^2.9", | ||
"laminas/laminas-http" : "^2.11", | ||
"laminas/laminas-mvc-plugin-flashmessenger" : "^1.2", | ||
"laminas/laminas-i18n" : "^2.10", | ||
"laminas/laminas-mvc-plugin-prg" : "^1.2", | ||
"laminas/laminas-hydrator" : "^4.1" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^9.5.4", | ||
"phpmd/phpmd" : "^2.7.0", | ||
"squizlabs/php_codesniffer" : "^3.5.5", | ||
"laminas/laminas-captcha" : "^2.6" | ||
}, | ||
"suggest": { | ||
"laminas/laminas-captcha" : "Laminas\\Captcha if you want to use the captcha component" | ||
}, | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
"@test" | ||
], | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml", | ||
"test-coverage-html": "phpunit --coverage-html ./build/html" | ||
"autoload": { | ||
"psr-4": { | ||
"LmcUser\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"LmcUserTest\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laminas": { | ||
"module": "LmcUser" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "8.1.99" | ||
} | ||
}, | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
"@test" | ||
], | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml", | ||
"test-coverage-html": "phpunit --coverage-html ./build/html" | ||
} | ||
} |