Skip to content

Commit

Permalink
Re init project
Browse files Browse the repository at this point in the history
  • Loading branch information
clagiordano committed Mar 3, 2017
0 parents commit 06b09bd
Show file tree
Hide file tree
Showing 11 changed files with 1,637 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 @@
composer.phar
vendor
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- hhvm

before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev

script: phpunit
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "clagiordano/marketplaces-data-export",
"description": "marketplaces-data-export is a library for generic data export from marketplaces",
"type": "library",
"license": "MIT",
"keywords": ["clagiordano", "marketplaces", "data", "export", "soap", "api", "rest"],
"authors": [
{
"name": "Claudio Giordano",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"clagiordano\\MarketplacesDataExport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"clagiordano\\MarketplacesDataExport\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6",
"econea/nusoap": "v0.9.5.1",
"clagiordano/weblibs-configmanager": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "5.*"
}
}
Loading

0 comments on commit 06b09bd

Please sign in to comment.