Skip to content
This repository has been archived by the owner on Mar 5, 2023. It is now read-only.

Releases: 8fold/php-foldable

Update PHP dependency

03 Jan 00:13
Compare
Choose a tag to compare
1.3.1

update dependencies

Apply::classNameForFilter, PerformantEqualsTestFilter tests memory usage

08 Sep 15:32
e2ee41e
Compare
Choose a tag to compare
  • Apply now calls classNameForFilter to allow more flexibility when extending Apply. This should not be a breaking change; however, it is recommended that you use classNameForFilter and stop using rootNameSpaceForFilters.
  • Beyond speed we have put a first round implementation to test memory usage as well. The default maximum in kilobytes is 10 per AssertEquals test.

Improve Apply extensibility

05 Sep 17:10
d7b638d
Compare
Choose a tag to compare

You can now use inheritance to more easily create Filters in extensions through extending Apply.

class MyApply extends Apply
{
  static public function rootNameSpaceForFilters()
  {
    if (parent::filterClassExists($myExtensionFilter) {
      return "MyExtension\\NameSpace";
    }
    return parent::rootNameSpaceForFilters();
  }
}

Typo

04 Sep 23:56
ab14e17
Compare
Choose a tag to compare
Merge pull request #21 from 8fold/working

Update FoldableImp.php

Ability to retrieve `main` using `main()`

04 Sep 23:44
9001cd5
Compare
Choose a tag to compare
Merge pull request #20 from 8fold/working

Working

Initial major release

04 Sep 17:01
8471403
Compare
Choose a tag to compare

Using Foldable as the base for multiple projects. Has not required much in the way of changes or added functionality.

TestEqualsPerformance - use first actual result for determining target type

03 Sep 16:17
e92e36e
Compare
Choose a tag to compare
Merge pull request #15 from 8fold/working

Use actual when determining target type

Class name of performance tester

28 Aug 00:54
d86327f
Compare
Choose a tag to compare
Merge pull request #14 from 8fold/working

Update TestEqualsPerformance.php

Fix namespace of test class

28 Aug 00:43
db0d247
Compare
Choose a tag to compare
Merge pull request #13 from 8fold/working

Update TestEqualsPerformance.php

Add performance skeleton test case

28 Aug 00:39
b31d642
Compare
Choose a tag to compare
Merge pull request #12 from 8fold/working

Working