forked from janerikvw/PHP-iTunes-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed namespace issue for autoload dump.
- Loading branch information
Chirag Chudasama
committed
May 1, 2020
1 parent
02d989c
commit 1cd2812
Showing
2 changed files
with
19 additions
and
2 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,11 +1,24 @@ | ||
{ | ||
"name": "zgetro/php-i-tunes-api", | ||
"description": "just a wrapper of itune open api.", | ||
"description": "just a wrapper of itune open api. https://github.com/ijanerik/PHP-iTunes-API", | ||
"keywords": ["A super simple API for reading the iTunes content.", "iTunes content", "iTunes lookup","iTunes search"], | ||
"authors": [ | ||
{ | ||
"name": "Chirag Chudasama", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": {} | ||
"license": "MIT License", | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"autoload":{ | ||
"psr-0": { | ||
"zgetro\\PHPiTunesAPI\\" : "src/" | ||
}, | ||
"psr-4": { | ||
"zgetro\\PHPiTunesAPI\\" : "src/" | ||
} | ||
} | ||
} |
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