Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Normalise and cleanup of composer.json
  • Loading branch information
yesdevnull committed Feb 12, 2022
commit f6fdca344b33c6ac2e2abede158856a3bd24f7d3
23 changes: 14 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "codeception/module-phpbrowser",
"description": "Codeception module for testing web application over HTTP",
"keywords": [ "codeception", "http", "functional-testing" ],
"homepage": "https://codeception.com/",
"type": "library",
"license": "MIT",
"type": "library",
"keywords": [
"codeception",
"http",
"functional-testing"
],
"authors": [
{
"name": "Michael Bodnarchuk"
Expand All @@ -13,31 +16,33 @@
"name": "Gintautas Miselis"
}
],
"minimum-stability": "dev",
"homepage": "https://codeception.com/",
"require": {
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4",
"codeception/lib-innerbrowser": "^2.0 | *@dev",
"codeception/codeception": "^5.0.0-alpha1"
"codeception/codeception": "dev-5.0-interfaces as 5.0.0",
"codeception/lib-innerbrowser": "^2.0 || *@dev",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"ext-curl": "*",
"aws/aws-sdk-php": "^3.199",
"codeception/module-rest": "^2.0 | *@dev"
"codeception/module-rest": "^2.0 || *@dev"
},
"conflict": {
"codeception/codeception": "<5.0"
},
"suggest": {
"codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
},
"minimum-stability": "dev",
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"classmap-authoritative": true
"classmap-authoritative": true,
"sort-packages": true
}
}