File tree 3 files changed +52
-16
lines changed
3 files changed +52
-16
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
All notable changes to ` laravel-client ` will be documented in this file.
4
+
5
+ 23-02-2024
6
+
7
+ First commit, for alpha release
Original file line number Diff line number Diff line change @@ -23,12 +23,7 @@ You can install the package via composer:
23
23
composer require eloquentize/laravel-client
24
24
```
25
25
26
- You can publish and run the migrations with:
27
26
28
- ``` bash
29
- php artisan vendor:publish --tag=" laravel-client-migrations"
30
- php artisan migrate
31
- ```
32
27
33
28
You can publish the config file with:
34
29
@@ -43,23 +38,14 @@ return [
43
38
];
44
39
```
45
40
46
- Optionally, you can publish the views using
47
-
48
- ``` bash
49
- php artisan vendor:publish --tag=" laravel-client-views"
50
- ```
51
41
52
42
## Usage
53
43
54
- ``` php
55
- $laravelClient = new Eloquentize\LaravelClient();
56
- echo $laravelClient->echoPhrase('Hello, Eloquentize!');
57
- ```
58
44
59
45
## Testing
60
46
61
47
``` bash
62
- composer test
48
+ pest
63
49
```
64
50
65
51
## Changelog
@@ -68,7 +54,7 @@ Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed re
68
54
69
55
## Contributing
70
56
71
- Please see [ CONTRIBUTING] ( CONTRIBUTING.md ) for details.
57
+ <!-- Please see [CONTRIBUTING](CONTRIBUTING.md) for details. -->
72
58
73
59
## Security Vulnerabilities
74
60
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.3/phpunit.xsd"
5
+ backupGlobals =" false"
6
+ bootstrap =" vendor/autoload.php"
7
+ colors =" true"
8
+ processIsolation =" false"
9
+ stopOnFailure =" false"
10
+ executionOrder =" random"
11
+ failOnWarning =" true"
12
+ failOnRisky =" true"
13
+ failOnEmptyTestSuite =" true"
14
+ beStrictAboutOutputDuringTests =" true"
15
+ cacheDirectory =" .phpunit.cache"
16
+ backupStaticProperties =" false"
17
+ >
18
+ <php >
19
+ <env name =" ELOQUENTIZE_API_TOKEN" value =" go to eloquentize.com" />
20
+ <env name =" APP_URL" value =" http://localtest" />
21
+ <env name =" APP_ENV" value =" testing" />
22
+ </php >
23
+ <logging >
24
+ <!-- <testdoxText outputFile="phpunit.txt"/> -->
25
+ </logging >
26
+ <testsuites >
27
+ <testsuite name =" Eloquentize Test Suite" >
28
+ <directory >tests</directory >
29
+ </testsuite >
30
+ </testsuites >
31
+ <coverage >
32
+ <report >
33
+ <html outputDirectory =" build/coverage" />
34
+ <text outputFile =" build/coverage.txt" />
35
+ <clover outputFile =" build/logs/clover.xml" />
36
+ </report >
37
+ </coverage >
38
+ <!-- <logging>
39
+ <junit outputFile="build/report.junit.xml"/>
40
+ </logging> -->
41
+ <source >
42
+ <include >
43
+ <directory suffix =" .php" >./src</directory >
44
+ </include >
45
+ </source >
46
+ </phpunit >
You can’t perform that action at this time.
0 commit comments