initial commit

Add main logic. Add some dogs and some actions.
This commit is contained in:
2018-06-03 18:27:37 +07:00
commit 9aca729675
16 changed files with 2402 additions and 0 deletions

27
composer.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "dannc/test-devjsru",
"description": "test task",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "dannc",
"email": "dannc.sao@gmail.com"
}
],
"minimum-stability": "RC",
"require": {
"php": "^7.2",
"nategood/commando": "^0.2",
"illuminate/support": "^5.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0@dev",
"phpunit/phpunit": "^7.2"
},
"autoload": {
"psr-4": {
"Dogs\\": "src/"
}
}
}