-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump deepdiver1975/tarstreamer to 2.1.0 in master
Signed-off-by: Côme Chilliet <[email protected]>
- Loading branch information
Showing
10 changed files
with
320 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<?php | ||
/** | ||
* @author Patrick Jahns <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2018, ownCloud GmbH | ||
* @license GPL-2.0 | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the Free | ||
* Software Foundation; either version 2 of the License, or (at your option) | ||
* any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
*/ | ||
|
||
return [ | ||
|
||
// Supported values: '7.2', '7.3', '7.4', '8.0', null. | ||
// If this is set to null, | ||
// then Phan assumes the PHP version which is closest to the minor version | ||
// of the php executable used to execute phan. | ||
'target_php_version' => null, | ||
|
||
// A list of directories that should be parsed for class and | ||
// method information. After excluding the directories | ||
// defined in exclude_analysis_directory_list, the remaining | ||
// files will be statically analyzed for errors. | ||
// | ||
// Thus, both first-party and third-party code being used by | ||
// your application should be included in this list. | ||
'directory_list' => [ | ||
'src', | ||
'vendor', | ||
], | ||
|
||
// A list of files to include in analysis | ||
'file_list' => [ | ||
], | ||
|
||
// A directory list that defines files that will be excluded | ||
// from static analysis, but whose class and method | ||
// information should be included. | ||
// | ||
// Generally, you'll want to include the directories for | ||
// third-party code (such as "vendor/") in this list. | ||
// | ||
// n.b.: If you'd like to parse but not analyze 3rd | ||
// party code, directories containing that code | ||
// should be added to both the `directory_list` | ||
// and `exclude_analysis_directory_list` arrays. | ||
'exclude_analysis_directory_list' => [ | ||
'vendor', | ||
], | ||
|
||
// A regular expression to match files to be excluded | ||
// from parsing and analysis and will not be read at all. | ||
// | ||
// This is useful for excluding groups of test or example | ||
// directories/files, unanalyzable files, or files that | ||
// can't be removed for whatever reason. | ||
// (e.g. '@Test\.php$@', or '@vendor/.*/(tests|Tests)/@') | ||
'exclude_file_regex' => '@.*/[^/]*(tests|Tests|templates)/@', | ||
|
||
// If true, missing properties will be created when | ||
// they are first seen. If false, we'll report an | ||
// error message. | ||
"allow_missing_properties" => false, | ||
|
||
// If enabled, allow null to be cast as any array-like type. | ||
// This is an incremental step in migrating away from null_casts_as_any_type. | ||
// If null_casts_as_any_type is true, this has no effect. | ||
"null_casts_as_any_type" => true, | ||
|
||
// Backwards Compatibility Checking. This is slow | ||
// and expensive, but you should consider running | ||
// it before upgrading your version of PHP to a | ||
// new version that has backward compatibility | ||
// breaks. | ||
'backward_compatibility_checks' => false, | ||
|
||
// The initial scan of the function's code block has no | ||
// type information for `$arg`. It isn't until we see | ||
// the call and rescan test()'s code block that we can | ||
// detect that it is actually returning the passed in | ||
// `string` instead of an `int` as declared. | ||
'quick_mode' => false, | ||
|
||
// The minimum severity level to report on. This can be | ||
// set to Issue::SEVERITY_LOW, Issue::SEVERITY_NORMAL or | ||
// Issue::SEVERITY_CRITICAL. Setting it to only | ||
// critical issues is a good place to start on a big | ||
// sloppy mature code base. | ||
'minimum_severity' => 5, | ||
|
||
// A set of fully qualified class-names for which | ||
// a call to parent::__construct() is required | ||
'parent_constructor_required' => [ | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
$config = new OC\CodingStandard\Config(); | ||
|
||
$config | ||
->setUsingCache(true) | ||
->getFinder() | ||
->in(__DIR__) | ||
->exclude('build') | ||
->exclude('vendor-bin') | ||
->exclude('vendor'); | ||
|
||
return $config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
SHELL := /bin/bash | ||
|
||
COMPOSER_BIN := $(shell command -v composer 2> /dev/null) | ||
|
||
# bin file definitions | ||
PHPUNIT=php -d zend.enable_gc=0 vendor/bin/phpunit | ||
PHPUNITDBG=phpdbg -qrr -d memory_limit=4096M -d zend.enable_gc=0 vendor/bin/phpunit | ||
PHP_CS_FIXER=php -d zend.enable_gc=0 vendor-bin/owncloud-codestyle/vendor/bin/php-cs-fixer | ||
PHAN=php -d zend.enable_gc=0 vendor-bin/phan/vendor/bin/phan | ||
PHPSTAN=php -d zend.enable_gc=0 vendor-bin/phpstan/vendor/bin/phpstan | ||
|
||
.PHONY: clean | ||
clean: clean-deps | ||
|
||
# Installs and updates the composer dependencies. | ||
.PHONY: composer | ||
composer: | ||
composer install --prefer-dist | ||
composer update --prefer-dist | ||
|
||
##------------ | ||
## Tests | ||
##------------ | ||
|
||
.PHONY: test-php-unit | ||
test-php-unit: ## Run php unit tests | ||
test-php-unit: vendor/bin/phpunit | ||
$(PHPUNIT) --configuration ./phpunit.xml --testsuite TarStreamer | ||
|
||
.PHONY: test-php-unit-dbg | ||
test-php-unit-dbg: ## Run php unit tests using phpdbg | ||
test-php-unit-dbg: vendor/bin/phpunit | ||
$(PHPUNITDBG) --configuration ./phpunit.xml --testsuite TarStreamer | ||
|
||
.PHONY: test-php-style | ||
test-php-style: ## Run php-cs-fixer and check owncloud code-style | ||
test-php-style: vendor-bin/owncloud-codestyle/vendor | ||
$(PHP_CS_FIXER) fix -v --diff --allow-risky yes --dry-run | ||
|
||
.PHONY: test-php-style-fix | ||
test-php-style-fix: ## Run php-cs-fixer and fix code style issues | ||
test-php-style-fix: vendor-bin/owncloud-codestyle/vendor | ||
$(PHP_CS_FIXER) fix -v --diff --allow-risky yes | ||
|
||
.PHONY: test-php-phan | ||
test-php-phan: ## Run phan | ||
test-php-phan: vendor-bin/phan/vendor | ||
$(PHAN) --config-file .phan/config.php --require-config-exists | ||
|
||
.PHONY: test-php-phpstan | ||
test-php-phpstan: ## Run phpstan | ||
test-php-phpstan: vendor-bin/phpstan/vendor | ||
$(PHPSTAN) analyse --memory-limit=4G --configuration=./phpstan.neon --no-progress --level=5 src | ||
|
||
.PHONY: clean-deps | ||
clean-deps: | ||
rm -rf ./vendor | ||
rm -Rf vendor-bin/**/vendor vendor-bin/**/composer.lock | ||
|
||
# | ||
# Dependency management | ||
#-------------------------------------- | ||
|
||
composer.lock: composer.json | ||
@echo composer.lock is not up to date. | ||
|
||
vendor: composer.lock | ||
composer install --no-dev | ||
|
||
vendor/bin/phpunit: composer.lock | ||
composer install | ||
|
||
vendor/bamarni/composer-bin-plugin: composer.lock | ||
composer install | ||
|
||
vendor-bin/owncloud-codestyle/vendor: vendor/bamarni/composer-bin-plugin vendor-bin/owncloud-codestyle/composer.lock | ||
composer bin owncloud-codestyle install --no-progress | ||
|
||
vendor-bin/owncloud-codestyle/composer.lock: vendor-bin/owncloud-codestyle/composer.json | ||
@echo owncloud-codestyle composer.lock is not up to date. | ||
|
||
vendor-bin/phan/vendor: vendor/bamarni/composer-bin-plugin vendor-bin/phan/composer.lock | ||
composer bin phan install --no-progress | ||
|
||
vendor-bin/phan/composer.lock: vendor-bin/phan/composer.json | ||
@echo phan composer.lock is not up to date. | ||
|
||
vendor-bin/phpstan/vendor: vendor/bamarni/composer-bin-plugin vendor-bin/phpstan/composer.lock | ||
composer bin phpstan install --no-progress | ||
|
||
vendor-bin/phpstan/composer.lock: vendor-bin/phpstan/composer.json | ||
@echo phpstan composer.lock is not up to date. |
Oops, something went wrong.