@@ -15,13 +15,12 @@ Learn more about the Midday PHP SDK in the [official documentation](https://docs
1515<!-- Start Summary [summary] -->
1616## Summary
1717
18- Midday is a platform for Invoicing, Time tracking, File reconciliation, Storage, Financial Overview & your own Assistant.
18+ Midday API: Midday is a platform for Invoicing, Time tracking, File reconciliation, Storage, Financial Overview & your own Assistant.
1919<!-- End Summary [summary] -->
2020
2121<!-- Start Table of Contents [toc] -->
2222## Table of Contents
2323<!-- $toc-max-depth=2 -->
24- * [ midday/midday-php] ( #openapiopenapi )
2524 * [ SDK Installation] ( #sdk-installation )
2625 * [ SDK Example Usage] ( #sdk-example-usage )
2726 * [ Authentication] ( #authentication )
@@ -37,32 +36,11 @@ Midday is a platform for Invoicing, Time tracking, File reconciliation, Storage,
3736<!-- Start SDK Installation [installation] -->
3837## SDK Installation
3938
40- > [ !TIP]
41- > To finish publishing your SDK you must [ run your first generation action] ( https://www.speakeasy.com/docs/github-setup#step-by-step-guide ) .
42-
43-
4439The SDK relies on [ Composer] ( https://getcomposer.org/ ) to manage its dependencies.
4540
46- To install the SDK first add the below to your ` composer.json ` file:
47-
48- ``` json
49- {
50- "repositories" : [
51- {
52- "type" : " github" ,
53- "url" : " <UNSET>.git"
54- }
55- ],
56- "require" : {
57- "midday/midday-php" : " *"
58- }
59- }
60- ```
61-
62- Then run the following command:
63-
41+ To install the SDK and add it as a dependency to an existing ` composer.json ` file:
6442``` bash
65- composer update
43+ composer require " midday/midday-php "
6644```
6745<!-- End SDK Installation [installation] -->
6846
@@ -295,13 +273,13 @@ if ($response->object !== null) {
295273* [ update] ( docs/sdks/teams/README.md#update ) - Update a team
296274* [ members] ( docs/sdks/teams/README.md#members ) - List all team members
297275
298- ### [ tracker] ( docs/sdks/tracker/README.md )
299-
300- * [ delete] ( docs/sdks/tracker/README.md#delete ) - Delete a tracker entry
301-
302276### [ trackerEntries] ( docs/sdks/trackerentries/README.md )
303277
304278* [ list] ( docs/sdks/trackerentries/README.md#list ) - List all tracker entries
279+ * [ create] ( docs/sdks/trackerentries/README.md#create ) - Create a tracker entry
280+ * [ createBulk] ( docs/sdks/trackerentries/README.md#createbulk ) - Create multiple tracker entries
281+ * [ delete] ( docs/sdks/trackerentries/README.md#delete ) - Delete a tracker entry
282+ * [ update] ( docs/sdks/trackerentries/README.md#update ) - Update a tracker entry
305283
306284### [ trackerProjects] ( docs/sdks/trackerprojects/README.md )
307285
@@ -311,6 +289,13 @@ if ($response->object !== null) {
311289* [ delete] ( docs/sdks/trackerprojects/README.md#delete ) - Delete a tracker project
312290* [ update] ( docs/sdks/trackerprojects/README.md#update ) - Update a tracker project
313291
292+ ### [ trackerTimer] ( docs/sdks/trackertimer/README.md )
293+
294+ * [ startTimer] ( docs/sdks/trackertimer/README.md#starttimer ) - Start a timer
295+ * [ stopTimer] ( docs/sdks/trackertimer/README.md#stoptimer ) - Stop a timer
296+ * [ getCurrentTimer] ( docs/sdks/trackertimer/README.md#getcurrenttimer ) - Get current timer
297+ * [ getTimerStatus] ( docs/sdks/trackertimer/README.md#gettimerstatus ) - Get timer status
298+
314299### [ transactions] ( docs/sdks/transactions/README.md )
315300
316301* [ list] ( docs/sdks/transactions/README.md#list ) - List all transactions
0 commit comments