Skip to content

Commit

Permalink
Merge branch 'issue-13' into develop
Browse files Browse the repository at this point in the history
Close #13
  • Loading branch information
wandersonwhcr committed Jan 29, 2018
2 parents 29a0904 + 9b32614 commit 35e7780
Show file tree
Hide file tree
Showing 7 changed files with 891 additions and 14 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/phpcs.xml.dist export-ignore
/phpmd.xml export-ignore
/phpunit.xml.dist export-ignore
/puppet export-ignore
/test export-ignore
/Vagrantfile export-ignore
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: php
php:
- 7.0
- 7.1
- 7.2

install:
- composer install

script:
- composer test
18 changes: 16 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
"illuminate/support": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"doctrine/instantiator": "^1.0",
"illuminate/container": "^5.5",
"illuminate/contracts": "^5.5"
"illuminate/contracts": "^5.5",
"jakub-onderka/php-parallel-lint": "^0.9",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6.3",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
Expand All @@ -27,6 +32,15 @@
"IlluminateTest\\Romans\\": "test/"
}
},
"scripts": {
"test": [
"parallel-lint src",
"phpunit",
"phpcpd src",
"phpmd src text phpmd.xml",
"phpcs"
]
},
"extras": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
Expand Down
Loading

0 comments on commit 35e7780

Please sign in to comment.