PHP Classes

File: composer.json

Recommend this page to a friend!
  Packages of Raul   Disposable Email Blocker Core   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Disposable Email Blocker Core
Detect disposable or temporary email addresses
Author: By
Last change:
Date: 1 month ago
Size: 2,087 bytes
 

Contents

Class file image Download
{ "name": "raul3k/disposable-email-blocker-core", "description": "Fast disposable/temporary email detection with PSL support, pattern matching, caching and whitelist", "type": "library", "license": "MIT", "authors": [ { "name": "Raul", "homepage": "https://github.com/raul3k" } ], "homepage": "https://github.com/raul3k/disposable-email-blocker-core", "support": { "issues": "https://github.com/raul3k/disposable-email-blocker-core/issues", "source": "https://github.com/raul3k/disposable-email-blocker-core" }, "keywords": [ "disposable", "email", "temporary", "validation", "spam", "burner", "throwaway", "tempmail" ], "require": { "php": "^8.1", "jeremykendall/php-domain-parser": "^6.4", "ext-intl": "*" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.0", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^10.0", "psr/cache": "^3.0", "psr/simple-cache": "^3.0" }, "suggest": { "psr/cache": "For PSR-6 cache adapter support", "psr/simple-cache": "For PSR-16 cache adapter support" }, "bin": [ "bin/update-domains", "bin/update-psl" ], "autoload": { "psr-4": { "Raul3k\\DisposableBlocker\\Core\\": "src/" } }, "autoload-dev": { "psr-4": { "Raul3k\\DisposableBlocker\\Core\\Tests\\": "tests/" } }, "scripts": { "test": "phpunit", "test:coverage": "phpunit --coverage-html coverage", "analyse": "phpstan analyse", "cs:check": "php-cs-fixer fix --dry-run --diff", "cs:fix": "php-cs-fixer fix", "quality": [ "@cs:check", "@analyse", "@test" ] }, "config": { "sort-packages": true, "allow-plugins": { "phpstan/extension-installer": true } }, "minimum-stability": "stable" }