File tree Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ coverage: mv-coverage lcov-local
56
56
57
57
58
58
coveralls : mv-coverage lcov-coveralls
59
- coveralls --exclude src/libbson --exclude src/libmongoc --exclude src/contrib --exclude lib --exclude tests --exclude src/MongoDB/php_array.h --exclude src/php_array.h
59
+ coveralls --exclude src/libbson --exclude src/libmongoc --exclude src/contrib --exclude lib --exclude tests
60
60
61
61
composer :
62
62
@command -v composer > /dev/null 2>&1 ; \
Original file line number Diff line number Diff line change 51
51
#include <main/php_network.h>
52
52
/* Debug log writing */
53
53
#include <main/php_open_temporary_file.h>
54
+ /* PHP array helpers */
55
+ #include "src/contrib/php_array_api.h"
56
+
54
57
/* Our Compatability header */
55
58
#include "phongo_compat.h"
56
59
57
60
/* Our stuffz */
58
61
#include "php_phongo.h"
59
62
#include "php_bson.h"
60
- #include "php_array.h"
61
63
#include "src/contrib/php-ssl.h"
62
64
63
65
#undef MONGOC_LOG_DOMAIN
Original file line number Diff line number Diff line change 37
37
#include <ext/standard/info.h>
38
38
#include <Zend/zend_interfaces.h>
39
39
#include <ext/spl/spl_iterators.h>
40
+ /* PHP array helpers */
41
+ #include "src/contrib/php_array_api.h"
40
42
/* Our Compatability header */
41
43
#include "phongo_compat.h"
42
44
43
45
/* Our stuffz */
44
46
#include "php_phongo.h"
45
47
#include "php_bson.h"
46
- #include "php_array.h"
47
48
48
49
49
50
PHONGO_API zend_class_entry * php_phongo_bulkwrite_ce ;
Original file line number Diff line number Diff line change 38
38
#include <Zend/zend_interfaces.h>
39
39
#include <Zend/zend_hash.h>
40
40
#include <ext/spl/spl_iterators.h>
41
+ /* PHP array helpers */
42
+ #include "src/contrib/php_array_api.h"
41
43
/* Our Compatability header */
42
44
#include "phongo_compat.h"
43
45
44
46
/* Our stuffz */
45
47
#include "php_phongo.h"
46
48
#include "php_bson.h"
47
- #include "php_array.h"
48
49
49
50
50
51
PHONGO_API zend_class_entry * php_phongo_manager_ce ;
Original file line number Diff line number Diff line change 30
30
#include <ext/spl/spl_array.h>
31
31
#include <Zend/zend_interfaces.h>
32
32
33
+ /* PHP array helpers */
34
+ #include "src/contrib/php_array_api.h"
35
+
33
36
/* Our Compatability header */
34
37
#include "phongo_compat.h"
35
38
36
39
/* Our stuffz */
37
40
#include "php_phongo.h"
38
41
#include "php_bson.h"
39
- #include "php_array.h"
40
42
41
43
42
44
#define BSON_APPEND_INT32 (b ,key ,val ) \
File renamed without changes.
You can’t perform that action at this time.
0 commit comments