Skip to content

Commit c1dd5fa

Browse files
authored
Merge pull request #483 from Geolim4/final
Added licence header to scrutinizer config file
2 parents 67960f2 + 13692c6 commit c1dd5fa

File tree

357 files changed

+51
-46435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

357 files changed

+51
-46435
lines changed

.codeclimate.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ ratings:
5454
exclude_paths:
5555
- "bin/**"
5656
- "examples/**"
57+
- "docs/**"
5758
- "tests/**"

.scrutinizer.yml

Lines changed: 50 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,51 @@
1-
before_commands:
2-
- "composer install --no-dev --prefer-source"
3-
- "composer require predis/predis \"~1.1.0\""
4-
- "composer require mongodb/mongodb \"^1.1\""
5-
- "composer require phpfastcache/phpssdb ~1.0.0\""
6-
- "composer require phpfastcache/couchdb \"~1.0.0\""
7-
filter:
8-
excluded_paths: ["bin/*", "docs/*", "examples/*", "var/*", "vendor/*", "tests/*"]
9-
checks:
10-
php: true
11-
coding_style:
12-
php:
13-
spaces:
14-
around_operators:
15-
concatenation: true
16-
tools:
17-
external_code_coverage: false
18-
php_code_coverage: true
19-
php_code_sniffer:
20-
enabled: true
21-
config:
22-
standard: PSR2
23-
filter:
24-
paths: ["src/*"]
25-
php_mess_detector:
26-
enabled: true
27-
filter:
28-
paths: ["src/*"]
1+
#
2+
# This file is part of phpFastCache.
3+
#
4+
# @license MIT License (MIT)
5+
#
6+
# For full copyright and license information, please see the docs/CREDITS.txt file.
7+
#
8+
# @author Khoa Bui (khoaofgod) <[email protected]> http://www.phpfastcache.com
9+
# @author Georges.L (Geolim4) <[email protected]>
10+
#
11+
12+
before_commands:
13+
- "composer install --no-dev --prefer-source"
14+
- "composer require predis/predis \"~1.1.0\""
15+
- "composer require mongodb/mongodb \"^1.1\""
16+
- "composer require phpfastcache/phpssdb ~1.0.0\""
17+
- "composer require phpfastcache/couchdb \"~1.0.0\""
2918
build:
30-
environment:
31-
php:
32-
version: 5.6
33-
dependencies:
34-
before:
35-
- pecl install cassandra
19+
environment:
20+
php:
21+
version: 5.6
22+
checks:
23+
php: true
24+
coding_style:
25+
php:
26+
spaces:
27+
around_operators:
28+
concatenation: true
29+
filter:
30+
excluded_paths:
31+
- bin/*
32+
- docs/*
33+
- examples/*
34+
- var/*
35+
- vendor/*
36+
- tests/*
37+
tools:
38+
external_code_coverage: false
39+
php_code_coverage: true
40+
php_code_sniffer:
41+
config:
42+
standard: PSR2
43+
enabled: true
44+
filter:
45+
paths:
46+
- src/*
47+
php_mess_detector:
48+
enabled: true
49+
filter:
50+
paths:
51+
- src/*

0 commit comments

Comments
 (0)