-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from ARCANEDEV/develop
Adding Laravel 8 support
- Loading branch information
Showing
64 changed files
with
61 additions
and
114 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
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,30 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit backupGlobals="false" | ||
backupStaticAttributes="false" | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
> | ||
> | ||
<testsuites> | ||
<testsuite name="Package Test Suite"> | ||
<directory suffix=".php">./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">./src/</directory> | ||
</whitelist> | ||
</filter> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<report> | ||
<clover outputFile="build/coverage/clover.xml"/> | ||
<html outputDirectory="build/coverage/html"/> | ||
<text outputFile="build/coverage/coverage.txt" showOnlySummary="true"/> | ||
</report> | ||
</coverage> | ||
<php> | ||
<env name="APP_ENV" value="testing"/> | ||
</php> | ||
<logging> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
<log type="coverage-text" target="build/logs/coverage.txt"/> | ||
<log type="coverage-html" target="build/logs/coverage"/> | ||
</logging> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
/** | ||
* Interface Analytics | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Analytics extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface Description | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Description extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface Keywords | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Keywords extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface MetaCollection | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface MetaCollection extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface MiscTags | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface MiscTags extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface OpenGraph | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface OpenGraph extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface Title | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Title extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface TwitterCard | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities\Twitter | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface TwitterCard extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface Webmasters | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Webmasters extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface Meta | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Meta extends Renderable | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
/** | ||
* Interface Renderable | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface Renderable | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
/** | ||
* Interface SeoHelper | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface SeoHelper extends Renderable | ||
|
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 |
---|---|---|
|
@@ -4,19 +4,16 @@ | |
|
||
namespace Arcanedev\SeoHelper\Contracts; | ||
|
||
use Arcanedev\SeoHelper\Contracts\Entities\{ | ||
Analytics as AnalyticsContract, | ||
Description as DescriptionContract, | ||
Keywords as KeywordsContract, | ||
MiscTags as MiscTagsContract, | ||
Title as TitleContract, | ||
Webmasters as WebmastersContract | ||
}; | ||
use Arcanedev\SeoHelper\Contracts\Entities\Analytics as AnalyticsContract; | ||
use Arcanedev\SeoHelper\Contracts\Entities\Description as DescriptionContract; | ||
use Arcanedev\SeoHelper\Contracts\Entities\Keywords as KeywordsContract; | ||
use Arcanedev\SeoHelper\Contracts\Entities\MiscTags as MiscTagsContract; | ||
use Arcanedev\SeoHelper\Contracts\Entities\Title as TitleContract; | ||
use Arcanedev\SeoHelper\Contracts\Entities\Webmasters as WebmastersContract; | ||
|
||
/** | ||
* Interface SeoMeta | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface SeoMeta extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface SeoOpenGraph | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface SeoOpenGraph extends Renderable | ||
|
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,7 +9,6 @@ | |
/** | ||
* Interface SeoTwitter | ||
* | ||
* @package Arcanedev\SeoHelper\Contracts | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
interface SeoTwitter extends Renderable | ||
|
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 |
---|---|---|
|
@@ -11,9 +11,8 @@ | |
use Illuminate\Support\Collection; | ||
|
||
/** | ||
* Class MetaCollection | ||
* Class AbstractMetaCollection | ||
* | ||
* @package Arcanedev\SeoHelper\Bases | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
abstract class AbstractMetaCollection extends Collection implements MetaCollectionContract | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
/** | ||
* Class Analytics | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class Analytics implements AnalyticsContract | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
/** | ||
* Class Description | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class Description implements DescriptionContract | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
/** | ||
* Class Keywords | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class Keywords implements KeywordsContract | ||
|
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,7 +9,6 @@ | |
/** | ||
* Class MetaCollection | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class MetaCollection extends AbstractMetaCollection | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
/** | ||
* Class MiscTags | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class MiscTags implements MiscTagsContract | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
/** | ||
* Class Graph | ||
* | ||
* @package Arcanedev\SeoHelper\Entities\OpenGraph | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class Graph implements OpenGraphContract | ||
|
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,7 +9,6 @@ | |
/** | ||
* Class MetaCollection | ||
* | ||
* @package Arcanedev\SeoHelper\Entities\OpenGraph | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class MetaCollection extends AbstractMetaCollection | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
/** | ||
* Class Title | ||
* | ||
* @package Arcanedev\SeoHelper\Entities | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class Title implements TitleContract | ||
|
Oops, something went wrong.