1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 08:32:42 +00:00

Add support for stomp

This commit is contained in:
Michele Locati 2021-07-15 09:47:39 +02:00
parent 2984ef0a40
commit 56393d436e
No known key found for this signature in database
GPG key ID: 98B7CE2E7234E28B
3 changed files with 33 additions and 0 deletions

13
scripts/tests/stomp Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -o errexit
set -o nounset
rc=0
if test -z "$(php --ri stomp | grep 'SSL Support => enabled')"; then
echo 'stomp has not been compiled with SSL support' >&2
rc=1
else
echo 'stomp has been compiled with SSL support'
fi
exit $rc