Skip to content

Commit 487619e

Browse files
committed
finished v1.0 pkg
1 parent 15cd338 commit 487619e

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
phpunit.xml
22
composer.lock
33
composer.phar
4+
.idea/
45
vendor/

composer.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"name": "mle86/value",
3-
"description": "",
3+
"type": "library",
4+
"description": "A base class for immutable single-value-wrapper classes",
5+
"license": "MIT",
6+
7+
"authors": [ {
8+
"name": "Maximilian Eul",
9+
"email": "maximilian@eul.cc",
10+
"homepage": "https://github.com/mle86/php-value"
11+
} ],
412

513
"autoload": {
614
"psr-4": {

src/Value/AbstractSerializableValue.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* for the Value objects. It implements the PHP 5.4 JsonSerializable interface.
88
*
99
* @author Maximilian Eul
10+
* @link https://github.com/mle86/php-value
1011
*/
1112
abstract class AbstractSerializableValue
1213
extends AbstractValue

src/Value/AbstractValue.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* representations of the value).
2727
*
2828
* @author Maximilian Eul
29+
* @link https://github.com/mle86/php-value
2930
*/
3031
abstract class AbstractValue
3132
implements Value

src/Value/Value.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* in an interface.
1313
*
1414
* @author Maximilian Eul
15+
* @link https://github.com/mle86/php-value
1516
*/
1617
interface Value {
1718

0 commit comments

Comments
 (0)