repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryLengthValidatorTest.php
tests/Unit/Validators/ArbitraryLengthValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryLengthValidator; test('is arbitrary length', function ($input, $output) { expect(ArbitraryLengthValidator::validate($input))->toBe($output); })->with([ ['[3.7%]', true], ['[481px]', true], ['[19.1rem]', true], ['[50vw]', true], ['[56vh]', true], ...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryValueValidatorTest.php
tests/Unit/Validators/ArbitraryValueValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryValueValidator; test('is arbitrary value', function ($input, $output) { expect(ArbitraryValueValidator::validate($input))->toBe($output); })->with([ ['[1]', true], ['[bla]', true], ['[not-an-arbitrary-value?]', true], ['[auto,auto,minmax(0,1fr),calc(100v...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/LengthValidatorTest.php
tests/Unit/Validators/LengthValidatorTest.php
<?php use TailwindMerge\Validators\LengthValidator; test('is length', function ($input, $output) { expect(LengthValidator::validate($input))->toBe($output); })->with([ ['1', true], ['1023713', true], ['1.5', true], ['1231.503761', true], ['px', true], ['full', true], ['screen', true], ...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/IntegerValidatorTest.php
tests/Unit/Validators/IntegerValidatorTest.php
<?php use TailwindMerge\Validators\IntegerValidator; test('is integer', function ($input, $output) { expect(IntegerValidator::validate($input))->toBe($output); })->with([ ['1', true], ['123', true], ['8312', true], ['[8312]', false], ['[2]', false], ['[8312px]', false], ['[8312%]', fal...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/AnyValueValidatorTest.php
tests/Unit/Validators/AnyValueValidatorTest.php
<?php use TailwindMerge\Validators\AnyValueValidator; test('is any value', function ($input, $output) { expect(AnyValueValidator::validate($input))->toBe($output); })->with([ ['', true], ['something', true], ]);
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitrarySizeValidatorTest.php
tests/Unit/Validators/ArbitrarySizeValidatorTest.php
<?php use TailwindMerge\Validators\ArbitrarySizeValidator; test('is arbitrary size', function ($input, $output) { expect(ArbitrarySizeValidator::validate($input))->toBe($output); })->with([ ['[size:2px]', true], ['[size:bla]', true], ['[length:bla]', true], ['[percentage:bla]', true], ['[2px]...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/TshirtSizeValidatorTest.php
tests/Unit/Validators/TshirtSizeValidatorTest.php
<?php use TailwindMerge\Validators\TshirtSizeValidator; test('is t-shirt size', function ($input, $output) { expect(TshirtSizeValidator::validate($input))->toBe($output); })->with([ ['xs', true], ['sm', true], ['md', true], ['lg', true], ['xl', true], ['2xl', true], ['2.5xl', true], ...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryPositionValidatorTest.php
tests/Unit/Validators/ArbitraryPositionValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryPositionValidator; test('is arbitrary position', function ($input, $output) { expect(ArbitraryPositionValidator::validate($input))->toBe($output); })->with([ ['[position:2px]', true], ['[position:bla]', true], ['[2px]', false], ['[bla]', false], ['p...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/PercentValidatorTest.php
tests/Unit/Validators/PercentValidatorTest.php
<?php use TailwindMerge\Validators\PercentValidator; test('is number', function ($input, $output) { expect(PercentValidator::validate($input))->toBe($output); })->with([ ['1%', true], ['100.001%', true], ['.01%', true], ['0%', true], ['0', false], ['one%', false], ]);
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryImageValidatorTest.php
tests/Unit/Validators/ArbitraryImageValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryImageValidator; test('is arbitrary image', function ($input, $output) { expect(ArbitraryImageValidator::validate($input))->toBe($output); })->with([ ['[url:var(--my-url)]', true], ['[url(something)]', true], ['[url:bla]', true], ['[image:bla]', true], ...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/NumberValidatorTest.php
tests/Unit/Validators/NumberValidatorTest.php
<?php use TailwindMerge\Validators\NumberValidator; test('is number', function ($input, $output) { expect(NumberValidator::validate($input))->toBe($output); })->with([ ['1', true], ['1.5', true], ['one', false], ['1px', false], ['', false], ]);
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryShadowValidatorTest.php
tests/Unit/Validators/ArbitraryShadowValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryShadowValidator; test('is arbitrary shadow', function ($input, $output) { expect(ArbitraryShadowValidator::validate($input))->toBe($output); })->with([ ['[0_35px_60px_-15px_rgba(0,0,0,0.3)]', true], ['[inset_0_1px_0,inset_0_-1px_0]', true], ['[0_0_#00f]', tr...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
gehrisandro/tailwind-merge-php
https://github.com/gehrisandro/tailwind-merge-php/blob/dc11b9d4a625dd5be885900e5ef14c3efa260277/tests/Unit/Validators/ArbitraryNumberValidatorTest.php
tests/Unit/Validators/ArbitraryNumberValidatorTest.php
<?php use TailwindMerge\Validators\ArbitraryNumberValidator; test('is arbitrary number', function ($input, $output) { expect(ArbitraryNumberValidator::validate($input))->toBe($output); })->with([ ['[number:black]', true], ['[number:bla]', true], ['[number:230]', true], ['[450]', true], ['[2px...
php
MIT
dc11b9d4a625dd5be885900e5ef14c3efa260277
2026-01-05T04:59:39.669817Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Schematic.php
src/Schematic.php
<?php namespace NerdsAndCompany\Schematic; use Craft; use craft\base\Model; use craft\base\Plugin; use yii\helpers\Console; use NerdsAndCompany\Schematic\DataTypes\AssetTransformDataType; use NerdsAndCompany\Schematic\DataTypes\CategoryGroupDataType; use NerdsAndCompany\Schematic\DataTypes\ElementIndexDataType; use N...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Controllers/Base.php
src/Controllers/Base.php
<?php namespace NerdsAndCompany\Schematic\Controllers; use Craft; use NerdsAndCompany\Schematic\Models\Data; use yii\console\Controller; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Base Controller. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Controllers/ExportController.php
src/Controllers/ExportController.php
<?php namespace NerdsAndCompany\Schematic\Controllers; use Craft; use craft\helpers\FileHelper; use NerdsAndCompany\Schematic\Models\Data; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Export Controller. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerd...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Controllers/ImportController.php
src/Controllers/ImportController.php
<?php namespace NerdsAndCompany\Schematic\Controllers; use Craft; use NerdsAndCompany\Schematic\Models\Data; use NerdsAndCompany\Schematic\Schematic; use craft\errors\WrongEditionException; /** * Schematic Import Command. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-201...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Interfaces/MapperInterface.php
src/Interfaces/MapperInterface.php
<?php namespace NerdsAndCompany\Schematic\Interfaces; /** * Schematic Mapper Interface. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ interface MapperInterface { /** * Export giv...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Interfaces/ConverterInterface.php
src/Interfaces/ConverterInterface.php
<?php namespace NerdsAndCompany\Schematic\Interfaces; use craft\base\Model; /** * Schematic Converter Interface. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ interface ConverterInterfac...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Interfaces/DataTypeInterface.php
src/Interfaces/DataTypeInterface.php
<?php namespace NerdsAndCompany\Schematic\Interfaces; /** * Schematic Data Type Interface. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ interface DataTypeInterface { /** * Get m...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/UserSettingsMapper.php
src/Mappers/UserSettingsMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use craft\elements\User; use NerdsAndCompany\Schematic\Behaviors\FieldLayoutBehavior; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; use yii\base\Component as BaseComponent; /** * Schematic User Setting...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/PluginMapper.php
src/Mappers/PluginMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; use yii\base\Component as BaseComponent; /** * Schematic Plugin Mapper. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/ElementIndexMapper.php
src/Mappers/ElementIndexMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use NerdsAndCompany\Schematic\Behaviors\SourcesBehavior; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; use yii\base\Component as BaseComponent; /** * Schematic Element Index Mapper. * * Sync Craft Se...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/ModelMapper.php
src/Mappers/ModelMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use craft\base\Model; use yii\base\Component as BaseComponent; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; /** * Schematic Model Mapper. * * Sync Craft Setups. * * @author Nerds & Company * @...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/EmailSettingsMapper.php
src/Mappers/EmailSettingsMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; use yii\base\Component as BaseComponent; /** * Schematic Email Settings Mapper. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Cop...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Mappers/GeneralSettingsMapper.php
src/Mappers/GeneralSettingsMapper.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Interfaces\MapperInterface; use yii\base\Component as BaseComponent; use craft\models\Info; /** * Schematic General Settings Mapper. * * Sync Craft Setups. * * @author Nerds & ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Elements/GlobalSet.php
src/Converters/Elements/GlobalSet.php
<?php namespace NerdsAndCompany\Schematic\Converters\Elements; use Craft; use craft\elements\GlobalSet as GlobalSetElement; use craft\base\Model; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Converters\Models\Base; /** * Schematic Globals Converter. * * Sync Craft Setups. * * @author ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Base/Field.php
src/Converters/Base/Field.php
<?php namespace NerdsAndCompany\Schematic\Converters\Base; use Craft; use craft\base\Model; use craft\models\FieldGroup; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Converters\Models\Base; /** * Schematic Fields Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copy...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Base/Volume.php
src/Converters/Base/Volume.php
<?php namespace NerdsAndCompany\Schematic\Converters\Base; use Craft; use craft\base\Model; use NerdsAndCompany\Schematic\Converters\Models\Base; /** * Schematic Volume Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * *...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Fields/Assets.php
src/Converters/Fields/Assets.php
<?php namespace NerdsAndCompany\Schematic\Converters\Fields; use Craft; use craft\base\Model; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Converters\Base\Field; /** * Schematic Asset Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Fields/Matrix.php
src/Converters/Fields/Matrix.php
<?php namespace NerdsAndCompany\Schematic\Converters\Fields; use Craft; use craft\base\Model; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Converters\Base\Field; /** * Schematic Matrix Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-201...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/TagGroup.php
src/Converters/Models/TagGroup.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; /** * Schematic TagGroups Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class Tag...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/AssetTransform.php
src/Converters/Models/AssetTransform.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; /** * Schematic Asset Transforms Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cl...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/Base.php
src/Converters/Models/Base.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; use craft\models\MatrixBlockType as MatrixBlockTypeModel; use yii\base\Component as BaseComponent; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Behaviors\FieldLayoutBehavior; use NerdsAndCompany\Sch...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/MatrixBlockType.php
src/Converters/Models/MatrixBlockType.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; /** * Schematic Matrix Block Types Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/Section.php
src/Converters/Models/Section.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; use craft\models\Section as SectionModel; use craft\models\Section_SiteSettings; /** * Schematic Sections Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/Site.php
src/Converters/Models/Site.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\models\SiteGroup; use craft\base\Model; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Sites Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @lic...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/CategoryGroup.php
src/Converters/Models/CategoryGroup.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; use craft\models\CategoryGroup_SiteSettings; /** * Schematic Category Groups Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/UserGroup.php
src/Converters/Models/UserGroup.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; /** * Schematic User Groups Service. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class Use...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Converters/Models/EntryType.php
src/Converters/Models/EntryType.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Model; /** * Schematic Entry Types Converter. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class E...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Behaviors/FieldLayoutBehavior.php
src/Behaviors/FieldLayoutBehavior.php
<?php namespace NerdsAndCompany\Schematic\Behaviors; use Craft; use yii\base\Behavior; use craft\base\Field; use craft\base\FieldInterface; use craft\models\FieldLayout; use craft\elements\Entry; /** * Schematic FieldLayout Behavior. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Behaviors/SourcesBehavior.php
src/Behaviors/SourcesBehavior.php
<?php namespace NerdsAndCompany\Schematic\Behaviors; use Craft; use TypeError; use yii\base\Behavior; use craft\base\Model; use craft\records\VolumeFolder; use craft\fields\Users; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Events\SourceMappingEvent; /** * Schematic Sources Behavior. * ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/UserGroupDataType.php
src/DataTypes/UserGroupDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic UserGroups DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company *...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/EmailSettingsDataType.php
src/DataTypes/EmailSettingsDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic EmailSettings DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/Base.php
src/DataTypes/Base.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use NerdsAndCompany\Schematic\Interfaces\DataTypeInterface; abstract class Base implements DataTypeInterface { /** * {@inheritdoc} */ abstract public function getMapperHandle(): string; /** * {@inheritdoc} */ abstract public fu...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/GeneralSettingsDataType.php
src/DataTypes/GeneralSettingsDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic GeneralSettings DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.compa...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/TagGroupDataType.php
src/DataTypes/TagGroupDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic TagGroups DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/AssetTransformDataType.php
src/DataTypes/AssetTransformDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic AssetTransforms DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.compa...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/SectionDataType.php
src/DataTypes/SectionDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Sections DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/UserSettingsDataType.php
src/DataTypes/UserSettingsDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic UserSettings DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/SiteDataType.php
src/DataTypes/SiteDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Sites DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cla...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/FieldDataType.php
src/DataTypes/FieldDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Fields DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cl...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/VolumeDataType.php
src/DataTypes/VolumeDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Volumes DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ c...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/CategoryGroupDataType.php
src/DataTypes/CategoryGroupDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic CategoryGroups DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.compan...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/PluginDataType.php
src/DataTypes/PluginDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic Plugin DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cl...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/GlobalSetDataType.php
src/DataTypes/GlobalSetDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic GlobalSets DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company *...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/DataTypes/ElementIndexDataType.php
src/DataTypes/ElementIndexDataType.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use NerdsAndCompany\Schematic\Schematic; /** * Schematic ElementIndexs DataType. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Models/Data.php
src/Models/Data.php
<?php namespace NerdsAndCompany\Schematic\Models; use Exception; use craft\base\Model; use Symfony\Component\Yaml\Yaml; /** * Schematic Data Model. * * Encapsulates data that has been exported via schematic. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Events/ConverterEvent.php
src/Events/ConverterEvent.php
<?php namespace NerdsAndCompany\Schematic\Events; use yii\base\Event; /** * Schematic Converter Event. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class ConverterEvent extends Event { ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/src/Events/SourceMappingEvent.php
src/Events/SourceMappingEvent.php
<?php namespace NerdsAndCompany\Schematic\Events; use yii\base\Event; /** * Schematic Source Mapping Event. * * Sync Craft Setups. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class SourceMappingEvent extends...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/_bootstrap.php
tests/unit/_bootstrap.php
<?php require_once __DIR__.'/../../vendor/yiisoft/yii2/Yii.php'; require_once __DIR__.'/../../vendor/craftcms/cms/src/Craft.php';
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/SchematicTest.php
tests/unit/SchematicTest.php
<?php namespace NerdsAndCompany\Schematic; use craft\base\Element; use craft\fields\PlainText; use craft\models\Section; use Codeception\Test\Unit; use NerdsAndCompany\Schematic\Converters\Base\Field as FieldConverter; use NerdsAndCompany\Schematic\Converters\Models\Section as SectionConverter; use NerdsAndCompany\Sc...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/ModelMapperTest.php
tests/unit/Mappers/ModelMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use craft\base\Model; use Codeception\Test\Unit; use NerdsAndCompany\Schematic\Schematic; use NerdsAndCompany\Schematic\Converters\Models\Base as Converter; /** * Class ModelMapperTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-20...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/PluginMapperTest.php
tests/unit/Mappers/PluginMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use Exception; use craft\base\Model; use craft\base\Plugin; use NerdsAndCompany\Schematic\Schematic; use Codeception\Test\Unit; /** * Class Plugin Mapper Test. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @li...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/UserSettingsMapperTest.php
tests/unit/Mappers/UserSettingsMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use craft\base\Field; use craft\base\Volume; use craft\elements\User; use craft\models\FieldLayout; use craft\models\FieldLayoutTab; use Codeception\Test\Unit; /** * Class UserSettingsMapperTest. * * @author Nerds & Company * @copyright Copyright (...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/EmailSettingsMapperTest.php
tests/unit/Mappers/EmailSettingsMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use Codeception\Test\Unit; /** * Class EmailSettingsMapperTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class EmailSettingsMapperTest extends U...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/ElementIndexMapperTest.php
tests/unit/Mappers/ElementIndexMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use craft\elements\Category; use craft\elements\Entry; use craft\base\Field; use Codeception\Test\Unit; /** * Class ElementIndexSettingsTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Mappers/GeneralSettingsMapperTest.php
tests/unit/Mappers/GeneralSettingsMapperTest.php
<?php namespace NerdsAndCompany\Schematic\Mappers; use Craft; use Codeception\Test\Unit; use craft\models\Info; /** * Class GeneralSettingsMapperTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class GeneralS...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Elements/GlobalSetTest.php
tests/unit/Converters/Elements/GlobalSetTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Elements; use Craft; use craft\elements\GlobalSet as GlobalSetElement; use craft\base\Field; use yii\base\Behavior; use craft\models\FieldLayout; use craft\models\Site; use craft\services\Fields; use Codeception\Test\Unit; /** * Class GlobalSetTest. * * @author...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Base/FieldTest.php
tests/unit/Converters/Base/FieldTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Base; use Craft; use craft\base\Field as FieldModel; use craft\fields\Categories as CategoriesField; use craft\fields\PlainText as PlainTextField; use Codeception\Test\Unit; /** * Class FieldTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Base/VolumeTest.php
tests/unit/Converters/Base/VolumeTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Base; use Craft; use craft\base\Field as FieldModel; use craft\base\Volume as VolumeModel; use craft\elements\Asset; use craft\models\FieldLayout; use craft\volumes\Local; use Codeception\Test\Unit; /** * Class VolumeTest. * * @author Nerds & Company * @cop...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Fields/MatrixTest.php
tests/unit/Converters/Fields/MatrixTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Fields; use Craft; use craft\fields\Matrix as MatrixField; use Codeception\Test\Unit; /** * Class MatrixTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cl...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Fields/AssetsTest.php
tests/unit/Converters/Fields/AssetsTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Fields; use Craft; use craft\fields\Assets as AssetsField; use craft\base\Volume; use craft\models\VolumeFolder; use craft\records\VolumeFolder as VolumeFolderRecord; use Codeception\Test\Unit; /** * Class AssetsTest. * * @author Nerds & Company * @copyrigh...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/EntryTypeTest.php
tests/unit/Converters/Models/EntryTypeTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Field as FieldModel; use craft\elements\Entry; use craft\models\EntryType as EntryTypeModel; use craft\models\FieldLayout; use craft\models\FieldLayoutTab; use Codeception\Test\Unit; /** * Class EntryTypeTest. * * @author Ne...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/SiteTest.php
tests/unit/Converters/Models/SiteTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\models\Site as SiteModel; use craft\models\SiteGroup; use Codeception\Test\Unit; /** * Class SiteTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://ww...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/UserGroupTest.php
tests/unit/Converters/Models/UserGroupTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\console\Application; use craft\models\UserGroup as UserGroupModel; use craft\models\Section as SectionModel; use craft\models\CategoryGroup as CategoryGroupModel; use craft\base\Volume as VolumeModel; use Codeception\Test\Unit; /** * ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/MatrixBlockTypeTest.php
tests/unit/Converters/Models/MatrixBlockTypeTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\base\Field as FieldModel; use craft\fields\Matrix as MatrixField; use craft\models\MatrixBlockType as MatrixBlockTypeModel; use craft\models\FieldLayout; use Codeception\Test\Unit; /** * Class MatrixBlockTypeTest. * * @author Ner...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/SectionTest.php
tests/unit/Converters/Models/SectionTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\models\Section as SectionModel; use craft\models\Section_SiteSettings; use craft\models\Site; use Codeception\Test\Unit; /** * Class SectionTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/AssetTransformTest.php
tests/unit/Converters/Models/AssetTransformTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\models\AssetTransform as AssetTransformModel; use Codeception\Test\Unit; /** * Class AssetTransformTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/CategoryGroupTest.php
tests/unit/Converters/Models/CategoryGroupTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\elements\Category; use craft\models\CategoryGroup as CategoryGroupModel; use craft\models\CategoryGroup_SiteSettings; use craft\models\FieldLayout; use craft\models\Site; use Codeception\Test\Unit; /** * Class CategoryGroupTest. * *...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Converters/Models/TagGroupTest.php
tests/unit/Converters/Models/TagGroupTest.php
<?php namespace NerdsAndCompany\Schematic\Converters\Models; use Craft; use craft\models\TagGroup as TagGroupModel; use Codeception\Test\Unit; /** * Class TagGroupTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/VolumeDataTypeTest.php
tests/unit/DataTypes/VolumeDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\Volume; use Codeception\Test\Unit; /** * Class VolumeDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class VolumeDataT...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/GeneralSettingsDataTypeTest.php
tests/unit/DataTypes/GeneralSettingsDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Codeception\Test\Unit; /** * Class GeneralSettingsDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class GeneralSettingsDataTypeTest extends Un...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/PluginDataTypeTest.php
tests/unit/DataTypes/PluginDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use Codeception\Test\Unit; /** * Class PluginDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class PluginDataTypeTest extends Unit { ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/FieldDataTypeTest.php
tests/unit/DataTypes/FieldDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\Field; use Codeception\Test\Unit; /** * Class FieldDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class FieldDataType...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/GlobalSetDataTypeTest.php
tests/unit/DataTypes/GlobalSetDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\GlobalSet; use Codeception\Test\Unit; /** * Class GlobalSetDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class Globa...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/ElementIndexDataTypeTest.php
tests/unit/DataTypes/ElementIndexDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\ElementType; use Codeception\Test\Unit; /** * Class ElementTypeDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class E...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/AssetTransformDataTypeTest.php
tests/unit/DataTypes/AssetTransformDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\AssetTransform; use Codeception\Test\Unit; /** * Class AssetTransformDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ c...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/CategoryGroupDataTypeTest.php
tests/unit/DataTypes/CategoryGroupDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\CategoryGroup; use Codeception\Test\Unit; /** * Class CategoryGroupDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ cla...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/EmailSettingsDataTypeTest.php
tests/unit/DataTypes/EmailSettingsDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Codeception\Test\Unit; /** * Class EmailSettingsDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class EmailSettingsDataTypeTest extends Unit {...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/UserGroupDataTypeTest.php
tests/unit/DataTypes/UserGroupDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\UserGroup; use Codeception\Test\Unit; /** * Class UserGroupDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class UserG...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/UserSettingsDataTypeTest.php
tests/unit/DataTypes/UserSettingsDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Codeception\Test\Unit; /** * Class UserSettingsDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class UserSettingsDataTypeTest extends Unit { ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/SiteDataTypeTest.php
tests/unit/DataTypes/SiteDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\Site; use Codeception\Test\Unit; /** * Class SiteDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class SiteDataTypeTes...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/TagGroupDataTypeTest.php
tests/unit/DataTypes/TagGroupDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\TagGroup; use Codeception\Test\Unit; /** * Class TagGroupDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class TagGrou...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/DataTypes/SectionDataTypeTest.php
tests/unit/DataTypes/SectionDataTypeTest.php
<?php namespace NerdsAndCompany\Schematic\DataTypes; use Craft; use craft\models\Section; use Codeception\Test\Unit; /** * Class SectionDataTypeTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class SectionDa...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/unit/Models/DataTest.php
tests/unit/Models/DataTest.php
<?php namespace NerdsAndCompany\Schematic\Models; use Symfony\Component\Yaml\Yaml; use Codeception\Test\Unit; /** * Class DataTest. * * @author Nerds & Company * @copyright Copyright (c) 2015-2019, Nerds & Company * @license MIT * * @see http://www.nerds.company */ class DataTest extends Unit { ...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/_support/UnitTester.php
tests/_support/UnitTester.php
<?php /** * Inherited Methods. * * @method void wantToTest($text) * @method void wantTo($text) * @method void execute($callable) * @method void expectTo($prediction) * @method void expect($prediction) * @method void...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
nerds-and-company/schematic
https://github.com/nerds-and-company/schematic/blob/e7a101fabf1cef492c5acc6f880c84a647b8b63e/tests/_support/Helper/Unit.php
tests/_support/Helper/Unit.php
<?php namespace Helper; use Craft; use Yii; use craft\console\Application; use yii\console\Controller; use craft\i18n\I18n; use craft\services\Assets; use craft\services\AssetTransforms; use craft\services\Categories; use craft\services\Content; use craft\services\Elements; use craft\services\ElementIndexes; use craf...
php
MIT
e7a101fabf1cef492c5acc6f880c84a647b8b63e
2026-01-05T04:59:46.951375Z
false
ahmadnassri/restful-zend-framework
https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Controller.php
Controller.php
<?php /** * REST Controller default actions * */ abstract class REST_Controller extends Zend_Controller_Action { /** * The index action handles index/list requests; it should respond with a * list of the requested resources. */ public function indexAction() { $this->notAllowed(); ...
php
MIT
1a030f213a133336e9f8caa325ea7c002dc5ef41
2026-01-05T04:59:58.834463Z
false
ahmadnassri/restful-zend-framework
https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Request.php
Request.php
<?php class REST_Request extends Zend_Controller_Request_Http { private $_error = false; public function setError($code, $message) { $this->_error = new stdClass; $this->_error->code = $code; $this->_error->message = $message; return $this; } public function getErr...
php
MIT
1a030f213a133336e9f8caa325ea7c002dc5ef41
2026-01-05T04:59:58.834463Z
false