Skip to content

Commit ae1d87c

Browse files
committed
First.
0 parents  commit ae1d87c

14 files changed

+1191
-0
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
end_of_line = lf
4+
insert_final_newline = true
5+
indent_style = space
6+
indent_size = 4
7+
charset = utf-8
8+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/tests export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/.scrutinizer.yml export-ignore
6+
/.editorconfig export-ignore
7+
/phpunit.xml export-ignore

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor
2+
report

.scrutinizer.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
inherit: true
2+
tools:
3+
external_code_coverage: true
4+
checks:
5+
php:
6+
code_rating: true
7+
duplication: true
8+
filter:
9+
paths: [source/*, tests/*]

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: php
2+
php:
3+
- 5.5
4+
- 5.6
5+
before_script:
6+
- composer install --no-interaction --prefer-dist
7+
script:
8+
- vendor/bin/phpunit --coverage-clover=coverage.clover
9+
- wget https://scrutinizer-ci.com/ocular.phar
10+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
11+
- rm coverage.clover

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Changelog
2+
3+
Nothing to see. Move along!

composer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "typedphp/type-functions",
3+
"description": "",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Christopher Pitt",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"require": {
12+
"php": ">=5.4.0"
13+
},
14+
"autoload": {
15+
"files": [
16+
"source/TypeFunctions.php"
17+
]
18+
},
19+
"require-dev": {
20+
"php": ">=5.5.0",
21+
"phpunit/phpunit": "4.*"
22+
},
23+
"autoload-dev": {
24+
"files": [
25+
"tests/TestCase.php"
26+
],
27+
"psr-4": {
28+
"TypedPHP\\Functions\\TypeFunctions\\Tests\\": "tests"
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)