Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jul 15, 2023
1 parent ad522f9 commit 9139b26
Show file tree
Hide file tree
Showing 19 changed files with 194 additions and 637 deletions.
795 changes: 176 additions & 619 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -3,7 +3,7 @@
"description": "Provides connections to OpenStack services",
"homepage": "https://www.fusio-project.org",
"keywords": ["fusio-adapter"],
"license": "AGPL-3.0",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter.php
Expand Up @@ -27,7 +27,7 @@
* Adapter
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class Adapter implements AdapterInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/BlockStorage.php
Expand Up @@ -28,7 +28,7 @@
* BlockStorage
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class BlockStorage extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/Compute.php
Expand Up @@ -28,7 +28,7 @@
* Compute
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class Compute extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/ConnectionAbstract.php
Expand Up @@ -31,7 +31,7 @@
* ConnectionAbstract
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
abstract class ConnectionAbstract extends \Fusio\Engine\ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/Identity.php
Expand Up @@ -28,7 +28,7 @@
* Identity
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class Identity extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/Images.php
Expand Up @@ -28,7 +28,7 @@
* Images
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class Images extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/Networking.php
Expand Up @@ -28,7 +28,7 @@
* Networking
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class Networking extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/ObjectStore.php
Expand Up @@ -28,7 +28,7 @@
* ObjectStore
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class ObjectStore extends ConnectionAbstract
Expand Down
2 changes: 1 addition & 1 deletion tests/AdapterTest.php
Expand Up @@ -28,7 +28,7 @@
* AdapterTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class AdapterTest extends AdapterTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/ApiTestCase.php
Expand Up @@ -30,7 +30,7 @@
* ApiTestCase
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
abstract class ApiTestCase extends OpenStackTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/BlockStorageTest.php
Expand Up @@ -31,7 +31,7 @@
* BlockStorageTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class BlockStorageTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/ComputeTest.php
Expand Up @@ -31,7 +31,7 @@
* ComputeTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class ComputeTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/IdentityTest.php
Expand Up @@ -31,7 +31,7 @@
* IdentityTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class IdentityTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/ImagesTest.php
Expand Up @@ -31,7 +31,7 @@
* ImagesTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class ImagesTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/NetworkingTest.php
Expand Up @@ -31,7 +31,7 @@
* NetworkingTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class NetworkingTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/ObjectStoreTest.php
Expand Up @@ -31,7 +31,7 @@
* ObjectStoreTest
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
class ObjectStoreTest extends ApiTestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/OpenStackTestCase.php
Expand Up @@ -29,7 +29,7 @@
* OpenStackTestCase
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @license http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.fusio-project.org/
*/
abstract class OpenStackTestCase extends TestCase
Expand Down

0 comments on commit 9139b26

Please sign in to comment.