-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6dc1d74
Showing
4 changed files
with
67 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php namespace Igniter\Drivers; | ||
|
||
use System\Classes\BaseExtension; | ||
|
||
/** | ||
* Debugbar Extension Information File | ||
*/ | ||
class Extension extends BaseExtension | ||
{ | ||
/** | ||
* Returns information about this extension. | ||
* | ||
* @return array | ||
*/ | ||
public function extensionMeta() | ||
{ | ||
return [ | ||
'name' => 'Drivers', | ||
'author' => 'Igniter', | ||
'description' => 'Drivers.', | ||
'icon' => 'fa-bug', | ||
'version' => '1.0.0', | ||
]; | ||
} | ||
|
||
/** | ||
* Register method, called when the extension is first registered. | ||
* | ||
* @return void | ||
*/ | ||
public function register() | ||
{ | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Igniter Drivers extension provides drivers used when working with some third party services. | ||
|
||
The composer packages introduced by this extension are listed below: | ||
|
||
- **aws/aws-sdk-php** at version `~3.0` | ||
- **predis/predis** at version `~1.0` | ||
- **league/flysystem-rackspace** at version `~1.0` | ||
- **league/flysystem-aws-s3-v3** at version `~1.0` |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "igniter/drivers", | ||
"type": "igniter-extension", | ||
"require": { | ||
"php": ">=7.0.0", | ||
"aws/aws-sdk-php": "~3.0", | ||
"predis/predis": "~1.0", | ||
"league/flysystem-rackspace": "~1.0", | ||
"league/flysystem-aws-s3-v3": "~1.0" | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"code": "igniter.drivers", | ||
"name": "Third-party Drivers", | ||
"description": "Provides third party drivers for services such as predis, aws, etc", | ||
"version": "1.0.0", | ||
"author": "SamPoyigi", | ||
"icon": "fa-screwdriver", | ||
"homepage": "https://github.com/tastyigniter/ti-ext-drivers" | ||
} |