From 26b75e36a4b9b0f6af6a7473dc8054d657a761f8 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Fri, 4 Dec 2015 17:05:51 +0100 Subject: [PATCH] Move sources to src --- __phutil_library_map__.php | 8 ++++++-- .../ArcanistExternalJsonLinter.php | 0 2 files changed, 6 insertions(+), 2 deletions(-) rename ArcanistExternalJsonLinter.php => src/ArcanistExternalJsonLinter.php (100%) diff --git a/__phutil_library_map__.php b/__phutil_library_map__.php index 1ebc28b..3a309a8 100644 --- a/__phutil_library_map__.php +++ b/__phutil_library_map__.php @@ -8,7 +8,11 @@ */ phutil_register_library_map(array( '__library_version__' => 2, - 'class' => array(), + 'class' => array( + 'ArcanistExternalJsonLinter' => 'src/ArcanistExternalJsonLinter.php', + ), 'function' => array(), - 'xmap' => array(), + 'xmap' => array( + 'ArcanistExternalJsonLinter' => 'ArcanistLinter', + ), )); diff --git a/ArcanistExternalJsonLinter.php b/src/ArcanistExternalJsonLinter.php similarity index 100% rename from ArcanistExternalJsonLinter.php rename to src/ArcanistExternalJsonLinter.php