Skip to content

Commit 8eb5fe2

Browse files
committed
Moved repository and renamed package.
1 parent 0a4199b commit 8eb5fe2

3 files changed

Lines changed: 14 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ABC-Framework: BLOB Store
1+
# PhpPlaisio: BLOB Store
22

33
<table>
44
<thead>
@@ -11,13 +11,13 @@
1111
<tbody>
1212
<tr>
1313
<td>
14-
<a href="https://gitter.im/SetBased/php-abc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge"><img src="https://badges.gitter.im/SetBased/php-abc.svg" alt="Gitter"/></a>
14+
<a href="https://gitter.im/PhpPlaisio/PhpPlaisio"><img src="https://badges.gitter.im/PhpPlaisio/PhpPlaisio.svg" alt="Gitter"/></a>
1515
</td>
1616
<td>
17-
<a href="https://packagist.org/packages/setbased/abc-blob-store"><img src="https://poser.pugx.org/setbased/abc-blob-store/license" alt="License"/></a>
17+
<a href="https://packagist.org/packages/plaisio/blob-store"><img src="https://poser.pugx.org/plaisio/blob-store/license" alt="License"/></a>
1818
</td>
1919
<td>
20-
<a href="https://packagist.org/packages/setbased/abc-blob-store"><img src="https://poser.pugx.org/setbased/abc-blob-store/v/stable" alt="Latest Stable Version"/></a>
20+
<a href="https://packagist.org/packages/plaisio/blob-store"><img src="https://poser.pugx.org/plaisio/blob-store/v/stable" alt="Latest Stable Version"/></a>
2121
</td>
2222
</tr>
2323
</tbody>
@@ -26,7 +26,11 @@
2626
This package defines an interface for storing and retrieving documents, images, objects, or any other data which we, since we are database enthusiasts, call [BLOB](https://en.wikipedia.org/wiki/Binary_large_object)s. A concrete implementation might use:
2727
* a file system
2828
* an object store such as [Amazon Web Services S3](https://en.wikipedia.org/wiki/Amazon_S3) or [OpenStack](https://en.wikipedia.org/wiki/OpenStack#Swift)
29-
* BLOBs in a MySQL database such as [ABC BLOB BLOB Store](https://github.com/SetBased/php-abc-blob-blob-store).
29+
* BLOBs in a MySQL database such as [BLOB BLOB Store](https://github.com/PhpPlaisio/blob-blob-store).
30+
31+
# Design
32+
33+
This is an [abstract, responsible and stable package](https://matthiasnoback.nl/book/principles-of-package-design/). Hence, if you see little or non-recent activity in this repository it doesn't mean this projects is dead, but it means we have achieved one of the essentials goals of this package.
3034

3135
# License
3236

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
2-
"name": "setbased/abc-blob-store",
3-
"description": "ABC-Framework: BLOB Store",
2+
"name": "plaisio/blob-store",
3+
"description": "PhpPlaisio: BLOB Store",
44
"keywords": [
5-
"ABC-Framework",
5+
"PhpPlaisio",
66
"BLOB",
77
"Store"
88
],
9-
"type": "library",
109
"license": "MIT",
1110
"require": {
1211
"php": ">=7.1.0"
1312
},
1413
"autoload": {
1514
"psr-4": {
16-
"SetBased\\Abc\\BlobStore\\": "src/"
15+
"Plaisio\\BlobStore\\": "src/"
1716
}
1817
}
1918
}

src/BlobStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace SetBased\Abc\BlobStore;
4+
namespace Plaisio\BlobStore;
55

66
/**
77
* Interface for storing and retrieving BLOBs.

0 commit comments

Comments
 (0)