-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated Rakuten PHP SDK PSR-4. #23
Conversation
PEAR naming convention dropped in favor of namespacing.
}, | ||
"autoload": { | ||
"psr-0": {"RakutenRws_": "lib/"} | ||
"psr-4": { | ||
"RakutenRws\\": "lib/RakutenRws/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since Rws is short for Rakuten Web Service, RakutenRws
is verbose.
RakutenWebService
or RWS
looks better to me. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about Rakuten\WebService\
to keep things under a single Rakuten
namespace?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5.5 or earlier versions have reached EoL. those versions should be removed from supported versions of this package, I think.
} | ||
], | ||
"require": { | ||
"php": ">=5.2.3", | ||
"php": ">=5.3.19", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5.5 or earlier versions have reached EoL. the version range should be >= 5.6.0
.
PEAR naming convention dropped in favor of namespacing.
Fixes #13 and #14.