Skip to content

Commit 1348d8e

Browse files
committed
Update package name to spark
1 parent 7d89231 commit 1348d8e

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# executor-php
22
Script Task Executor Engine with PHP Runtime
33

4-
This docker image provides a sandboxed protected environment to run custom PHP scripts that are written in ProcessMaker BPM.
4+
This docker image provides a sandboxed protected environment to run custom PHP scripts that are written in ProcessMaker Spark.
55
User created script tasks should be isolated however have utilities available to them in order to get most common tasks done. This
66
PHP environment has PHP packages available and autoloaded so Script Tasks can take advantage of the following libraries:
77

build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set -x
33

44
BRANCH=${BRANCH:=master}
55
TAG=${TAG:=dev-${BRANCH//[\/]/-}}
6-
EXECUTOR_IMAGE="processmaker/pm4-docker-executor-php:${TAG}"
6+
EXECUTOR_IMAGE="processmaker/-docker-executor-php:${TAG}"
77

88
pushd src
9-
if [[ ! -d "pm4-sdk-php" ]]; then
10-
git clone --branch $BRANCH --depth 1 https://github.com/ProcessMaker/pm4-sdk-php.git
9+
if [[ ! -d "-sdk-php" ]]; then
10+
git clone --branch $BRANCH --depth 1 https://github.com/ProcessMaker/-sdk-php.git
1111
fi
1212
rm -rf composer.lock
1313
rm -rf vendor
@@ -16,6 +16,6 @@ pushd src
1616
popd
1717

1818
docker build -t $EXECUTOR_IMAGE .
19-
rm -rf src/pm4-sdk-php
19+
rm -rf src/-sdk-php
2020

2121
# docker push $EXECUTOR_IMAGE

src/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"repositories": [
33
{
44
"type": "path",
5-
"url": "./pm4-sdk-php"
5+
"url": "./-sdk-php"
66
}
77
],
88
"require": {
99
"guzzlehttp/guzzle": "~6.0",
10-
"ProcessMaker/pm4-sdk-php": "*@dev"
10+
"ProcessMaker/-sdk-php": "*@dev"
1111
},
1212
"require-dev": {
1313
"phpunit/phpunit": "^7",

src/composer.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)