Lines Matching +full:php +full:- +full:version
1 Email-Address-Validator
4 …[AddedBytes' EmailAddressValidator class](https://code.google.com/p/php-email-address-validation/).
9 - [Composer](https://getcomposer.org/) support
10 - Refactored the class to be purely static
11 - Opened up methods for checking the "local part" (the bit before the `@`) and the "domain part" (a…
13 - Additional code style and docblock fixing to properly follow the [PHP-FIG PSR-1](http://www.php-f…
14 and [PSR-2](http://www.php-fig.org/psr/psr-2/) documents
16 Note that this class is still **un-namespaced** - i.e. it's still declared in the global namespace.…
17 … to correctly load it when required, so this shouldn't be a problem in practice - it's just perhaps
18 not best-practice.
23 php composer.phar require aziraphale/email-address-validator:^2
26 If you don't want to use Composer (why not?!), just download the `EmailAddressValidator.php` file, …
28 …version is **version 2.0.0**. I have kept the original class tagged as **version 1.0.10** (it was …
30 php composer.phar require aziraphale/email-address-validator:^1
37 ```php
39 if ($validator->check_email_address('test@example.org')) {
44 The **new syntax** is as follows (ensure you have already included Composer's `autoload.php` file!):
45 ```php
52 ```php