Repository Config
build:
dependencies:
before:
- currentDir=$(pwd)
- tempDir=$(mktemp -d)
- curl -sSL -o "$tempDir/cphalcon" https://codeload.github.com/phalcon/cphalcon/tar.gz/v3.4.3
- tar -C "$tempDir" -xzf "$tempDir/cphalcon"
- cd "$tempDir"/cphalcon-3.4.3/build
- ./install
- cd "$currentDir"
- rm -rf "$tempDir"
- echo 'extension=phalcon.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
nodes:
analysis:
environment:
php:
version: 7.2
cache:
directories:
- ~/.composer/cache
project_setup:
override: true
tests:
override:
- php-scrutinizer-run
-
command: phpcs-run
use_website_config: true
checks:
php:
code_rating: true
duplication: true
argument_type_checks: true
assignment_of_null_return: true
catch_class_exists: true
closure_use_modifiable: true
closure_use_not_conflicting: true
deprecated_code_usage: true
method_calls_on_non_object: true
missing_arguments: true
no_non_implemented_abstract_methods: true
no_property_on_interface: true
parameter_non_unique: true
precedence_in_conditions: true
precedence_mistakes: true
require_php_tag_first: true
security_vulnerabilities: true
sql_injection_vulnerabilities: true
too_many_arguments: true
unreachable_code: true
unused_methods: true
unused_parameters: true
unused_properties: true
unused_variables: true
use_statement_alias_conflict: true
useless_calls: true
variable_existence: true
verify_access_scope_valid: true
verify_argument_usable_as_reference: true
verify_property_names: true
simplify_boolean_return: true
return_doc_comments: true
remove_extra_empty_lines: true
properties_in_camelcaps: true
phpunit_assertions: true
parameters_in_camelcaps: true
parameter_doc_comments: true
overriding_parameter: true
no_short_variable_names:
minimum: '2'
no_long_variable_names:
maximum: '20'
no_goto: true
more_specific_types_in_doc_comments: false
check_method_contracts:
verify_interface_like_constraints: true
verify_documented_constraints: true
verify_parent_constraints: true
deadlock_detection_in_loops: true
require_scope_for_methods: true
property_assignments: true
parse_doc_comments: true
overriding_private_members: true
no_trait_type_hints: true
no_trailing_whitespace: true
no_short_open_tag: true
no_exit: true
no_eval: true
no_error_suppression: true
no_debug_code: true
return_in_constructor: true
instanceof_class_exists: true
foreach_traversable: true
call_to_parent_method: true
avoid_superglobals: true
avoid_length_functions_in_loops: true
avoid_duplicate_types: true
avoid_closing_tag: true
encourage_shallow_comparison: true