Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsbrugs committed Apr 5, 2017
0 parents commit 4a8ecd4
Show file tree
Hide file tree
Showing 11 changed files with 2,555 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
TODO.txt
vendor/*
build/*
15 changes: 15 additions & 0 deletions .travis.yml
@@ -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
25 changes: 25 additions & 0 deletions composer.json
@@ -0,0 +1,25 @@
{
"name": "hugsbrugs/php-scripts",
"description": "PHP Scripts Utilities",
"authors": [
{
"name": "Hugo Maugey",
"email": "hugo@maugey.fr",
"homepage": "https://hugo.maugey.fr",
"role": "Developer"
}
],
"require": {
"hugsbrugs/php-filesystem": "dev-master"
},
"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/" }
}
}

0 comments on commit 4a8ecd4

Please sign in to comment.