clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

28
vendor/itamair/geophp/.travis.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
# docs available at http://docs.travis-ci.com/user/languages/php/
# example available at https://github.com/travis-ci/travis-ci-php-example
language: php
before_script:
- composer self-update
env: GEOPHP_RUN_TESTS=1
install:
- composer install
# TODO Install geos library -- as a matrix test
# TODO optionally set up a postgis database for testing
script:
- cd tests
- phpunit --verbose --colors --stderr tests
- php test.php
# run tests on the following versions
php:
- 8.1
- 8.0
- 7.4
- 7.3
matrix:
fast_finish: false