TinCanPHP icon indicating copy to clipboard operation
TinCanPHP copied to clipboard

PHP library for the Experience API (Tin Can API)

Results 16 TinCanPHP issues
Sort by recently updated
recently updated
newest added

As of PHP 8.0, the native PHP method `set_error_handler` now only accepts 4 parameters instead of 5 due to the variable `$errcontext` being removed. See PHP official Docs: https://www.php.net/manual/en/function.set-error-handler.php ```...

Hello, here https://github.com/namshi/jose I've found a "Deprecation notice" and a suggestion to use a maintained library, eg: https://github.com/firebase/php-jwt do you plan to change the dependency? thanks

the packagist / composer instance tops out at php 7. Are there plans to be compatible with php 8?

On Php 7.3 you get this exception: ErrorException(code: 0): count(): Parameter must be an array or an object that implements Countable at rusticisoftware/tincan/src/Map.php:49 This commit fixes it.

There is a [HHVM blog post](https://hhvm.com/blog/2018/09/12/end-of-php-support-future-of-hack.html) that says HHVM v3.30 will be the last version to support PHP. Maybe TinCanPHP should drop support of HHVM? Or maybe add a note...

* Testing with PHP 7.0 was failing because PHPUnit 6.4 was used, which breaks compatibility with PHPUnit 4.8.* and 5.4.*. * Updated tests for PHP 7.1 change to handling "too...

The grouping array was sent as argument 2 to the $contextActivities2 constructor. ContextActivities->__construct() only takes one argument and will not assign ANY properties if there is not exactly one argument....

Fix issues that are considered code smells: * method calls with mismatched number of parameters * inconsistent return points in methods with missing return statements (explicity return null)