summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 230ac13123dcdb10416b1e698fed2d9a3a0a5811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "name": "hbattat/verifyemail",
    "description": "PHP class that can be easily used to verify an email address and make sure it is valid and does exist on the mail server.",
    "type": "library",
    "require": {
        "php": ">= 5"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8.27"
    },
    "license": "Apache",
    "authors": [
        {
            "name": "Sam Battat",
            "email": "hbattat@msn.com"
        }
    ],
    "autoload": {
        "psr-4": {
            "hbattat\\": "./src"
        }
    }
}