Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
*~
.libs
config.h
config.h.in
config.log
config.nice
config.status
configure
configure.ac
libtool
buffer.la
buffer.lo
Makefile
Makefile.fragments
Makefile.objects
run-tests.php
build
modules
buffer.la
buffer.so
autom4te.cache
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This PHP extension provides typed arrays based on JavaScript's ArrayBuffer inter

This extension has been written primarily as a small example for a tutorial and not for its actual
functionality. That's also why it does not contain the full functionality of JS ArrayBuffers. I may
add the remaining functionality lateron.
add the remaining functionality later on.

Usage
-----
Expand Down Expand Up @@ -48,11 +48,14 @@ The following buffer views are available:
FloatArray
DoubleArray

See `tests/` for more examples.

Installation
------------

The extension is installed as usual:

phpize
./configure --enable-buffer
make
make install
Loading