Skip to content

Commit 4ea234d

Browse files
committed
Tests and fixes
1 parent 8825a5a commit 4ea234d

8 files changed

+308
-179
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can also just pass along the initials, and it will use those. Should you jus
3030
## Supported methods and parameters
3131
Of cause, passing a name is not the only thing this sweet thing does!
3232

33-
### Name - default: John Doe
33+
### Name (initials) - default: JD
3434
````php
3535
$image = $avatar->name('Albert Magnum')->generate();
3636
````

composer.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"name": "lasserafn/php-initial-avatar-generator",
33
"description": "A package to generate avatars with initials for PHP",
4-
"keywords": ["initials", "image", "avatar"],
4+
"keywords": [
5+
"initials",
6+
"image",
7+
"avatar"
8+
],
59
"type": "library",
610
"license": "MIT",
711
"authors": [
@@ -21,8 +25,12 @@
2125
"LasseRafn\\InitialAvatarGenerator\\": "src/"
2226
}
2327
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"InitialAvatarGenerator\\Tests\\": "tests/"
31+
}
32+
},
2433
"config": {
2534
"sort-packages": true
26-
},
27-
"minimum-stability": "dev"
35+
}
2836
}

0 commit comments

Comments
 (0)