Skip to content

Commit

Permalink
🎉 created base setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Sep 19, 2021
0 parents commit f9bbee4
Show file tree
Hide file tree
Showing 7 changed files with 1,255 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

open_collective: leaf
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
test
Experimental
vendor
composer.lock
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!-- markdownlint-disable no-inline-html -->
<p align="center">
<br><br>
<img src="https://leafphp.netlify.app/assets/img/leaf3-logo.png" height="100"/>
<h1 align="center">Leaf Auth Module</h1>
<br><br>
</p>

# Leaf PHP

[![Latest Stable Version](https://poser.pugx.org/leafs/auth/v/stable)](https://packagist.org/packages/leafs/auth)
[![Total Downloads](https://poser.pugx.org/leafs/auth/downloads)](https://packagist.org/packages/leafs/auth)
[![License](https://poser.pugx.org/leafs/auth/license)](https://packagist.org/packages/leafs/auth)

Leaf's auth helper packaged as a serve-yourself module.

## Installation

You can easily install Leaf using [Composer](https://getcomposer.org/).

```bash
composer require leafs/auth
```

## View Leaf's docs [here](https://leafphp.netlify.app/#/)

Built with ❤ by [**Mychi Darko**](https://mychi.netlify.app)
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "leafs/auth",
"description": "Leaf PHP auth helper",
"keywords": [
"authentication",
"simple auth",
"login",
"register",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.netlify.app/#/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\": "src"
}
},
"minimum-stability": "stable",
"require": {
"leafs/password": "^1.0",
"leafs/session": "^1.0",
"leafs/db": "^1.0",
"leafs/form": "^1.0",
"leafs/http": "^1.0"
}
}
Loading

0 comments on commit f9bbee4

Please sign in to comment.