diff options
author | Mario <mario@mariovavti.com> | 2020-05-07 15:23:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-07 15:23:30 +0000 |
commit | c76ff4249ec0f88832a9ce6c966a2fd326482197 (patch) | |
tree | 6a7cf372eafb957002fa2c0a969a61dd5a084bf2 /vendor/sabre/event | |
parent | dbfe748d274f6843fc91a3071df7be45c4ab5b00 (diff) | |
download | volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.gz volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.bz2 volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.zip |
add new files
Diffstat (limited to 'vendor/sabre/event')
-rw-r--r-- | vendor/sabre/event/.php_cs.dist | 12 | ||||
-rw-r--r-- | vendor/sabre/event/phpstan.neon | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/vendor/sabre/event/.php_cs.dist b/vendor/sabre/event/.php_cs.dist new file mode 100644 index 000000000..c5c78a971 --- /dev/null +++ b/vendor/sabre/event/.php_cs.dist @@ -0,0 +1,12 @@ +<?php + +$config = PhpCsFixer\Config::create(); +$config->getFinder() + ->exclude('vendor') + ->in(__DIR__); +$config->setRules([ + '@PSR1' => true, + '@Symfony' => true +]); + +return $config;
\ No newline at end of file diff --git a/vendor/sabre/event/phpstan.neon b/vendor/sabre/event/phpstan.neon new file mode 100644 index 000000000..213da6dad --- /dev/null +++ b/vendor/sabre/event/phpstan.neon @@ -0,0 +1,2 @@ +parameters: + level: 1 |