-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
||
matrix: | ||
allow_failures: | ||
- php: hhvm | ||
|
||
sudo: false | ||
|
||
before_install: | ||
- travis_retry composer self-update | ||
|
||
install: | ||
- travis_retry composer update --prefer-dist --no-interaction --prefer-stable | ||
|
||
script: vendor/bin/phpunit |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,24 +7,41 @@ | |
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Shogo Kawahara", | ||
"email": "shogo.a.kawahara@mail.rakuten.com" | ||
"name": "Andrew Miller", | ||
"email": "andrew.miller@rakuten.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.2.3", | ||
"php": ">=5.3.19", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
"ext-openssl": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.*", | ||
"pear-pear.php.net/HTTP_Client": "*" | ||
}, | ||
"suggest": { | ||
"ext-curl": "*", | ||
"pear-pear/HTTP_Client": "*" | ||
"pear-pear.php.net/HTTP_Client": "*" | ||
}, | ||
"autoload": { | ||
"psr-0": {"RakutenRws_": "lib/"} | ||
"psr-4": { | ||
"RakutenRws\\": "lib/RakutenRws/" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since Rws is short for Rakuten Web Service, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks good! |
||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"RakutenRws\\": "test/RakutenRws/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "pear", | ||
"url": "https://pear.php.net" | ||
} | ||
], | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.1.x-dev" | ||
"dev-master": "2.0.x-dev" | ||
} | ||
} | ||
} |
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.