-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into wip/config-writer-replacement
- Loading branch information
Showing
38 changed files
with
3,748 additions
and
1,254 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,4 +9,5 @@ composer.lock | |
|
||
# Other files | ||
.DS_Store | ||
php_errors.log | ||
php_errors.log | ||
.phpunit.result.cache |
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,4 +1,10 @@ | ||
Winter Storm | ||
======= | ||
|
||
This repository contains the core library for Winter CMS. If you want to build a website using Winter, visit the main [Winter repository](http://github.com/wintercms/winter). | ||
[![Tests](https://img.shields.io/github/workflow/status/wintercms/storm/Tests/develop?label=tests&style=flat-square)](https://github.com/wintercms/storm/actions) | ||
[![License](https://img.shields.io/github/license/wintercms/storm?label=open%20source&style=flat-square)](https://packagist.org/packages/winter/storm) | ||
[![Discord](https://img.shields.io/discord/816852513684193281?label=discord&style=flat-square)](https://discord.gg/D5MFSPH6Ux) | ||
|
||
This repository contains the core library for Winter CMS. If you want to build a website using Winter, visit the main [Winter repository](https://github.com/wintercms/winter). | ||
|
||
Please report any library issues to the [main Winter repository](https://github.com/wintercms/winter/issues/new/choose). |
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,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" | ||
> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./src/</directory> | ||
</include> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="Storm Library Test Suite"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php namespace Winter\Storm\Auth; | ||
|
||
use Config; | ||
use Winter\Storm\Exception\ApplicationException; | ||
use Exception; | ||
use Lang; | ||
|
||
/** | ||
* Used when user authorization fails. Implements a softer error message. | ||
* | ||
* @author Luke Towers | ||
*/ | ||
class AuthorizationException extends ApplicationException | ||
{ | ||
|
||
} |
Oops, something went wrong.