File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,7 @@ $ ./vendor/bin/http_test_server > /dev/null 2>&1 &
31
31
Then generate ssh certificates:
32
32
33
33
``` bash
34
- $ cd ./tests/server/ssl
35
- $ ./generate.sh
36
- $ cd ../../../
34
+ $ composer gen-ssl
37
35
```
38
36
39
37
Note: If you are running this on macOS and get the following error: "Error opening CA Private Key privkey.pem", check [ this] ( ssl-macOS.md ) file.
Original file line number Diff line number Diff line change 40
40
"cs-check" : " vendor/bin/php-cs-fixer fix --dry-run" ,
41
41
"cs-fix" : " vendor/bin/php-cs-fixer fix" ,
42
42
"test" : " vendor/bin/phpunit" ,
43
- "test-ci" : " vendor/bin/phpunit --coverage-clover build/coverage.xml"
43
+ "test-ci" : " vendor/bin/phpunit --coverage-clover build/coverage.xml" ,
44
+ "gen-ssl" : " tests/server/ssl/generate.sh"
44
45
},
45
46
"extra" : {
46
47
"branch-alias" : {
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -eo pipefail
4
+
5
+ cd $( dirname $0 )
6
+
3
7
C=FR
4
8
ST=Ile-de-France
5
9
L=Paris
You can’t perform that action at this time.
0 commit comments