├── .circleci └── config.yml ├── .editorconfig ├── .env ├── .env.postgres.local ├── .gitignore ├── Dockerfile ├── FUNDING.yml ├── LICENSE ├── README.md ├── bin └── console ├── composer.json ├── composer.lock ├── composer.phar ├── config ├── apache │ └── symfony.conf ├── bootstrap.php ├── bundles.php ├── packages │ ├── cache.yaml │ ├── dev │ │ └── monolog.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── monolog.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ └── routing.yaml │ ├── routing.yaml │ ├── stg │ │ ├── doctrine.yaml │ │ └── routing.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ └── twig.yaml │ └── twig.yaml ├── php │ └── php.ini ├── routes.yaml ├── routes │ ├── annotations.yaml │ └── dev │ │ └── framework.yaml └── services.yaml ├── data └── .gitkeep ├── deploy ├── migrate-db.sh ├── task_entrypoint.sh └── web_entrypoint.sh ├── docker-compose.yml ├── local_data └── .gitkeep ├── packages └── Readme.md ├── run-cron.sh ├── src ├── Command │ ├── BuildCommand.php │ ├── RefreshCommand.php │ └── UpdateCommand.php ├── Controller │ ├── .gitignore │ ├── MainController.php │ └── OpenSearchController.php ├── Entity │ ├── Package.php │ ├── PackageData.php │ ├── PackageRepository.php │ ├── Plugin.php │ ├── Request.php │ ├── RequestRepository.php │ └── Theme.php ├── EventListener │ └── ExceptionListener.php ├── Kernel.php ├── Migrations │ ├── Version20200924213211.php │ ├── Version20201029165342.php │ ├── Version20201104150851.php │ └── Version20231025122432.php ├── Persistence │ └── RetrySafeEntityManager.php ├── Service │ ├── Builder.php │ └── Update.php ├── Storage │ ├── Database.php │ ├── Filesystem.php │ └── PackageStore.php └── Twig │ └── PackageExtension.php ├── symfony.lock ├── var └── cache │ └── twig │ └── .gitkeep └── web ├── .htaccess ├── assets ├── css │ ├── foundation.css │ └── style.css ├── img │ ├── fork.png │ └── home.svg └── js │ └── main.js ├── favicon.png ├── index.php └── templates ├── footer.twig ├── index.twig ├── layout.twig ├── opensearch.twig ├── search.twig └── searchbar.twig /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/.env -------------------------------------------------------------------------------- /.env.postgres.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/.env.postgres.local -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/Dockerfile -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: outlandishideas 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/composer.phar -------------------------------------------------------------------------------- /config/apache/symfony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/apache/symfony.conf -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/monolog.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/prod/routing.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/stg/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/stg/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/stg/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/stg/routing.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/php/php.ini -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/routes/dev/framework.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/config/services.yaml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/migrate-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/deploy/migrate-db.sh -------------------------------------------------------------------------------- /deploy/task_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/deploy/task_entrypoint.sh -------------------------------------------------------------------------------- /deploy/web_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/deploy/web_entrypoint.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /local_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/packages/Readme.md -------------------------------------------------------------------------------- /run-cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/run-cron.sh -------------------------------------------------------------------------------- /src/Command/BuildCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Command/BuildCommand.php -------------------------------------------------------------------------------- /src/Command/RefreshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Command/RefreshCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Command/UpdateCommand.php -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/MainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Controller/MainController.php -------------------------------------------------------------------------------- /src/Controller/OpenSearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Controller/OpenSearchController.php -------------------------------------------------------------------------------- /src/Entity/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/Package.php -------------------------------------------------------------------------------- /src/Entity/PackageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/PackageData.php -------------------------------------------------------------------------------- /src/Entity/PackageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/PackageRepository.php -------------------------------------------------------------------------------- /src/Entity/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/Plugin.php -------------------------------------------------------------------------------- /src/Entity/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/Request.php -------------------------------------------------------------------------------- /src/Entity/RequestRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/RequestRepository.php -------------------------------------------------------------------------------- /src/Entity/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Entity/Theme.php -------------------------------------------------------------------------------- /src/EventListener/ExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/EventListener/ExceptionListener.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Migrations/Version20200924213211.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Migrations/Version20200924213211.php -------------------------------------------------------------------------------- /src/Migrations/Version20201029165342.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Migrations/Version20201029165342.php -------------------------------------------------------------------------------- /src/Migrations/Version20201104150851.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Migrations/Version20201104150851.php -------------------------------------------------------------------------------- /src/Migrations/Version20231025122432.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Migrations/Version20231025122432.php -------------------------------------------------------------------------------- /src/Persistence/RetrySafeEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Persistence/RetrySafeEntityManager.php -------------------------------------------------------------------------------- /src/Service/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Service/Builder.php -------------------------------------------------------------------------------- /src/Service/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Service/Update.php -------------------------------------------------------------------------------- /src/Storage/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Storage/Database.php -------------------------------------------------------------------------------- /src/Storage/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Storage/Filesystem.php -------------------------------------------------------------------------------- /src/Storage/PackageStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Storage/PackageStore.php -------------------------------------------------------------------------------- /src/Twig/PackageExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/src/Twig/PackageExtension.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/symfony.lock -------------------------------------------------------------------------------- /var/cache/twig/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- 1 | FallbackResource /index.php 2 | -------------------------------------------------------------------------------- /web/assets/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/assets/css/foundation.css -------------------------------------------------------------------------------- /web/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/assets/css/style.css -------------------------------------------------------------------------------- /web/assets/img/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/assets/img/fork.png -------------------------------------------------------------------------------- /web/assets/img/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/assets/img/home.svg -------------------------------------------------------------------------------- /web/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/assets/js/main.js -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/index.php -------------------------------------------------------------------------------- /web/templates/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/footer.twig -------------------------------------------------------------------------------- /web/templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/index.twig -------------------------------------------------------------------------------- /web/templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/layout.twig -------------------------------------------------------------------------------- /web/templates/opensearch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/opensearch.twig -------------------------------------------------------------------------------- /web/templates/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/search.twig -------------------------------------------------------------------------------- /web/templates/searchbar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlandishideas/wpackagist/HEAD/web/templates/searchbar.twig --------------------------------------------------------------------------------