-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
15 changed files
with
283 additions
and
165 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,6 +1,7 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) Beyond Code GmbH <[email protected]> | ||
Copyright (c) for portions of laravel-credentials are held by Beyond Code GmbH <[email protected]> as part of project Bar. | ||
All other copyright for laravel-credentials are held by RTO GmbH <[email protected]>. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,13 +1,22 @@ | ||
{ | ||
"name": "beyondcode/laravel-credentials", | ||
"name": "rto-websites/laravel-credentials", | ||
"description": "Store and access encrypted credentials in your Laravel application.", | ||
"type": "library", | ||
"keywords": [ | ||
"beyondcode", | ||
"rto-websites", | ||
"laravel-credentials" | ||
], | ||
"homepage": "https://github.com/beyondcode/laravel-credentials", | ||
"homepage": "https://github.com/RTO-Websites/laravel-credentials", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/RTO-Websites/laravel-credentials/issues", | ||
"source": "https://github.com/RTO-Websites/laravel-credentials" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "RTO Websites", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Marcel Pociot", | ||
"email": "[email protected]", | ||
|
@@ -17,6 +26,7 @@ | |
], | ||
"require": { | ||
"php": "^7.1", | ||
"ext-json": "*", | ||
"illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0" | ||
}, | ||
"require-dev": { | ||
|
@@ -25,15 +35,15 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"BeyondCode\\Credentials\\": "src" | ||
"RtoWebsites\\Credentials\\": "src" | ||
}, | ||
"files": [ | ||
"src/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"BeyondCode\\Credentials\\Tests\\": "tests" | ||
"RtoWebsites\\Credentials\\Tests\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
|
@@ -47,7 +57,7 @@ | |
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"BeyondCode\\Credentials\\CredentialsServiceProvider" | ||
"RtoWebsites\\Credentials\\CredentialsServiceProvider" | ||
] | ||
} | ||
} | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,6 +1,6 @@ | ||
<?php | ||
|
||
namespace BeyondCode\Credentials\Exceptions; | ||
namespace RtoWebsites\Credentials\Exceptions; | ||
|
||
use Exception; | ||
|
||
|
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
Oops, something went wrong.