forked from Behat/MinkExtension
-
Notifications
You must be signed in to change notification settings - Fork 31
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 #28 from uuf6429/chore/update-composer-json
Normalize composer.json
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 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,15 +1,14 @@ | ||
{ | ||
"name": "friends-of-behat/mink-extension", | ||
"type": "behat-extension", | ||
"description": "Mink extension for Behat", | ||
"license": "MIT", | ||
"type": "behat-extension", | ||
"keywords": [ | ||
"web", | ||
"test", | ||
"browser", | ||
"gui" | ||
], | ||
"homepage": "http://extensions.behat.org/mink", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Konstantin Kudryashov", | ||
|
@@ -20,27 +19,28 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"homepage": "https://github.com/FriendsOfBehat/MinkExtension#readme", | ||
"require": { | ||
"php": ">=7.4", | ||
"php": "^7.4 || ^8", | ||
"behat/behat": "^3.0.5", | ||
"behat/mink": "^1.5", | ||
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0" | ||
}, | ||
"replace": { | ||
"behat/mink-extension": "self.version" | ||
}, | ||
"require-dev": { | ||
"behat/mink-goutte-driver": "^1.1 || ^2.0", | ||
"phpspec/phpspec": "^6.0 || ^7.0 || 7.1.x-dev" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.1.x-dev" | ||
} | ||
"replace": { | ||
"behat/mink-extension": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"Behat\\MinkExtension": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.1.x-dev" | ||
} | ||
} | ||
} |