aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicklasWallgren <nicklas.wallgren@gmail.com>2016-12-28 22:33:36 +0100
committerBo Yang <teboring@google.com>2016-12-28 13:35:11 -0800
commitda9fea1d206b3ff2a06adef6d9bc0e96e05586a6 (patch)
tree20751059f25b9c36724e8e5ccc8c62d90bc13694
parente230283f75da104b78a9c34be719adaac80d9428 (diff)
downloadprotobuf-da9fea1d206b3ff2a06adef6d9bc0e96e05586a6.tar.gz
protobuf-da9fea1d206b3ff2a06adef6d9bc0e96e05586a6.tar.bz2
protobuf-da9fea1d206b3ff2a06adef6d9bc0e96e05586a6.zip
Fixed issue with autoloading - Invalid paths (#2538)
-rw-r--r--composer.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 2833f0a2..2b04e079 100644
--- a/composer.json
+++ b/composer.json
@@ -13,11 +13,11 @@
},
"autoload": {
"psr-4": {
- "Google\\Protobuf\\Internal\\": "src/Google/Protobuf/Internal",
- "GPBMetadata\\Google\\Protobuf\\Internal\\": "src/GPBMetadata/Google/Protobuf/Internal"
+ "Google\\Protobuf\\Internal\\": "php/src/Google/Protobuf/Internal",
+ "GPBMetadata\\Google\\Protobuf\\Internal\\": "php/src/GPBMetadata/Google/Protobuf/Internal"
},
"files": [
- "src/Google/Protobuf/descriptor.php"
+ "php/src/Google/Protobuf/descriptor.php"
]
}
}