-
Notifications
You must be signed in to change notification settings - Fork 22
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 cdb3126
Showing
14 changed files
with
2,024 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 @@ | ||
{"pluginName":"GraphQL Authentication","pluginDescription":"GraphQL authentication for your headless Craft CMS applications.","pluginVersion":"1.0.0","pluginAuthorName":"James Edmonston","pluginVendorName":"jamesedmonston","pluginAuthorUrl":"jamesedmonston.co.uk","pluginAuthorGithub":"jamesedmonston/graphql-authentication","codeComments":"","pluginComponents":"","consolecommandName":"","controllerName":"","cpsectionName":"","elementName":"","fieldName":"","modelName":"","purchasableName":"","recordName":"","serviceName":"","taskName":"","utilityName":"","widgetName":"","apiVersion":"api_version_3_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,32 @@ | ||
# CRAFT ENVIRONMENT | ||
.env.php | ||
.env.sh | ||
.env | ||
|
||
# COMPOSER | ||
/vendor | ||
|
||
# BUILD FILES | ||
/bower_components/* | ||
/node_modules/* | ||
/build/* | ||
/yarn-error.log | ||
|
||
# MISC FILES | ||
.cache | ||
.DS_Store | ||
.idea | ||
.project | ||
.settings | ||
*.esproj | ||
*.sublime-workspace | ||
*.sublime-project | ||
*.tmproj | ||
*.tmproject | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
config.codekit3 | ||
prepros-6.config |
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,11 @@ | ||
# GraphQL Authentication Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## 1.0.0 - 2020-10-29 | ||
|
||
### Added | ||
|
||
- Initial release |
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 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2020 James Edmonston | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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,41 @@ | ||
# GraphQL Authentication plugin for Craft CMS 3.5+ | ||
|
||
GraphQL authentication for your headless Craft CMS applications. | ||
|
||
## Requirements | ||
|
||
This plugin requires Craft CMS 3.5 or later. | ||
|
||
## Installation | ||
|
||
To install the plugin, follow these instructions. | ||
|
||
1. Open your terminal and go to your Craft project: | ||
|
||
cd /path/to/project | ||
|
||
2. Then tell Composer to load the plugin: | ||
|
||
composer require jamesedmonston/graphql-authentication | ||
|
||
3. In the Control Panel, go to Settings → Plugins and click the “Install” button for GraphQL Authentication. | ||
|
||
## GraphQL Authentication Overview | ||
|
||
-Insert text here- | ||
|
||
## Configuring GraphQL Authentication | ||
|
||
-Insert text here- | ||
|
||
## Using GraphQL Authentication | ||
|
||
-Insert text here- | ||
|
||
## GraphQL Authentication Roadmap | ||
|
||
Some things to do, and ideas for potential features: | ||
|
||
- Release it | ||
|
||
Brought to you by [James Edmonston](https://github.com/jamesedmonston) |
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,43 @@ | ||
{ | ||
"name": "jamesedmonston/graphql-authentication", | ||
"description": "GraphQL authentication for your headless Craft CMS applications.", | ||
"type": "craft-plugin", | ||
"version": "1.0.0", | ||
"keywords": [ | ||
"craft", | ||
"cms", | ||
"craftcms", | ||
"craft-plugin", | ||
"graphql", | ||
"authentication", | ||
"graphql-authentication" | ||
], | ||
"support": { | ||
"docs": "https://github.com/jamesedmonston/graphql-authentication/blob/master/README.md", | ||
"issues": "https://github.com/jamesedmonston/graphql-authentication/issues" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "James Edmonston", | ||
"homepage": "jamesedmonston.co.uk" | ||
} | ||
], | ||
"require": { | ||
"craftcms/cms": "^3.5.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"jamesedmonston\\graphqlauthentication\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"name": "GraphQL Authentication", | ||
"handle": "graphql-authentication", | ||
"developer": "James Edmonston", | ||
"developerUrl": "https://github.com/jamesedmonston", | ||
"documentationUrl": "https://github.com/jamesedmonston/graphql-authentication/blob/master/README.md", | ||
"changelogUrl": "https://raw.githubusercontent.com/jamesedmonston/graphql-authentication/master/CHANGELOG.md", | ||
"class": "jamesedmonston\\graphqlauthentication\\GraphqlAuthentication" | ||
} | ||
} |
Oops, something went wrong.