Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rampmaster committed Jun 19, 2016
1 parent 6b88908 commit c002722
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
# Created by .ignore support plugin (hsz.mobi)
### Example user template template
### Example user template

# IntelliJ project files
.idea
*.iml
out
gen### Composer template
composer.phar
/vendor/

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock

3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,3 @@
## 0.0.1 (June 19, 2016) ##

* Upload project struct
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,7 @@
## Contributing

1. Fork it ( https://github.com/openfoodfacts/openfoodfacts-php/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
8 changes: 8 additions & 0 deletions README.md
@@ -1,2 +1,10 @@
# openfoodfacts-php
PHP wrapper for Open Food Facts

## Installation

With Composer:

```bash
composer requiere openfoodfacts/php-client
```
28 changes: 28 additions & 0 deletions composer.json
@@ -0,0 +1,28 @@
{
"name": "openfoodfacts/php-client",
"description": "Open Food Facts API Wrapper, the open database about food.",
"homepage": "http://world.openfoodfacts.org/",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"version": "0.0.1",
"support": {
"email": "rmorenp@rampamster.org",
"issues": "https://github.com/openfoodfacts/openfoodfacts-php/issues",
"irc": "http://slack.openfoodfacts.org/",
"source": "https://github.com/openfoodfacts/openfoodfacts-php"
},
"authors": [
{
"name": "Roberto Moreno",
"email": "rmorenp@rampmaster.org",
"homepage": "http://www.rampmaster.org",
"role": "Wrapper Developer"
}
],
"autoload": {
"psr-4": {
"OFF\\": "src/"
}
}
}
1 change: 1 addition & 0 deletions doc/home.md
@@ -0,0 +1 @@
TODO

0 comments on commit c002722

Please sign in to comment.