aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/cboden/ratchet/Makefile
diff options
context:
space:
mode:
authormarvin-borner@live.com2018-04-16 21:09:05 +0200
committermarvin-borner@live.com2018-04-16 21:09:05 +0200
commitcf14306c2b3f82a81f8d56669a71633b4d4b5fce (patch)
tree86700651aa180026e89a66064b0364b1e4346f3f /assets/php/vendor/cboden/ratchet/Makefile
parent619b01b3615458c4ed78bfaeabb6b1a47cc8ad8b (diff)
Main merge to user management system - files are now at /main/public/
Diffstat (limited to 'assets/php/vendor/cboden/ratchet/Makefile')
-rwxr-xr-xassets/php/vendor/cboden/ratchet/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/assets/php/vendor/cboden/ratchet/Makefile b/assets/php/vendor/cboden/ratchet/Makefile
deleted file mode 100755
index a2526c0..0000000
--- a/assets/php/vendor/cboden/ratchet/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# This file is intended to ease the author's development and testing process
-# Users do not need to use `make`; Ratchet does not need to be compiled
-
-test:
- phpunit
-
-cover:
- phpunit --coverage-text --coverage-html=reports/coverage
-
-abtests:
- ulimit -n 2048 && php tests/autobahn/bin/fuzzingserver.php 8001 LibEvent &
- ulimit -n 2048 && php tests/autobahn/bin/fuzzingserver.php 8002 StreamSelect &
- ulimit -n 2048 && php tests/autobahn/bin/fuzzingserver.php 8004 LibEv &
- wstest -m testeeserver -w ws://localhost:8000 &
- sleep 1
- wstest -m fuzzingclient -s tests/autobahn/fuzzingclient-all.json
- killall php wstest
-
-abtest:
- ulimit -n 2048 && php tests/autobahn/bin/fuzzingserver.php 8000 StreamSelect &
- sleep 1
- wstest -m fuzzingclient -s tests/autobahn/fuzzingclient-quick.json
- killall php
-
-profile:
- php -d 'xdebug.profiler_enable=1' tests/autobahn/bin/fuzzingserver.php 8000 LibEvent &
- sleep 1
- wstest -m fuzzingclient -s tests/autobahn/fuzzingclient-profile.json
- killall php
-
-apidocs:
- apigen --title Ratchet -d reports/api \
- -s src/ \
- -s vendor/ratchet/rfc6455/src \
- -s vendor/react/event-loop/src \
- -s vendor/react/socket/src \
- -s vendor/react/stream/src \
- -s vendor/psr/http-message/src \
- -s vendor/symfony/http-foundation/Session \
- -s vendor/symfony/routing \
- -s vendor/evenement/evenement/src/Evenement \
- --exclude=vendor/symfony/routing/Tests \