Skip to content

Commit

Permalink
Merge pull request #1 from samcrosoft/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
samcrosoft authored Jan 26, 2017
2 parents c5b49c7 + 94fb276 commit 277686f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "samcrosoft/cloudinary",
"description": "description here",
"version": "1.1.0",
"version": "1.2.0",
"description": "Laravel Based Cloudinary PHP SDK",
"keywords": [
"laravel",
"laravel5",
"cloudinary",
"image manipulation",
"cloud",
"image management"
],
"type": "library",
"homepage": "https://github.com/samcrooft/cloudinary",
"homepage": "https://github.com/samcrosoft/Laravel5-Cloudinary",
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0",
"cloudinary/cloudinary_php": "~1.0"
"illuminate/support": "^5.2",
"cloudinary/cloudinary_php": "^1.4.0"
},
"license": "MIT",
"authors": [
Expand All @@ -25,8 +25,8 @@
}
],
"autoload": {
"psr-0": {
"Samcrosoft\\Cloudinary": "src/"
"psr-4": {
"Samcrosoft\\Cloudinary\\": "src/app/"
}
},
"minimum-stability": "stable"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function register()
public function boot()
{
$this->publishes([
__DIR__ . '/../../../config/cloudinary.php' => config_path('cloudinary.php')
__DIR__ . '/../../config/cloudinary.php' => config_path('cloudinary.php')
]);
}

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions src/config/cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
|
*/

'cloudName' => '',
'cloudName' => env('CLOUDINARY_CLOUD_NAME', ''),
'baseUrl' => '',
'secureUrl' => '',
'apiBaseUrl' => '',
'apiKey' => '',
'apiSecret' => '',
'apiKey' => env('CLOUDINARY_API_KEY', ''),
'apiSecret' => env('CLOUDINARY_API_SECRET', ''),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 277686f

Please sign in to comment.