소스 검색

Fixed issue with autoloading - Invalid paths (#2538)

NicklasWallgren 8 년 전
부모
커밋
4cb113a91b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      composer.json

+ 3 - 3
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"
     ]
   }
 }