├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── bootstrap.php ├── composer.json ├── docs ├── Makefile ├── make.bat └── source │ ├── API │ ├── .placeholder │ └── API │ │ ├── DataURI.html │ │ ├── DataURI │ │ ├── Data.html │ │ ├── Dumper.html │ │ ├── Exception.html │ │ ├── Exception │ │ │ ├── Exception.html │ │ │ ├── FileNotFoundException.html │ │ │ ├── InvalidArgumentException.html │ │ │ ├── InvalidDataException.html │ │ │ ├── TooLongDataException.html │ │ │ └── namespace-frame.html │ │ ├── Parser.html │ │ └── namespace-frame.html │ │ ├── PROJECT_VERSION │ │ ├── SAMI_VERSION │ │ ├── cache │ │ ├── PROJECT_VERSION │ │ ├── SAMI_VERSION │ │ └── twig │ │ │ ├── 55 │ │ │ └── ac │ │ │ │ └── 886f4bd425f3f8f081a17f4decfe.php │ │ │ ├── 92 │ │ │ └── 0c │ │ │ │ └── b73aac6fe9ee7aa1735bd508a3ec.php │ │ │ ├── 05 │ │ │ └── 86 │ │ │ │ └── 384cbc8ad8bc74aed2d16825293a.php │ │ │ └── c4 │ │ │ └── 93 │ │ │ └── ecb1189ed748f5bd890c43fac2b4.php │ │ ├── classes-frame.html │ │ ├── classes.html │ │ ├── css │ │ ├── main.css │ │ ├── panel.css │ │ └── reset.css │ │ ├── doc-index.html │ │ ├── i │ │ ├── arrows.png │ │ ├── loader.gif │ │ ├── results_bg.png │ │ └── tree_bg.png │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── js │ │ ├── jquery-1.3.2.min.js │ │ └── searchdoc.js │ │ ├── namespaces-frame.html │ │ ├── namespaces.html │ │ ├── opensearch.xml │ │ ├── panel.html │ │ ├── renderer.index │ │ ├── search_index.js │ │ ├── stylesheet.css │ │ └── tree.js │ ├── _static │ └── .placeholder │ ├── _themes │ └── Alchemy │ │ ├── analytics.html │ │ ├── layout.html │ │ ├── localtoc.html │ │ ├── ribbon.html │ │ ├── searchbox.html │ │ ├── static │ │ ├── Alchemy.css_t │ │ ├── bootstrapCustom.css │ │ ├── img │ │ │ └── project.png │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── less-1.3.0.min.js │ │ │ ├── modernizr-2.5.3.min.js │ │ │ ├── plugins.js │ │ │ └── script.js │ │ ├── less │ │ │ ├── accordion.less │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── grid.less │ │ │ ├── hero-unit.less │ │ │ ├── labels.less │ │ │ ├── layouts.less │ │ │ ├── mixins.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── popovers.less │ │ │ ├── progress-bars.less │ │ │ ├── reset.less │ │ │ ├── responsive.less │ │ │ ├── scaffolding.less │ │ │ ├── sprites.less │ │ │ ├── tables.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── main.css │ │ ├── pygments.css │ │ └── style.css │ │ └── theme.conf │ ├── conf.py │ ├── index.rst │ └── local_conf.py ├── license ├── phpunit.xml.dist ├── sami_configuration.php ├── src └── DataURI │ ├── Data.php │ ├── Dumper.php │ ├── Exception │ ├── Exception.php │ ├── FileNotFoundException.php │ ├── InvalidArgumentException.php │ ├── InvalidDataException.php │ └── TooLongDataException.php │ └── Parser.php ├── tests ├── DataTest.php ├── DumperTest.php ├── ParserTest.php └── smile.png └── vendors.win.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/composer.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/API/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/API/API/DataURI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Data.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Dumper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Dumper.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/Exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/Exception.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/FileNotFoundException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/FileNotFoundException.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/InvalidArgumentException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/InvalidArgumentException.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/InvalidDataException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/InvalidDataException.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/TooLongDataException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/TooLongDataException.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Exception/namespace-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Exception/namespace-frame.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/Parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/Parser.html -------------------------------------------------------------------------------- /docs/source/API/API/DataURI/namespace-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/DataURI/namespace-frame.html -------------------------------------------------------------------------------- /docs/source/API/API/PROJECT_VERSION: -------------------------------------------------------------------------------- 1 | master -------------------------------------------------------------------------------- /docs/source/API/API/SAMI_VERSION: -------------------------------------------------------------------------------- 1 | 0.8.1-DEV -------------------------------------------------------------------------------- /docs/source/API/API/cache/PROJECT_VERSION: -------------------------------------------------------------------------------- 1 | master -------------------------------------------------------------------------------- /docs/source/API/API/cache/SAMI_VERSION: -------------------------------------------------------------------------------- 1 | 0.8.1-DEV -------------------------------------------------------------------------------- /docs/source/API/API/cache/twig/05/86/384cbc8ad8bc74aed2d16825293a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/cache/twig/05/86/384cbc8ad8bc74aed2d16825293a.php -------------------------------------------------------------------------------- /docs/source/API/API/cache/twig/55/ac/886f4bd425f3f8f081a17f4decfe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/cache/twig/55/ac/886f4bd425f3f8f081a17f4decfe.php -------------------------------------------------------------------------------- /docs/source/API/API/cache/twig/92/0c/b73aac6fe9ee7aa1735bd508a3ec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/cache/twig/92/0c/b73aac6fe9ee7aa1735bd508a3ec.php -------------------------------------------------------------------------------- /docs/source/API/API/cache/twig/c4/93/ecb1189ed748f5bd890c43fac2b4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/cache/twig/c4/93/ecb1189ed748f5bd890c43fac2b4.php -------------------------------------------------------------------------------- /docs/source/API/API/classes-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/classes-frame.html -------------------------------------------------------------------------------- /docs/source/API/API/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/classes.html -------------------------------------------------------------------------------- /docs/source/API/API/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/css/main.css -------------------------------------------------------------------------------- /docs/source/API/API/css/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/css/panel.css -------------------------------------------------------------------------------- /docs/source/API/API/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/css/reset.css -------------------------------------------------------------------------------- /docs/source/API/API/doc-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/doc-index.html -------------------------------------------------------------------------------- /docs/source/API/API/i/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/i/arrows.png -------------------------------------------------------------------------------- /docs/source/API/API/i/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/i/loader.gif -------------------------------------------------------------------------------- /docs/source/API/API/i/results_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/i/results_bg.png -------------------------------------------------------------------------------- /docs/source/API/API/i/tree_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/i/tree_bg.png -------------------------------------------------------------------------------- /docs/source/API/API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/index.html -------------------------------------------------------------------------------- /docs/source/API/API/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/interfaces.html -------------------------------------------------------------------------------- /docs/source/API/API/js/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/js/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /docs/source/API/API/js/searchdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/js/searchdoc.js -------------------------------------------------------------------------------- /docs/source/API/API/namespaces-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/namespaces-frame.html -------------------------------------------------------------------------------- /docs/source/API/API/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/namespaces.html -------------------------------------------------------------------------------- /docs/source/API/API/opensearch.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/API/API/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/panel.html -------------------------------------------------------------------------------- /docs/source/API/API/renderer.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/renderer.index -------------------------------------------------------------------------------- /docs/source/API/API/search_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/search_index.js -------------------------------------------------------------------------------- /docs/source/API/API/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/stylesheet.css -------------------------------------------------------------------------------- /docs/source/API/API/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/API/API/tree.js -------------------------------------------------------------------------------- /docs/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/analytics.html -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/layout.html -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/localtoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/localtoc.html -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/ribbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/ribbon.html -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/searchbox.html -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/Alchemy.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/Alchemy.css_t -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/bootstrapCustom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/bootstrapCustom.css -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/img/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/img/project.png -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/js/less-1.3.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/js/less-1.3.0.min.js -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/js/modernizr-2.5.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/js/modernizr-2.5.3.min.js -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/js/plugins.js -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/js/script.js -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/accordion.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/alerts.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/badges.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/bootstrap.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/breadcrumbs.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/button-groups.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/buttons.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/carousel.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/close.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/code.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/component-animations.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/dropdowns.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/forms.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/grid.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/hero-unit.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/labels.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/layouts.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/mixins.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/modals.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/navbar.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/navs.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/pager.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/pagination.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/popovers.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/progress-bars.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/reset.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/responsive.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/scaffolding.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/sprites.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/tables.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/thumbnails.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/tooltip.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/type.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/utilities.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/variables.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/less/wells.less -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/main.css -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/pygments.css -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/static/style.css -------------------------------------------------------------------------------- /docs/source/_themes/Alchemy/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/_themes/Alchemy/theme.conf -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/local_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/docs/source/local_conf.py -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/license -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sami_configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/sami_configuration.php -------------------------------------------------------------------------------- /src/DataURI/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Data.php -------------------------------------------------------------------------------- /src/DataURI/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Dumper.php -------------------------------------------------------------------------------- /src/DataURI/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Exception/Exception.php -------------------------------------------------------------------------------- /src/DataURI/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Exception/FileNotFoundException.php -------------------------------------------------------------------------------- /src/DataURI/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/DataURI/Exception/InvalidDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Exception/InvalidDataException.php -------------------------------------------------------------------------------- /src/DataURI/Exception/TooLongDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Exception/TooLongDataException.php -------------------------------------------------------------------------------- /src/DataURI/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/src/DataURI/Parser.php -------------------------------------------------------------------------------- /tests/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/tests/DataTest.php -------------------------------------------------------------------------------- /tests/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/tests/DumperTest.php -------------------------------------------------------------------------------- /tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/tests/ParserTest.php -------------------------------------------------------------------------------- /tests/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/tests/smile.png -------------------------------------------------------------------------------- /vendors.win.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-fr/PHP-dataURI/HEAD/vendors.win.php --------------------------------------------------------------------------------