Skip to content

Commit

Permalink
Merge pull request #37 from MaxandreOgeret/phish-repair
Browse files Browse the repository at this point in the history
Added google safebrowsing phishing verification
  • Loading branch information
MaxandreOgeret authored May 6, 2019
2 parents fe71d30 + 00e8e56 commit 53b486a
Show file tree
Hide file tree
Showing 38 changed files with 2,939 additions and 674 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# .env
DATABASE_URL="mysql://root:root@127.0.0.1:3306/lessn"
PHISHTANK_KEY="changethis"
DATABASE_URL="postgresql://lessn:lessn@127.0.0.1:5432/lessn"
SAFE_BROWSING_KEY="changethis"
APP_SECRET="changethis"
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@ yarn-error.log
#
/fishtank/*
!/fishtank/.gitignore

###> squizlabs/php_codesniffer ###
/.phpcs-cache
/phpcs.xml
###< squizlabs/php_codesniffer ###
File renamed without changes.
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"license": "proprietary",
"require": {
"php": "^7.1.3",
"ext-curl": "*",
"ext-iconv": "*",
"league/uri": "^5.3",
"league/uri-manipulations": "^1.5",
"league/uri-parser": "^1.4",
"sensio/framework-extra-bundle": "^5.1",
"symfony/asset": "^4.0",
Expand All @@ -25,10 +28,12 @@
"symfony/validator": "^4.0",
"symfony/web-link": "^4.0",
"symfony/webpack-encore-pack": "*",
"symfony/yaml": "^4.0"
"symfony/yaml": "^4.0",
"ext-json": "*"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.0",
"squizlabs/php_codesniffer": "^3.4",
"symfony/browser-kit": "^4.0",
"symfony/css-selector": "^4.0",
"symfony/debug-pack": "*",
Expand Down Expand Up @@ -77,8 +82,7 @@
"extra": {
"symfony": {
"id": "01CADSGG9GG8P8X9WRB3NKMW6X",
"allow-contrib": false,
"require": "~4.2.3"
"allow-contrib": false
}
}
}
Loading

0 comments on commit 53b486a

Please sign in to comment.