Skip to content
This repository has been archived by the owner on Oct 16, 2019. It is now read-only.

Commit

Permalink
2.2.0 readiness
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerkus committed Mar 15, 2017
2 parents dd43112 + 1d0ab17 commit 5c5bde6
Show file tree
Hide file tree
Showing 102 changed files with 91 additions and 29 deletions.
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/doc export-ignore
/test export-ignore
/.coveralls.yml export-ignore
/.docheader export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ matrix:
before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
- travis_retry composer self-update
- cp tests/TestConfiguration.php.travis tests/TestConfiguration.php
- cp test/TestConfiguration.php.travis test/TestConfiguration.php

install:
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.1.1 - TBD
## 2.2.0 - 2017-03-15

### Added

- Nothing.

### Changed

- [#69](https://github.com/zendframework/ZendService_Amazon/pull/69) changed
folder structure to PSR-4. No action is needed if you use composer to install
package.

### Deprecated

- Nothing.
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"homepage": "http://packages.zendframework.com/",
"license": "BSD-3-Clause",
"autoload": {
"psr-0": {
"ZendService\\Amazon\\": "library/"
"psr-4": {
"ZendService\\Amazon\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"ZendServiceTest\\Amazon\\": "tests/"
"psr-4": {
"ZendServiceTest\\Amazon\\": "test/"
}
},
"require": {
Expand All @@ -41,8 +41,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-develop": "2.2.x-dev"
"dev-master": "2.2.x-dev",
"dev-develop": "2.3.x-dev"
}
},
"scripts": {
Expand All @@ -56,6 +56,6 @@
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader check library/ tests/"
"license-check": "vendor/bin/docheader check src/ test/"
}
}
74 changes: 60 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<rule ref="./vendor/zendframework/zend-coding-standard/ruleset.xml"/>

<!-- Paths to check -->
<file>library</file>
<file>tests</file>
<file>src</file>
<file>test</file>
<exclude-pattern>*/_files/*</exclude-pattern>

<!-- Ignore warnings related to implementing a PHP interface -->
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>*/Amazon/S3/Stream.php</exclude-pattern>
<exclude-pattern>*/S3/Stream.php</exclude-pattern>
</rule>
</ruleset>
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<phpunit bootstrap="./tests/Bootstrap.php" colors="true">
<phpunit bootstrap="./test/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="ZendService Amazon Test Suite">
<directory>./tests/ZendServiceTest</directory>
<directory>./test</directory>
</testsuite>
</testsuites>

Expand All @@ -13,7 +13,7 @@

<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./library</directory>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5c5bde6

Please sign in to comment.