summaryrefslogtreecommitdiffstats
path: root/src/Validation/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/Validation/composer.json')
-rw-r--r--src/Validation/composer.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Validation/composer.json b/src/Validation/composer.json
new file mode 100644
index 0000000..e4de56a
--- /dev/null
+++ b/src/Validation/composer.json
@@ -0,0 +1,38 @@
+{
+ "name": "cakephp/validation",
+ "description": "CakePHP Validation library",
+ "type": "library",
+ "keywords": [
+ "cakephp",
+ "validation",
+ "data validation"
+ ],
+ "homepage": "https://cakephp.org",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "CakePHP Community",
+ "homepage": "https://github.com/cakephp/validation/graphs/contributors"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/cakephp/cakephp/issues",
+ "forum": "https://stackoverflow.com/tags/cakephp",
+ "irc": "irc://irc.freenode.org/cakephp",
+ "source": "https://github.com/cakephp/validation"
+ },
+ "require": {
+ "php": ">=5.6.0",
+ "cakephp/core": "^3.6.0",
+ "cakephp/utility": "^3.6.0",
+ "psr/http-message": "^1.0.0"
+ },
+ "suggest": {
+ "cakephp/i18n": "If you want to use Validation::localizedTime()"
+ },
+ "autoload": {
+ "psr-4": {
+ "Cake\\Validation\\": "."
+ }
+ }
+}