diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a2fccaf --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +.gitattributes export-ignore +.gitignore export-ignore diff --git a/composer.json b/composer.json index fb6f8a3..faf4c92 100644 --- a/composer.json +++ b/composer.json @@ -13,6 +13,7 @@ "php-vcr/php-vcr": "^1.2", "symfony/config": "^2.6|^3|^4", "symfony/dependency-injection": "^2.6|^3|^4", + "symfony/filesystem": "^2.6|^3|^4", "symfony/event-dispatcher": "^2.6|^3|^4", "symfony/http-foundation": "^2.6|^3|^4", "symfony/http-kernel": "^2.6|^3|^4", @@ -20,7 +21,7 @@ }, "autoload": { "psr-4": { - "VCR\\VCRBundle\\": "" + "VCR\\VCRBundle\\": "src/" } } } diff --git a/DataCollector/VCRDataCollector.php b/src/DataCollector/VCRDataCollector.php similarity index 100% rename from DataCollector/VCRDataCollector.php rename to src/DataCollector/VCRDataCollector.php diff --git a/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php similarity index 100% rename from DependencyInjection/Configuration.php rename to src/DependencyInjection/Configuration.php diff --git a/DependencyInjection/VCRVCRExtension.php b/src/DependencyInjection/VCRVCRExtension.php similarity index 100% rename from DependencyInjection/VCRVCRExtension.php rename to src/DependencyInjection/VCRVCRExtension.php diff --git a/EventListener/HttpRequestListener.php b/src/EventListener/HttpRequestListener.php similarity index 100% rename from EventListener/HttpRequestListener.php rename to src/EventListener/HttpRequestListener.php diff --git a/EventListener/PlaybackListener.php b/src/EventListener/PlaybackListener.php similarity index 100% rename from EventListener/PlaybackListener.php rename to src/EventListener/PlaybackListener.php diff --git a/Resources/config/listeners.yml b/src/Resources/config/listeners.yml similarity index 100% rename from Resources/config/listeners.yml rename to src/Resources/config/listeners.yml diff --git a/Resources/config/services.yml b/src/Resources/config/services.yml similarity index 100% rename from Resources/config/services.yml rename to src/Resources/config/services.yml diff --git a/Resources/meta/LICENSE b/src/Resources/meta/LICENSE similarity index 100% rename from Resources/meta/LICENSE rename to src/Resources/meta/LICENSE diff --git a/Resources/public/css/profiler.css b/src/Resources/public/css/profiler.css similarity index 100% rename from Resources/public/css/profiler.css rename to src/Resources/public/css/profiler.css diff --git a/Resources/public/font/fontawesome/fontawesome-webfont.eot b/src/Resources/public/font/fontawesome/fontawesome-webfont.eot similarity index 100% rename from Resources/public/font/fontawesome/fontawesome-webfont.eot rename to src/Resources/public/font/fontawesome/fontawesome-webfont.eot diff --git a/Resources/public/font/fontawesome/fontawesome-webfont.svg b/src/Resources/public/font/fontawesome/fontawesome-webfont.svg similarity index 100% rename from Resources/public/font/fontawesome/fontawesome-webfont.svg rename to src/Resources/public/font/fontawesome/fontawesome-webfont.svg diff --git a/Resources/public/font/fontawesome/fontawesome-webfont.ttf b/src/Resources/public/font/fontawesome/fontawesome-webfont.ttf similarity index 100% rename from Resources/public/font/fontawesome/fontawesome-webfont.ttf rename to src/Resources/public/font/fontawesome/fontawesome-webfont.ttf diff --git a/Resources/public/font/fontawesome/fontawesome-webfont.woff b/src/Resources/public/font/fontawesome/fontawesome-webfont.woff similarity index 100% rename from Resources/public/font/fontawesome/fontawesome-webfont.woff rename to src/Resources/public/font/fontawesome/fontawesome-webfont.woff diff --git a/Resources/public/images/profiler/error.png b/src/Resources/public/images/profiler/error.png similarity index 100% rename from Resources/public/images/profiler/error.png rename to src/Resources/public/images/profiler/error.png diff --git a/Resources/public/images/profiler/network.png b/src/Resources/public/images/profiler/network.png similarity index 100% rename from Resources/public/images/profiler/network.png rename to src/Resources/public/images/profiler/network.png diff --git a/Resources/public/images/tape.png b/src/Resources/public/images/tape.png similarity index 100% rename from Resources/public/images/tape.png rename to src/Resources/public/images/tape.png diff --git a/Resources/public/vendor/bootstrap/js/bootstrap-tab.min.js b/src/Resources/public/vendor/bootstrap/js/bootstrap-tab.min.js similarity index 100% rename from Resources/public/vendor/bootstrap/js/bootstrap-tab.min.js rename to src/Resources/public/vendor/bootstrap/js/bootstrap-tab.min.js diff --git a/Resources/public/vendor/jquery/jquery.min.js b/src/Resources/public/vendor/jquery/jquery.min.js similarity index 100% rename from Resources/public/vendor/jquery/jquery.min.js rename to src/Resources/public/vendor/jquery/jquery.min.js diff --git a/Resources/views/Profiler/call.html.twig b/src/Resources/views/Profiler/call.html.twig similarity index 100% rename from Resources/views/Profiler/call.html.twig rename to src/Resources/views/Profiler/call.html.twig diff --git a/Resources/views/Profiler/calls.html.twig b/src/Resources/views/Profiler/calls.html.twig similarity index 100% rename from Resources/views/Profiler/calls.html.twig rename to src/Resources/views/Profiler/calls.html.twig diff --git a/Resources/views/Profiler/collector.html.twig b/src/Resources/views/Profiler/collector.html.twig similarity index 100% rename from Resources/views/Profiler/collector.html.twig rename to src/Resources/views/Profiler/collector.html.twig diff --git a/Resources/views/Profiler/javascript.html.twig b/src/Resources/views/Profiler/javascript.html.twig similarity index 100% rename from Resources/views/Profiler/javascript.html.twig rename to src/Resources/views/Profiler/javascript.html.twig diff --git a/Resources/views/Profiler/request.html.twig b/src/Resources/views/Profiler/request.html.twig similarity index 100% rename from Resources/views/Profiler/request.html.twig rename to src/Resources/views/Profiler/request.html.twig diff --git a/Resources/views/Profiler/response.html.twig b/src/Resources/views/Profiler/response.html.twig similarity index 100% rename from Resources/views/Profiler/response.html.twig rename to src/Resources/views/Profiler/response.html.twig diff --git a/VCR/Logger.php b/src/VCR/Logger.php similarity index 100% rename from VCR/Logger.php rename to src/VCR/Logger.php diff --git a/VCRVCRBundle.php b/src/VCRVCRBundle.php similarity index 100% rename from VCRVCRBundle.php rename to src/VCRVCRBundle.php