-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: illuminate/database version constraint
- Loading branch information
1 parent
ee527b0
commit 1ed8090
Showing
2 changed files
with
44 additions
and
42 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 |
---|---|---|
|
@@ -7,3 +7,5 @@ dynamodb_local_test.db | |
.idea | ||
|
||
.phpunit.result.cache | ||
|
||
/node_modules |
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,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" | ||
] | ||
} | ||
} | ||
} |