├── .dockerignore ├── .env ├── .gitignore ├── .htaccess ├── .travis.yml ├── Dockerfile ├── LICENSE.txt ├── README.md ├── aenthill.json ├── components ├── require-built.js ├── require.config.js ├── require.css ├── require.js └── typeaheadjs │ ├── typeahead.bundle.js │ ├── typeahead.bundle.min.js │ ├── typeahead.jquery.js │ └── typeaheadjs-built.js ├── composer.json ├── composer.lock ├── config.php ├── console.php ├── docker-compose.yml ├── kubernetes ├── .htaccess ├── elasticsearch.yaml ├── ingress.yaml ├── mongo.yaml └── web.yaml ├── mouf ├── Mouf.php ├── MoufComponents.php ├── MoufUI.php └── installs_app.php ├── phpstan.neon ├── phpunit.xml.dist ├── resources └── message.php ├── src ├── Mouf │ └── Packanalyst │ │ ├── ClassesDetector.php │ │ ├── Command │ │ ├── ForceRefreshCommand.php │ │ ├── GetPackagistScoresCommand.php │ │ ├── ReindexCommand.php │ │ ├── ResetCommand.php │ │ └── RunCommand.php │ │ ├── Controllers │ │ ├── ClassAnalyzerController.php │ │ ├── PackageAnalyzerController.php │ │ └── RootController.php │ │ ├── Dao │ │ ├── ItemDao.php │ │ └── PackageDao.php │ │ ├── Services │ │ ├── ComposerSrcDirectoryFinder.php │ │ ├── ElasticSearchService.php │ │ ├── FetchDataService.php │ │ ├── PackagistScoreService.php │ │ └── StoreInDbNodeVisitor.php │ │ └── Widgets │ │ ├── Graph.php │ │ ├── Node.php │ │ └── SearchBlock.php ├── templates │ └── Mouf │ │ ├── Html │ │ └── Template │ │ │ ├── BootstrapTemplate.twig │ │ │ └── Menus │ │ │ ├── BootstrapMenu.twig │ │ │ └── BootstrapNavBar.twig │ │ └── Packanalyst │ │ └── Widgets │ │ ├── Node.twig │ │ ├── Node__revert.twig │ │ └── SearchBlock.twig └── views │ ├── Gruntfile.js │ ├── classAnalyzer │ ├── 404.twig │ ├── classAnalyzer.js │ └── index.twig │ ├── css │ ├── images │ │ ├── arrow.png │ │ ├── bg-head.jpg │ │ ├── bg-logo.png │ │ ├── class_obj.png │ │ ├── favicon.ico │ │ ├── github-small.png │ │ ├── github.png │ │ ├── ico-code.png │ │ ├── ico-dna.png │ │ ├── ico-search.png │ │ ├── ico-talk.png │ │ ├── ico-work.png │ │ ├── int_obj.png │ │ ├── logo.png │ │ ├── mouf.png │ │ ├── package_obj.png │ │ ├── tcm.png │ │ ├── trait_obj.png │ │ └── twitter.png │ └── styles.css │ ├── package.json │ ├── packageAnalyzer │ ├── 404.twig │ └── index.twig │ ├── root │ ├── index.php │ ├── logo.twig │ └── search.twig │ └── src │ └── less │ ├── global.less │ ├── style.less │ ├── variables.less │ ├── view-home.less │ └── view-result.less ├── test.php ├── tests ├── Packanalyst │ └── Services │ │ └── ElasticSearchServiceTest.php └── bootstrap.php └── vendor-bin └── phpstan ├── composer.json └── composer.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/.htaccess -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/README.md -------------------------------------------------------------------------------- /aenthill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/aenthill.json -------------------------------------------------------------------------------- /components/require-built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/require-built.js -------------------------------------------------------------------------------- /components/require.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/require.config.js -------------------------------------------------------------------------------- /components/require.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/require.js -------------------------------------------------------------------------------- /components/typeaheadjs/typeahead.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/typeaheadjs/typeahead.bundle.js -------------------------------------------------------------------------------- /components/typeaheadjs/typeahead.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/typeaheadjs/typeahead.bundle.min.js -------------------------------------------------------------------------------- /components/typeaheadjs/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/typeaheadjs/typeahead.jquery.js -------------------------------------------------------------------------------- /components/typeaheadjs/typeaheadjs-built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/components/typeaheadjs/typeaheadjs-built.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/config.php -------------------------------------------------------------------------------- /console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/console.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/kubernetes/.htaccess -------------------------------------------------------------------------------- /kubernetes/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/kubernetes/elasticsearch.yaml -------------------------------------------------------------------------------- /kubernetes/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/kubernetes/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/mongo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/kubernetes/mongo.yaml -------------------------------------------------------------------------------- /kubernetes/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/kubernetes/web.yaml -------------------------------------------------------------------------------- /mouf/Mouf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/mouf/Mouf.php -------------------------------------------------------------------------------- /mouf/MoufComponents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/mouf/MoufComponents.php -------------------------------------------------------------------------------- /mouf/MoufUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/mouf/MoufUI.php -------------------------------------------------------------------------------- /mouf/installs_app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/mouf/installs_app.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /resources/message.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/ClassesDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/ClassesDetector.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Command/ForceRefreshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Command/ForceRefreshCommand.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Command/GetPackagistScoresCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Command/GetPackagistScoresCommand.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Command/ReindexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Command/ReindexCommand.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Command/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Command/ResetCommand.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Command/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Command/RunCommand.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Controllers/ClassAnalyzerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Controllers/ClassAnalyzerController.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Controllers/PackageAnalyzerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Controllers/PackageAnalyzerController.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Controllers/RootController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Controllers/RootController.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Dao/ItemDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Dao/ItemDao.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Dao/PackageDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Dao/PackageDao.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Services/ComposerSrcDirectoryFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Services/ComposerSrcDirectoryFinder.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Services/ElasticSearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Services/ElasticSearchService.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Services/FetchDataService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Services/FetchDataService.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Services/PackagistScoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Services/PackagistScoreService.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Services/StoreInDbNodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Services/StoreInDbNodeVisitor.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Widgets/Graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Widgets/Graph.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Widgets/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Widgets/Node.php -------------------------------------------------------------------------------- /src/Mouf/Packanalyst/Widgets/SearchBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/Mouf/Packanalyst/Widgets/SearchBlock.php -------------------------------------------------------------------------------- /src/templates/Mouf/Html/Template/BootstrapTemplate.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Html/Template/BootstrapTemplate.twig -------------------------------------------------------------------------------- /src/templates/Mouf/Html/Template/Menus/BootstrapMenu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Html/Template/Menus/BootstrapMenu.twig -------------------------------------------------------------------------------- /src/templates/Mouf/Html/Template/Menus/BootstrapNavBar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Html/Template/Menus/BootstrapNavBar.twig -------------------------------------------------------------------------------- /src/templates/Mouf/Packanalyst/Widgets/Node.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Packanalyst/Widgets/Node.twig -------------------------------------------------------------------------------- /src/templates/Mouf/Packanalyst/Widgets/Node__revert.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Packanalyst/Widgets/Node__revert.twig -------------------------------------------------------------------------------- /src/templates/Mouf/Packanalyst/Widgets/SearchBlock.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/templates/Mouf/Packanalyst/Widgets/SearchBlock.twig -------------------------------------------------------------------------------- /src/views/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/Gruntfile.js -------------------------------------------------------------------------------- /src/views/classAnalyzer/404.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/classAnalyzer/404.twig -------------------------------------------------------------------------------- /src/views/classAnalyzer/classAnalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/classAnalyzer/classAnalyzer.js -------------------------------------------------------------------------------- /src/views/classAnalyzer/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/classAnalyzer/index.twig -------------------------------------------------------------------------------- /src/views/css/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/arrow.png -------------------------------------------------------------------------------- /src/views/css/images/bg-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/bg-head.jpg -------------------------------------------------------------------------------- /src/views/css/images/bg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/bg-logo.png -------------------------------------------------------------------------------- /src/views/css/images/class_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/class_obj.png -------------------------------------------------------------------------------- /src/views/css/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/favicon.ico -------------------------------------------------------------------------------- /src/views/css/images/github-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/github-small.png -------------------------------------------------------------------------------- /src/views/css/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/github.png -------------------------------------------------------------------------------- /src/views/css/images/ico-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/ico-code.png -------------------------------------------------------------------------------- /src/views/css/images/ico-dna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/ico-dna.png -------------------------------------------------------------------------------- /src/views/css/images/ico-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/ico-search.png -------------------------------------------------------------------------------- /src/views/css/images/ico-talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/ico-talk.png -------------------------------------------------------------------------------- /src/views/css/images/ico-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/ico-work.png -------------------------------------------------------------------------------- /src/views/css/images/int_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/int_obj.png -------------------------------------------------------------------------------- /src/views/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/logo.png -------------------------------------------------------------------------------- /src/views/css/images/mouf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/mouf.png -------------------------------------------------------------------------------- /src/views/css/images/package_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/package_obj.png -------------------------------------------------------------------------------- /src/views/css/images/tcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/tcm.png -------------------------------------------------------------------------------- /src/views/css/images/trait_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/trait_obj.png -------------------------------------------------------------------------------- /src/views/css/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/images/twitter.png -------------------------------------------------------------------------------- /src/views/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/css/styles.css -------------------------------------------------------------------------------- /src/views/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/package.json -------------------------------------------------------------------------------- /src/views/packageAnalyzer/404.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/packageAnalyzer/404.twig -------------------------------------------------------------------------------- /src/views/packageAnalyzer/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/packageAnalyzer/index.twig -------------------------------------------------------------------------------- /src/views/root/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/root/index.php -------------------------------------------------------------------------------- /src/views/root/logo.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/root/logo.twig -------------------------------------------------------------------------------- /src/views/root/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/root/search.twig -------------------------------------------------------------------------------- /src/views/src/less/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/src/less/global.less -------------------------------------------------------------------------------- /src/views/src/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/src/less/style.less -------------------------------------------------------------------------------- /src/views/src/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/src/less/variables.less -------------------------------------------------------------------------------- /src/views/src/less/view-home.less: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | background: none; 3 | } -------------------------------------------------------------------------------- /src/views/src/less/view-result.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/src/views/src/less/view-result.less -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/test.php -------------------------------------------------------------------------------- /tests/Packanalyst/Services/ElasticSearchServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/tests/Packanalyst/Services/ElasticSearchServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor-bin/phpstan/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/vendor-bin/phpstan/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpstan/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/packanalyst/HEAD/vendor-bin/phpstan/composer.lock --------------------------------------------------------------------------------