-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
statistic by customer and profits, fix bugs
- Loading branch information
Showing
18 changed files
with
921 additions
and
398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
APP_ENV=local | ||
APP_DEBUG=true | ||
APP_KEY=A1GTLrmxPXVmUfdai7LhDCgyvCMYdhFt | ||
APP_URL=http://localhost | ||
|
||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_DATABASE=ccbuy_demo | ||
DB_USERNAME=root | ||
DB_PASSWORD=root | ||
|
||
DB=ccbuy | ||
DB_DEMO=ccbuy_demo | ||
|
||
CACHE_DRIVER=file | ||
SESSION_DRIVER=file | ||
QUEUE_DRIVER=sync | ||
|
||
REDIS_HOST=127.0.0.1 | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
MAIL_DRIVER=smtp | ||
MAIL_HOST=mailtrap.io | ||
MAIL_PORT=2525 | ||
MAIL_USERNAME=null | ||
MAIL_PASSWORD=null | ||
MAIL_ENCRYPTION=null | ||
|
||
//use for website on the subroot | ||
SUBROOT=Q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<IfModule mod_rewrite.c> | ||
RewriteEngine on | ||
RewriteRule ^$ public/ [L] | ||
RewriteRule (.*) public/$1 [L] | ||
</IfModule> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
{ | ||
"name": "laravel/laravel", | ||
"description": "The Laravel Framework.", | ||
"keywords": ["framework", "laravel"], | ||
"name": "taoyu65/ccbuy", | ||
"description": "Freelance Retail Consultant", | ||
"keywords": ["laravel", "retail" , "php"], | ||
"license": "MIT", | ||
"type": "project", | ||
"require": { | ||
"php": ">=5.5.9", | ||
"laravel/framework": "5.2.*" | ||
"laravel/framework": "5.2.*", | ||
"nwidart/db-exporter": "1.*", | ||
"xethron/migrations-generator":"dev-l5", | ||
"way/generators":"dev-feature/laravel-five-stable" | ||
|
||
}, | ||
"require-dev": { | ||
"fzaninotto/faker": "~1.4", | ||
"mockery/mockery": "0.9.*", | ||
"phpunit/phpunit": "~4.0", | ||
"symfony/css-selector": "2.8.*|3.0.*", | ||
"symfony/dom-crawler": "2.8.*|3.0.*" | ||
"symfony/dom-crawler": "2.8.*|3.0.*", | ||
"xethron/migrations-generator": "dev-l5", | ||
"way/generators": "dev-feature/laravel-five-stable" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
|
@@ -47,6 +53,13 @@ | |
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
"preferred-install": "dist", | ||
"[email protected]":"jamisonvalenta/Laravel-4-Generators.git" | ||
}, | ||
"repositories": { | ||
"repo-name": { | ||
"type": "git", | ||
"url": "[email protected]:jamisonvalenta/Laravel-4-Generators.git" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.