├── LICENSE.md ├── README.md ├── composer.json ├── config └── squeaky.php ├── resources └── lang │ ├── ar.json │ ├── en.json │ ├── it.json │ ├── nl.json │ └── pt_BR.json └── src ├── Enums └── Locale.php ├── Rules └── Clean.php └── SqueakyServiceProvider.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/composer.json -------------------------------------------------------------------------------- /config/squeaky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/config/squeaky.php -------------------------------------------------------------------------------- /resources/lang/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "حقل :attribute غير نظيف" 3 | } 4 | -------------------------------------------------------------------------------- /resources/lang/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "The :attribute field is not clean" 3 | } 4 | -------------------------------------------------------------------------------- /resources/lang/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Il campo :attribute non è pulito" 3 | } 4 | -------------------------------------------------------------------------------- /resources/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/resources/lang/nl.json -------------------------------------------------------------------------------- /resources/lang/pt_BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "O campo :attribute não está limpo." 3 | } 4 | -------------------------------------------------------------------------------- /src/Enums/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/src/Enums/Locale.php -------------------------------------------------------------------------------- /src/Rules/Clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/src/Rules/Clean.php -------------------------------------------------------------------------------- /src/SqueakyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonPurvis/squeaky/HEAD/src/SqueakyServiceProvider.php --------------------------------------------------------------------------------