Projet

Général

Profil

Paste
Télécharger (765 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / recaptcha / recaptcha-php / composer.json @ be58a50c

1
{
2
    "name": "google/recaptcha",
3
    "description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
4
    "type": "library",
5
    "keywords": ["recaptcha", "captcha", "spam", "abuse"],
6
    "homepage": "http://www.google.com/recaptcha/",
7
    "license": "BSD-3-Clause",
8
    "support": {
9
        "forum": "https://groups.google.com/forum/#!forum/recaptcha",
10
        "source": "https://github.com/google/recaptcha"
11
    },
12
    "require": {
13
        "php": ">=5.3.2"
14
    },
15
    "require-dev": {
16
        "phpunit/phpunit": "4.5.*"
17
    },
18
    "autoload": {
19
        "psr-4": {
20
            "ReCaptcha\\": "src/ReCaptcha"
21
        }
22
    },
23
    "extra": {
24
        "branch-alias": {
25
            "dev-master": "1.1.x-dev"
26
        }
27
    }
28
}