Skip to content

Commit

Permalink
Implement base models and bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Horat1us committed Nov 21, 2018
1 parent ae217bf commit 6176b00
Show file tree
Hide file tree
Showing 17 changed files with 2,997 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
DB_NAME=yii2_guzzle
DB_TYPE=pgsql
DB_PORT=5432
DB_HOST=localhost
DB_USERNAME=postgres
DB_PASSWORD=
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea/
.env

/vendor/
53 changes: 53 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "wearesho-team/yii2-guzzle",
"description": "Container configuration with requests logs for Yii2",
"type": "library",
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.3",
"horat1us/yii2-base": "^1.14",
"nesbot/carbon": "^1.30",
"yiisoft/yii2": "^2.0.15"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"squizlabs/php_codesniffer": "^3.3",
"vlucas/phpdotenv": "^2.5"
},
"license": "MIT",
"authors": [
{
"name": "Alexander Letnikow",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:Horat1us/yii2-phpunit.git"
}
],
"config": {
"process-timeout": 1800,
"sort-packages": true,
"platform": {
"php": "7.2"
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR2 ./src ./tests",
"test": "./vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Wearesho\\Yii\\Guzzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wearesho\\Yii\\Guzzle\\Tests\\": "tests/"
}
}
}
Loading

0 comments on commit 6176b00

Please sign in to comment.