friendship ended with social-app. php is my new best friend

add cert to client

Changed files
+5 -3
+4 -3
.gitignore
··· 17 _.log 18 report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json 19 20 - # dotenv environment variable files 21 .env 22 .env.development.local 23 .env.test.local ··· 30 *.db-shm 31 *.db-wal 32 config.php 33 34 # caches 35 .eslintcache ··· 41 42 # Finder (MacOS) folder config 43 .DS_Store 44 - 45 - request_log.txt
··· 17 _.log 18 report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json 19 20 + # shit that shouldn't go in source control 21 .env 22 .env.development.local 23 .env.test.local ··· 30 *.db-shm 31 *.db-wal 32 config.php 33 + *.pem 34 + *.pub 35 + request_log.txt 36 37 # caches 38 .eslintcache ··· 44 45 # Finder (MacOS) folder config 46 .DS_Store
+1
index.php
··· 181 ]); 182 $http = new React\Http\Browser($connector); 183 $client = new GuzzleHttp\Client([ 184 'headers' => [ 185 'User-Agent' => USER_AGENT_STR 186 ]
··· 181 ]); 182 $http = new React\Http\Browser($connector); 183 $client = new GuzzleHttp\Client([ 184 + 'verify' => CERT_PATH, 185 'headers' => [ 186 'User-Agent' => USER_AGENT_STR 187 ]