h3-php
PHP FFI bindings for Uber's H3
File Explorer
- build-h3.yml
- tests.yml
- libh3.dylib
- libh3.dylib
- libh3.so
- libh3.so
- h3.dll
- .gitignore
- 01-indexing.php
- 02-inspection.php
- 03-traversal.php
- 04-hierarchy.php
- 05-directed-edges.php
- 06-vertices.php
- 07-measurements.php
- 08-utilities.php
- 09-local-coordinates.php
- 10-ride-sharing-app.php
- 11-food-delivery-platform.php
- 12-real-estate-analytics.php
- 13-fleet-management.php
- 14-official-index.php
- 15-official-distance.php
- 16-official-edge.php
- 17-official-neighbors.php
- 18-official-compact-cells.php
- README.md
- build-h3.sh
- H3.php
- H3Exception.php
- H3ExceptionTest.php
- H3Test.php
- .gitignore
- .php-cs-fixer.dist.php
- composer.json
- cover.png
- LICENSE
- phpunit.xml.dist
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
composer
View Details ▼
composer
A package-based dependency manager for PHP projects.
composer init
Interactively create a `composer.json` file:
composer require {{user/package}}
Add a package as a dependency for this project, adding an entry to `composer.json`:
composer install
Install all the dependencies in this project's `composer.json` and create `composer.lock`:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
php
View Details ▼
php
PHP command-line interface.
php {{path/to/file}}
Parse and execute a PHP script:
php {{[-l|--syntax-check]}} {{path/to/file}}
Check syntax on (i.e. [l]int) a PHP script:
php {{[-a|--interactive]}}
Run PHP inter[a]ctively:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
