1{
2  "name": "freedsx/asn1",
3  "description": "An ASN.1 library for PHP.",
4  "homepage": "https://github.com/FreeDSx/ASN1",
5  "keywords": [
6    "ASN.1",
7    "ASN1",
8    "BER",
9    "DER",
10    "X.690"
11  ],
12  "license": "MIT",
13  "authors": [
14    {
15      "name": "Chad Sikorra",
16      "email": "Chad.Sikorra@gmail.com"
17    }
18  ],
19  "require": {
20    "php": ">=7.1"
21  },
22  "require-dev": {
23    "phpspec/phpspec": "^5.1|^6.1|^7.1",
24    "phpstan/phpstan": "^0.11.15|^0.12",
25    "symplify/easy-coding-standard": "^6.1|^7.3|^9.0",
26    "friends-of-phpspec/phpspec-code-coverage": "^4.3|^6.1",
27    "squizlabs/php_codesniffer": "3.*",
28    "slevomat/coding-standard": "~7.0"
29  },
30  "suggest": {
31    "ext-gmp": "For big integer support in Integer/Enumerated/OID types and tag numbers."
32  },
33  "autoload": {
34    "psr-4": {"FreeDSx\\Asn1\\": "src/FreeDSx/Asn1"}
35  },
36  "scripts": {
37    "test-coverage": [
38      "phpspec run --no-interaction -c phpspec.cov.yml"
39    ],
40    "test": [
41      "phpspec run --no-interaction"
42    ],
43    "analyse": [
44      "phpstan analyse"
45    ],
46    "cs-fix": [
47      "phpcbf --standard=ruleset.xml --extensions=php --tab-width=4 -sp src",
48      "ecs --fix"
49    ]
50  },
51  "config": {
52    "allow-plugins": {
53      "dealerdirect/phpcodesniffer-composer-installer": true
54    }
55  }
56}
57