Skip to content
This repository has been archived by the owner on Feb 6, 2019. It is now read-only.

Commit

Permalink
add packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
fulldecent committed May 16, 2016
1 parent 43ef84f commit e78db1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "fulldecent/pdo-wrapper",
"name": "fulldecent/thin-pdo",
"description": "A minimal extension for PHP's PDO class designed to make running SQL statements easier",
"homepage": "http://github.com/fulldecent/pdo-wrapper",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
},
"autoload": {
"psr-0": {
"PdoWrapper": "src/"
"ThinPdo": "src/"
}
}
}
2 changes: 1 addition & 1 deletion src/PdoWrapper/Db.php → src/ThinPdo/Db.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace PdoWrapper;
namespace ThinPdo;

class Db extends PDO {
private $error;
Expand Down

0 comments on commit e78db1f

Please sign in to comment.