Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Fekete committed Feb 23, 2016
0 parents commit 7e216f8
Show file tree
Hide file tree
Showing 5 changed files with 680 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Created by .ignore support plugin (hsz.mobi)
### Laravel template
/bootstrap/compiled.php
.env.*.php
.env.php
.env
### 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
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio

*.iml

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries

# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml

# Gradle:
# .idea/gradle.xml
# .idea/libraries

# Mongo Explorer plugin:
# .idea/mongoSettings.xml

## File-based project format:
*.ipr
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties

22 changes: 22 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "voov/billingo-api-laravel",
"description": "Billingo API Provider for Laravel 5+",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Daniel Fekete",
"email": "daniel.fekete@voov.hu"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.*|5.2.*",
"voov/billingo-api-connector": "1.*"
},
"autoload": {
"psr-4": {
"Billingo\\API\\Laravel\\": "src"
}
}
}
Loading

0 comments on commit 7e216f8

Please sign in to comment.