Skip to content

Commit

Permalink
Merge pull request #15 from salyangoz/guzzle-update
Browse files Browse the repository at this point in the history
Guzzle version update
  • Loading branch information
yedincisenol authored Nov 11, 2023
2 parents 37f574c + cfb18d3 commit 8bff4e7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"description": "Send sms with Php",
"type": "library",
"license": "MIT",
"version": "1.4.5",
"version": "1.5.0",
"authors": [
{
"name": "Ibrahim S. Orencik",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.2",
"php": ">=7.2.5",
"guzzlehttp/guzzle": "^7.8.0",
"ext-simplexml": "*",
"ext-json": "*"
},
Expand All @@ -29,6 +29,6 @@
}
},
"require-dev": {
"phpunit/phpunit": "^6.5.14"
"phpunit/phpunit": "^8.5.34"
}
}
9 changes: 6 additions & 3 deletions test.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
/**
* Example request for Mutlucell.
*/
$mutluCell = new yedincisenol\Sms\Sms('Mutlucell', []);
//$mutluCell->send('Selam', ['05459196661'], 'prstent.com');
$mutluCell = new yedincisenol\Sms\Sms('Mutlucell', [
'username' => 'test',
'password' => 'test',
]);
$mutluCell->send('Selam', ['05300000000'], 'yengec');

/**
* Example client for send sms with Eflatun Sms provider.
Expand All @@ -29,4 +32,4 @@
'password' => 'password',
]);

$verimor->send('Selam', ['00905459196661'], 'HEADER');
//$verimor->send('Selam', ['00905459196661'], 'HEADER');

0 comments on commit 8bff4e7

Please sign in to comment.