-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from spryker-middleware/dev
Release 1.1.0
- Loading branch information
Showing
250 changed files
with
1,041 additions
and
573 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,4 +1,4 @@ | ||
/** | ||
* MIT License | ||
* For full license information, please view the LICENSE file that was distributed with this source code. | ||
* Copyright © 2016-present Spryker Systems GmbH. All rights reserved. | ||
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file. | ||
*/ |
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,27 +1,47 @@ | ||
language: php | ||
|
||
sudo: false | ||
|
||
php: | ||
- 7.1 | ||
notifications: | ||
email: false | ||
|
||
env: | ||
global: | ||
- DEFAULT=1 | ||
sudo: required | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- php: 7.2 | ||
env: PHPCS=1 DEFAULT=0 | ||
- php: "7.1" | ||
|
||
fast_finish: true | ||
services: | ||
- postgresql | ||
- redis | ||
- rabbitmq | ||
|
||
before_script: | ||
- composer install --prefer-dist --no-interaction | ||
addons: | ||
postgresql: 9.4 | ||
|
||
script: | ||
- sh -c "if [ '$DEFAULT' = '1' ]; then vendor/bin/codecept run; fi" | ||
- sh -c "if [ '$PHPCS' = '1' ]; then composer cs-check ; fi" | ||
apt: | ||
packages: | ||
- graphviz | ||
|
||
notifications: | ||
email: false | ||
hosts: | ||
- zed.de.spryker.test | ||
- www.de.spryker.test | ||
|
||
env: | ||
global: | ||
- APPLICATION_ENV=devtest | ||
- APPLICATION_STORE=DE | ||
- MODULE_DIR=module | ||
- SHOP_DIR=current | ||
- MODULE_NAME=process | ||
|
||
cache: | ||
directories: | ||
- $SHOP_DIR/current/vendor | ||
- $HOME/.composer/cache | ||
|
||
before_install: | ||
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini | ||
|
||
script: | ||
- git clone -b master https://github.com/spryker-middleware/middleware-ci.git middleware-ci | ||
- ./middleware-ci/build/travis.sh |
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,21 +1,35 @@ | ||
The MIT License (MIT) | ||
SPRYKER SYSTEMS GMBH – SPRYKER MIDDLEWARE LICENSE AGREEMENT | ||
|
||
Copyright (c) 2016-present Spryker Systems GmbH | ||
SPRYKER SYSTEMS GMBH, REGISTERED WITH THE COMMERCIAL REGISTER OF THE | ||
LOWER COURT OF HAMBURG UNDER HRB 134310 (“WE” OR ”SPRYKER”) GRANTS YOU (THE | ||
“LICENSEE”) THE RIGHT TO USE THE SPRYKER MIDDLEWARE (AS DEFINED BELOW) UNDER | ||
THE PROVISIONS OF THIS SPRYKER MIDDLEWARE LICENSE AGREEMENT (THE “AGREEMENT”). | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The “SPRYKER MIDDLEWARE” includes any software owned and distributed by Spryker under this | ||
Agreement. The SPRYKER MIDDLEWARE contains elements of open source components, to which | ||
different license terms apply respectively. These open source components are needed to be installed | ||
separately. Spryker will grant to Licensee a license based on the general Software License Agreement | ||
of the Spryker Commerce OS, which is mandatory to be signed between Spryker and Licensee prior | ||
to Licensee’s use of the SPRYKER MIDDLEWARE. For referrence of the terms and conditions of | ||
Spryker’s general Software License Agreement, please get in contact with [email protected] or | ||
[email protected]. | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
Licensee shall not (i) use the SPRYKER MIDDLEWARE to set up a productive live system, | ||
for development purposes or any other purposes; (ii) copy any part of the SPRYKER MIDDLEWARE (iii) | ||
distribute, disclose, market, rent, lease, or transfer the SPRYKER MIDDLEWARE or act as a service | ||
bureau with respect to the SPRYKER MIDDLEWARE; (iv) export the SPRYKER MIDDLEWARE or | ||
install it in multiple locations; (v) disclose any confidential information provided by Spryker; (vi) modify | ||
or make derivative works of the SPRYKER MIDDLEWARE; or (vii) allow others to make or obtain | ||
copies of the SPRYKER MIDDLEWARE, unless it is permitted in the general Software License | ||
Agreement, which has been concluded between Spryker and the Licensee. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
This Agreement shall be governed by the laws of Germany to the exclusion of IPR (International Law) | ||
and the United Nations Conventionon Contracts for the International Sale of Goods (CISG). The | ||
Parties consent to the jurisdiction of the courts in Berlin (Germany). This Agreement is not assignable | ||
or transferable by Licensee and any attempt to do so is null and void. This Agreement and the general | ||
Software License Agreement of the Spryker Commerce OS constitutes the entire agreement between | ||
the Parties concerning Licensee’s use of SPRYKER MIDDLEWARE. This Agreement supersedes any | ||
prior verbal understanding between the Parties and any Licensee purchase order or other ordering | ||
document, regardless of whether such document is received by Spryker before or after execution of | ||
this Agreement. This Agreement may be amended only in a writing signed by an authorized officer | ||
of Spryker. |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"defaultLevel": 5 | ||
} |
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Service/Process/Model/StreamServiceInterface.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Service/Process/ProcessDependencyProvider.php
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
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Service/Process/ProcessServiceFactory.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Service/Process/ProcessServiceInterface.php
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
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
7 changes: 5 additions & 2 deletions
7
src/SprykerMiddleware/Shared/Process/Stream/ReadStreamInterface.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Shared/Process/Stream/StreamInterface.php
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
7 changes: 5 additions & 2 deletions
7
src/SprykerMiddleware/Shared/Process/Stream/WriteStreamInterface.php
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
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Zed/Process/Business/ArrayManager/ArrayManager.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Zed/Process/Business/ArrayManager/ArrayManagerInterface.php
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
4 changes: 2 additions & 2 deletions
4
...kerMiddleware/Zed/Process/Business/ConfigurationSnapshot/ConfigurationSnapshotBuilder.php
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
4 changes: 2 additions & 2 deletions
4
...ware/Zed/Process/Business/ConfigurationSnapshot/ConfigurationSnapshotBuilderInterface.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Zed/Process/Business/Exception/InvalidItemException.php
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
4 changes: 2 additions & 2 deletions
4
src/SprykerMiddleware/Zed/Process/Business/Exception/InvalidReadSourceException.php
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
Oops, something went wrong.