Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsbrugs committed Mar 13, 2017
0 parents commit 490072b
Show file tree
Hide file tree
Showing 9 changed files with 2,798 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
TODO.txt
vendor/*
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: php

php:
- 7

before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --no-interaction

script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml

after_success:
- travis_retry php vendor/bin/coveralls -v
22 changes: 22 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "hugsbrugs/php-array",
"description": "PHP Array Utilities",
"authors": [
{
"name": "Hugo Maugey",
"email": "[email protected]"
}
],
"require": {
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload":{
"psr-4": {"Hug\\": "src/Hug/"}
},
"autoload-dev": {
"psr-4": { "Hug\\Tests\\": "tests/Hug/" }
}
}
Loading

0 comments on commit 490072b

Please sign in to comment.