Skip to content

Commit

Permalink
fix: use classmap autoloader for non-conformant classes (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie authored May 26, 2020
1 parent 501eb0b commit 0635470
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
{
"name": "google/grpc-gcp",
"description": "gRPC GCP library for channel management",
"license": "Apache-2.0",
"version": "0.1.4",
"require": {
"php": ">=5.5.0",
"google/protobuf": "^v3.3.0",
"grpc/grpc": "^v1.13.0",
"google/auth": "^1.3",
"psr/cache": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "4.8.36",
"google/cloud-spanner": "^1.7"
},
"autoload": {
"psr-4": {
"Grpc\\Gcp\\": "src/",
"": "src/generated/"
}
}
{
"name": "google/grpc-gcp",
"description": "gRPC GCP library for channel management",
"license": "Apache-2.0",
"version": "0.1.4",
"require": {
"php": ">=5.5.0",
"google/protobuf": "^v3.3.0",
"grpc/grpc": "^v1.13.0",
"google/auth": "^1.3",
"psr/cache": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "4.8.36",
"google/cloud-spanner": "^1.7"
},
"autoload": {
"psr-4": {
"Grpc\\Gcp\\": "src/"
},
"classmap": [
"src/generated/"
]
}
}

0 comments on commit 0635470

Please sign in to comment.