We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56c54b0 + 2d94c36 commit fc6c114Copy full SHA for fc6c114
2 files changed
composer.json
@@ -1,7 +1,7 @@
1
{
2
"name": "paylike/php-api",
3
"description": "PHP SDK to communicate with the Paylike HTTP api",
4
- "version": "0.2.0",
+ "version": "1.0.0",
5
"license": "MIT",
6
"authors": [
7
src/HttpClient/CurlClient.php
@@ -76,7 +76,7 @@ public function request(
76
'Accept: application/vnd.api+json',
77
'Content-Type: application/vnd.api+json'
78
));
79
- curl_setopt($ch, CURLOPT_USERAGENT, 'PHP 0.2.0 (php' . phpversion() .')');
+ curl_setopt($ch, CURLOPT_USERAGENT, 'PHP 1.0.0 (php' . phpversion() .')');
80
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $this->verify_ssl);
81
curl_setopt($ch, CURLOPT_USERPWD, ":" . $this->api_key);
82
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
0 commit comments