Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

Commit

Permalink
Adds tests 👍
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeymakinen committed Nov 24, 2016
1 parent 2beba5c commit 5f27b9c
Show file tree
Hide file tree
Showing 36 changed files with 1,894 additions and 22 deletions.
17 changes: 10 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/composer.lock export-ignore
/phpunit.xml.dist export-ignore
/doc export-ignore
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.sensiolabs.yml export-ignore

/composer.lock export-ignore
/phpunit.xml.dist export-ignore

/doc export-ignore
/tests export-ignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/tests/runtime
/vendor
6 changes: 4 additions & 2 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
build:
environment:
php:
version: 5.6.16
version: 5.6
dependencies:
before:
- sudo composer self-update
- composer config -g repositories.asset-packagist composer https://asset-packagist.org
imports:
- php
tools:
php_sim: false
php_cpd: false
php_sim: false
filter:
excluded_paths:
- docs/*
- tests/*
- vendor/*
6 changes: 6 additions & 0 deletions .sensiolabs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
exclude_patterns:
- docs/*
- tests/*
- vendor/*
- "*.jpg"
- "*.png"
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@
"require": {
"yiisoft/yii2": "~2.0.1"
},
"require-dev": {
"phpunit/phpunit": "^5.4"
},
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"sergeymakinen\\facades\\": ""
"sergeymakinen\\facades\\": "src"
}
}
}
Loading

0 comments on commit 5f27b9c

Please sign in to comment.