├── .gitignore ├── README.md ├── app ├── bootstrap.php ├── config.php.dist └── marketplace.php ├── bin └── vendors ├── cache └── .gitignore ├── composer.json ├── composer.lock ├── deps ├── deps.lock ├── src ├── Marketplace │ ├── AbstractMigration.php │ ├── Form │ │ ├── CommentType.php │ │ ├── ProjectLinkType.php │ │ └── ProjectType.php │ ├── Migration.php │ ├── Provider │ │ ├── Controller │ │ │ ├── Category.php │ │ │ ├── Comment.php │ │ │ ├── Project.php │ │ │ └── Security.php │ │ └── Service │ │ │ ├── Migration.php │ │ │ ├── Repository.php │ │ │ └── Security.php │ ├── Repository.php │ ├── Repository │ │ ├── Comment.php │ │ ├── Project.php │ │ ├── ProjectLink.php │ │ └── ProjectVote.php │ └── Twig │ │ └── MarketplaceExtension.php └── Resources │ ├── migrations │ ├── 01_ProjectMigration.php │ ├── 02_CommentMigration.php │ ├── 03_MarkdownCacheMigration.php │ ├── 04_CommentMarkdownCacheMigration.php │ ├── 05_ProjectVoteMigration.php │ ├── 06_ProjectCommentTimestampsMigration.php │ ├── 07_ProjectLinksMigration.php │ ├── 08_ProjectsCategoryMigration.php │ └── 09_ProjectLastCommentedAtNullMigration.php │ └── views │ ├── Category │ └── show.html.twig │ ├── Project │ ├── _comments.html.twig │ ├── _form.html.twig │ ├── _links.html.twig │ ├── _list.html.twig │ ├── _voters.html.twig │ ├── edit.html.twig │ ├── new.html.twig │ └── show.html.twig │ ├── _migration_infos.html.twig │ ├── forbidden.html.twig │ ├── homepage.html.twig │ └── layout.html.twig └── web ├── .htaccess ├── css ├── bootstrap.min.css └── style.css ├── index.php └── js ├── bootstrap ├── bootstrap-dropdown.js ├── bootstrap-modal.js ├── bootstrap-tabs.js └── bootstrap-twipsy.js └── marketplace.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/README.md -------------------------------------------------------------------------------- /app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/app/bootstrap.php -------------------------------------------------------------------------------- /app/config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/app/config.php.dist -------------------------------------------------------------------------------- /app/marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/app/marketplace.php -------------------------------------------------------------------------------- /bin/vendors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/bin/vendors -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/composer.lock -------------------------------------------------------------------------------- /deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/deps -------------------------------------------------------------------------------- /deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/deps.lock -------------------------------------------------------------------------------- /src/Marketplace/AbstractMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/AbstractMigration.php -------------------------------------------------------------------------------- /src/Marketplace/Form/CommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Form/CommentType.php -------------------------------------------------------------------------------- /src/Marketplace/Form/ProjectLinkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Form/ProjectLinkType.php -------------------------------------------------------------------------------- /src/Marketplace/Form/ProjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Form/ProjectType.php -------------------------------------------------------------------------------- /src/Marketplace/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Migration.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Controller/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Controller/Category.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Controller/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Controller/Comment.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Controller/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Controller/Project.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Controller/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Controller/Security.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Service/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Service/Migration.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Service/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Service/Repository.php -------------------------------------------------------------------------------- /src/Marketplace/Provider/Service/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Provider/Service/Security.php -------------------------------------------------------------------------------- /src/Marketplace/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Repository.php -------------------------------------------------------------------------------- /src/Marketplace/Repository/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Repository/Comment.php -------------------------------------------------------------------------------- /src/Marketplace/Repository/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Repository/Project.php -------------------------------------------------------------------------------- /src/Marketplace/Repository/ProjectLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Repository/ProjectLink.php -------------------------------------------------------------------------------- /src/Marketplace/Repository/ProjectVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Repository/ProjectVote.php -------------------------------------------------------------------------------- /src/Marketplace/Twig/MarketplaceExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Marketplace/Twig/MarketplaceExtension.php -------------------------------------------------------------------------------- /src/Resources/migrations/01_ProjectMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/01_ProjectMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/02_CommentMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/02_CommentMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/03_MarkdownCacheMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/03_MarkdownCacheMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/04_CommentMarkdownCacheMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/04_CommentMarkdownCacheMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/05_ProjectVoteMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/05_ProjectVoteMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/06_ProjectCommentTimestampsMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/06_ProjectCommentTimestampsMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/07_ProjectLinksMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/07_ProjectLinksMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/08_ProjectsCategoryMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/08_ProjectsCategoryMigration.php -------------------------------------------------------------------------------- /src/Resources/migrations/09_ProjectLastCommentedAtNullMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/migrations/09_ProjectLastCommentedAtNullMigration.php -------------------------------------------------------------------------------- /src/Resources/views/Category/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Category/show.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/_comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/_comments.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/_form.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/_links.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/_links.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/_list.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/_voters.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/_voters.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/edit.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/new.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Project/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/Project/show.html.twig -------------------------------------------------------------------------------- /src/Resources/views/_migration_infos.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/_migration_infos.html.twig -------------------------------------------------------------------------------- /src/Resources/views/forbidden.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/forbidden.html.twig -------------------------------------------------------------------------------- /src/Resources/views/homepage.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/homepage.html.twig -------------------------------------------------------------------------------- /src/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/src/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/index.php -------------------------------------------------------------------------------- /web/js/bootstrap/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/js/bootstrap/bootstrap-dropdown.js -------------------------------------------------------------------------------- /web/js/bootstrap/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/js/bootstrap/bootstrap-modal.js -------------------------------------------------------------------------------- /web/js/bootstrap/bootstrap-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/js/bootstrap/bootstrap-tabs.js -------------------------------------------------------------------------------- /web/js/bootstrap/bootstrap-twipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/js/bootstrap/bootstrap-twipsy.js -------------------------------------------------------------------------------- /web/js/marketplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/marketplace/HEAD/web/js/marketplace.js --------------------------------------------------------------------------------