-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for symfony 5 with symfony/config ...|^5.0
by using branch of as described in Behat/MinkExtension#360
- Loading branch information
1 parent
a3c3c97
commit 40354e2
Showing
7 changed files
with
120 additions
and
36 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 |
---|---|---|
|
@@ -18,11 +18,17 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/chadyred/MinkExtension" | ||
} | ||
], | ||
"require": { | ||
"symfony/config": "^3.4", | ||
"php": ">=7.1", | ||
"behat/behat": "^3.0.5", | ||
"behat/mink-extension": "^2.0", | ||
"behat/mink-extension": "dev-upgrade/allow-symony-5 as 2.3", | ||
"robertfausk/mink-panther-driver": "^1.0" | ||
}, | ||
"require-dev": { | ||
|
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 |
---|---|---|
|
@@ -18,11 +18,17 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/chadyred/MinkExtension" | ||
} | ||
], | ||
"require": { | ||
"symfony/config": "^4.0", | ||
"php": ">=7.1", | ||
"behat/behat": "^3.0.5", | ||
"behat/mink-extension": "^2.0", | ||
"behat/mink-extension": "dev-upgrade/allow-symony-5 as 2.3", | ||
"robertfausk/mink-panther-driver": "^1.0" | ||
}, | ||
"require-dev": { | ||
|
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 @@ | ||
vendor |
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,57 @@ | ||
{ | ||
"name": "robertfausk/behat-panther-extension", | ||
"type": "behat-extension", | ||
"description": "Symfony Panther extension for Behat", | ||
"keywords": [ | ||
"behat", | ||
"symfony", | ||
"panther", | ||
"web", | ||
"test", | ||
"browser", | ||
"gui" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Robert Freigang", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/chadyred/MinkExtension" | ||
} | ||
], | ||
"require": { | ||
"symfony/config": "^5.0", | ||
"php": ">=7.1", | ||
"behat/behat": "^3.0.5", | ||
"behat/mink-extension": "dev-upgrade/allow-symony-5 as 2.3", | ||
"robertfausk/mink-panther-driver": "^1.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~7.5", | ||
"matthiasnoback/symfony-config-test": "^4.1", | ||
"g1a/composer-test-scenarios": "^3.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Robertfausk\\Behat\\PantherExtension\\": "../../src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "../../tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0.x-dev" | ||
} | ||
}, | ||
"config": { | ||
"vendor-dir": "../../vendor" | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -18,12 +18,18 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/chadyred/MinkExtension" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1", | ||
"behat/behat": "^3.0.5", | ||
"behat/mink-extension": "^2.0", | ||
"behat/mink-extension": "dev-upgrade/allow-symony-5 as 2.3", | ||
"robertfausk/mink-panther-driver": "^1.0", | ||
"symfony/config": "^3.4|^4.0" | ||
"symfony/config": "^3.4|^4.0|^5.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~7.5", | ||
|
@@ -45,6 +51,11 @@ | |
"dev-master": "1.0.x-dev" | ||
}, | ||
"scenarios": { | ||
"symfony5": { | ||
"require": { | ||
"symfony/config": "^5.0" | ||
} | ||
}, | ||
"symfony4": { | ||
"require": { | ||
"symfony/config": "^4.0" | ||
|