Skip to content

Commit

Permalink
init repo
Browse files Browse the repository at this point in the history
  • Loading branch information
bzick committed Feb 23, 2016
0 parents commit f8e7a70
Show file tree
Hide file tree
Showing 14 changed files with 2,154 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea
vendor
build
composer.phar
!.gitkeep
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: php

sudo: false

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0

before_script:
- composer install --dev

script:
- phpunit
3 changes: 3 additions & 0 deletions authors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Project Founder and Developer:

- Ivan Shalganov <[email protected]>
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

{
"name": "fenom/providers-collection",
"type": "library",
"description": "Collection of additional providers",
"keywords": ["fenom", "loader", "tag", "provider", "multipath"],
"license": "BSD-3",
"authors": [
{
"name": "Ivan Shalganov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"fenom/fenom": "2.*",
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": { "Fenom\\": "src/" }
}
}
Loading

0 comments on commit f8e7a70

Please sign in to comment.