We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15efa77 commit 67df35fCopy full SHA for 67df35f
bin/http_test_server
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
4
5
+# Installed as a dependency
6
+if [ -f "$DIR/../autoload.php" ]; then
7
+ php -S 127.0.0.1:10000 -t "$DIR/../php-http/adapter-integration-tests/fixture"
8
+# Development
9
+elif [ -f "$DIR/../vendor/autoload.php" ]; then
10
+ php -S 127.0.0.1:10000 -t "$DIR/../fixture"
11
+fi
0 commit comments