File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project follows [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- ## [ 1.2.0 ] - UNRELEASED
5
+ ## [ 1.1.3 ] - UNRELEASED
6
6
### Fixed
7
7
- [x] Memory leaks during map when callback throws an exception.
8
- - [x] Memory leaks when structures contain themselves
8
+ - [x] Memory leaks when structures contain themselves.
9
9
10
10
## Added
11
11
- [ ] Show version info in ` phpinfo() `
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ dnl Classes
73
73
PHP_ADD_BUILD_DIR($ext_builddir/src/php/classes, 1)
74
74
PHP_ADD_BUILD_DIR($ext_builddir/src/php/iterators, 1)
75
75
PHP_ADD_BUILD_DIR($ext_builddir/src/php/handlers, 1)
76
+
77
+ PHP_ADD_EXTENSION_DEP(ds, spl)
78
+ PHP_ADD_EXTENSION_DEP(ds, json)
76
79
fi
77
80
78
81
Original file line number Diff line number Diff line change @@ -88,3 +88,5 @@ if (PHP_DS != "no") {
88
88
]);
89
89
}
90
90
91
+ PHP_ADD_EXTENSION_DEP('ds', 'spl')
92
+ PHP_ADD_EXTENSION_DEP('ds', 'json')
You can’t perform that action at this time.
0 commit comments