Skip to content

Commit

Permalink
Normalized composer.json (#675)
Browse files Browse the repository at this point in the history
* Normalized composer.json

* chore: Update composer.json and normalize formatting

The changes in composer.json include updating the "json-fix" script to also run the "composer normalize" command. This ensures that the composer.json file is properly formatted and adheres to the defined standards. Additionally, the script now applies the "composer normalize" command to all composer.json files found in the ./src directory.

Based on the recent user commits and repository commits, the commit message follows the established convention of using a prefix to indicate the type of change (`chore` for general maintenance or housekeeping).

* chore: Update composer.json script to run "composer normalize" and apply it to all composer.json files in ./src directory

* chore: Update composer.json script to run "composer normalize" and apply it to all composer.json files in ./src directory

---------

Co-authored-by: Deeka Wong <[email protected]>
  • Loading branch information
huangdijia and huangdijia authored Jun 17, 2024
1 parent 13f0319 commit 58a0af5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
{
"name": "friendsofhyperf/model-factory",
"description": "The factory for Hyperf models.",
"license": "MIT",
"type": "library",
"keywords": [
"hyperf",
"v3.1"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "huangdijia",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/friendsofhyperf/components/issues",
"source": "https://github.com/friendsofhyperf/components",
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
},
"require": {
"php": "^8.0",
"fakerphp/faker": "^1.23",
"hyperf/config": "~3.1.0",
"hyperf/database": "~3.1.0",
"hyperf/stringable": "~3.1.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"FriendsOfHyperf\\ModelFactory\\": "src/"
Expand All @@ -31,18 +37,12 @@
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"hyperf": {
"config": "FriendsOfHyperf\\ModelFactory\\ConfigProvider"
},
"branch-alias": {
"dev-main": "3.1-dev"
},
"hyperf": {
"config": "FriendsOfHyperf\\ModelFactory\\ConfigProvider"
}
},
"support": {
"issues": "https://github.com/friendsofhyperf/components/issues",
"source": "https://github.com/friendsofhyperf/components",
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
}
}

0 comments on commit 58a0af5

Please sign in to comment.