├── .asf.yaml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── ci.yaml ├── .gitignore ├── .scalafmt.conf ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── core ├── php8.1Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── build.gradle │ ├── compile.php │ ├── composer.json │ ├── php.ini │ └── runner.php ├── php8.2Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── build.gradle │ ├── compile.php │ ├── composer.json │ ├── php.ini │ └── runner.php └── php8.3Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── build.gradle │ ├── compile.php │ ├── composer.json │ ├── php.ini │ └── runner.php ├── gradle.properties ├── gradle ├── README.md ├── docker.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── tests ├── build.gradle └── src └── test ├── resources └── application.conf └── scala └── runtime └── actionContainers ├── Php81ActionContainerTests.scala ├── Php82ActionContainerTests.scala ├── Php83ActionContainerTests.scala └── Php8ActionContainerTests.scala /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/README.md -------------------------------------------------------------------------------- /core/php8.1Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/php8.1Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/Dockerfile -------------------------------------------------------------------------------- /core/php8.1Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/build.gradle -------------------------------------------------------------------------------- /core/php8.1Action/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/compile.php -------------------------------------------------------------------------------- /core/php8.1Action/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/composer.json -------------------------------------------------------------------------------- /core/php8.1Action/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/php.ini -------------------------------------------------------------------------------- /core/php8.1Action/runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.1Action/runner.php -------------------------------------------------------------------------------- /core/php8.2Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/php8.2Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/Dockerfile -------------------------------------------------------------------------------- /core/php8.2Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/build.gradle -------------------------------------------------------------------------------- /core/php8.2Action/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/compile.php -------------------------------------------------------------------------------- /core/php8.2Action/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/composer.json -------------------------------------------------------------------------------- /core/php8.2Action/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/php.ini -------------------------------------------------------------------------------- /core/php8.2Action/runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.2Action/runner.php -------------------------------------------------------------------------------- /core/php8.3Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/php8.3Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/Dockerfile -------------------------------------------------------------------------------- /core/php8.3Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/build.gradle -------------------------------------------------------------------------------- /core/php8.3Action/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/compile.php -------------------------------------------------------------------------------- /core/php8.3Action/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/composer.json -------------------------------------------------------------------------------- /core/php8.3Action/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/php.ini -------------------------------------------------------------------------------- /core/php8.3Action/runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/core/php8.3Action/runner.php -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradle/README.md -------------------------------------------------------------------------------- /gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradle/docker.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/settings.gradle -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/src/test/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/src/test/resources/application.conf -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Php81ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/src/test/scala/runtime/actionContainers/Php81ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Php82ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/src/test/scala/runtime/actionContainers/Php82ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Php83ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/src/test/scala/runtime/actionContainers/Php83ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Php8ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-php/HEAD/tests/src/test/scala/runtime/actionContainers/Php8ActionContainerTests.scala --------------------------------------------------------------------------------