Skip to content

Commit cbf4d02

Browse files
committed
Bug fixes
1 parent 1260a05 commit cbf4d02

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"Database\\": "./"
14+
"Database\\": "src/"
1515
}
1616
},
1717
"require": {
1818
"php": ">=7.4.0",
19-
"vlucas/phpdotenv": "^5.3"
19+
"vlucas/phpdotenv": "^5.3",
20+
"ext-pdo": "*"
2021
}
2122
}

core/Database.php renamed to src/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Database\Core;
2+
namespace Database;
33

44
use PDO;
55

0 commit comments

Comments
 (0)