File tree 6 files changed +28
-18
lines changed
6 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 9
9
" time" ,
10
10
" conversion"
11
11
],
12
+ "type" : " library" ,
13
+ "license" : " MIT" ,
14
+ "autoload" : {
15
+ "psr-4" : {
16
+ "Whitecube\\ LaravelTimezones\\ " : " src/"
17
+ }
18
+ },
19
+ "autoload-dev" : {
20
+ "psr-4" : {
21
+ "Whitecube\\ LaravelTimezones\\ Tests\\ " : " tests/"
22
+ }
23
+ },
12
24
"authors" : [
13
- {
14
- "name" : " Whitecube" ,
15
- "email" : " hello@whitecube.be"
16
- },
17
25
{
18
26
"name" : " Toon Van den Bos" ,
19
27
"email" : " toon@whitecube.be"
20
28
}
21
29
],
22
30
"require" : {
23
31
"php" : " >=8.1" ,
24
- "laravel/framework" : " ^9|^10|^11.0 " ,
32
+ "laravel/framework" : " ^9|^10|^11" ,
25
33
"nesbot/carbon" : " ^2.64|^3.0"
26
34
},
27
- "autoload" : {
28
- "psr-4" : {
29
- "Whitecube\\ LaravelTimezones\\ " : " src/" ,
30
- "Whitecube\\ LaravelTimezones\\ Tests\\ " : " tests/"
31
- }
35
+ "require-dev" : {
36
+ "mockery/mockery" : " ^1.6" ,
37
+ "pestphp/pest" : " ^2.34"
32
38
},
33
39
"extra" : {
34
40
"laravel" : {
37
43
]
38
44
}
39
45
},
40
- "require-dev" : {
41
- "pestphp/pest" : " ^1.22|^2.34" ,
42
- "mockery/mockery" : " ^1.6"
43
- },
44
46
"config" : {
45
47
"allow-plugins" : {
46
48
"pestphp/pest-plugin" : true
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5 /phpunit.xsd"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.3 /phpunit.xsd"
4
4
bootstrap =" vendor/autoload.php"
5
5
colors =" true"
6
- cacheDirectory =" .phpunit.cache"
7
6
>
8
7
<testsuites >
9
8
<testsuite name =" Test Suite" >
12
11
</testsuites >
13
12
<source >
14
13
<include >
15
- <directory suffix =" .php" >./app</directory >
16
14
<directory suffix =" .php" >./src</directory >
17
15
</include >
18
16
</source >
Original file line number Diff line number Diff line change 17
17
|
18
18
*/
19
19
20
- // uses(Tests\TestCase::class)->in('Feature ');
20
+ uses (\ Whitecube \ LaravelTimezones \ Tests \TestCase::class)->in ('Unit ' );
21
21
22
22
/*
23
23
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Whitecube \LaravelTimezones \Tests ;
4
+
5
+ use PHPUnit \Framework \TestCase as BaseTestCase ;
6
+
7
+ class TestCase extends BaseTestCase
8
+ {
9
+ //
10
+ }
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments