Skip to content

Commit

Permalink
Modernize en Optimize (A LOT) PHP platform
Browse files Browse the repository at this point in the history
* Use an external file to be able to run static analysis tool (ATM,
  analyzer crash because the file is too big)
* Enable the opcache caching feature (better for the RAM)
* Use key instead of value when searching in the array
* Add type hint everywhere
* Use generator to lazy load evualuation as much as possible
  • Loading branch information
lyrixx committed Nov 25, 2020
1 parent 38606ec commit 275bacc
Show file tree
Hide file tree
Showing 7 changed files with 33,931 additions and 246 deletions.
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "fgribreau/mailchecker",
"description": "Temporary (disposable/throwaway) email detection library. Covers 1987 fake email providers.",
"keywords": ["fake", "email", "detection"],
"keywords": ["fake", "email", "detection", "disposable"],
"license": "MIT",
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
Expand Down

0 comments on commit 275bacc

Please sign in to comment.