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

Add missing author block #34

Merged
merged 3 commits into from
Jul 26, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 5 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,8 @@ dist: trusty

sudo: false

matrix:
include:
-
php: 7.1
env:
- SYMFONY_VERSION="3.4.*"
-
php: 7.1
env:
- SYMFONY_VERSION="4.1.*"
-
php: 7.2
env:
- SYMFONY_VERSION="3.4.*"
-
php: 7.2
env:
- SYMFONY_VERSION="4.1.*"
php:
- 7.2

cache:
yarn: true
Expand All @@ -33,6 +17,9 @@ env:
global:
- SYLIUS_CACHE_DIR=$HOME/.sylius-cache
- SYLIUS_BUILD_DIR=etc/build
matrix:
- SYMFONY_VERSION="3.4.*"
- SYMFONY_VERSION="4.1.*"

before_install:
- phpenv config-rm xdebug.ini
Expand Down
15 changes: 11 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
"type": "sylius-plugin",
"description": "Sylius plugin that enables order reordering for a customer",
"license": "MIT",
"authors": [
{
"name": "Bartosz Pietrzak",
"homepage": "/~https://github.com/bartoszpietrzak1994"
}
],
"require": {
"php": "^7.1",
"php": "^7.2",

"sylius/sylius": "^1.2"
"sylius/sylius": "~1.3.0",
"symfony/symfony": "^3.4|^4.1"
},
"require-dev": {
"behat/behat": "^3.3",
"behat/behat": "^3.4",
"behat/mink": "^1.7@dev",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2",
Expand All @@ -23,9 +30,9 @@
"phpspec/phpspec": "^4.0",
"phpstan/phpstan-shim": "^0.9.2",
"phpunit/phpunit": "^6.5",
"se/selenium-server-standalone": "^2.52",
"sylius-labs/coding-standard": "^2.0"
},
"minimum-stability": "dev",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need it?

Copy link
Contributor Author

@bartoszpietrzak1994 bartoszpietrzak1994 Jul 26, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we provide Sylius in version ~1.3.0, which basically means dev-master for now, minimum-stability: dev is needed

"prefer-stable": true,
"autoload": {
"psr-4": {
Expand Down
3 changes: 0 additions & 3 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ parameters:
# Test dependencies
- 'tests/Application/app/**.php'
- 'tests/Application/src/**.php'

ignoreErrors:
- '/Parameter #2 \$message of method Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface::add\(\) expects string, array<string, array<string, mixed>|string> given\./'