Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set platform to php:8.1.99 in composer.json configuration #109

Merged
merged 2 commits into from
Nov 1, 2024
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
159 changes: 82 additions & 77 deletions composer.json
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"
}
}
Loading