An initial dump of ideas for a php generator
- use composer and symfony console tools for cli manipulation
- pluggable architecture
components needed - configuration parsing scanning? (helper for generating definitions) templating
My bugs: | |
https://bugs.php.net/bug.php?id=54169 - I have a big patch for pdo_odbc in general | |
streams related issues: - | |
https://bugs.php.net/bug.php?id=54156 | |
https://bugs.php.net/bug.php?id=52811 - there are a ton more notification callback related issues - need MAJOR testing for that | |
https://bugs.php.net/bug.php?id=42387 - yes, this is also on my todo, could use most of the plumbing already in place for the notification callbacks |
class Entity | |
{ | |
protected $model; | |
protected function initModel() { | |
$this->model = []; | |
} | |
--- libmemcached-1.0.18/Makefile.am 2014-02-09 20:52:42.000000000 +0900 | |
+++ libmemcached-1.0.18/Makefile.am 2014-02-16 23:42:32.265163300 +0900 | |
@@ -2,6 +2,7 @@ | |
ACLOCAL_AMFLAGS= -I m4 -I libtest/m4 | |
AM_YFLAGS= -d | |
+AM_LDFLAGS = -no-undefined | |
# includes append to these: | |
SUFFIXES = |
An initial dump of ideas for a php generator
components needed - configuration parsing scanning? (helper for generating definitions) templating
cairo.c | |
cairo_context.c | |
cairo_error.c | |
cairo_font.c | |
cairo_font_face.c | |
cairo_font_options.c | |
cairo_ft_font.c | |
cairo_image_surface.c | |
ext\cairo\cairo.c(618) : warning C4090: 'initializing' : different 'const' qualifiers | |
ext\cairo\cairo_font_options.c(77) : warning C4101: 'temp' : unreferenced local variable |
Streams Interfaces:
Index: config.w32 | |
=================================================================== | |
--- config.w32 (revision 0) | |
+++ config.w32 (revision 0) | |
@@ -0,0 +1,8 @@ | |
+// $Id: config.w32 264053 2008-08-01 21:20:08Z pajoye $ | |
+// vim:ft=javascript | |
+ | |
+ARG_ENABLE("pcntl", "process control support", "no"); | |
+ |
PHP7 is coming | |
And it's breaking all of our extensions | |
There are currently more changes to the internal apis than there are to things that users will see (and there are enough of those) | |
In fact not even all the extensions in php source proper are all the way PHP7'd - most of PECL and extensions hosted elsewhere haven't even started! Heck half don't have maintainers! | |
Extensions are also notorious for poor api design, poor testing, and non-existent docs | |
But they're also powerful, useful, and fast and more people should use them | |
PHP7 is coming - fast - and we have a chance to "break" things and to get the community interested and involved |
A quick snapshot of what is going on with the project - for the tl;dr see "what can I do?"