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", 24 "phpstan/phpstan": "^0.11.15", 25 "friends-of-phpspec/phpspec-code-coverage": "^4.3" 26 }, 27 "suggest": { 28 "ext-gmp": "For big integer support in Integer/Enumerated/OID types and tag numbers." 29 }, 30 "autoload": { 31 "psr-4": {"FreeDSx\\Asn1\\": "src/FreeDSx/Asn1"} 32 }, 33 "scripts": { 34 "test-coverage": [ 35 "phpspec run --no-interaction -c phpspec.cov.yml" 36 ], 37 "test": [ 38 "phpspec run --no-interaction" 39 ], 40 "analyse": [ 41 "phpstan analyse" 42 ] 43 } 44} 45