Server IP : 184.154.167.98 / Your IP : 3.14.130.63 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/fotografico/3rdparty/fgrosse/phpasn1/ |
Upload File : |
#### v.2.1.0 (2018-03) * add support for `bcmath` extension (making `gmp` optional)<br> https://github.com/fgrosse/PHPASN1/pull/68 #### v.2.0.1 & v.1.5.3 (2017-12) * add .gitattributes file to prevent examples and tests to be installed via composer when --prefer-dist was set #### v.2.0.0 (2017-08) * rename `FG\ASN1\Object` to `FG\ASN1\ASNObject` because `Object` is a special class name in the next major PHP release - when you upgrade you have to adapt all corresponding `use` and `extends` statements as well as type hints and all usages of `Object::fromBinary(…)`. * generally drop PHP 5.6 support #### v.1.5.2 (2016-10-29) * allow empty octet strings #### v.1.5.1 (2015-10-02) * add keywords to composer.json (this is a version on its own so the keywords are found on a stable version at packagist.org) #### v.1.5.0 (2015-10-30) * fix a bug that would prevent you from decoding context specific tags on multiple objects [#57](https://github.com/fgrosse/PHPASN1/issues/57) - `ExplicitlyTaggedObject::__construct` does now accept multiple objects to be tagged with a single tag - `ExplicitlyTaggedObject::getContent` will now always return an array (even if only one object is tagged) #### v.1.4.2 (2015-09-29) * fix a bug that would prevent you from decoding empty tagged objects [#57](https://github.com/fgrosse/PHPASN1/issues/57) #### v.1.4.1 * improve exception messages and general error handling [#55](https://github.com/fgrosse/PHPASN1/pull/55) #### v.1.4.0 * **require PHP 5.6** * support big integers (closes #1 and #37) * enforce one code style via [styleci.io][9] * track code coverage via [coveralls.io][10] * replace obsolete `FG\ASN1\Exception\GeneralException` with `\Exception` * `Construct` (`Sequence`, `Set`) does now implement `ArrayAccess`, `Countable` and `Iterator` so its easier to use * add [`TemplateParser`][11]