├── .gitignore ├── .php_cs ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ ├── assets │ │ ├── images │ │ │ ├── .directory │ │ │ ├── background.jpg │ │ │ ├── brickset_logo.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── meta-logo.png │ │ │ ├── noimage.png │ │ │ ├── noimage_large.png │ │ │ ├── noimage_min.png │ │ │ ├── rebrickable_logo.png │ │ │ ├── spinner.svg │ │ │ ├── transparent_large.png │ │ │ └── transparent_min.png │ │ ├── js │ │ │ ├── ModelViewer.js │ │ │ ├── ajax.js │ │ │ ├── slider.js │ │ │ └── style.js │ │ ├── models │ │ │ └── 973c00.dat │ │ └── style │ │ │ ├── _variables.scss │ │ │ ├── colors.scss │ │ │ ├── filter.scss │ │ │ ├── homepage.scss │ │ │ ├── main.scss │ │ │ ├── mixins.scss │ │ │ ├── modelviewer.scss │ │ │ ├── navbar.scss │ │ │ ├── part.scss │ │ │ ├── reviews.scss │ │ │ ├── set.scss │ │ │ ├── style.scss │ │ │ └── table.scss │ ├── fixtures │ │ └── colors.csv │ ├── povray_layout │ │ └── layout.tmpl │ ├── relations │ │ ├── alias_model.yml │ │ └── part_model.yml │ ├── translations │ │ ├── menu.en.yml │ │ └── messages.en.yml │ └── views │ │ ├── base.html.twig │ │ ├── brickset │ │ ├── description.html.twig │ │ ├── images.html.twig │ │ ├── instructions.html.twig │ │ └── reviews.html.twig │ │ ├── color │ │ └── index.html.twig │ │ ├── default │ │ └── index.html.twig │ │ ├── error │ │ └── error.html.twig │ │ ├── footer.html.twig │ │ ├── form │ │ ├── search.html.twig │ │ └── semantic-ui.html.twig │ │ ├── html.html.twig │ │ ├── macros │ │ ├── blocks.html.twig │ │ ├── elements.html.twig │ │ └── utils.html.twig │ │ ├── menu │ │ └── knp_menu.html.twig │ │ ├── model │ │ ├── detail.html.twig │ │ ├── index.html.twig │ │ └── tabs │ │ │ └── sets.html.twig │ │ ├── pagination │ │ ├── knp_pagination.html.twig │ │ └── sortable_link.html.twig │ │ ├── part │ │ └── detail.html.twig │ │ ├── search │ │ └── index.html.twig │ │ └── set │ │ ├── detail.html.twig │ │ ├── index.html.twig │ │ └── tabs │ │ ├── colors.html.twig │ │ ├── inventory.html.twig │ │ └── models.html.twig ├── autoload.php └── config │ ├── config.yml │ ├── config │ ├── fos_elastica.yml │ └── liip_imagine.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ ├── service │ ├── front.yml │ ├── legacy_aliases.yml │ └── loader.yml │ └── services.yml ├── bin ├── console ├── php-cs-fixer-hook.sh ├── startElastisearchDocker.sh └── symfony_requirements ├── bower.json ├── composer.json ├── composer.lock ├── gulpfile.js ├── package.json ├── phpunit.xml.dist ├── src ├── .htaccess ├── AppBundle │ ├── Api │ │ ├── Client │ │ │ ├── Brickset │ │ │ │ ├── BricksetClient.php │ │ │ │ └── Entity │ │ │ │ │ ├── AdditionalImage.php │ │ │ │ │ ├── Instructions.php │ │ │ │ │ ├── Review.php │ │ │ │ │ ├── Set.php │ │ │ │ │ ├── Subtheme.php │ │ │ │ │ ├── Theme.php │ │ │ │ │ └── Year.php │ │ │ └── Rebrickable │ │ │ │ ├── Converter │ │ │ │ └── PropertyNameConverter.php │ │ │ │ ├── Entity │ │ │ │ ├── Color.php │ │ │ │ ├── Part.php │ │ │ │ ├── PartCategory.php │ │ │ │ ├── Set.php │ │ │ │ └── Theme.php │ │ │ │ └── RebrickableClient.php │ │ ├── Exception │ │ │ ├── ApiException.php │ │ │ ├── AuthenticationFailedException.php │ │ │ ├── CallFailedException.php │ │ │ └── EmptyResponseException.php │ │ └── Manager │ │ │ ├── BricksetManager.php │ │ │ └── RebrickableManager.php │ ├── AppBundle.php │ ├── DataFixtures │ │ └── ORM │ │ │ └── LoadColors.php │ ├── Entity │ │ ├── Color.php │ │ ├── LDraw │ │ │ ├── Alias.php │ │ │ ├── Author.php │ │ │ ├── Category.php │ │ │ ├── Keyword.php │ │ │ ├── Model.php │ │ │ └── Subpart.php │ │ ├── Rebrickable │ │ │ ├── Category.php │ │ │ ├── Inventory.php │ │ │ ├── Inventory_Part.php │ │ │ ├── Inventory_Set.php │ │ │ ├── Part.php │ │ │ ├── Set.php │ │ │ └── Theme.php │ │ └── Traits │ │ │ ├── IdentityTrait.php │ │ │ ├── NameTrait.php │ │ │ ├── NumberTrait.php │ │ │ └── UniqueNameTrait.php │ ├── Model │ │ ├── ModelSearch.php │ │ ├── NumberRange.php │ │ └── SetSearch.php │ ├── Repository │ │ ├── BaseRepository.php │ │ ├── ColorRepository.php │ │ ├── LDraw │ │ │ ├── AliasRepository.php │ │ │ ├── AuthorRepository.php │ │ │ ├── CategoryRepository.php │ │ │ ├── KeywordRepository.php │ │ │ ├── ModelRepository.php │ │ │ └── SubpartRepository.php │ │ ├── Rebrickable │ │ │ ├── CategoryRepository.php │ │ │ ├── InventoryRepository.php │ │ │ ├── Inventory_PartRepository.php │ │ │ ├── Inventory_SetRepository.php │ │ │ ├── PartRepository.php │ │ │ ├── SetRepository.php │ │ │ └── ThemeRepository.php │ │ └── Search │ │ │ ├── ModelRepository.php │ │ │ └── SetRepository.php │ ├── Service │ │ ├── ColorService.php │ │ ├── ModelService.php │ │ ├── SearchService.php │ │ ├── SetService.php │ │ └── ZipService.php │ └── Transformer │ │ └── FormatTransformer.php ├── FrontBundle │ ├── Controller │ │ ├── AjaxController.php │ │ ├── ColorController.php │ │ ├── DefaultController.php │ │ ├── MediaController.php │ │ ├── ModelController.php │ │ ├── PartController.php │ │ ├── SearchController.php │ │ └── Set │ │ │ ├── BricksetController.php │ │ │ └── SetController.php │ ├── Form │ │ ├── NumberRangeType.php │ │ └── Search │ │ │ ├── ModelSearchType.php │ │ │ └── SetSearchType.php │ ├── FrontBundle.php │ ├── Imagine │ │ ├── BaseImageLoader.php │ │ ├── PartImageLoader.php │ │ └── SetImageLoader.php │ ├── Menu │ │ └── Builder.php │ └── Twig │ │ └── AppExtension.php └── LoaderBundle │ ├── Command │ ├── InitDataCommand.php │ ├── LoadImagesCommand.php │ ├── LoadLdrawCommand.php │ ├── LoadRebrickableDataCommand.php │ └── LoadRelationCommand.php │ ├── Exception │ ├── ConvertingFailedException.php │ ├── ErrorParsingLineException.php │ ├── FileException.php │ ├── FileNotFoundException.php │ ├── Loader │ │ ├── LoadingModelFailedException.php │ │ ├── LoadingRebrickableFailedException.php │ │ └── MissingContextException.php │ ├── ParseErrorException.php │ ├── RelationMapper │ │ ├── InvalidDomainException.php │ │ ├── InvalidResourceException.php │ │ └── ResourceNotFoundException.php │ ├── RenderFailedException.php │ ├── Stl │ │ └── LDLibraryMissingException.php │ └── WriteErrorException.php │ ├── LoaderBundle.php │ ├── Service │ ├── BaseLoader.php │ ├── ImageLoader.php │ ├── ModelLoader.php │ ├── RebrickableLoader.php │ ├── RelationLoader.php │ └── Stl │ │ ├── StlConverterService.php │ │ ├── StlFixerService.php │ │ └── StlRendererService.php │ └── Util │ ├── LDModelParser.php │ └── RelationMapper.php ├── tests ├── AppBundle │ ├── BaseTest.php │ ├── Fixtures │ │ ├── LoadBaseData.php │ │ ├── LoadUnmappedData.php │ │ └── models │ │ │ └── 1.stl │ ├── Repository │ │ ├── LDraw │ │ │ ├── AliasRepositoryTest.php │ │ │ ├── AuthorRepositoryTest.php │ │ │ ├── CategoryRepositoryTest.php │ │ │ ├── KeywordRepositoryTest.php │ │ │ ├── ModelRepositoryTest.php │ │ │ └── SubpartRepositoryTest.php │ │ └── Rebrickable │ │ │ ├── InventoryRepositoryTest.php │ │ │ ├── Inventory_PartRepositoryTest.php │ │ │ ├── Inventory_SetRepositoryTest.php │ │ │ ├── PartRepositoryTest.php │ │ │ └── SetRepositoryTest.php │ ├── Service │ │ ├── ColorServiceTest.php │ │ ├── ModelServiceTest.php │ │ ├── SetServiceTest.php │ │ └── ZipServiceTest.php │ └── Transformer │ │ └── FormatTransformerTest.php ├── FrontBundle │ ├── Controller │ │ ├── ApplicationAvailabilityTest.php │ │ ├── BaseControllerTest.php │ │ └── fixtures │ │ │ └── samplefile.txt │ └── Imagine │ │ ├── PartImageLoaderTest.php │ │ ├── SetImageLoaderTest.php │ │ └── fixtures │ │ └── 1.png └── LoaderBundle │ ├── Command │ ├── fixtures │ │ └── file.dat │ ├── loadImagesCommandTest.php │ ├── loadLdrawCommandTest.php │ └── loadRelationCommandTest.php │ ├── Service │ ├── ImageLoader │ │ ├── ImageLoaderTest.php │ │ └── fixtures │ │ │ └── ldraw │ │ │ ├── parts_-1.zip │ │ │ └── parts_5.zip │ ├── ModelLoader │ │ ├── ModelLoaderTest.php │ │ └── fixtures │ │ │ ├── completeCA.zip │ │ │ ├── filecontext │ │ │ ├── p │ │ │ │ └── 4-4cyli.dat │ │ │ └── parts │ │ │ │ ├── 30367a.dat │ │ │ │ ├── 983.dat │ │ │ │ ├── 999.dat │ │ │ │ └── s │ │ │ │ └── 30367as01.dat │ │ │ ├── included │ │ │ └── parts │ │ │ │ ├── 1000d01.dat │ │ │ │ └── povray.dat │ │ │ ├── ldraw.zip │ │ │ ├── librarycontext │ │ │ └── parts │ │ │ │ ├── 30367b.dat │ │ │ │ ├── 3820.dat │ │ │ │ └── licensed.dat │ │ │ ├── license │ │ │ └── parts │ │ │ │ ├── licensed.dat │ │ │ │ └── unlicensed.dat │ │ │ ├── printed │ │ │ └── parts │ │ │ │ ├── 30367b.dat │ │ │ │ └── 30367bps7.dat │ │ │ ├── subparts │ │ │ └── parts │ │ │ │ ├── 3815.dat │ │ │ │ ├── 3815c01.dat │ │ │ │ ├── 3816.dat │ │ │ │ └── 3817.dat │ │ │ ├── update │ │ │ ├── version1 │ │ │ │ └── parts │ │ │ │ │ ├── 3820.dat │ │ │ │ │ ├── 500.dat │ │ │ │ │ └── 983.dat │ │ │ └── version2 │ │ │ │ └── parts │ │ │ │ ├── 3820.dat │ │ │ │ ├── 3821.dat │ │ │ │ ├── 500.dat │ │ │ │ └── 983.dat │ │ │ └── update2 │ │ │ ├── version1 │ │ │ └── parts │ │ │ │ └── 3820.dat │ │ │ └── version2 │ │ │ └── parts │ │ │ └── 3820.dat │ ├── RebrickableLoader │ │ ├── RebrickableLoaderTest.php │ │ ├── corrupt │ │ │ ├── inventories.csv │ │ │ ├── inventory_parts.csv │ │ │ ├── inventory_sets.csv │ │ │ ├── part_categories.csv │ │ │ ├── parts.csv │ │ │ ├── sets.csv │ │ │ └── themes.csv │ │ └── fixtures │ │ │ ├── inventories.csv │ │ │ ├── inventory_parts.csv │ │ │ ├── inventory_sets.csv │ │ │ ├── part_categories.csv │ │ │ ├── parts.csv │ │ │ ├── sets.csv │ │ │ └── themes.csv │ ├── RelationLoader │ │ └── RelationLoaderTest.php │ └── Stl │ │ ├── StlConverter │ │ ├── StlConverterTest.php │ │ └── fixtures │ │ │ ├── 983.stl │ │ │ ├── expected.stl │ │ │ └── ldraw │ │ │ ├── p │ │ │ ├── 2-4edge.dat │ │ │ ├── 3-4edge.dat │ │ │ └── 4-4edge.dat │ │ │ └── parts │ │ │ ├── 3820.dat │ │ │ └── 983.dat │ │ ├── StlFixer │ │ ├── StlFixerTest.php │ │ └── fixtures │ │ │ ├── ascii.stl │ │ │ └── binary.stl │ │ └── StlRenderer │ │ ├── StlRendererTest.php │ │ └── fixtures │ │ ├── 973c00.png │ │ ├── 973c00.stl │ │ └── layout.tmpl │ └── Util │ ├── LDModelParser │ ├── LDModelParserTest.php │ └── fixtures │ │ ├── alias.txt │ │ ├── color.dat │ │ ├── invalid.dat │ │ ├── stickers.txt │ │ └── valid.dat │ └── RelationMapper │ ├── RelationMapperTest.php │ └── fixtures │ ├── empty.yml │ ├── invalid.yml │ └── resources.yml ├── var ├── SymfonyRequirements.php ├── cache │ └── .gitkeep ├── logs │ └── .gitkeep └── sessions │ └── .gitkeep └── web ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── browserconfig.xml ├── config.php ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── manifest.json ├── mstile-150x150.png ├── robots.txt └── safari-pinned-tab.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/.php_cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/assets/images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,5,9,23,7,36 4 | Version=3 5 | -------------------------------------------------------------------------------- /app/Resources/assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/background.jpg -------------------------------------------------------------------------------- /app/Resources/assets/images/brickset_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/brickset_logo.png -------------------------------------------------------------------------------- /app/Resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/logo.png -------------------------------------------------------------------------------- /app/Resources/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/logo.svg -------------------------------------------------------------------------------- /app/Resources/assets/images/meta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/meta-logo.png -------------------------------------------------------------------------------- /app/Resources/assets/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/noimage.png -------------------------------------------------------------------------------- /app/Resources/assets/images/noimage_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/noimage_large.png -------------------------------------------------------------------------------- /app/Resources/assets/images/noimage_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/noimage_min.png -------------------------------------------------------------------------------- /app/Resources/assets/images/rebrickable_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/rebrickable_logo.png -------------------------------------------------------------------------------- /app/Resources/assets/images/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/spinner.svg -------------------------------------------------------------------------------- /app/Resources/assets/images/transparent_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/transparent_large.png -------------------------------------------------------------------------------- /app/Resources/assets/images/transparent_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/images/transparent_min.png -------------------------------------------------------------------------------- /app/Resources/assets/js/ModelViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/js/ModelViewer.js -------------------------------------------------------------------------------- /app/Resources/assets/js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/js/ajax.js -------------------------------------------------------------------------------- /app/Resources/assets/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/js/slider.js -------------------------------------------------------------------------------- /app/Resources/assets/js/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/js/style.js -------------------------------------------------------------------------------- /app/Resources/assets/models/973c00.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/models/973c00.dat -------------------------------------------------------------------------------- /app/Resources/assets/style/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/assets/style/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/colors.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/filter.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/homepage.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/main.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/assets/style/modelviewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/modelviewer.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/navbar.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/part.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/part.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/reviews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/reviews.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/set.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/set.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/style.scss -------------------------------------------------------------------------------- /app/Resources/assets/style/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/assets/style/table.scss -------------------------------------------------------------------------------- /app/Resources/fixtures/colors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/fixtures/colors.csv -------------------------------------------------------------------------------- /app/Resources/povray_layout/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/povray_layout/layout.tmpl -------------------------------------------------------------------------------- /app/Resources/relations/alias_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/relations/alias_model.yml -------------------------------------------------------------------------------- /app/Resources/relations/part_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/relations/part_model.yml -------------------------------------------------------------------------------- /app/Resources/translations/menu.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/translations/menu.en.yml -------------------------------------------------------------------------------- /app/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/Resources/views/brickset/description.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/brickset/description.html.twig -------------------------------------------------------------------------------- /app/Resources/views/brickset/images.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/brickset/images.html.twig -------------------------------------------------------------------------------- /app/Resources/views/brickset/instructions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/brickset/instructions.html.twig -------------------------------------------------------------------------------- /app/Resources/views/brickset/reviews.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/brickset/reviews.html.twig -------------------------------------------------------------------------------- /app/Resources/views/color/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/color/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/default/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/default/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/error/error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/error/error.html.twig -------------------------------------------------------------------------------- /app/Resources/views/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/footer.html.twig -------------------------------------------------------------------------------- /app/Resources/views/form/search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/form/search.html.twig -------------------------------------------------------------------------------- /app/Resources/views/form/semantic-ui.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/form/semantic-ui.html.twig -------------------------------------------------------------------------------- /app/Resources/views/html.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/html.html.twig -------------------------------------------------------------------------------- /app/Resources/views/macros/blocks.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/macros/blocks.html.twig -------------------------------------------------------------------------------- /app/Resources/views/macros/elements.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/macros/elements.html.twig -------------------------------------------------------------------------------- /app/Resources/views/macros/utils.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/views/menu/knp_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/menu/knp_menu.html.twig -------------------------------------------------------------------------------- /app/Resources/views/model/detail.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/model/detail.html.twig -------------------------------------------------------------------------------- /app/Resources/views/model/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/model/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/model/tabs/sets.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/model/tabs/sets.html.twig -------------------------------------------------------------------------------- /app/Resources/views/pagination/knp_pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/pagination/knp_pagination.html.twig -------------------------------------------------------------------------------- /app/Resources/views/pagination/sortable_link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/pagination/sortable_link.html.twig -------------------------------------------------------------------------------- /app/Resources/views/part/detail.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/part/detail.html.twig -------------------------------------------------------------------------------- /app/Resources/views/search/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/search/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/set/detail.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/set/detail.html.twig -------------------------------------------------------------------------------- /app/Resources/views/set/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/set/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/set/tabs/colors.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/set/tabs/colors.html.twig -------------------------------------------------------------------------------- /app/Resources/views/set/tabs/inventory.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/set/tabs/inventory.html.twig -------------------------------------------------------------------------------- /app/Resources/views/set/tabs/models.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/Resources/views/set/tabs/models.html.twig -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config/fos_elastica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config/fos_elastica.yml -------------------------------------------------------------------------------- /app/config/config/liip_imagine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config/liip_imagine.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/service/front.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/service/front.yml -------------------------------------------------------------------------------- /app/config/service/legacy_aliases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/service/legacy_aliases.yml -------------------------------------------------------------------------------- /app/config/service/loader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/service/loader.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/bin/console -------------------------------------------------------------------------------- /bin/php-cs-fixer-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/bin/php-cs-fixer-hook.sh -------------------------------------------------------------------------------- /bin/startElastisearchDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/bin/startElastisearchDocker.sh -------------------------------------------------------------------------------- /bin/symfony_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/bin/symfony_requirements -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/composer.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/BricksetClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/BricksetClient.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/AdditionalImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/AdditionalImage.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Instructions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Instructions.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Review.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Set.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Subtheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Subtheme.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Theme.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Brickset/Entity/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Brickset/Entity/Year.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Converter/PropertyNameConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Converter/PropertyNameConverter.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Entity/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Entity/Color.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Entity/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Entity/Part.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Entity/PartCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Entity/PartCategory.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Entity/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Entity/Set.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/Entity/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/Entity/Theme.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Client/Rebrickable/RebrickableClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Client/Rebrickable/RebrickableClient.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Exception/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Exception/ApiException.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Exception/AuthenticationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Exception/AuthenticationFailedException.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Exception/CallFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Exception/CallFailedException.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Exception/EmptyResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Exception/EmptyResponseException.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Manager/BricksetManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Manager/BricksetManager.php -------------------------------------------------------------------------------- /src/AppBundle/Api/Manager/RebrickableManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Api/Manager/RebrickableManager.php -------------------------------------------------------------------------------- /src/AppBundle/AppBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/AppBundle.php -------------------------------------------------------------------------------- /src/AppBundle/DataFixtures/ORM/LoadColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/DataFixtures/ORM/LoadColors.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Color.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Alias.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Author.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Category.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Keyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Keyword.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Model.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/LDraw/Subpart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/LDraw/Subpart.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Category.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Inventory.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Inventory_Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Inventory_Part.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Inventory_Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Inventory_Set.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Part.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Set.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Rebrickable/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Rebrickable/Theme.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Traits/IdentityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Traits/IdentityTrait.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Traits/NameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Traits/NameTrait.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Traits/NumberTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Traits/NumberTrait.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/Traits/UniqueNameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Entity/Traits/UniqueNameTrait.php -------------------------------------------------------------------------------- /src/AppBundle/Model/ModelSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Model/ModelSearch.php -------------------------------------------------------------------------------- /src/AppBundle/Model/NumberRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Model/NumberRange.php -------------------------------------------------------------------------------- /src/AppBundle/Model/SetSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Model/SetSearch.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/BaseRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/ColorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/ColorRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/AliasRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/AliasRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/AuthorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/AuthorRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/CategoryRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/KeywordRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/KeywordRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/ModelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/ModelRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/LDraw/SubpartRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/LDraw/SubpartRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/CategoryRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/InventoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/InventoryRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/Inventory_PartRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/Inventory_PartRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/Inventory_SetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/Inventory_SetRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/PartRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/PartRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/SetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/SetRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Rebrickable/ThemeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Rebrickable/ThemeRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Search/ModelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Search/ModelRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/Search/SetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Repository/Search/SetRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Service/ColorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Service/ColorService.php -------------------------------------------------------------------------------- /src/AppBundle/Service/ModelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Service/ModelService.php -------------------------------------------------------------------------------- /src/AppBundle/Service/SearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Service/SearchService.php -------------------------------------------------------------------------------- /src/AppBundle/Service/SetService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Service/SetService.php -------------------------------------------------------------------------------- /src/AppBundle/Service/ZipService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Service/ZipService.php -------------------------------------------------------------------------------- /src/AppBundle/Transformer/FormatTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/AppBundle/Transformer/FormatTransformer.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/AjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/AjaxController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/ColorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/ColorController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/MediaController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/ModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/ModelController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/PartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/PartController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/SearchController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/Set/BricksetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/Set/BricksetController.php -------------------------------------------------------------------------------- /src/FrontBundle/Controller/Set/SetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Controller/Set/SetController.php -------------------------------------------------------------------------------- /src/FrontBundle/Form/NumberRangeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Form/NumberRangeType.php -------------------------------------------------------------------------------- /src/FrontBundle/Form/Search/ModelSearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Form/Search/ModelSearchType.php -------------------------------------------------------------------------------- /src/FrontBundle/Form/Search/SetSearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Form/Search/SetSearchType.php -------------------------------------------------------------------------------- /src/FrontBundle/FrontBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/FrontBundle.php -------------------------------------------------------------------------------- /src/FrontBundle/Imagine/BaseImageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Imagine/BaseImageLoader.php -------------------------------------------------------------------------------- /src/FrontBundle/Imagine/PartImageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Imagine/PartImageLoader.php -------------------------------------------------------------------------------- /src/FrontBundle/Imagine/SetImageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Imagine/SetImageLoader.php -------------------------------------------------------------------------------- /src/FrontBundle/Menu/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Menu/Builder.php -------------------------------------------------------------------------------- /src/FrontBundle/Twig/AppExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/FrontBundle/Twig/AppExtension.php -------------------------------------------------------------------------------- /src/LoaderBundle/Command/InitDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Command/InitDataCommand.php -------------------------------------------------------------------------------- /src/LoaderBundle/Command/LoadImagesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Command/LoadImagesCommand.php -------------------------------------------------------------------------------- /src/LoaderBundle/Command/LoadLdrawCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Command/LoadLdrawCommand.php -------------------------------------------------------------------------------- /src/LoaderBundle/Command/LoadRebrickableDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Command/LoadRebrickableDataCommand.php -------------------------------------------------------------------------------- /src/LoaderBundle/Command/LoadRelationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Command/LoadRelationCommand.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/ConvertingFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/ConvertingFailedException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/ErrorParsingLineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/ErrorParsingLineException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/FileException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/FileNotFoundException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/Loader/LoadingModelFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/Loader/LoadingModelFailedException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/Loader/LoadingRebrickableFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/Loader/LoadingRebrickableFailedException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/Loader/MissingContextException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/Loader/MissingContextException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/ParseErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/ParseErrorException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/RelationMapper/InvalidDomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/RelationMapper/InvalidDomainException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/RelationMapper/InvalidResourceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/RelationMapper/InvalidResourceException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/RelationMapper/ResourceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/RelationMapper/ResourceNotFoundException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/RenderFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/RenderFailedException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/Stl/LDLibraryMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/Stl/LDLibraryMissingException.php -------------------------------------------------------------------------------- /src/LoaderBundle/Exception/WriteErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Exception/WriteErrorException.php -------------------------------------------------------------------------------- /src/LoaderBundle/LoaderBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/LoaderBundle.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/BaseLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/BaseLoader.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/ImageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/ImageLoader.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/ModelLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/ModelLoader.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/RebrickableLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/RebrickableLoader.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/RelationLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/RelationLoader.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/Stl/StlConverterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/Stl/StlConverterService.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/Stl/StlFixerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/Stl/StlFixerService.php -------------------------------------------------------------------------------- /src/LoaderBundle/Service/Stl/StlRendererService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Service/Stl/StlRendererService.php -------------------------------------------------------------------------------- /src/LoaderBundle/Util/LDModelParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Util/LDModelParser.php -------------------------------------------------------------------------------- /src/LoaderBundle/Util/RelationMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/src/LoaderBundle/Util/RelationMapper.php -------------------------------------------------------------------------------- /tests/AppBundle/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/BaseTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Fixtures/LoadBaseData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Fixtures/LoadBaseData.php -------------------------------------------------------------------------------- /tests/AppBundle/Fixtures/LoadUnmappedData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Fixtures/LoadUnmappedData.php -------------------------------------------------------------------------------- /tests/AppBundle/Fixtures/models/1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Fixtures/models/1.stl -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/AliasRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/AliasRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/AuthorRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/AuthorRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/CategoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/CategoryRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/KeywordRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/KeywordRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/ModelRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/ModelRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/LDraw/SubpartRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/LDraw/SubpartRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/Rebrickable/InventoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/Rebrickable/InventoryRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/Rebrickable/Inventory_PartRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/Rebrickable/Inventory_PartRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/Rebrickable/Inventory_SetRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/Rebrickable/Inventory_SetRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/Rebrickable/PartRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/Rebrickable/PartRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Repository/Rebrickable/SetRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Repository/Rebrickable/SetRepositoryTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Service/ColorServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Service/ColorServiceTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Service/ModelServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Service/ModelServiceTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Service/SetServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Service/SetServiceTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Service/ZipServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Service/ZipServiceTest.php -------------------------------------------------------------------------------- /tests/AppBundle/Transformer/FormatTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/AppBundle/Transformer/FormatTransformerTest.php -------------------------------------------------------------------------------- /tests/FrontBundle/Controller/ApplicationAvailabilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/FrontBundle/Controller/ApplicationAvailabilityTest.php -------------------------------------------------------------------------------- /tests/FrontBundle/Controller/BaseControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/FrontBundle/Controller/BaseControllerTest.php -------------------------------------------------------------------------------- /tests/FrontBundle/Controller/fixtures/samplefile.txt: -------------------------------------------------------------------------------- 1 | file contents -------------------------------------------------------------------------------- /tests/FrontBundle/Imagine/PartImageLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/FrontBundle/Imagine/PartImageLoaderTest.php -------------------------------------------------------------------------------- /tests/FrontBundle/Imagine/SetImageLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/FrontBundle/Imagine/SetImageLoaderTest.php -------------------------------------------------------------------------------- /tests/FrontBundle/Imagine/fixtures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/FrontBundle/Imagine/fixtures/1.png -------------------------------------------------------------------------------- /tests/LoaderBundle/Command/fixtures/file.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/LoaderBundle/Command/loadImagesCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Command/loadImagesCommandTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Command/loadLdrawCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Command/loadLdrawCommandTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Command/loadRelationCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Command/loadRelationCommandTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ImageLoader/ImageLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ImageLoader/ImageLoaderTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ImageLoader/fixtures/ldraw/parts_-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ImageLoader/fixtures/ldraw/parts_-1.zip -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ImageLoader/fixtures/ldraw/parts_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ImageLoader/fixtures/ldraw/parts_5.zip -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/ModelLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/ModelLoaderTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/completeCA.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/completeCA.zip -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/p/4-4cyli.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/p/4-4cyli.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/30367a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/30367a.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/983.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/983.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/999.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/999.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/s/30367as01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/filecontext/parts/s/30367as01.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/included/parts/1000d01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/included/parts/1000d01.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/included/parts/povray.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/included/parts/povray.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/ldraw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/ldraw.zip -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/30367b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/30367b.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/licensed.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/librarycontext/parts/licensed.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/license/parts/licensed.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/license/parts/licensed.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/license/parts/unlicensed.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/license/parts/unlicensed.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/printed/parts/30367b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/printed/parts/30367b.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/printed/parts/30367bps7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/printed/parts/30367bps7.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3815.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3815.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3815c01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3815c01.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3816.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3816.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3817.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/subparts/parts/3817.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/500.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/500.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/983.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version1/parts/983.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/3821.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/3821.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/500.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/500.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/983.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update/version2/parts/983.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update2/version1/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update2/version1/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/ModelLoader/fixtures/update2/version2/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/ModelLoader/fixtures/update2/version2/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/RebrickableLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/RebrickableLoaderTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/inventories.csv: -------------------------------------------------------------------------------- 1 | id,version,set_num 2 | 4609,1,0013-1 -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/inventory_parts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/corrupt/inventory_parts.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/inventory_sets.csv: -------------------------------------------------------------------------------- 1 | inventory_id,set_num,quantity -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/part_categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/corrupt/part_categories.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/parts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/corrupt/parts.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/sets.csv: -------------------------------------------------------------------------------- 1 | set_num,name,year,theme_id,num_parts 2 | 0013-1,Space Mini-Figures,1979,143,12 -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/corrupt/themes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/corrupt/themes.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/inventories.csv: -------------------------------------------------------------------------------- 1 | id,version,set_num 2 | 4609,1,0013-1 -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/inventory_parts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/fixtures/inventory_parts.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/inventory_sets.csv: -------------------------------------------------------------------------------- 1 | inventory_id,set_num,quantity -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/part_categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/fixtures/part_categories.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/parts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/fixtures/parts.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/sets.csv: -------------------------------------------------------------------------------- 1 | set_num,name,year,theme_id,num_parts 2 | 0013-1,Space Mini-Figures,1979,143,12 -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RebrickableLoader/fixtures/themes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RebrickableLoader/fixtures/themes.csv -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/RelationLoader/RelationLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/RelationLoader/RelationLoaderTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/StlConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/StlConverterTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/983.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/983.stl -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/expected.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/expected.stl -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/2-4edge.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/2-4edge.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/3-4edge.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/3-4edge.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/4-4edge.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/p/4-4edge.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/parts/3820.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/parts/3820.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/parts/983.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlConverter/fixtures/ldraw/parts/983.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlFixer/StlFixerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlFixer/StlFixerTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlFixer/fixtures/ascii.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlFixer/fixtures/ascii.stl -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlFixer/fixtures/binary.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlFixer/fixtures/binary.stl -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlRenderer/StlRendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlRenderer/StlRendererTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/973c00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/973c00.png -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/973c00.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/973c00.stl -------------------------------------------------------------------------------- /tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Service/Stl/StlRenderer/fixtures/layout.tmpl -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/LDModelParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/LDModelParserTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/fixtures/alias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/fixtures/alias.txt -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/fixtures/color.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/fixtures/color.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/fixtures/invalid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/fixtures/invalid.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/fixtures/stickers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/fixtures/stickers.txt -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/LDModelParser/fixtures/valid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/LDModelParser/fixtures/valid.dat -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/RelationMapper/RelationMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/tests/LoaderBundle/Util/RelationMapper/RelationMapperTest.php -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/RelationMapper/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/RelationMapper/fixtures/invalid.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | dsad- da -------------------------------------------------------------------------------- /tests/LoaderBundle/Util/RelationMapper/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/android-chrome-192x192.png -------------------------------------------------------------------------------- /web/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/android-chrome-256x256.png -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/browserconfig.xml -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/favicon-16x16.png -------------------------------------------------------------------------------- /web/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/favicon-32x32.png -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/mstile-150x150.png -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicCrack/PrintABrick/HEAD/web/safari-pinned-tab.svg --------------------------------------------------------------------------------