https://github.com/siilike/php-vpack
VelocyPack support for PHP
https://github.com/siilike/php-vpack
arangodb php php-extension php7 php8 postgresql postgresql-vpack velocypack
Last synced: 9 months ago
JSON representation
VelocyPack support for PHP
- Host: GitHub
- URL: https://github.com/siilike/php-vpack
- Owner: siilike
- Created: 2020-02-15T13:23:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T14:20:51.000Z (over 5 years ago)
- Last Synced: 2025-09-30T08:54:44.445Z (9 months ago)
- Topics: arangodb, php, php-extension, php7, php8, postgresql, postgresql-vpack, velocypack
- Language: C++
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP VelocyPack extension
This extension adds support for the VelocyPack format to PHP. It supports most methods of Slice and Builder and also ships with a tags-based type mapper for more precise type or object document mapping.
Tested with PHP 7.4 and PHP 8.0.
See `src/Slice.cpp` and `src/Builder.cpp` for supported methods and `examples/` and `tests/` for type mapper examples.
## Building
```
git submodule update --recursive
(cd velocypack/build; cmake ..; make -j12)
phpize
./configure
make -j12
make install
```