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.0" 24 }, 25 "suggest": { 26 "ext-gmp": "For big integer support in Integer/Enumerated/OID types and tag numbers." 27 }, 28 "config": { 29 "bin-dir": "bin" 30 }, 31 "autoload": { 32 "psr-4": {"FreeDSx\\Asn1\\": "src/FreeDSx/Asn1"} 33 } 34} 35