Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDevick committed Oct 30, 2021
0 parents commit 02f276e
Show file tree
Hide file tree
Showing 13 changed files with 2,546 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
composer.phar
/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "dinodev/my-sql",
"description": "Classes you can modify your MySql database even if you don't know sql",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dino Dev",
"email": "erick@bilhalba.com.br"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"DinoDev\\MySql\\": "src/"
}
}
}
Loading

0 comments on commit 02f276e

Please sign in to comment.