Skip to content

Commit 2844bdc

Browse files
Add description to fix composer show --tree
While running: ``` composer show --tree ``` It fails if this package is installed since the `description` key is empty. See composer source code where `strtok` fails since description is null instead of string type: https://github.com/composer/composer/blob/main/src/Composer/Command/ShowCommand.php#L1127 I added a very simple description, nothing too fancy!
1 parent e1eac19 commit 2844bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hammerstone/fast-paginate",
3-
"description": "",
3+
"description": "Fast paginate for Laravel",
44
"type": "library",
55
"license": "MIT",
66
"authors": [

0 commit comments

Comments
 (0)