summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6af9eb7f663e106e82bf178bff287274981133cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  "name": "swaggest/json-schema",
  "description": "High definition PHP structures with JSON-schema based validation",
  "type": "library",
  "require": {
    "php": ">=5.4",
    "ext-json": "*",
    "phplang/scope-exit": "^1.0",
    "swaggest/json-diff": "^3.8.2",
    "symfony/polyfill-mbstring": "^1.19"
  },
  "require-dev": {
    "phperf/phpunit": "4.8.37"
  },
  "license": "MIT",
  "authors": [
    {
      "name": "Viacheslav Poturaev",
      "email": "vearutop@gmail.com"
    }
  ],
  "support": {
    "email": "vearutop@gmail.com"
  },
  "prefer-stable": true,
  "autoload": {
    "psr-4": {
      "Swaggest\\JsonSchema\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Swaggest\\JsonSchema\\Tests\\": "tests/src/"
    }
  },
  "config": {
    "platform": {
      "php": "5.4.45"
    }
  },
  "suggest": {
    "ext-mbstring": "For better performance"
  }
}