Skip to content

Commit

Permalink
broker implemented, still no real client
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljoyner committed Dec 14, 2019
0 parents commit 6031a13
Show file tree
Hide file tree
Showing 14 changed files with 6,133 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
vendor
.idea
.phpunit.result.cache

31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "dymantic/multilingual-posts-cloudinary",
"description": "Cloudinary media broker for dymantic/multilingual-posts",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Joyner",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"cloudinary/cloudinary_php": "^1.16"
},
"require-dev": {
"orchestra/testbench": "^4.4",
"phpunit/phpunit": "^8.5",
"dymantic/multilingual-posts": "^0.7.4"
},
"autoload": {
"psr-4": {
"Dymantic\\MultilingualPostsCloudinary\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dymantic\\MultilingualPostsCloudinary\\Tests\\": "tests"
}
}
}
Loading

0 comments on commit 6031a13

Please sign in to comment.