Skip to content

Commit

Permalink
Fix required PHP version in composer (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
silas authored Nov 30, 2024
1 parent c3ee78c commit 8a78b0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://userhub.com",
"license": "MIT",
"require": {
"php": ">=8.1.0",
"php": ">=8.2.0",
"ext-curl": "*",
"ext-json": "*"
},
Expand Down
4 changes: 2 additions & 2 deletions lib/Internal/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
abstract class Constants
{
public const API_BASE_URL = 'https://api.userhub.com';
public const USER_AGENT = 'UserHub-PHP/0.7.0';
public const VERSION = '0.7.0';
public const USER_AGENT = 'UserHub-PHP/0.7.1';
public const VERSION = '0.7.1';

public const AUTH_HEADER = 'Authorization';
public const API_KEY_HEADER = 'UserHub-Api-Key';
Expand Down

0 comments on commit 8a78b0d

Please sign in to comment.