Skip to content

Commit a57b55c

Browse files
authored
Update connector logic and dependencies (#7)
1 parent 48e1bea commit a57b55c

File tree

7 files changed

+131
-164
lines changed

7 files changed

+131
-164
lines changed

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Exclude files that don't need to be present in packages (so they're not downloaded by Composer)
22
/.gitattributes export-ignore
33
/.gitignore export-ignore
4-
/Robofile.php export-ignore
54
/*.md export-ignore
65
/*.yml export-ignore

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2011 Michael Bodnarchuk and contributors
3+
Copyright (c) 2011-2020 Michael Bodnarchuk and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
{
2-
"name":"codeception/module-laravel",
3-
"description":"Codeception module for Laravel framework",
4-
"keywords":["codeception", "laravel"],
5-
"homepage":"http://codeception.com/",
6-
"type":"library",
7-
"license":"MIT",
8-
"authors":[
2+
"name": "codeception/module-laravel",
3+
"description": "Codeception module for Laravel framework",
4+
"keywords": ["codeception", "laravel"],
5+
"homepage": "https://codeception.com/",
6+
"type": "library",
7+
"license": "MIT",
8+
"authors": [
99
{
1010
"name":"Jan-Henk Gerritsen"
1111
},
1212
{
13-
"name":"Michael Bodnarchuk"
13+
"name": "Michael Bodnarchuk"
14+
},
15+
{
16+
"name": "Gustavo Nieves",
17+
"homepage": "https://medium.com/@ganieves"
1418
}
1519
],
1620
"minimum-stability": "RC",
1721
"require": {
18-
"php": ">=5.6.0 <9.0",
19-
"codeception/lib-innerbrowser": "^1.0",
22+
"php": "^7.3 | ^8.0",
23+
"codeception/lib-innerbrowser": "^1.3",
2024
"codeception/codeception": "^4.0"
2125
},
2226
"require-dev": {
23-
"codeception/module-asserts": "^1.0",
24-
"codeception/module-rest": "^1.0"
27+
"codeception/module-asserts": "^1.3",
28+
"codeception/module-rest": "^1.2"
2529
},
26-
"autoload":{
30+
"autoload": {
2731
"classmap": ["src/"]
2832
},
2933
"config": {

0 commit comments

Comments
 (0)