Skip to content

Commit ed9b3ea

Browse files
author
Peter Klooster
committed
Changed line endings
1 parent 9679226 commit ed9b3ea

File tree

11 files changed

+1055
-1055
lines changed

11 files changed

+1055
-1055
lines changed

composer.json

Lines changed: 48 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,48 @@
1-
{
2-
"name": "proai/eloquent-versioning",
3-
"description": "An extension for the Eloquent ORM to support versioning.",
4-
"keywords": [
5-
"laravel",
6-
"orm",
7-
"eloquent",
8-
"revision",
9-
"version",
10-
"versioned",
11-
"versioning",
12-
"audit"
13-
],
14-
"homepage": "http://github.com/ProAI/eloquent-versioning",
15-
"license": "MIT",
16-
"authors": [
17-
{
18-
"name": "Markus J. Wetzel",
19-
"email": "markuswetzel@gmx.net"
20-
}
21-
],
22-
"require": {
23-
"php": ">=7.1",
24-
"illuminate/database": "5.*"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "^7.0",
28-
"mockery/mockery": "^1.0",
29-
"orchestra/testbench": "^3.6",
30-
"orchestra/database": "^3.6"
31-
},
32-
"autoload": {
33-
"psr-4": {
34-
"ProAI\\Versioning\\": "src/"
35-
}
36-
},
37-
"autoload-dev": {
38-
"psr-4": {
39-
"ProAI\\Versioning\\Tests\\": "tests/"
40-
}
41-
},
42-
"extra": {
43-
"branch-alias": {
44-
"dev-master": "1.0-dev"
45-
}
46-
}
47-
}
1+
{
2+
"name": "proai/eloquent-versioning",
3+
"description": "An extension for the Eloquent ORM to support versioning.",
4+
"keywords": [
5+
"laravel",
6+
"orm",
7+
"eloquent",
8+
"revision",
9+
"version",
10+
"versioned",
11+
"versioning",
12+
"audit",
13+
"audits"
14+
],
15+
"homepage": "http://github.com/ProAI/eloquent-versioning",
16+
"license": "MIT",
17+
"authors": [
18+
{
19+
"name": "Markus J. Wetzel",
20+
"email": "markuswetzel@gmx.net"
21+
}
22+
],
23+
"require": {
24+
"php": ">=7.1",
25+
"illuminate/database": "5.*"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^7.0",
29+
"mockery/mockery": "^1.0",
30+
"orchestra/testbench": "^3.6",
31+
"orchestra/database": "^3.6"
32+
},
33+
"autoload": {
34+
"psr-4": {
35+
"ProAI\\Versioning\\": "src/"
36+
}
37+
},
38+
"autoload-dev": {
39+
"psr-4": {
40+
"ProAI\\Versioning\\Tests\\": "tests/"
41+
}
42+
},
43+
"extra": {
44+
"branch-alias": {
45+
"dev-master": "1.0-dev"
46+
}
47+
}
48+
}

phpunit.xml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnError="false"
11-
stopOnFailure="false"
12-
syntaxCheck="true"
13-
verbose="true"
14-
>
15-
<testsuites>
16-
<testsuite name="Versioning Test Suite">
17-
<directory suffix="Test.php">./tests</directory>
18-
</testsuite>
19-
</testsuites>
20-
<filter>
21-
<whitelist processUncoveredFilesFromWhitelist="true">
22-
<directory suffix=".php">./src</directory>
23-
</whitelist>
24-
</filter>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnError="false"
11+
stopOnFailure="false"
12+
syntaxCheck="true"
13+
verbose="true"
14+
>
15+
<testsuites>
16+
<testsuite name="Versioning Test Suite">
17+
<directory suffix="Test.php">./tests</directory>
18+
</testsuite>
19+
</testsuites>
20+
<filter>
21+
<whitelist processUncoveredFilesFromWhitelist="true">
22+
<directory suffix=".php">./src</directory>
23+
</whitelist>
24+
</filter>
2525
</phpunit>

src/Builder.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<?php
2-
3-
namespace ProAI\Versioning;
4-
5-
use Illuminate\Database\Eloquent\Builder as BaseBuilder;
6-
7-
class Builder extends BaseBuilder
8-
{
9-
use BuilderTrait;
1+
<?php
2+
3+
namespace ProAI\Versioning;
4+
5+
use Illuminate\Database\Eloquent\Builder as BaseBuilder;
6+
7+
class Builder extends BaseBuilder
8+
{
9+
use BuilderTrait;
1010
}

0 commit comments

Comments
 (0)