initial commit

This commit is contained in:
Guillermo Dev
2018-12-01 12:08:22 +01:00
commit a00aaa037c
5 changed files with 1535 additions and 0 deletions

29
composer.json Executable file
View File

@@ -0,0 +1,29 @@
{
"name": "gbili/exception",
"description": "Provides basic exception classes",
"authors" : [
{
"name" : "Guillermo Pages",
"email" : "public.gullermo@gmail.com"
}
],
"keywords": [
"exception"
],
"autoload": {
"psr-4": {
"Gbili\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gbili\\": "tests/"
}
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "^6"
}
}