1{
2    "name": "webmozart/assert",
3    "description": "Assertions to validate method input/output with nice error messages.",
4    "keywords": [
5        "assert",
6        "check",
7        "validate"
8    ],
9    "license": "MIT",
10    "authors": [
11        {
12            "name": "Bernhard Schussek",
13            "email": "bschussek@gmail.com"
14        }
15    ],
16    "require": {
17        "php": "^5.3.3 || ^7.0",
18        "symfony/polyfill-ctype": "^1.8"
19    },
20    "require-dev": {
21        "phpunit/phpunit": "^4.6",
22        "sebastian/version": "^1.0.1"
23    },
24    "extra": {
25        "branch-alias": {
26            "dev-master": "1.3-dev"
27        }
28    },
29    "autoload": {
30        "psr-4": {
31            "Webmozart\\Assert\\": "src/"
32        }
33    },
34    "autoload-dev": {
35        "psr-4": {
36            "Webmozart\\Assert\\Tests\\": "tests/"
37        }
38    }
39}
40