Skip to content

Commit 1ed8090

Browse files
committed
fix: illuminate/database version constraint
1 parent ee527b0 commit 1ed8090

File tree

2 files changed

+44
-42
lines changed

2 files changed

+44
-42
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ dynamodb_local_test.db
77
.idea
88

99
.phpunit.result.cache
10+
11+
/node_modules

composer.json

+42-42
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
{
2-
"name": "baopham/dynamodb",
3-
"description": "Eloquent syntax for DynamoDB",
4-
"keywords": [
5-
"laravel",
6-
"dynamodb",
7-
"aws"
8-
],
9-
"require": {
10-
"aws/aws-sdk-php": "^3.0.0",
11-
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0| ^10.0 || ^11.0",
12-
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0| ^10.0 || v11.0"
13-
},
14-
"license": "MIT",
15-
"authors": [
16-
{
17-
"name": "Bao Pham",
18-
"email": "[email protected]"
19-
}
20-
],
21-
"autoload": {
22-
"psr-4": {
23-
"BaoPham\\DynamoDb\\": "src/"
24-
}
25-
},
26-
"require-dev": {
27-
"orchestra/testbench": "~3.0 || ~5.0|^8.0"
28-
},
29-
"scripts": {
30-
"test": "phpunit",
31-
"dynamodb_local": "java -Djava.library.path=./DynamoDBLocal_lib -jar dynamodb_local/DynamoDBLocal.jar --port 3000"
32-
},
33-
"autoload-dev": {
34-
"psr-4": {
35-
"BaoPham\\DynamoDb\\Tests\\": "tests/"
36-
}
37-
},
38-
"extra": {
39-
"laravel": {
40-
"providers": [
41-
"BaoPham\\DynamoDb\\DynamoDbServiceProvider"
42-
]
43-
}
2+
"name": "baopham/dynamodb",
3+
"description": "Eloquent syntax for DynamoDB",
4+
"keywords": [
5+
"laravel",
6+
"dynamodb",
7+
"aws"
8+
],
9+
"require": {
10+
"aws/aws-sdk-php": "^3.0.0",
11+
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
12+
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
13+
},
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Bao Pham",
18+
"email": "[email protected]"
4419
}
20+
],
21+
"autoload": {
22+
"psr-4": {
23+
"BaoPham\\DynamoDb\\": "src/"
24+
}
25+
},
26+
"require-dev": {
27+
"orchestra/testbench": "~3.0 || ~5.0|^8.0"
28+
},
29+
"scripts": {
30+
"test": "phpunit",
31+
"dynamodb_local": "java -Djava.library.path=./DynamoDBLocal_lib -jar dynamodb_local/DynamoDBLocal.jar --port 3000"
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"BaoPham\\DynamoDb\\Tests\\": "tests/"
36+
}
37+
},
38+
"extra": {
39+
"laravel": {
40+
"providers": [
41+
"BaoPham\\DynamoDb\\DynamoDbServiceProvider"
42+
]
43+
}
44+
}
4545
}

0 commit comments

Comments
 (0)