Skip to content

Commit

Permalink
fix: illuminate/database version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
nelson6e65 committed Apr 14, 2024
1 parent ee527b0 commit 1ed8090
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 42 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ dynamodb_local_test.db
.idea

.phpunit.result.cache

/node_modules
84 changes: 42 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "baopham/dynamodb",
"description": "Eloquent syntax for DynamoDB",
"keywords": [
"laravel",
"dynamodb",
"aws"
],
"require": {
"aws/aws-sdk-php": "^3.0.0",
"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",
"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"
},
"license": "MIT",
"authors": [
{
"name": "Bao Pham",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BaoPham\\DynamoDb\\": "src/"
}
},
"require-dev": {
"orchestra/testbench": "~3.0 || ~5.0|^8.0"
},
"scripts": {
"test": "phpunit",
"dynamodb_local": "java -Djava.library.path=./DynamoDBLocal_lib -jar dynamodb_local/DynamoDBLocal.jar --port 3000"
},
"autoload-dev": {
"psr-4": {
"BaoPham\\DynamoDb\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"BaoPham\\DynamoDb\\DynamoDbServiceProvider"
]
}
"name": "baopham/dynamodb",
"description": "Eloquent syntax for DynamoDB",
"keywords": [
"laravel",
"dynamodb",
"aws"
],
"require": {
"aws/aws-sdk-php": "^3.0.0",
"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",
"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"
},
"license": "MIT",
"authors": [
{
"name": "Bao Pham",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BaoPham\\DynamoDb\\": "src/"
}
},
"require-dev": {
"orchestra/testbench": "~3.0 || ~5.0|^8.0"
},
"scripts": {
"test": "phpunit",
"dynamodb_local": "java -Djava.library.path=./DynamoDBLocal_lib -jar dynamodb_local/DynamoDBLocal.jar --port 3000"
},
"autoload-dev": {
"psr-4": {
"BaoPham\\DynamoDb\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"BaoPham\\DynamoDb\\DynamoDbServiceProvider"
]
}
}
}

0 comments on commit 1ed8090

Please sign in to comment.