Skip to content

Commit

Permalink
feat: make autoloader more efficient (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Oct 5, 2022
1 parent 666e6a8 commit cdff58a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@
},
"autoload": {
"psr-4": {
"Google\\": "src",
"GPBMetadata\\Google\\": "metadata"
"Google\\Api\\": "src/Api",
"Google\\Cloud\\": "src/Cloud",
"Google\\Iam\\": "src/Iam",
"Google\\Rpc\\": "src/Rpc",
"Google\\Type\\": "src/Type",
"GPBMetadata\\Google\\Api\\": "metadata/Api",
"GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
"GPBMetadata\\Google\\Iam\\": "metadata/Iam",
"GPBMetadata\\Google\\Logging\\": "metadata/Logging",
"GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
"GPBMetadata\\Google\\Type\\": "metadata/Type"
}
}
}

0 comments on commit cdff58a

Please sign in to comment.