Projet

Général

Profil

Paste
Télécharger (1,21 ko) Statistiques
| Branche: | Révision:

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

1
{
2
    "name": "google/recaptcha",
3
    "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
4
    "type": "library",
5
    "keywords": ["recaptcha", "captcha", "spam", "abuse"],
6
    "homepage": "https://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.5"
14
    },
15
    "require-dev": {
16
        "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7",
17
        "friendsofphp/php-cs-fixer": "^2.2.20|^2.12",
18
        "php-coveralls/php-coveralls": "^2.1"
19
    },
20
    "autoload": {
21
        "psr-4": {
22
            "ReCaptcha\\": "src/ReCaptcha"
23
        }
24
    },
25
    "extra": {
26
        "branch-alias": {
27
            "dev-master": "1.2.x-dev"
28
        }
29
    },
30
    "scripts": {
31
        "lint": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run .",
32
        "lint-fix": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no .",
33
        "test": "vendor/bin/phpunit --colors=always",
34
        "serve-examples": "@php -S localhost:8080 -t examples"
35
    },
36
    "config": {
37
        "process-timeout": 0
38
    }
39
}