aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authorGravatar NicklasWallgren <nicklas.wallgren@gmail.com>2016-12-28 22:33:36 +0100
committerGravatar Paul Yang <TeBoring@users.noreply.github.com>2016-12-28 13:33:36 -0800
commit4cb113a91b180559f0eedbca0244ef1181a7204c (patch)
treeb7dc910130ae1f9c01c168e52147b5ff90715e6d /composer.json
parent5f65ee6ac7e1c60dc4bdffa3c4247b3f0042e4fd (diff)
Fixed issue with autoloading - Invalid paths (#2538)
Diffstat (limited to 'composer.json')
-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"
]
}
}