summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-28new test: Test class with static property and class constantvalmat
2014-03-28add test: 018-calling-php-functionsvalmat
2014-03-28add new tests: Test call functionvalmat
2014-03-28Changed the structure of the test file. With the increasing number of tests ↵valmat
the old structure became uncomfortable.
2014-03-28add test: 004-static-funct.phpt (Test class with static function)valmat
2014-03-28add test: class_obj/003-comparable.phptvalmat
2014-03-28add test variables/005-cast-objects-to-scalars.phptvalmat
2014-03-27add test: 007-Iterate-internal-array.phptvalmat
Iterate internal array
2014-03-27Fix test value-casting-operatorsvalmat
2014-03-26Merge pull request #54 from valmat/tests1Emiel Bruijntjes
Added new tests.
2014-03-27Minor changes to allow the use to tests and extension `.phpt-`valmat
2014-03-27see diffvalmat
2014-03-27in test.sh added option -tvalmat
in the script tests/test.sh added option -t (the full list of options, see ./test.sh -h) - allows you to run individual tests For example: `./test.sh -t "php/phpt/variables/010-value-object2.phpt php/phpt/base/001.phpt"` `./test.sh -nt php/phpt/variables/010-value-object2.phpt`
2014-03-27Added new tests.valmat
Due to support zts broke the ability to run tests without installation - fixed.
2014-03-25update documentation about threadsEmiel Bruijntjes
2014-03-25update documentation about threadsEmiel Bruijntjes
2014-03-25ZTS thread safety is now automatically detected when PHP-CPP is installedEmiel Bruijntjes
2014-03-24simplified makefile by using php-config to find the entire include pathEmiel Bruijntjes
2014-03-24Merge pull request #53 from jgmdev/masterEmiel Bruijntjes
Call php-config to retreive php includes dir and binary on Makefile.
2014-03-24fixed compile issues with TSRM enabledEmiel Bruijntjes
2014-03-24fix compile issues for TRSMEmiel Bruijntjes
2014-03-24Call php-config to retreive php includes dir and binary on Makefile.jgmdev
2014-03-24added tsrm parameter to all methods to make it compile on tsrm platformsEmiel Bruijntjes
2014-03-24documentation fixv0.9.2Emiel Bruijntjes
2014-03-24explained how to specify class constantsEmiel Bruijntjes
2014-03-24fixed nested arrays, issue #50Emiel Bruijntjes
2014-03-23update documentationEmiel Bruijntjes
2014-03-23added echo() function requested in issue #51Emiel Bruijntjes
2014-03-23errors have a limited buffer, and discard any overflow data, replaced ↵Emiel Bruijntjes
std::cout calls with Php::out calls in the documentation
2014-03-23implemented php output streams as was asked for in issue #51Emiel Bruijntjes
2014-03-21fixed crashes for certain test cases on php 5.3Emiel Bruijntjes
2014-03-21test was broken, real output was correct, expected output was wrongEmiel Bruijntjes
2014-03-21fixed iterator for php 5.5Emiel Bruijntjes
2014-03-21fixed compile problem with php 5.5Emiel Bruijntjes
2014-03-21documentation updateEmiel Bruijntjes
2014-03-21Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2014-03-21update documentation about iteratingEmiel Bruijntjes
2014-03-21first key/value pair was not correctly retrieved, this has now been fixedEmiel Bruijntjes
2014-03-21fixed some issues with traverse iteratorsEmiel Bruijntjes
2014-03-21implementation of traverseiterator (untested)Emiel Bruijntjes
2014-03-21Merge pull request #49 from valmat/small-improvementsEmiel Bruijntjes
Small improvements
2014-03-21Small improvementsvalmat
Regained the ability to run the tests (script tests/test.sh) with option -m (Valgrind) added option -q (Quiet) Full range of options, see $ ./test.sh -h Some other improvements (see diff)
2014-03-20added missing methods to the hashiterator classEmiel Bruijntjes
2014-03-20removed unique_ptr because client applications do not allow unique_ptr with ↵Emiel Bruijntjes
unknown types
2014-03-20moved implementation for hashiterator to header file, introduced ↵Emiel Bruijntjes
invaliditerator class, valueiterator now uses the hashiterator class internally
2014-03-20added hashiterator, this is going to be one of the implementation classes ↵Emiel Bruijntjes
for the upcoming value iterator
2014-03-19when iterating over object properties, the private and protected properties ↵Emiel Bruijntjes
are now skipped
2014-03-19Merge pull request #48 from valmat/fix-issues-46Emiel Bruijntjes
Fix issue # 46
2014-03-19removed: tests/1.shvalmat
2014-03-19Fixed issues #46valmat