Skip to content

Commit

Permalink
composer gitignore update
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Dec 2, 2017
1 parent 2c1e4d1 commit dc7a85c
Show file tree
Hide file tree
Showing 4 changed files with 4,769 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ npm-debug.log
.env
robots.txt
_ide_helper.php
.phpstorm.meta.php
composer.lock
.phpstorm.meta.php
6 changes: 6 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@

RewriteEngine On

# Prevent Direct Access to Protected Files
<FilesMatch "(?i)(^artisan$|\.env|\.log)">
Order deny,allow
Deny from all
</FilesMatch>

# Prevent Direct Access To Protected Folders
RewriteRule ^(app|bootstrap|config|database|resources|routes|storage|tests)/(.*) / [L,R=301]

Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"barryvdh/laravel-ide-helper": "2.3.*",
"bkwld/cloner": "3.2.*",
"dingo/api": "1.0.0-beta8",
"fzaninotto/faker": "1.6.*",
"guzzlehttp/guzzle": "6.3.*",
"intervention/image": "2.3.*",
"jackiedo/dotenv-editor": "1.*",
Expand All @@ -34,6 +33,9 @@
"sofa/eloquence": "5.4.*",
"tucker-eric/eloquentfilter": "1.1.*"
},
"require-dev": {
"fzaninotto/faker": "1.6.*"
},
"autoload": {
"classmap": [
"database",
Expand Down
Loading

0 comments on commit dc7a85c

Please sign in to comment.