This commit is contained in:
Gregory Letellier
2023-10-26 14:34:20 +02:00
commit a2dc633be4
14 changed files with 5206 additions and 0 deletions

32
composer.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "kletellier/pdowrapper",
"description": "Pdo Wrapper for php with ActiveRecord system",
"type": "library",
"require": {
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"pestphp/pest": "^1.21",
"infection/infection": "^0.26.15"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kletellier\\PdoWrapper\\": "src/"
}
},
"authors": [
{
"name": "Gregory Letellier",
"email": "gregory_letellier@hotmail.com"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
}
}