Skip to content

Commit

Permalink
PHP 8 (#4)
Browse files Browse the repository at this point in the history
- [ ] Panic Testing EngineDefine
- [x] Fixed Readme
- [x] Fixed Testing strlen(); (probably)
- [x] Added script to install or build from source on debian 
- [x] Dropped support for PHP < 8
- [x] Changed names for easier use. 
- [x] Dropped _*.c
- [x] Added ability to perform make
- [x] Moved to own directory Dockerfile, scripts and everything related to php install
- [x] Added Automatic make tags based on the system
- [x] Found the reason for failing tests.
- [x] Migrate to gitlab.
- [x] Set up Pipelines.
- [x] Update readme to reflect changes.
- [x] Removed printf
- [x] added old-stable support, I guess
- [x] Removed _engine_receiver, simplified using _zend_object directly, created functions overriding module
- [x] Better images, fewer variables

Co-authored-by: Elias <[email protected]>
  • Loading branch information
sailenicolas and Elias authored Mar 12, 2022
1 parent e35b8e5 commit c6acde4
Show file tree
Hide file tree
Showing 58 changed files with 1,421 additions and 1,516 deletions.
26 changes: 26 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This file is a template, and might need editing before it works on your project.
# Select image from https://hub.docker.com/_/php/
before_script:
- bash php-tools/docker-entrypoint.sh > /dev/null
testgophp81:
image: sailenicolas/gophp:8.1.3
only:
- php8
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- vendor/
script:
- make test
testgophp80:
image: sailenicolas/gophp:8.0.16
only:
- php8
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- vendor/
script:
- make test


1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/go-php.iml → .idea/gophp.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/runConfigurations/engine_test_go.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/runConfigurations/go_test_gitlab_com_sailenicolas_gophp.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/runConfigurations/receiver_test_go.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/runConfigurations/value_test_go.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

114 changes: 114 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

59 changes: 0 additions & 59 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit c6acde4

Please sign in to comment.