Updated the namespace to Acme

This commit is contained in:
peterbakker
2020-02-13 09:04:16 +01:00
parent 5a35b6af35
commit 4c7b6b8e60
11 changed files with 26 additions and 21 deletions

View File

@@ -1,12 +1,12 @@
<?php
namespace Afosto\LetsEncrypt;
namespace Afosto\Acme;
use Afosto\LetsEncrypt\Data\Account;
use Afosto\LetsEncrypt\Data\Authorization;
use Afosto\LetsEncrypt\Data\Certificate;
use Afosto\LetsEncrypt\Data\Challenge;
use Afosto\LetsEncrypt\Data\Order;
use Afosto\Acme\Data\Account;
use Afosto\Acme\Data\Authorization;
use Afosto\Acme\Data\Certificate;
use Afosto\Acme\Data\Challenge;
use Afosto\Acme\Data\Order;
use GuzzleHttp\Client as HttpClient;
use GuzzleHttp\Exception\ClientException;
use League\Flysystem\Filesystem;

View File

@@ -1,6 +1,6 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
class Account
{

View File

@@ -1,8 +1,8 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
use Afosto\LetsEncrypt\Client;
use Afosto\Acme\Client;
class Authorization
{

View File

@@ -1,8 +1,8 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
use Afosto\LetsEncrypt\Helper;
use Afosto\Acme\Helper;
class Certificate
{

View File

@@ -1,6 +1,6 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
class Challenge
{

View File

@@ -1,6 +1,6 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
class File
{

View File

@@ -1,7 +1,7 @@
<?php
namespace Afosto\LetsEncrypt\Data;
namespace Afosto\Acme\Data;
class Order
{

View File

@@ -1,8 +1,8 @@
<?php
namespace Afosto\LetsEncrypt;
namespace Afosto\Acme;
use Afosto\LetsEncrypt\Data\Authorization;
use Afosto\Acme\Data\Authorization;
use GuzzleHttp\Client as HttpClient;
use GuzzleHttp\Exception\ClientException;