-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package auto discovery feature compatibility from Laravel 5.5
- Loading branch information
Showing
2 changed files
with
33 additions
and
37 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
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,22 +1,36 @@ | ||
{ | ||
"name": "cooperl/laravel-db2", | ||
"description": "laravel-db2 is a simple DB2 service provider for Laravel. It provides DB2 Connection by extending the Illuminate Database component of the laravel framework.", | ||
"keywords": ["laravel", "DB2", "Database", "PDO", "ODBC"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Maxime Rault", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.6.4" | ||
}, | ||
"require-dev": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Cooperl\\Database\\DB2\\": "src/" | ||
} | ||
"name": "cooperl/laravel-db2", | ||
"description": "laravel-db2 is a simple DB2 service provider for Laravel. It provides DB2 Connection by extending the Illuminate Database component of the laravel framework.", | ||
"keywords": [ | ||
"laravel", | ||
"DB2", | ||
"Database", | ||
"PDO", | ||
"ODBC" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Maxime Rault", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.0.0", | ||
"laravel/framework": "5.5.*" | ||
}, | ||
"require-dev": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Cooperl\\Database\\DB2\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Cooperl\\Database\\DB2\\DB2ServiceProvider" | ||
] | ||
} | ||
} | ||
} |