Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.2 support #114

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# EditorConfig helps keep your project formatting consistent.
# See https://EditorConfig.org
#
# PHP PSR-2 Coding Standards
# http://www.php-fig.org/psr/psr-2/
#
# Author: Sal Ferrarello (@salcode)
#
# You can download this file directly
# to your project from the command-line with
# curl -O https://gist.githubusercontent.com/salcode/18eaa8cfa3b097da2f58b582197906d7/raw/.editorconfig

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[*.php]
indent_size = 4

[*.(json|lock)]
indent_size = 4

[*.md]
trim_trailing_whitespace = false
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,19 @@ IndieLogin

IndieLogin enables users to sign in with their domain name by linking their domain name to existing authentication providers.

[Read more on the Wiki](https://indieweb.org/indielogin.com)


## Development

To run a local copy for development:

1. Copy `.env.example` to `.env` and fill out the details

2. Start a development webserver:

```sh
composer start
```

3. Open your webbrowser to `http://localhost:8080`
48 changes: 29 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,40 @@
{
"require": {
"league/route": "^3.0",
"league/plates": "^3.3",
"abraham/twitteroauth": "^6.2.0",
"guzzlehttp/guzzle": "^6.3",
"indieauth/client": "~1.1",
"p3k/utils": "^1.2",
"zendframework/zend-diactoros": "^1.7",
"p3k/http": "^0.1.7",
"mf2/mf2": "^0.4.6",
"indieweb/link-rel-parser": "^0.1.3",
"predis/predis": "^1.1",
"abraham/twitteroauth": "^0.7.4",
"monolog/monolog": "^1.23",
"mailgun/mailgun-php": "^2.5",
"php-http/guzzle6-adapter": "^1.1",
"j4mie/idiorm": "^1.5",
"laminas/laminas-diactoros": "^3.0",
"laminas/laminas-httphandlerrunner": "^2.10",
"league/plates": "^3.3",
"league/route": "^3.0",
"mailgun/mailgun-php": "^4.0",
"masterminds/html5": "^2.7",
"mf2/mf2": "^0.4.6",
"michelf/php-markdown": "^1.8",
"vlucas/phpdotenv": "^4.1",
"masterminds/html5": "^2.7"
"monolog/monolog": "^1.23",
"p3k/http": "^0.1.7",
"p3k/utils": "^1.2",
"php-http/guzzle6-adapter": "^2.0",
"predis/predis": "^1.1",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"lib/helpers.php"
]
"psr-4": {
"App\\": "app/"
},
"files": [
"lib/helpers.php"
]
},
"config": {
"sort-packages": true
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 public/index.php public/"
]
}
}
Loading