├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── docs ├── 01-Intro.md ├── Baked-In │ ├── Blends │ │ ├── CheckboxWithLabel.md │ │ ├── DivWithPurifiedHtml.md │ │ ├── MultiCheckbox.md │ │ ├── README.md │ │ └── RadioSet.md │ ├── Core │ │ ├── Container.md │ │ ├── DoesNotPopulateTrait.md │ │ ├── Element.md │ │ ├── README.md │ │ ├── Utilities.md │ │ └── ValueTrait.md │ ├── FilterContainer.md │ ├── Form.md │ ├── Ingredients │ │ ├── Button.md │ │ ├── Datalist.md │ │ ├── Div.md │ │ ├── Fieldset.md │ │ ├── Grouping.md │ │ ├── Input │ │ │ └── File.md │ │ ├── InputTag.md │ │ ├── Label.md │ │ ├── Optgroup.md │ │ ├── Option.md │ │ ├── PurifiedHtmlBlock.md │ │ ├── README.md │ │ ├── RawHtmlBlock.md │ │ ├── SelectTag.md │ │ └── Textarea.md │ └── README.md ├── Examples │ └── README.md ├── Integrations │ └── README.md ├── Neophyte │ ├── Confused-40px.png │ ├── Confused.png │ ├── Cooking-40px.png │ ├── Cooking.png │ ├── Cupcake-40px.png │ ├── Cupcake.png │ ├── Happy-40px.png │ ├── Happy.png │ ├── README.md │ ├── Sitting-40px.png │ └── Sitting.png ├── README.md ├── Soatok │ └── Soatok-Yes.png └── headers │ ├── 01-intro-header.png │ ├── cupcake.png │ └── documentation.png ├── phpunit.xml ├── psalm.xml ├── src ├── AutoID.php ├── Blends │ ├── CheckboxWithLabel.php │ ├── DivWithPurifiedHtml.php │ ├── MultiCheckbox.php │ └── RadioSet.php ├── Core │ ├── AntiCSRFInterface.php │ ├── Container.php │ ├── DoesNotPopulateTrait.php │ ├── Element.php │ ├── IngredientInterface.php │ ├── NameTrait.php │ ├── StapleTrait.php │ ├── Utilities.php │ └── ValueTrait.php ├── Exceptions │ ├── ChildNotFoundException.php │ ├── CupcakeException.php │ ├── InvalidDataKeyException.php │ └── InvalidMixtureException.php ├── FilterContainer.php ├── Form.php ├── Ingredients │ ├── Button.php │ ├── Datalist.php │ ├── Div.php │ ├── Fieldset.php │ ├── Grouping.php │ ├── Input │ │ ├── Checkbox.php │ │ ├── File.php │ │ ├── Hidden.php │ │ ├── Password.php │ │ ├── Radio.php │ │ └── Text.php │ ├── InputTag.php │ ├── Label.php │ ├── Meter.php │ ├── Optgroup.php │ ├── Option.php │ ├── Output.php │ ├── Progress.php │ ├── PurifiedHtmlBlock.php │ ├── RawHtmlBlock.php │ ├── SelectTag.php │ └── Textarea.php └── Security │ └── AntiCSRF │ └── CookieBacked.php └── tests ├── AutoIDTest.php ├── Blends ├── CheckboxWithLabelTest.php ├── MultiCheckboxTest.php └── RadioSetTest.php ├── Core ├── ClassWithNameTrait.php └── NameTraitTest.php ├── FormTest.php ├── Ingredients ├── ButtonTest.php ├── DatalistTest.php ├── DivTest.php ├── FieldsetTest.php ├── Input │ ├── CheckboxTest.php │ ├── FileTest.php │ ├── HiddenTest.php │ ├── PasswordTest.php │ ├── RadioTest.php │ └── TextTest.php ├── InputTagTest.php ├── LabelTest.php ├── MeterTest.php ├── OptgroupTest.php ├── OutputTest.php ├── ProgressTest.php ├── PurifiedHtmlBlockTest.php ├── RawHtmlBlockTest.php ├── SelectTagTest.php └── TextareaTest.php ├── Mixtures └── InputWithDatalistTest.php └── Security └── AntiCSRF ├── CookieBackedDummy.php └── CookieBackedTest.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/composer.json -------------------------------------------------------------------------------- /docs/01-Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/01-Intro.md -------------------------------------------------------------------------------- /docs/Baked-In/Blends/CheckboxWithLabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Blends/CheckboxWithLabel.md -------------------------------------------------------------------------------- /docs/Baked-In/Blends/DivWithPurifiedHtml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Blends/DivWithPurifiedHtml.md -------------------------------------------------------------------------------- /docs/Baked-In/Blends/MultiCheckbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Blends/MultiCheckbox.md -------------------------------------------------------------------------------- /docs/Baked-In/Blends/README.md: -------------------------------------------------------------------------------- 1 | # Blends 2 | 3 | See [parent directory](..) for the table of contents. 4 | -------------------------------------------------------------------------------- /docs/Baked-In/Blends/RadioSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Blends/RadioSet.md -------------------------------------------------------------------------------- /docs/Baked-In/Core/Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Core/Container.md -------------------------------------------------------------------------------- /docs/Baked-In/Core/DoesNotPopulateTrait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Core/DoesNotPopulateTrait.md -------------------------------------------------------------------------------- /docs/Baked-In/Core/Element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Core/Element.md -------------------------------------------------------------------------------- /docs/Baked-In/Core/README.md: -------------------------------------------------------------------------------- 1 | # Core 2 | 3 | See [parent directory](..) for the table of contents. 4 | -------------------------------------------------------------------------------- /docs/Baked-In/Core/Utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Core/Utilities.md -------------------------------------------------------------------------------- /docs/Baked-In/Core/ValueTrait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Core/ValueTrait.md -------------------------------------------------------------------------------- /docs/Baked-In/FilterContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/FilterContainer.md -------------------------------------------------------------------------------- /docs/Baked-In/Form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Form.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Button.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Datalist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Datalist.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Div.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Div.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Fieldset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Fieldset.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Grouping.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Input/File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Input/File.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/InputTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/InputTag.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Label.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Optgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Optgroup.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Option.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/PurifiedHtmlBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/PurifiedHtmlBlock.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/README.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/RawHtmlBlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/RawHtmlBlock.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/SelectTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/SelectTag.md -------------------------------------------------------------------------------- /docs/Baked-In/Ingredients/Textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/Ingredients/Textarea.md -------------------------------------------------------------------------------- /docs/Baked-In/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Baked-In/README.md -------------------------------------------------------------------------------- /docs/Examples/README.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /docs/Integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Integrations/README.md -------------------------------------------------------------------------------- /docs/Neophyte/Confused-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Confused-40px.png -------------------------------------------------------------------------------- /docs/Neophyte/Confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Confused.png -------------------------------------------------------------------------------- /docs/Neophyte/Cooking-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Cooking-40px.png -------------------------------------------------------------------------------- /docs/Neophyte/Cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Cooking.png -------------------------------------------------------------------------------- /docs/Neophyte/Cupcake-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Cupcake-40px.png -------------------------------------------------------------------------------- /docs/Neophyte/Cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Cupcake.png -------------------------------------------------------------------------------- /docs/Neophyte/Happy-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Happy-40px.png -------------------------------------------------------------------------------- /docs/Neophyte/Happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Happy.png -------------------------------------------------------------------------------- /docs/Neophyte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/README.md -------------------------------------------------------------------------------- /docs/Neophyte/Sitting-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Sitting-40px.png -------------------------------------------------------------------------------- /docs/Neophyte/Sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Neophyte/Sitting.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Soatok/Soatok-Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/Soatok/Soatok-Yes.png -------------------------------------------------------------------------------- /docs/headers/01-intro-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/headers/01-intro-header.png -------------------------------------------------------------------------------- /docs/headers/cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/headers/cupcake.png -------------------------------------------------------------------------------- /docs/headers/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/docs/headers/documentation.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/AutoID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/AutoID.php -------------------------------------------------------------------------------- /src/Blends/CheckboxWithLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Blends/CheckboxWithLabel.php -------------------------------------------------------------------------------- /src/Blends/DivWithPurifiedHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Blends/DivWithPurifiedHtml.php -------------------------------------------------------------------------------- /src/Blends/MultiCheckbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Blends/MultiCheckbox.php -------------------------------------------------------------------------------- /src/Blends/RadioSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Blends/RadioSet.php -------------------------------------------------------------------------------- /src/Core/AntiCSRFInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/AntiCSRFInterface.php -------------------------------------------------------------------------------- /src/Core/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/Container.php -------------------------------------------------------------------------------- /src/Core/DoesNotPopulateTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/DoesNotPopulateTrait.php -------------------------------------------------------------------------------- /src/Core/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/Element.php -------------------------------------------------------------------------------- /src/Core/IngredientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/IngredientInterface.php -------------------------------------------------------------------------------- /src/Core/NameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/NameTrait.php -------------------------------------------------------------------------------- /src/Core/StapleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/StapleTrait.php -------------------------------------------------------------------------------- /src/Core/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/Utilities.php -------------------------------------------------------------------------------- /src/Core/ValueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Core/ValueTrait.php -------------------------------------------------------------------------------- /src/Exceptions/ChildNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Exceptions/ChildNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/CupcakeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Exceptions/CupcakeException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidDataKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Exceptions/InvalidDataKeyException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidMixtureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Exceptions/InvalidMixtureException.php -------------------------------------------------------------------------------- /src/FilterContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/FilterContainer.php -------------------------------------------------------------------------------- /src/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Form.php -------------------------------------------------------------------------------- /src/Ingredients/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Button.php -------------------------------------------------------------------------------- /src/Ingredients/Datalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Datalist.php -------------------------------------------------------------------------------- /src/Ingredients/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Div.php -------------------------------------------------------------------------------- /src/Ingredients/Fieldset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Fieldset.php -------------------------------------------------------------------------------- /src/Ingredients/Grouping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Grouping.php -------------------------------------------------------------------------------- /src/Ingredients/Input/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/Checkbox.php -------------------------------------------------------------------------------- /src/Ingredients/Input/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/File.php -------------------------------------------------------------------------------- /src/Ingredients/Input/Hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/Hidden.php -------------------------------------------------------------------------------- /src/Ingredients/Input/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/Password.php -------------------------------------------------------------------------------- /src/Ingredients/Input/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/Radio.php -------------------------------------------------------------------------------- /src/Ingredients/Input/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Input/Text.php -------------------------------------------------------------------------------- /src/Ingredients/InputTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/InputTag.php -------------------------------------------------------------------------------- /src/Ingredients/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Label.php -------------------------------------------------------------------------------- /src/Ingredients/Meter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Meter.php -------------------------------------------------------------------------------- /src/Ingredients/Optgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Optgroup.php -------------------------------------------------------------------------------- /src/Ingredients/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Option.php -------------------------------------------------------------------------------- /src/Ingredients/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Output.php -------------------------------------------------------------------------------- /src/Ingredients/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Progress.php -------------------------------------------------------------------------------- /src/Ingredients/PurifiedHtmlBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/PurifiedHtmlBlock.php -------------------------------------------------------------------------------- /src/Ingredients/RawHtmlBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/RawHtmlBlock.php -------------------------------------------------------------------------------- /src/Ingredients/SelectTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/SelectTag.php -------------------------------------------------------------------------------- /src/Ingredients/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Ingredients/Textarea.php -------------------------------------------------------------------------------- /src/Security/AntiCSRF/CookieBacked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/src/Security/AntiCSRF/CookieBacked.php -------------------------------------------------------------------------------- /tests/AutoIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/AutoIDTest.php -------------------------------------------------------------------------------- /tests/Blends/CheckboxWithLabelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Blends/CheckboxWithLabelTest.php -------------------------------------------------------------------------------- /tests/Blends/MultiCheckboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Blends/MultiCheckboxTest.php -------------------------------------------------------------------------------- /tests/Blends/RadioSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Blends/RadioSetTest.php -------------------------------------------------------------------------------- /tests/Core/ClassWithNameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Core/ClassWithNameTrait.php -------------------------------------------------------------------------------- /tests/Core/NameTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Core/NameTraitTest.php -------------------------------------------------------------------------------- /tests/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/FormTest.php -------------------------------------------------------------------------------- /tests/Ingredients/ButtonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/ButtonTest.php -------------------------------------------------------------------------------- /tests/Ingredients/DatalistTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/DatalistTest.php -------------------------------------------------------------------------------- /tests/Ingredients/DivTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/DivTest.php -------------------------------------------------------------------------------- /tests/Ingredients/FieldsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/FieldsetTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/CheckboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/CheckboxTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/FileTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/HiddenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/HiddenTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/PasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/PasswordTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/RadioTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/RadioTest.php -------------------------------------------------------------------------------- /tests/Ingredients/Input/TextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/Input/TextTest.php -------------------------------------------------------------------------------- /tests/Ingredients/InputTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/InputTagTest.php -------------------------------------------------------------------------------- /tests/Ingredients/LabelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/LabelTest.php -------------------------------------------------------------------------------- /tests/Ingredients/MeterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/MeterTest.php -------------------------------------------------------------------------------- /tests/Ingredients/OptgroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/OptgroupTest.php -------------------------------------------------------------------------------- /tests/Ingredients/OutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/OutputTest.php -------------------------------------------------------------------------------- /tests/Ingredients/ProgressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/ProgressTest.php -------------------------------------------------------------------------------- /tests/Ingredients/PurifiedHtmlBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/PurifiedHtmlBlockTest.php -------------------------------------------------------------------------------- /tests/Ingredients/RawHtmlBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/RawHtmlBlockTest.php -------------------------------------------------------------------------------- /tests/Ingredients/SelectTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/SelectTagTest.php -------------------------------------------------------------------------------- /tests/Ingredients/TextareaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Ingredients/TextareaTest.php -------------------------------------------------------------------------------- /tests/Mixtures/InputWithDatalistTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Mixtures/InputWithDatalistTest.php -------------------------------------------------------------------------------- /tests/Security/AntiCSRF/CookieBackedDummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Security/AntiCSRF/CookieBackedDummy.php -------------------------------------------------------------------------------- /tests/Security/AntiCSRF/CookieBackedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soatok/cupcake/HEAD/tests/Security/AntiCSRF/CookieBackedTest.php --------------------------------------------------------------------------------