mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
More updates
This commit is contained in:
@@ -1,11 +0,0 @@
|
|||||||
phpunit.xml
|
|
||||||
composer.phar
|
|
||||||
composer.lock
|
|
||||||
composer-test.lock
|
|
||||||
vendor/
|
|
||||||
build/artifacts/
|
|
||||||
artifacts/
|
|
||||||
docs/_build
|
|
||||||
docs/*.pyc
|
|
||||||
.idea
|
|
||||||
.DS_STORE
|
|
||||||
1
lib/influxdb-php/vendor/psr/log/.gitignore
vendored
1
lib/influxdb-php/vendor/psr/log/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
vendor
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
# eclipse
|
|
||||||
.buildpath
|
|
||||||
.project
|
|
||||||
.settings/
|
|
||||||
|
|
||||||
# PHP prj
|
|
||||||
build/
|
|
||||||
cache.properties
|
|
||||||
|
|
||||||
# composer
|
|
||||||
vendor/
|
|
||||||
composer.lock
|
|
||||||
|
|
||||||
# travis
|
|
||||||
travis/
|
|
||||||
|
|
||||||
# bin
|
|
||||||
composer.phar
|
|
||||||
php-cs-fixer.phar
|
|
||||||
|
|
||||||
.coveralls.yml
|
|
||||||
5
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/apigen.neon
vendored
Normal file
5
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/apigen.neon
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
main: Contrib
|
||||||
|
title: php-coveralls
|
||||||
|
internal: yes
|
||||||
|
todo: yes
|
||||||
|
wipeout: yes
|
||||||
31
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/phpcs.xml
vendored
Normal file
31
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/phpcs.xml
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<ruleset name="PHP">
|
||||||
|
<description>The coding standard for standard PHP application</description>
|
||||||
|
<exclude-pattern>*/img/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/images/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/less/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/css/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/js/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*.html</exclude-pattern>
|
||||||
|
<exclude-pattern>*.twig</exclude-pattern>
|
||||||
|
<exclude-pattern>*.yml</exclude-pattern>
|
||||||
|
<exclude-pattern>*.xml</exclude-pattern>
|
||||||
|
<exclude-pattern>*.txt</exclude-pattern>
|
||||||
|
<exclude-pattern>*.less</exclude-pattern>
|
||||||
|
<exclude-pattern>*.css</exclude-pattern>
|
||||||
|
<exclude-pattern>*.js</exclude-pattern>
|
||||||
|
<exclude-pattern>*.jpg</exclude-pattern>
|
||||||
|
<exclude-pattern>*.jpeg</exclude-pattern>
|
||||||
|
<exclude-pattern>*.png</exclude-pattern>
|
||||||
|
<exclude-pattern>*.gif</exclude-pattern>
|
||||||
|
|
||||||
|
<!-- Include the whole PSR-2 standard -->
|
||||||
|
<rule ref="PSR2"/>
|
||||||
|
<rule ref="Generic.Files.LineLength">
|
||||||
|
<properties>
|
||||||
|
<property name="lineLimit" value="140"/>
|
||||||
|
<property name="absoluteLineLimit" value="0"/>
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
</ruleset>
|
||||||
45
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/phpmd.xml
vendored
Normal file
45
lib/influxdb-php/vendor/satooshi/php-coveralls/build/config/phpmd.xml
vendored
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<ruleset name="My first PHPMD rule set"
|
||||||
|
xmlns="http://pmd.sf.net/ruleset/1.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0
|
||||||
|
http://pmd.sf.net/ruleset_xml_schema.xsd"
|
||||||
|
xsi:noNamespaceSchemaLocation="
|
||||||
|
http://pmd.sf.net/ruleset_xml_schema.xsd">
|
||||||
|
|
||||||
|
<description>My custom rule set that checks my code...</description>
|
||||||
|
|
||||||
|
<!-- Import the entire unused code rule set -->
|
||||||
|
<rule ref="rulesets/unusedcode.xml" />
|
||||||
|
<rule ref="rulesets/design.xml" />
|
||||||
|
|
||||||
|
<rule ref="rulesets/naming.xml">
|
||||||
|
<exclude name="ShortVariable"/>
|
||||||
|
<exclude name="LongVariable"/>
|
||||||
|
</rule>
|
||||||
|
<rule ref="rulesets/naming.xml/ShortVariable">
|
||||||
|
<properties>
|
||||||
|
<property name="minimum" value="2" />
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
<rule ref="rulesets/naming.xml/LongVariable">
|
||||||
|
<properties>
|
||||||
|
<property name="maximum" value="30" />
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
<rule ref="rulesets/codesize.xml">
|
||||||
|
<exclude name="TooManyMethods"/>
|
||||||
|
<exclude name="ExcessiveClassComplexity"/>
|
||||||
|
</rule>
|
||||||
|
<rule ref="rulesets/codesize.xml/TooManyMethods">
|
||||||
|
<properties>
|
||||||
|
<property name="maxmethods" value="20" />
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
<rule ref="rulesets/codesize.xml/ExcessiveClassComplexity">
|
||||||
|
<properties>
|
||||||
|
<property name="maximum" value="70" />
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
</ruleset>
|
||||||
0
lib/influxdb-php/vendor/satooshi/php-coveralls/travis/empty
vendored
Normal file
0
lib/influxdb-php/vendor/satooshi/php-coveralls/travis/empty
vendored
Normal file
Reference in New Issue
Block a user