Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Libriciel/provisionning-myec3
  • guenneuguesy/provisionning-myec3
2 results
Show changes
Commits on Source (2)
# [1.4.3-p3] - 2024-03-26
- Autoriser les versions PHP 7.x à la place de la 7.2 uniquement
# [1.4.3-p2] - 2023-09-05
- Mise à jour de la lib myec3 pour intégrer le nouveau schéma
......
......@@ -3,7 +3,7 @@
"description": "Application web permettant de servir de endpoint à MyEC3 (Worldline) afin de provisionner les applications Libriciel\n\n",
"license": "AGPL-3.0-only",
"require": {
"php": "7.2.*",
"php": "^7.2",
"libriciel/myec3": "^1.4",
"libriciel/pastell-api-php": "^0.1",
"guzzlehttp/psr7": "^1.6",
......@@ -30,5 +30,10 @@
"test-cover": "phpunit --coverage-text --colors=never --coverage-clover coverage/coverage.xml --log-junit coverage/logfile.xml",
"phpcs": "phpcs -ps --standard=PSR12 --ignore=vendor/ ./",
"phpcbf": "phpcbf -ps --standard=PSR12 --ignore=vendor/ ./"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}
This diff is collapsed.
......@@ -4,5 +4,4 @@ namespace ProvisionningMyEC3\Http\Client;
class ParapheurClientException extends \Exception
{
}
......@@ -4,7 +4,6 @@ namespace ProvisionningMyEC3\Http\Model;
class S2lowUser
{
/**
* @var int $api
*/
......
......@@ -14,7 +14,6 @@ use Psr\Http\Client\ClientInterface;
class S2lowClientTest extends TestCase
{
/**
* @var ClientInterface|MockObject
*/
......
......@@ -7,7 +7,6 @@ use PHPUnit\Framework\TestCase;
class S2lowUserTest extends TestCase
{
public function testGetMultipartArray()
{
$user = new S2lowUser();
......
......@@ -14,7 +14,6 @@ use Psr\Http\Client\ClientExceptionInterface;
class UserProvisioningTest extends TestCase
{
private function getProductUserSocle(
string $product,
string $socleId,
......
......@@ -14,7 +14,6 @@ use Psr\Http\Client\ClientExceptionInterface;
class EntiteProvisioningTest extends TestCase
{
/**
* @var EntiteHydrator
*/
......
......@@ -15,7 +15,6 @@ use Psr\Http\Client\ClientExceptionInterface;
class UserProvisioningTest extends TestCase
{
/**
* @var UserHydrator
*/
......
......@@ -15,7 +15,6 @@ use Psr\Http\Client\ClientExceptionInterface;
class EntiteProvisioningTest extends TestCase
{
private function getProductOrganizationSocle(
string $product,
string $socleId,
......
......@@ -15,7 +15,6 @@ use Psr\Http\Client\ClientExceptionInterface;
class UserProvisioningTest extends TestCase
{
private function getProductUserSocle(
string $product,
string $socleId,
......