-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix composer issues, author email change
Fixed some invalid composer settings, cleaned up spacing, and changed my email address to be correct.
- Loading branch information
1 parent
2e75262
commit f6d5677
Showing
1 changed file
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "masterexploder/PHPThumb", | ||
"name": "masterexploder/phpthumb", | ||
"type": "library", | ||
"license": "MIT", | ||
"description": "A library for manipulating images in PHP.", | ||
"keywords": ["image", "resize", "rotate"], | ||
"require": { | ||
"php": ">=5.3.0", | ||
"symfony/filesystem": "2.2.*" | ||
}, | ||
"php": ">=5.3.0", | ||
"symfony/filesystem": "2.2.*" | ||
}, | ||
"homepage": "https://github.com/masterexploder/PHPThumb", | ||
"authors": [ | ||
{ | ||
"name": "Ian Selby", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jarrod Nettles", | ||
"email": "jarrod@squarecrow.com" | ||
} | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Ian Selby", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jarrod Nettles", | ||
"email": "jarrod.nettles@icloud.com" | ||
} | ||
], | ||
|
||
"autoload": { | ||
"psr-0": { | ||
"PHPThumb": "src", | ||
"autoload": { | ||
"psr-0": { | ||
"PHPThumb": "src", | ||
"PHPThumb\\Tests": "tests" | ||
} | ||
}, | ||
|
||
"keywords": ["image", "resize", "rotate"] | ||
} | ||
} | ||
} |