Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

PHP bindings for libgeos [MIRROR]

License

Unknown, MIT licenses found

Licenses found

Unknown
COPYING
MIT
MIT-LICENSE
Notifications You must be signed in to change notification settings

ModelTech/php-geos

Open more actions menu
 
 

Repository files navigation

PHP module for GEOS

[![build status] (https://dronie.osgeo.org/api/badges/geos/php-geos/status.svg?branch=master)] (https://dronie.osgeo.org/geos/php-geos?branch=master)

The code in this directory provides a PHP module to make use of functionalities of the [GEOS library] (http://geos.osgeo.org).

The bindings are linked to the C-API, for betters stability.

Building (UNIX)

Requirements

You need:

  • PHP development files ( often found in packages named something like 'php5-dev' )

  • GEOS development files ( often found in packages named something like 'libgeos-dev' )

Procedure

git clone https://git.osgeo.org/gitea/geos/php-geos.git
cd php-geos
./autogen.sh
./configure
make # generates modules/geos.so

Building (Windows)

Requirements

  • PHP source files: download zip or clone from github
  • PHP SDK ( https://github.com/Microsoft/php-sdk-binary-tools )
  • Visual C++:
    • Visual C++ 14.0 (Visual Studio 2015) for PHP 7.0 or PHP 7.1.
    • Visual C++ 15.0 (Visual Studio 2017) for PHP 7.2, PHP 7.3 or PHP 7.4.
    • Visual C++ 16.0 (Visual Studio 2019) for master.
  • GEOS Windows binaries (binary dll, includes and lib):
    • As part of OSGeo4W as part of the geos package.
    • As part of MS4W

Configure

Official instructions for compiling PHP extensions: https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2

  1. Install OSGeo4w in C:\OSGeo4W64 and PHP-SDK in C:/php-sdk.

  2. Invoke the starter script, for example for Visual Studio 2015 64-bit build, invoke phpsdk-vc15-x64.bat

  3. Run the phpsdk_buildtree batch script which will create the desired directory structure:

     phpsdk_buildtree phpdev
    

    The phpsdk_buildtree script will create the path according to the currently VC++ version used and switch into the newly created directory

  4. Extract the PHP source code to C:\php-sdk\phpdev\vX##\x##, where:

    vX## is the compiler version you are using (eq vc15 or vs16) x## is your architecture (x86 or x64) For example: C:\php-sdk\phpdev\vc15\x64\php-7.4.11-src In the same directory where you extracted the PHP source there is a deps directory. For example: C:\php-sdk\phpdev\vc15\x64\deps

  5. Copy GEOS binaries from C:\OSGeo4W64 (bin, include and lib subdir) to C:\php-sdk\phpdev\vc15\x64\deps\

  6. Copy (clone) code from this repository to C:\php-sdk\phpdev\vc15\x64\php-7.4.11-src\ext\geos

Compile

Run next commands to compile (see official php instruction):

c:\php-sdk\phpsdk-vc15-x64.bat
cd C:\php-sdk\phpdev\vc15\x64\php-7.4.11-src
buildconf
configure --disable-all --enable-cli --with-geos
nmake

Testing

Automated testing is executed on 'make check'.

You'll need phpunit installed for this to work. To install:

pear install --force --alldeps phpunit/phpunit

Installing

Unix

As root (or owner with write access to the directory returned by php-config --extension-dir), run:

make install

Window

Copy php_geos.dll to extension directory and enable it in php.ini

... TODO ... (reference some automatically built doc?)

About

PHP bindings for libgeos [MIRROR]

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
COPYING
MIT
MIT-LICENSE

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 47.6%
  • C 46.0%
  • JavaScript 3.3%
  • M4 2.7%
  • Other 0.4%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.