Skip to content

Commit

Permalink
feat: update version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Nov 8, 2024
1 parent e5bb44c commit af0dba3
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 36 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ Thumbs.db

# phpstorm
.idea/*

# Alchemy
.alchemy
72 changes: 36 additions & 36 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"name": "leafs/http",
"description": "Http abstraction for Leaf PHP",
"keywords": [
"http",
"request",
"response",
"headers",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.dev/modules/http/v/2/request.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\Http\\": "src"
"name": "leafs/http",
"description": "Http abstraction for Leaf PHP",
"keywords": [
"http",
"request",
"response",
"headers",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.dev/modules/http/v/2/request.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\Http\\": "src"
},
"files": [
"src/functions.php"
]
},
"files": [
"src/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"leafs/anchor": "*",
"leafs/form": "*",
"leafs/fs": "^1.3"
}
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"leafs/anchor": "*",
"leafs/form": "^3.0",
"leafs/fs": "^2.0"
}
}

0 comments on commit af0dba3

Please sign in to comment.