Skip to content

Commit

Permalink
Fixed autoload (#8)
Browse files Browse the repository at this point in the history
* Fixed autoload naming
  • Loading branch information
Anuril authored Sep 30, 2023
1 parent 9cf2754 commit 2a7b014
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A Proxmox VE API v2 client with symfony",
"type": "library",
"require": {
"php": "^8.0|^8.2",
"php": "^8.0|^8.1|^8.2",
"symfony/http-client": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/validator": "^5.3"
Expand All @@ -15,7 +15,7 @@
},
"autoload": {
"psr-4": {
"PVE2APIClient\\PVE2APIClient\\PVE2_API\\": "src/"
"PVE2APIClient\\": "src/"
}
},
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/pve2_api.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/

namespace PVE2APIClient\PVE2APIClient\PVE2_API;
namespace PVE2APIClient;

use Symfony\Component\HttpClient\HttpClient;
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
Expand Down

0 comments on commit 2a7b014

Please sign in to comment.