You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* remove confusing `toArray()` alias to `__serialize()` in favour of `toProperties()` ([84053c4](https://github.com/CASParser/cas-parser-php/commit/84053c4b32db33f341e5e9bf89f2aabe982a2695))
23
+
24
+
25
+
### Bug Fixes
26
+
27
+
***ci:** release doctor workflow ([d7d0f00](https://github.com/CASParser/cas-parser-php/commit/d7d0f005e9022cce83d3316626e5746a3a02b694))
Copy file name to clipboardExpand all lines: README.md
+19-31Lines changed: 19 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,11 @@
1
1
# Cas Parser PHP API library
2
2
3
-
> [!NOTE]
4
-
> The Cas Parser PHP API Library is currently in **beta** and we're excited for you to experiment with it!
5
-
>
6
-
> This library has not yet been exhaustively tested in production environments and may be missing some features you'd expect in a stable release. As we continue development, there may be breaking changes that require updates to your code.
7
-
>
8
-
> **We'd love your feedback!** Please share any suggestions, bug reports, feature requests, or general thoughts by [filing an issue](https://www.github.com/CASParser/cas-parser-php/issues/new).
9
-
10
3
The Cas Parser PHP library provides convenient access to the Cas Parser REST API from any PHP 8.1.0+ application.
11
4
12
5
It is generated with [Stainless](https://www.stainless.com/).
13
6
14
7
## Documentation
15
8
16
-
The REST API documentation can be found on [docs.casparser.in](https://docs.casparser.in/reference).
17
-
18
9
## Installation
19
10
20
11
To use this package, install via Composer by adding the following to your application's `composer.json`:
@@ -47,11 +38,14 @@ Parameters with a default value must be set by name.
47
38
48
39
use CasParser\Client;
49
40
50
-
$client = new Client(apiKey: getenv("CAS_PARSER_API_KEY") ?: "My API Key");
41
+
$client = new Client(
42
+
apiKey: getenv('CAS_PARSER_API_KEY') ?: 'My API Key',
0 commit comments