├── README.md ├── docroot ├── themes │ └── .gitkeep ├── profiles │ └── .gitkeep ├── vfancy ├── .eslintrc.json ├── modules │ └── contrib │ │ ├── schemata │ │ ├── .gitignore │ │ ├── schemata.routing.yml │ │ └── schemata.permissions.yml │ │ └── jsonapi │ │ ├── jsonapi.routing.yml │ │ └── jsonapi.permissions.yml ├── sites │ └── default │ │ └── files │ │ ├── pizza-umami.jpg │ │ ├── umami-bundle.png │ │ ├── mojito-mocktail.jpg │ │ ├── mushrooms-umami.jpg │ │ ├── chili-sauce-umami.jpg │ │ ├── heritage-carrots.jpg │ │ ├── home-grown-herbs.jpg │ │ ├── crema-catalana-umami.jpg │ │ ├── chocolate-brownie-umami.jpg │ │ ├── supermarket-savvy-umami.jpg │ │ ├── thai-green-curry-umami.jpg │ │ ├── veggie-pasta-bake-umami.jpg │ │ ├── victoria-sponge-umami.jpg │ │ ├── watercress-soup-umami.jpg │ │ ├── media-icons │ │ └── generic │ │ │ ├── audio.png │ │ │ ├── video.png │ │ │ ├── generic.png │ │ │ └── no-thumbnail.png │ │ ├── mediterranean-quiche-umami.jpg │ │ ├── oatmeal-fruit-syrup-topping.jpg │ │ └── veggie-pasta-bake-hero-umami.jpg └── .eslintignore └── vendor ├── bin ├── drush ├── psysh ├── robo ├── phpunit ├── php-parse ├── dcg ├── phpcs ├── phpcbf ├── release ├── simple-phpunit ├── create-scenario ├── install-scenario └── dependency-licenses ├── psr ├── log │ ├── .gitignore │ └── Psr │ │ └── Log │ │ └── InvalidArgumentException.php └── container │ └── .gitignore ├── grasmash ├── expander │ ├── CONTRIBUTING.md │ └── RELEASE.md └── yaml-expander │ ├── CONTRIBUTING.md │ ├── scenarios │ ├── symfony2 │ │ ├── src │ │ ├── tests │ │ └── .gitignore │ └── symfony4 │ │ ├── src │ │ ├── tests │ │ └── .gitignore │ └── RELEASE.md ├── stack └── builder │ └── .gitignore ├── symfony ├── finder │ ├── Tests │ │ └── Fixtures │ │ │ ├── .dot │ │ │ ├── a │ │ │ └── b │ │ │ │ ├── c.neon │ │ │ │ └── d.neon │ │ │ ├── one │ │ │ ├── a │ │ │ ├── .dot │ │ │ └── b │ │ │ │ ├── c.neon │ │ │ │ └── d.neon │ │ │ ├── A │ │ │ ├── B │ │ │ │ ├── ab.dat │ │ │ │ └── C │ │ │ │ │ └── abc.dat │ │ │ └── a.dat │ │ │ ├── copy │ │ │ └── A │ │ │ │ ├── B │ │ │ │ ├── ab.dat.copy │ │ │ │ └── C │ │ │ │ │ └── abc.dat.copy │ │ │ │ └── a.dat.copy │ │ │ ├── with space │ │ │ └── foo.txt │ │ │ ├── r+e.gex[c]a(r)s │ │ │ └── dir │ │ │ │ └── bar.dat │ │ │ ├── dolor.txt │ │ │ ├── ipsum.txt │ │ │ └── lorem.txt │ └── .gitignore ├── config │ ├── Tests │ │ └── Fixtures │ │ │ ├── foo.xml │ │ │ ├── Again │ │ │ └── foo.xml │ │ │ ├── Resource │ │ │ └── .hiddenFile │ │ │ ├── Util │ │ │ ├── invalid.xml │ │ │ ├── invalid_schema.xml │ │ │ ├── valid.xml │ │ │ └── document_type.xml │ │ │ └── BadParent.php │ └── .gitignore ├── routing │ ├── Tests │ │ └── Fixtures │ │ │ ├── bar.xml │ │ │ ├── empty.yml │ │ │ ├── foo.xml │ │ │ ├── foo1.xml │ │ │ ├── annotated.php │ │ │ ├── file_resource.yml │ │ │ ├── nonvalid.yml │ │ │ ├── nonvalid2.yml │ │ │ ├── directory │ │ │ ├── routes3.yml │ │ │ └── recurse │ │ │ │ ├── routes1.yml │ │ │ │ └── routes2.yml │ │ │ ├── special_route_name.yml │ │ │ ├── glob │ │ │ ├── import_multiple.yml │ │ │ ├── import_single.yml │ │ │ ├── bar.yml │ │ │ └── baz.yml │ │ │ ├── OtherAnnotatedClasses │ │ │ └── NoStartTagClass.php │ │ │ ├── withdoctype.xml │ │ │ ├── incomplete.yml │ │ │ ├── nonvalidkeys.yml │ │ │ ├── directory_import │ │ │ └── import.yml │ │ │ ├── nonesense_type_without_resource.yml │ │ │ ├── bad_format.yml │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ ├── controller │ │ │ ├── import_controller.yml │ │ │ ├── import__controller.yml │ │ │ └── override_defaults.yml │ │ │ └── with_define_path_variable.php │ └── .gitignore ├── translation │ ├── Tests │ │ └── fixtures │ │ │ ├── empty.csv │ │ │ ├── empty.ini │ │ │ ├── empty.json │ │ │ ├── empty.mo │ │ │ ├── empty.po │ │ │ ├── empty.xlf │ │ │ ├── empty.yml │ │ │ ├── non-valid.yml │ │ │ ├── resources.yml │ │ │ ├── resources.ini │ │ │ ├── extractor │ │ │ ├── resource.format.engine │ │ │ └── this.is.a.template.format.engine │ │ │ ├── malformed.json │ │ │ ├── resourcebundle │ │ │ ├── corrupted │ │ │ │ └── resources.dat │ │ │ ├── dat │ │ │ │ ├── packagelist.txt │ │ │ │ ├── en.txt │ │ │ │ ├── fr.txt │ │ │ │ ├── en.res │ │ │ │ ├── fr.res │ │ │ │ └── resources.dat │ │ │ └── res │ │ │ │ └── en.res │ │ │ ├── resources.dump.json │ │ │ ├── resources.json │ │ │ ├── empty-translation.po │ │ │ ├── messages_linear.yml │ │ │ ├── valid.csv │ │ │ ├── messages.yml │ │ │ ├── resources.php │ │ │ ├── plurals.po │ │ │ ├── resources.csv │ │ │ ├── plurals.mo │ │ │ ├── encoding.xlf │ │ │ ├── resources.mo │ │ │ ├── empty-translation.mo │ │ │ └── resources.po │ └── .gitignore ├── serializer │ ├── Tests │ │ └── Fixtures │ │ │ ├── empty-mapping.yml │ │ │ ├── invalid-mapping.yml │ │ │ ├── test.txt │ │ │ └── test.gif │ └── .gitignore ├── validator │ ├── Tests │ │ ├── Constraints │ │ │ └── Fixtures │ │ │ │ ├── foo │ │ │ │ ├── test.gif │ │ │ │ ├── test_4by3.gif │ │ │ │ ├── test_corrupted.gif │ │ │ │ ├── test_landscape.gif │ │ │ │ └── test_portrait.gif │ │ └── Mapping │ │ │ └── Loader │ │ │ ├── empty-mapping.yml │ │ │ └── nonvalid-mapping.yml │ └── .gitignore ├── console │ ├── Tests │ │ └── Fixtures │ │ │ ├── input_definition_1.md │ │ │ ├── input_definition_1.txt │ │ │ ├── application_gethelp.txt │ │ │ ├── application_run4.txt │ │ │ ├── input_argument_1.txt │ │ │ ├── input_option_1.txt │ │ │ ├── input_argument_2.txt │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_2.txt │ │ │ ├── input_option_3.txt │ │ │ ├── input_definition_3.txt │ │ │ ├── input_option_6.txt │ │ │ ├── input_argument_4.txt │ │ │ ├── input_argument_1.md │ │ │ ├── Style │ │ │ └── SymfonyStyle │ │ │ │ └── output │ │ │ │ ├── output_3.txt │ │ │ │ ├── output_7.txt │ │ │ │ ├── interactive_output_1.txt │ │ │ │ ├── output_17.txt │ │ │ │ └── output_0.txt │ │ │ ├── input_argument_3.txt │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ ├── input_option_2.txt │ │ │ ├── input_option_4.txt │ │ │ ├── input_option_5.txt │ │ │ ├── input_argument_with_style.txt │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.md │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ ├── command_1.txt │ │ │ ├── input_argument_2.md │ │ │ ├── input_option_1.md │ │ │ ├── input_option_with_style.txt │ │ │ ├── input_argument_3.md │ │ │ ├── input_argument_with_style.md │ │ │ ├── application_renderexception1.txt │ │ │ ├── input_argument_4.md │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ ├── input_definition_4.txt │ │ │ ├── input_argument_1.json │ │ │ ├── input_definition_3.md │ │ │ ├── input_option_3.md │ │ │ ├── input_option_4.md │ │ │ ├── input_option_2.md │ │ │ ├── application_renderexception4.txt │ │ │ ├── input_option_6.md │ │ │ ├── input_option_with_style.md │ │ │ ├── input_argument_2.json │ │ │ └── input_option_with_default_inf_value.md │ ├── .gitignore │ └── Resources │ │ └── bin │ │ └── hiddeninput.exe ├── dom-crawler │ ├── Tests │ │ └── Fixtures │ │ │ ├── no-extension │ │ │ └── windows-1250.html │ └── .gitignore ├── http-kernel │ ├── Tests │ │ └── Fixtures │ │ │ ├── Bundle1Bundle │ │ │ ├── bar.txt │ │ │ ├── foo.txt │ │ │ └── Resources │ │ │ │ └── foo.txt │ │ │ ├── Bundle2Bundle │ │ │ └── foo.txt │ │ │ ├── BaseBundle │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ │ ├── ChildBundle │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ │ └── Resources │ │ │ ├── BaseBundle │ │ │ └── hide.txt │ │ │ ├── Bundle1Bundle │ │ │ └── foo.txt │ │ │ ├── ChildBundle │ │ │ └── foo.txt │ │ │ └── FooBundle │ │ │ └── foo.txt │ └── .gitignore ├── http-foundation │ ├── Tests │ │ └── File │ │ │ └── Fixtures │ │ │ ├── directory │ │ │ └── .empty │ │ │ ├── .unknownextension │ │ │ ├── other-file.example │ │ │ ├── test │ │ │ └── test.gif │ └── .gitignore ├── debug │ ├── .gitignore │ └── Tests │ │ ├── Fixtures │ │ ├── Throwing.php │ │ ├── PEARClass.php │ │ ├── notPsr0Bis.php │ │ ├── reallyNotPsr0.php │ │ ├── casemismatch.php │ │ ├── psr4 │ │ │ └── Psr4CaseMismatch.php │ │ ├── ClassAlias.php │ │ ├── InternalTrait.php │ │ ├── NonDeprecatedInterface.php │ │ ├── FinalClass.php │ │ └── InternalInterface.php │ │ └── Fixtures2 │ │ └── RequiredTwice.php ├── dependency-injection │ ├── Tests │ │ └── Fixtures │ │ │ ├── array.json │ │ │ ├── yaml │ │ │ ├── nonvalid2.yml │ │ │ ├── nonvalid1.yml │ │ │ ├── null_config.yml │ │ │ ├── bad_services.yml │ │ │ ├── services11.yml │ │ │ ├── bad_format.yml │ │ │ ├── bad_imports.yml │ │ │ ├── bad_service.yml │ │ │ ├── bad_parameters.yml │ │ │ ├── bad_empty_defaults.yml │ │ │ ├── bad_import.yml │ │ │ ├── bad_empty_instanceof.yml │ │ │ ├── services7.yml │ │ │ ├── services_underscore.yml │ │ │ ├── yaml_with_wrong_ext.ini │ │ │ ├── anonymous_services_in_parameters.yml │ │ │ ├── services13.yml │ │ │ ├── services4_bad_import.yml │ │ │ ├── bad_calls.yml │ │ │ ├── services3.yml │ │ │ ├── services23.yml │ │ │ ├── integration │ │ │ │ ├── autoconfigure_parent_child │ │ │ │ │ └── _child.yml │ │ │ │ ├── autoconfigure_parent_child_tags │ │ │ │ │ └── _child.yml │ │ │ │ ├── defaults_parent_child │ │ │ │ │ └── _child.yml │ │ │ │ └── instanceof_parent_child │ │ │ │ │ └── _child.yml │ │ │ ├── tag_name_only.yml │ │ │ ├── bar │ │ │ │ └── services.yml │ │ │ ├── foo │ │ │ │ └── services.yml │ │ │ ├── class_from_id.yml │ │ │ ├── legacy_invalid_alias_definition.yml │ │ │ ├── services31_invalid_tags.yml │ │ │ ├── badtag1.yml │ │ │ ├── anonymous_services_alias.yml │ │ │ ├── bad_types1.yml │ │ │ ├── bad_types2.yml │ │ │ └── badtag2.yml │ │ │ ├── ini │ │ │ ├── almostvalid.ini │ │ │ ├── nonvalid.ini │ │ │ ├── parameters2.ini │ │ │ ├── parameters.ini │ │ │ ├── parameters1.ini │ │ │ └── ini_with_wrong_ext.xml │ │ │ ├── directory │ │ │ ├── recurse │ │ │ │ ├── simple.ini │ │ │ │ └── simple.yml │ │ │ ├── import │ │ │ │ └── import.yml │ │ │ └── simple.php │ │ │ ├── xml │ │ │ ├── nonvalid.xml │ │ │ └── withdoctype.xml │ │ │ ├── php │ │ │ ├── simple.php │ │ │ └── php_with_wrong_ext.yml │ │ │ ├── includes │ │ │ └── HotPath │ │ │ │ ├── C2.php │ │ │ │ ├── C3.php │ │ │ │ ├── I1.php │ │ │ │ ├── T1.php │ │ │ │ ├── P1.php │ │ │ │ └── C1.php │ │ │ ├── Prototype │ │ │ ├── OtherDir │ │ │ │ └── Baz.php │ │ │ ├── FooInterface.php │ │ │ └── Sub │ │ │ │ ├── BarInterface.php │ │ │ │ ├── NoLoadBarTrait.php │ │ │ │ └── Bar.php │ │ │ └── ParentNotExists.php │ └── .gitignore ├── yaml │ ├── .gitignore │ └── Tests │ │ └── Fixtures │ │ ├── embededPhp.yml │ │ ├── legacyNonStringKeys.yml │ │ ├── nonStringKeys.yml │ │ ├── arrow.gif │ │ ├── nullMappingKey.yml │ │ ├── legacyNullMappingKey.yml │ │ └── multiple_lines_as_literal_block_leading_space_in_first_line.yml ├── browser-kit │ └── .gitignore ├── filesystem │ └── .gitignore ├── process │ └── .gitignore ├── var-dumper │ ├── .gitignore │ └── Tests │ │ └── Fixtures │ │ └── NotLoadableClass.php ├── class-loader │ ├── .gitignore │ └── Tests │ │ └── Fixtures │ │ ├── classmap │ │ ├── notPhpFile.md │ │ └── notAClass.php │ │ ├── includepath │ │ └── Foo.php │ │ ├── psr-4 │ │ ├── Foo.php │ │ ├── Lets │ │ │ └── Go │ │ │ │ └── Deeper │ │ │ │ ├── Foo.php │ │ │ │ └── Class_With_Underscores.php │ │ └── Class_With_Underscores.php │ │ ├── Pearlike │ │ ├── Bar.php │ │ ├── Baz.php │ │ └── Foo.php │ │ ├── Pearlike2 │ │ ├── Bar.php │ │ ├── Baz.php │ │ └── Foo.php │ │ ├── Apc │ │ ├── Pearlike │ │ │ ├── Bar.php │ │ │ ├── Baz.php │ │ │ └── Foo.php │ │ ├── fallback │ │ │ └── Apc │ │ │ │ └── Pearlike │ │ │ │ └── FooBar.php │ │ ├── alpha │ │ │ └── Apc │ │ │ │ └── ApcPrefixCollision │ │ │ │ └── A │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ └── beta │ │ │ └── Apc │ │ │ └── ApcPrefixCollision │ │ │ └── A │ │ │ └── B │ │ │ ├── Bar.php │ │ │ └── Foo.php │ │ ├── ClassesWithParents │ │ ├── A.php │ │ ├── ATrait.php │ │ ├── CTrait.php │ │ ├── B.php │ │ ├── F.php │ │ ├── G.php │ │ ├── GInterface.php │ │ ├── BTrait.php │ │ ├── D.php │ │ ├── E.php │ │ └── CInterface.php │ │ ├── fallback │ │ ├── Pearlike │ │ │ └── FooBar.php │ │ ├── Pearlike2 │ │ │ └── FooBar.php │ │ └── Namespaced2 │ │ │ └── FooBar.php │ │ ├── Namespaced2 │ │ ├── Bar.php │ │ ├── Baz.php │ │ └── Foo.php │ │ ├── alpha │ │ ├── PrefixCollision │ │ │ ├── A │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ │ └── C │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ └── NamespaceCollision │ │ │ └── C │ │ │ ├── Bar.php │ │ │ └── Foo.php │ │ ├── beta │ │ ├── PrefixCollision │ │ │ ├── A │ │ │ │ └── B │ │ │ │ │ ├── Bar.php │ │ │ │ │ └── Foo.php │ │ │ └── C │ │ │ │ └── B │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ └── NamespaceCollision │ │ │ └── C │ │ │ └── B │ │ │ ├── Bar.php │ │ │ └── Foo.php │ │ ├── DeclaredInterface.php │ │ ├── WarmedInterface.php │ │ ├── DeclaredClass.php │ │ └── WarmedClass.php ├── css-selector │ └── .gitignore ├── event-dispatcher │ └── .gitignore ├── phpunit-bridge │ ├── .gitignore │ └── Tests │ │ └── DeprecationErrorHandler │ │ ├── fake_vendor │ │ ├── composer │ │ │ ├── installed.json │ │ │ └── autoload_real.php │ │ └── autoload.php │ │ ├── deprecation │ │ └── deprecation.php │ │ └── deprecation.phar ├── psr-http-message-bridge │ ├── .gitignore │ └── CHANGELOG ├── polyfill-php70 │ └── Resources │ │ └── stubs │ │ ├── Error.php │ │ ├── ParseError.php │ │ ├── TypeError.php │ │ ├── ArithmeticError.php │ │ ├── AssertionError.php │ │ └── DivisionByZeroError.php └── polyfill-iconv │ └── Resources │ └── charset │ ├── from.big5.php │ ├── from.cp037.php │ ├── from.cp424.php │ ├── from.cp437.php │ ├── from.cp500.php │ ├── from.cp737.php │ ├── from.cp775.php │ ├── from.cp850.php │ ├── from.cp852.php │ ├── from.cp855.php │ ├── from.cp856.php │ ├── from.cp857.php │ ├── from.cp860.php │ ├── from.cp861.php │ ├── from.cp862.php │ ├── from.cp863.php │ ├── from.cp864.php │ ├── from.cp865.php │ ├── from.cp866.php │ ├── from.cp869.php │ ├── from.cp874.php │ ├── from.cp875.php │ ├── from.cp932.php │ ├── from.cp936.php │ ├── from.cp949.php │ ├── from.cp950.php │ ├── from.cp1006.php │ ├── from.cp1026.php │ ├── from.koi8-r.php │ ├── from.koi8-u.php │ ├── from.iso-8859-1.php │ ├── from.iso-8859-2.php │ ├── from.iso-8859-3.php │ ├── from.iso-8859-4.php │ ├── from.iso-8859-5.php │ ├── from.iso-8859-6.php │ ├── from.iso-8859-7.php │ ├── from.iso-8859-8.php │ ├── from.iso-8859-9.php │ ├── from.iso-8859-10.php │ ├── from.iso-8859-11.php │ ├── from.iso-8859-13.php │ ├── from.iso-8859-14.php │ ├── from.iso-8859-15.php │ ├── from.iso-8859-16.php │ ├── from.windows-1250.php │ ├── from.windows-1251.php │ ├── from.windows-1252.php │ ├── from.windows-1253.php │ ├── from.windows-1254.php │ ├── from.windows-1255.php │ ├── from.windows-1256.php │ ├── from.windows-1257.php │ └── from.windows-1258.php ├── sebastian ├── version │ ├── .gitignore │ └── .gitattributes ├── recursion-context │ └── .gitignore ├── resource-operations │ └── .gitignore ├── exporter │ └── .gitignore ├── code-unit-reverse-lookup │ └── .gitignore ├── comparator │ └── .gitignore ├── global-state │ └── .gitignore ├── diff │ └── .gitignore ├── object-reflector │ └── .gitignore ├── environment │ └── .gitignore └── object-enumerator │ └── .gitignore ├── consolidation ├── self-update │ ├── VERSION │ └── .gitignore ├── log │ ├── scenarios │ │ ├── symfony2 │ │ │ ├── src │ │ │ ├── tests │ │ │ └── .gitignore │ │ └── symfony4 │ │ │ ├── src │ │ │ ├── tests │ │ │ └── .gitignore │ └── .gitignore ├── robo │ ├── robo.yml │ └── src │ │ └── Config.php └── annotated-command │ └── src │ └── Help │ └── HelpDocumentAlter.php ├── drush └── drush │ ├── drush.info │ ├── isolation │ ├── .gitignore │ └── fixtures │ │ ├── usr │ │ └── share │ │ │ └── drush │ │ │ └── commands │ │ │ └── .gitkeep │ │ ├── sites │ │ └── d8 │ │ │ ├── sites │ │ │ └── mymultisite │ │ │ │ └── settings.php │ │ │ └── drush │ │ │ └── drush.yml │ │ ├── sitealiases │ │ ├── single │ │ │ ├── simple.site.yml │ │ │ └── single.site.yml │ │ └── legacy │ │ │ └── one.alias.drushrc.php │ │ ├── etc │ │ └── drush │ │ │ ├── drush.yml │ │ │ ├── drushIGNORED.yml │ │ │ └── drushVARIANT.yml │ │ └── home │ │ └── .drush │ │ └── drush.yml │ ├── tests │ └── resources │ │ ├── codebase │ │ └── web │ │ │ └── sites │ │ │ └── all │ │ │ └── drush │ │ │ └── .gitkeep │ │ ├── global-includes │ │ └── Generators │ │ │ └── foo.twig │ │ └── modules │ │ └── d8 │ │ └── woot │ │ ├── src │ │ └── Generators │ │ │ └── example-generator.twig │ │ ├── woot.info.yml │ │ └── woot.services.yml │ ├── drush │ ├── src │ └── Sql │ │ └── SqlException.php │ ├── drush_logo-black.png │ ├── misc │ └── icon_PhpStorm.png │ ├── drush.yml │ └── dr.bat ├── psy └── psysh │ ├── test │ └── fixtures │ │ ├── legacy │ │ └── .psysh │ │ │ ├── history │ │ │ ├── php_manual.sqlite │ │ │ └── rc.php │ │ ├── mixed │ │ └── .psysh │ │ │ ├── psysh_history │ │ │ ├── rc.php │ │ │ └── config.php │ │ └── default │ │ ├── .config │ │ └── psysh │ │ │ ├── psysh_history │ │ │ └── config.php │ │ └── .local │ │ └── share │ │ └── psysh │ │ └── php_manual.sqlite │ ├── .gitignore │ └── vendor-bin │ └── box │ └── composer.json ├── cweagans └── composer-patches │ └── .gitignore ├── dnoegel └── php-xdg-base-dir │ └── .gitignore ├── fabpot └── goutte │ ├── Goutte │ └── Tests │ │ └── fixtures.txt │ └── .gitignore ├── g1a └── composer-test-scenarios │ └── .gitignore ├── phpunit ├── php-timer │ ├── .gitattributes │ └── .gitignore ├── phpunit │ ├── tests │ │ ├── _files │ │ │ ├── bar.xml │ │ │ ├── foo.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── JsonData │ │ │ │ ├── simpleObject.json │ │ │ │ └── arrayObject.json │ │ │ ├── NoTestCaseClass.php │ │ │ ├── configuration.colors.empty.xml │ │ │ ├── configuration.colors.true.xml │ │ │ ├── CoveredFunction.php │ │ │ ├── configuration.colors.false.xml │ │ │ ├── configuration.colors.invalid.xml │ │ │ ├── DummyException.php │ │ │ ├── NonStatic.php │ │ │ ├── configuration_stop_on_warning.xml │ │ │ ├── NamespaceCoveredFunction.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── CustomPrinter.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── configuration.custom-printer.xml │ │ │ ├── Inheritance │ │ │ │ └── InheritanceA.php │ │ │ ├── AssertionExample.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ ├── ConcreteTest.php │ │ │ ├── Struct.php │ │ │ ├── NoTestCases.php │ │ │ ├── NothingTest.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ └── StopsOnWarningTest.php │ │ ├── TextUI │ │ │ ├── _files │ │ │ │ ├── expect_external.txt │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ └── phpt_external.php │ │ │ └── phpt-external.phpt │ │ ├── Regression │ │ │ ├── GitHub │ │ │ │ ├── 74 │ │ │ │ │ └── NewException.php │ │ │ │ ├── 1216 │ │ │ │ │ └── bootstrap1216.php │ │ │ │ ├── 1265 │ │ │ │ │ └── phpunit1265.xml │ │ │ │ ├── 1330 │ │ │ │ │ └── phpunit1330.xml │ │ │ │ ├── 1351 │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ ├── 2158 │ │ │ │ │ └── constant.inc │ │ │ │ ├── 2448 │ │ │ │ │ └── Test.php │ │ │ │ └── 2591 │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ └── bootstrapWithBootstrapNoGlobal.php │ │ │ └── Trac │ │ │ │ └── 684 │ │ │ │ └── Issue684Test.php │ │ └── Fail │ │ │ └── fail.phpt │ ├── .gitattributes │ └── .editorconfig ├── php-code-coverage │ ├── .gitattributes │ ├── tests │ │ ├── _files │ │ │ ├── CoveredFunction.php │ │ │ └── source_without_ignore.php │ │ └── bootstrap.php │ └── .gitignore ├── php-file-iterator │ ├── .gitattributes │ └── .gitignore ├── php-text-template │ ├── .gitattributes │ └── .gitignore ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ └── tests │ │ └── _fixture │ │ ├── issue19.php │ │ ├── classInNamespace.php │ │ ├── classUsesNamespacedFunction.php │ │ ├── issue30.php │ │ ├── classInScopedNamespace.php │ │ ├── source2.php │ │ └── class_with_method_named_empty.php └── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── src │ └── Generator │ │ ├── deprecation.tpl.dist │ │ ├── trait_class.tpl.dist │ │ ├── wsdl_method.tpl.dist │ │ └── mocked_clone.tpl.dist │ └── tests │ ├── _fixture │ ├── AnInterface.php │ ├── AnotherInterface.php │ ├── TraversableMockTestInterface.php │ ├── Bar.php │ ├── AnInterfaceWithReturnType.php │ ├── ClassWithSelfTypeHint.php │ ├── InterfaceWithStaticMethod.php │ ├── ClassWithStaticMethod.php │ ├── InterfaceWithSemiReservedMethodName.php │ ├── StringableClass.php │ ├── Foo.php │ └── MockTestInterface.php │ └── bootstrap.php ├── webflo └── drupal-finder │ ├── .styleci.yml │ └── .gitignore ├── drupal-composer └── drupal-scaffold │ ├── .gitignore │ └── .scenarios.lock │ └── phpunit4 │ ├── src │ ├── tests │ └── .gitignore ├── instaclick └── php-webdriver │ ├── .coveralls.yml │ ├── .gitignore │ └── test │ ├── Assets │ └── index.html │ └── CI │ └── Travis │ └── setup_selenium.sh ├── symfony-cmf └── routing │ ├── .styleci.yml │ └── .gitignore ├── composer └── installers │ ├── _config.yml │ ├── .gitignore │ ├── tests │ └── bootstrap.php │ └── .editorconfig ├── egulias └── email-validator │ ├── .gitignore │ └── .coveralls.yml ├── webmozart └── path-util │ ├── .gitignore │ └── .styleci.yml ├── dflydev └── dot-access-data │ └── .gitignore ├── twig └── twig │ ├── test │ └── Twig │ │ └── Tests │ │ ├── Loader │ │ └── Fixtures │ │ │ ├── normal │ │ │ └── index.html │ │ │ ├── named │ │ │ └── index.html │ │ │ ├── normal_bis │ │ │ └── index.html │ │ │ ├── normal_ter │ │ │ └── index.html │ │ │ ├── named_bis │ │ │ └── index.html │ │ │ ├── named_ter │ │ │ └── index.html │ │ │ ├── normal_final │ │ │ └── index.html │ │ │ ├── named_final │ │ │ └── index.html │ │ │ ├── named_quater │ │ │ └── named_absolute.html │ │ │ ├── inheritance │ │ │ ├── parent.html.twig │ │ │ ├── spare_parent.html.twig │ │ │ ├── array_inheritance_empty_parent.html.twig │ │ │ ├── array_inheritance_null_parent.html.twig │ │ │ └── array_inheritance_valid_parent.html.twig │ │ │ ├── themes │ │ │ ├── theme2 │ │ │ │ └── blocks.html.twig │ │ │ └── theme1 │ │ │ │ └── blocks.html.twig │ │ │ └── phar │ │ │ └── phar-sample.phar │ │ ├── Fixtures │ │ ├── errors │ │ │ ├── base.html │ │ │ └── index.html │ │ ├── tags │ │ │ ├── special_chars.test │ │ │ └── raw │ │ │ │ └── basic.legacy.test │ │ ├── filters │ │ │ ├── special_chars.test │ │ │ └── escape.test │ │ ├── functions │ │ │ ├── magic_call.test │ │ │ ├── special_chars.test │ │ │ └── range.test │ │ ├── expressions │ │ │ ├── _self.test │ │ │ └── grouping.test │ │ ├── regression │ │ │ └── empty_token.test │ │ └── tests │ │ │ └── odd.test │ │ └── LegacyFixtures │ │ └── test.legacy.test │ ├── .gitignore │ ├── src │ ├── Lexer.php │ ├── Token.php │ ├── Markup.php │ ├── Parser.php │ ├── Source.php │ ├── Node │ │ ├── Node.php │ │ ├── DoNode.php │ │ ├── ForNode.php │ │ ├── IfNode.php │ │ ├── SetNode.php │ │ ├── BodyNode.php │ │ ├── TextNode.php │ │ ├── WithNode.php │ │ ├── BlockNode.php │ │ ├── EmbedNode.php │ │ ├── FlushNode.php │ │ ├── MacroNode.php │ │ └── PrintNode.php │ ├── Compiler.php │ ├── Error │ │ └── Error.php │ ├── Template.php │ ├── TwigTest.php │ ├── Environment.php │ ├── TokenStream.php │ ├── TwigFilter.php │ └── Cache │ │ └── NullCache.php │ └── ext │ └── twig │ └── config.w32 ├── mikey179 └── vfsStream │ └── src │ └── test │ └── resources │ └── filesystemcopy │ ├── emptyFolder │ └── .gitignore │ └── withSubfolders │ ├── aFile.txt │ ├── subfolder2 │ └── .gitignore │ └── subfolder1 │ └── file1.txt ├── jakub-onderka ├── php-console-color │ ├── .gitignore │ └── tests │ │ └── bootstrap.php └── php-console-highlighter │ ├── .gitignore │ └── tests │ └── bootstrap.php ├── masterminds └── html5 │ ├── .gitignore │ ├── test │ └── HTML5 │ │ └── Parser │ │ └── EventStackError.php │ └── src │ └── HTML5 │ ├── Exception.php │ └── Parser │ └── ParseError.php ├── myclabs └── deep-copy │ ├── .gitignore │ ├── fixtures │ └── f008 │ │ └── B.php │ ├── .scrutinizer.yml │ ├── doc │ ├── clone.png │ ├── graph.png │ ├── deep-copy.png │ └── deep-clone.png │ ├── .gitattributes │ └── src │ └── DeepCopy │ └── Exception │ └── CloneException.php ├── zaporylie └── composer-drupal-optimizations │ └── .gitignore ├── behat ├── mink-browserkit-driver │ └── .gitignore └── mink-goutte-driver │ └── .gitignore ├── container-interop └── container-interop │ ├── .gitignore │ └── docs │ └── images │ ├── priority.png │ └── side_by_side_containers.png ├── nikic └── php-parser │ ├── .gitignore │ ├── test │ └── code │ │ ├── prettyPrinter │ │ ├── stmt │ │ │ ├── throw.test │ │ │ ├── goto.test │ │ │ ├── while.test │ │ │ └── do_while.test │ │ └── expr │ │ │ └── include.test │ │ └── parser │ │ └── stmt │ │ └── haltCompilerInvalidSyntax.test │ └── lib │ └── PhpParser │ ├── ConstExprEvaluationException.php │ ├── Node │ ├── Scalar.php │ ├── Expr.php │ └── Stmt.php │ └── Comment │ └── Doc.php ├── doctrine ├── event-manager │ └── docs │ │ └── en │ │ └── sidebar.rst ├── persistence │ └── docs │ │ └── en │ │ └── sidebar.rst ├── reflection │ └── docs │ │ └── en │ │ └── sidebar.rst ├── cache │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Cache │ │ └── Version.php ├── lexer │ └── README.md └── common │ └── docs │ └── en │ └── index.rst ├── jcalderonzumba ├── gastonjs │ ├── docs │ │ └── clients │ │ │ └── php │ │ │ └── index.md │ ├── .gitignore │ ├── src │ │ └── Client │ │ │ └── Errors │ │ │ └── error.js │ └── tests │ │ └── unit │ │ └── Server │ │ └── www │ │ └── web │ │ └── static │ │ └── auth_ok.html └── mink-phantomjs-driver │ └── src │ └── Resources │ └── Script │ └── execute_script.js.twig ├── zendframework └── zend-diactoros │ └── .coveralls.yml ├── phar-io ├── version │ ├── .gitignore │ └── src │ │ └── InvalidVersionException.php └── manifest │ ├── .gitignore │ ├── tests │ └── _fixture │ │ └── test.phar │ ├── src │ └── exceptions │ │ ├── ManifestLoaderException.php │ │ ├── ManifestElementException.php │ │ ├── ManifestDocumentException.php │ │ └── ManifestDocumentMapperException.php │ └── phive.xml ├── chi-teck └── drupal-code-generator │ └── templates │ ├── d8 │ ├── theme-settings-config.twig │ ├── file-docs │ │ ├── module.twig │ │ ├── tokens.inc.twig │ │ ├── views.inc.twig │ │ ├── post_update.php.twig │ │ └── install.twig │ ├── _field │ │ └── libraries.twig │ ├── hook │ │ ├── batch_alter.twig │ │ ├── test_finished.twig │ │ ├── test_group_started.twig │ │ └── test_group_finished.twig │ ├── module │ │ └── configuration-entity │ │ │ └── model.permissions.yml.twig │ ├── service │ │ └── custom.services.twig │ └── plugin │ │ └── _ckeditor │ │ └── icon.png │ └── d7 │ ├── file-docs │ ├── module.twig │ ├── tokens.inc.twig │ └── install.twig │ └── hook │ ├── enable.twig │ ├── test_finished.twig │ ├── disable.twig │ ├── test_group_started.twig │ ├── test_group_finished.twig │ ├── uninstall.twig │ ├── flush_caches.twig │ └── search_access.twig ├── squizlabs └── php_codesniffer │ └── .gitignore ├── theseer └── tokenizer │ ├── .gitignore │ └── src │ ├── Exception.php │ ├── NamespaceUriException.php │ └── TokenCollectionException.php ├── phpdocumentor ├── reflection-docblock │ └── .coveralls.yml └── reflection-common │ └── README.md ├── guzzlehttp ├── guzzle │ └── src │ │ └── Exception │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php └── psr7 │ └── src │ └── functions_include.php ├── paragonie └── random_compat │ └── build-phar.sh └── autoload.php /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docroot/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docroot/profiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docroot/vfancy: -------------------------------------------------------------------------------- 1 | /var/www/admin-ui/build/ -------------------------------------------------------------------------------- /vendor/bin/drush: -------------------------------------------------------------------------------- 1 | ../drush/drush/drush -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/bin/robo: -------------------------------------------------------------------------------- 1 | ../consolidation/robo/robo -------------------------------------------------------------------------------- /vendor/grasmash/expander/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/stack/builder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/grasmash/yaml-expander/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/bar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/consolidation/self-update/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.3 2 | -------------------------------------------------------------------------------- /vendor/drush/drush/drush.info: -------------------------------------------------------------------------------- 1 | drush_version=9.3.0 2 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Again/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/dcg: -------------------------------------------------------------------------------- 1 | ../chi-teck/drupal-code-generator/bin/dcg -------------------------------------------------------------------------------- /vendor/bin/phpcs: -------------------------------------------------------------------------------- 1 | ../squizlabs/php_codesniffer/scripts/phpcs -------------------------------------------------------------------------------- /vendor/consolidation/log/scenarios/symfony2/src: -------------------------------------------------------------------------------- 1 | ../../src -------------------------------------------------------------------------------- /vendor/consolidation/log/scenarios/symfony4/src: -------------------------------------------------------------------------------- 1 | ../../src -------------------------------------------------------------------------------- /vendor/consolidation/self-update/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/cweagans/composer-patches/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/fabpot/goutte/Goutte/Tests/fixtures.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/g1a/composer-test-scenarios/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/mixed/.psysh/psysh_history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Resource/.hiddenFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/file_resource.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/serializer/Tests/Fixtures/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/validator/Tests/Constraints/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/webflo/drupal-finder/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /vendor/bin/phpcbf: -------------------------------------------------------------------------------- 1 | ../squizlabs/php_codesniffer/scripts/phpcbf -------------------------------------------------------------------------------- /vendor/bin/release: -------------------------------------------------------------------------------- 1 | ../consolidation/self-update/scripts/release -------------------------------------------------------------------------------- /vendor/consolidation/log/scenarios/symfony2/tests: -------------------------------------------------------------------------------- 1 | ../../tests -------------------------------------------------------------------------------- /vendor/consolidation/log/scenarios/symfony4/tests: -------------------------------------------------------------------------------- 1 | ../../tests -------------------------------------------------------------------------------- /vendor/drupal-composer/drupal-scaffold/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/drush/drush/isolation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | build 3 | -------------------------------------------------------------------------------- /vendor/grasmash/yaml-expander/scenarios/symfony2/src: -------------------------------------------------------------------------------- 1 | ../../src -------------------------------------------------------------------------------- /vendor/grasmash/yaml-expander/scenarios/symfony4/src: -------------------------------------------------------------------------------- 1 | ../../src -------------------------------------------------------------------------------- /vendor/instaclick/php-webdriver/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: lib 2 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/php_manual.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/rc.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html: -------------------------------------------------------------------------------- 1 | path (bis) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html: -------------------------------------------------------------------------------- 1 | path (ter) 2 | -------------------------------------------------------------------------------- /vendor/zaporylie/composer-drupal-optimizations/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/behat/mink-browserkit-driver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | /phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_services.yml: -------------------------------------------------------------------------------- 1 | services: foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services11.yml: -------------------------------------------------------------------------------- 1 | foobarfoobar: {} 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html: -------------------------------------------------------------------------------- 1 | named path (bis) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html: -------------------------------------------------------------------------------- 1 | named path (ter) 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html: -------------------------------------------------------------------------------- 1 | path (final) 2 | -------------------------------------------------------------------------------- /vendor/consolidation/log/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vendor 3 | build 4 | dependencies/*/vendor 5 | -------------------------------------------------------------------------------- /vendor/drush/drush/drush: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/includepath/Foo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /from.txt.orig -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/classmap/notAClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_parameters.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | foo:bar 3 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/messages.yml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar1: value1 3 | bar2: value2 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_quater/named_absolute.html: -------------------------------------------------------------------------------- 1 | named path (quater) 2 | -------------------------------------------------------------------------------- /vendor/doctrine/event-manager/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | reference/index 5 | -------------------------------------------------------------------------------- /vendor/doctrine/persistence/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | reference/index 5 | -------------------------------------------------------------------------------- /vendor/doctrine/reflection/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | reference/index 5 | -------------------------------------------------------------------------------- /vendor/drush/drush/isolation/fixtures/sites/d8/drush/drush.yml: -------------------------------------------------------------------------------- 1 | test: 2 | site: 'A site-specific setting' 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/directory/recurse/simple.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | ini = ini 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_empty_defaults.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_import.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ~ } 3 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt: -------------------------------------------------------------------------------- 1 | en{ 2 | symfony{"Symfony is great"} 3 | } -------------------------------------------------------------------------------- /vendor/jcalderonzumba/gastonjs/docs/clients/php/index.md: -------------------------------------------------------------------------------- 1 | PHP GastonJS Client 2 | ==================== 3 | TODO. 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/directory/recurse/simple.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | yaml: yaml 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/ini/nonvalid.ini: -------------------------------------------------------------------------------- 1 | {NOT AN INI FILE} 2 | {JUST A PLAIN TEXT FILE} 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters2.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | imported_from_ini = true 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/xml/nonvalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_empty_instanceof.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _instanceof: 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services7.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo: { class: BarClass } 3 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/Error.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt: -------------------------------------------------------------------------------- 1 | fr{ 2 | symfony{"Symfony est génial"} 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/legacyNonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - legacyBooleanMappingKeys 2 | - legacyNullMappingKey 3 | -------------------------------------------------------------------------------- /vendor/twig/twig/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /composer.lock 3 | /ext/twig/autom4te.cache/ 4 | /phpunit.xml 5 | /vendor 6 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig: -------------------------------------------------------------------------------- 1 | {% block body %}VALID{% endblock %} 2 | -------------------------------------------------------------------------------- /docroot/modules/contrib/jsonapi/jsonapi.routing.yml: -------------------------------------------------------------------------------- 1 | route_callbacks: 2 | - '\Drupal\jsonapi\Routing\Routes::routes' 3 | -------------------------------------------------------------------------------- /vendor/drush/drush/isolation/fixtures/etc/drush/drushIGNORED.yml: -------------------------------------------------------------------------------- 1 | test: 2 | variant: 'This file should be ignored' 3 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | foo = bar 3 | bar = %foo% 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters1.ini: -------------------------------------------------------------------------------- 1 | [parameters] 2 | FOO = foo 3 | baz = baz 4 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/directory/import/import.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../recurse/ } 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/ini/ini_with_wrong_ext.xml: -------------------------------------------------------------------------------- 1 | [parameters] 2 | with_wrong_ext = 'from ini' 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/php/simple.php: -------------------------------------------------------------------------------- 1 | setParameter('foo', 'foo'); 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | src_dir: . 3 | coverage_clover: build/logs/clover*.xml 4 | -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-highlighter/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/directory/simple.php: -------------------------------------------------------------------------------- 1 | setParameter('php', 'php'); 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/xml/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services_underscore.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _foo: 3 | class: Foo 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/yaml_with_wrong_ext.ini: -------------------------------------------------------------------------------- 1 | parameters: 2 | with_wrong_ext: from yaml 3 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Bar.php: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/bad_format.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | path: /blog/{slug} 3 | defaults: { _controller: "MyBundle:Blog:show" } 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/glob/bar.yml: -------------------------------------------------------------------------------- 1 | bar_route: 2 | path: /bar 3 | defaults: 4 | _controller: AppBundle:Bar:view 5 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/glob/baz.yml: -------------------------------------------------------------------------------- 1 | baz_route: 2 | path: /baz 3 | defaults: 4 | _controller: AppBundle:Baz:view 5 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | resource: validpattern.yml 3 | path: /test 4 | -------------------------------------------------------------------------------- /vendor/drush/drush/misc/icon_PhpStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/drush/drush/misc/icon_PhpStorm.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Util/valid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | * Is required: yes 4 | * Is array: no 5 | * Default: `NULL` 6 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/php/php_with_wrong_ext.yml: -------------------------------------------------------------------------------- 1 | setParameter('with_wrong_ext', 'from php'); 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services13.yml: -------------------------------------------------------------------------------- 1 | # used to test imports in XML 2 | parameters: 3 | imported_from_yaml: true 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services4_bad_import.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: foo_fake.yml, ignore_errors: true } 3 | -------------------------------------------------------------------------------- /docroot/sites/default/files/pizza-umami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/pizza-umami.jpg -------------------------------------------------------------------------------- /docroot/sites/default/files/umami-bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/umami-bundle.png -------------------------------------------------------------------------------- /vendor/jcalderonzumba/mink-phantomjs-driver/src/Resources/Script/execute_script.js.twig: -------------------------------------------------------------------------------- 1 | {% autoescape false %} 2 | {{ script }}; 3 | {% endautoescape %} 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Bar.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: INF] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php: -------------------------------------------------------------------------------- 1 | add('Composer\Installers\Test', __DIR__); 5 | -------------------------------------------------------------------------------- /vendor/consolidation/robo/robo.yml: -------------------------------------------------------------------------------- 1 | options: 2 | progress-delay: 2 3 | simulate: null 4 | command: 5 | try: 6 | config: 7 | options: 8 | opt: wow 9 | -------------------------------------------------------------------------------- /vendor/drush/drush/drush.yml: -------------------------------------------------------------------------------- 1 | #This is a Drush config file. Sites may override this config to change minimum PHP. 2 | drush: 3 | php: 4 | minimum-version: 5.6.0 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Bar.php: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/with_define_path_variable.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments 2 | 3 | #### `argument_name` 4 | 5 | * Is required: yes 6 | * Is array: no 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/BadParent.php: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: INF] 2 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bar/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | AppBundle\Foo: 3 | arguments: 4 | - !service {class: AppBundle\Bar } 5 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/integration/autoconfigure_parent_child_tags/_child.yml: -------------------------------------------------------------------------------- 1 | services: 2 | child_service: 3 | parent: parent_service 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" custom tag 3 | --TEMPLATE-- 4 | {% § %} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | § 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% use '@default_theme/blocks.html.twig' %} 2 | 3 | {% block b2 %}block from theme 2{% endblock %} 4 | -------------------------------------------------------------------------------- /docroot/sites/default/files/media-icons/generic/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/media-icons/generic/generic.png -------------------------------------------------------------------------------- /docroot/sites/default/files/mediterranean-quiche-umami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/mediterranean-quiche-umami.jpg -------------------------------------------------------------------------------- /docroot/sites/default/files/oatmeal-fruit-syrup-topping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/oatmeal-fruit-syrup-topping.jpg -------------------------------------------------------------------------------- /docroot/sites/default/files/veggie-pasta-bake-hero-umami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/docroot/sites/default/files/veggie-pasta-bake-hero-umami.jpg -------------------------------------------------------------------------------- /vendor/chi-teck/drupal-code-generator/templates/d8/hook/batch_alter.twig: -------------------------------------------------------------------------------- 1 | /** 2 | * Implements hook_batch_alter(). 3 | */ 4 | function {{ machine_name }}_batch_alter(&$batch) { 5 | } 6 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/lib/Doctrine/Common/Cache/Version.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: yes 7 | * Default: `array ()` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | * Accept value: no 4 | * Is value required: no 5 | * Is multiple: no 6 | * Default: `false` 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt: -------------------------------------------------------------------------------- 1 | 2 | Title ending with \ 3 | =================== 4 | 5 | Section ending with \ 6 | --------------------- 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'style'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/class_from_id.yml: -------------------------------------------------------------------------------- 1 | services: 2 | Symfony\Component\DependencyInjection\Tests\Fixtures\CaseSensitiveClass: 3 | autowire: true 4 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/legacy_invalid_alias_definition.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo: 3 | alias: bar 4 | factory: foo 5 | parent: quz 6 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services31_invalid_tags.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | tags: ['foo'] 4 | 5 | Foo\Bar: 6 | tags: invalid 7 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/controller/import__controller.yml: -------------------------------------------------------------------------------- 1 | _static: 2 | resource: routing.yml 3 | defaults: 4 | _controller: FrameworkBundle:Template:template 5 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty-translation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/symfony/translation/Tests/fixtures/empty-translation.mo -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/NamespaceUriException.php: -------------------------------------------------------------------------------- 1 | null, 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/src/Lexer.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/class-loader/Tests/Fixtures/DeclaredClass.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/InternalTrait.php: -------------------------------------------------------------------------------- 1 | null, 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/twig/twig/src/Markup.php: -------------------------------------------------------------------------------- 1 | "|e }} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | foo <br /> 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig: -------------------------------------------------------------------------------- 1 | {% extends [null,'parent.html.twig'] %} 2 | 3 | {% block body %}{{ parent() }} Child{% endblock %} 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/phar-sample.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotcappuccinodev/admin-ui-drupal/HEAD/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/phar-sample.phar -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt: -------------------------------------------------------------------------------- 1 | 2 | ! [CAUTION] Lorem ipsum dolor sit amet 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": true, 4 | "is_array": false, 5 | "description": "", 6 | "default": null 7 | } 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options 2 | 3 | #### `--option_name|-o` 4 | 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `false` 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerInvalidSyntax.test: -------------------------------------------------------------------------------- 1 | Invalid __halt_compiler() syntax 2 | ----- 3 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: yes 8 | * Default: `array ()` 9 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/FinalClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2448/Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoTestCases.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AUTH_OK 5 | 6 | 7 | 8 | AUTHORIZATION_OK 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/masterminds/html5/src/HTML5/Parser/ParseError.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 2 | ]> 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": true, 5 | "description": "argument description", 6 | "default": [] 7 | } 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `INF` 9 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Tests/Fixtures/includes/HotPath/C1.php: -------------------------------------------------------------------------------- 1 | 'foo') 7 | --EXPECT-- 8 | foo0foo 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/basic.legacy.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "raw" tag 3 | --TEMPLATE-- 4 | {% raw %} 5 | {{ foo }} 6 | {% endraw %} 7 | --DATA-- 8 | return array() 9 | --EXPECT-- 10 | {{ foo }} 11 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tests/odd.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "odd" test 3 | --TEMPLATE-- 4 | {{ 1 is odd ? 'ok' : 'ko' }} 5 | {{ 2 is odd ? 'ko' : 'ok' }} 6 | --DATA-- 7 | return array() 8 | --EXPECT-- 9 | ok 10 | ok --------------------------------------------------------------------------------