@@ -139,7 +139,10 @@ To integrate Uppy with your PHP backend:
139
139
1 . Include Uppy in your HTML:
140
140
141
141
``` html
142
- <link href =" https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css" rel =" stylesheet" >
142
+ <link
143
+ href =" https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css"
144
+ rel =" stylesheet"
145
+ />
143
146
<script src =" https://releases.transloadit.com/uppy/v3.3.1/uppy.min.js" ></script >
144
147
```
145
148
@@ -188,17 +191,17 @@ if ($response) {
188
191
// Process the assembly result
189
192
$assemblyId = $response->data[' assembly_id' ];
190
193
$assemblyStatus = $response->data[' ok' ];
191
-
194
+
192
195
// You can store the assembly information in your database
193
196
// or perform any other necessary actions here
194
-
197
+
195
198
// Log the response for debugging
196
199
error_log(' Transloadit Assembly Completed: ' . $assemblyId);
197
200
error_log(' Assembly Status: ' . ($assemblyStatus ? ' Success' : ' Failed' ));
198
-
201
+
199
202
// Optionally, you can write the response to a file
200
203
file_put_contents(' transloadit_response_' . $assemblyId . ' .json ' , json_encode($response->data));
201
-
204
+
202
205
// Send a 200 OK response to Transloadit
203
206
http_response_code(200);
204
207
echo ' OK ' ;
@@ -480,30 +483,17 @@ Feel free to fork this project. We will happily merge bug fixes or other small
480
483
improvements. For bigger changes you should probably get in touch with us
481
484
before you start to avoid not seeing them merged.
482
485
483
- ## Versioning
484
-
485
- This project implements the Semantic Versioning guidelines.
486
+ ### Releasing a new version
486
487
487
- Releases will be numbered with the following format :
488
+ To release, say ` 3.2 . 0 ` [Packagist](https://packagist.org/packages/transloadit/php-sdk), follow these steps :
488
489
489
- ` < major> .< minor> .< patch> `
490
+ 1. Make sure ` PACKAGIST_TOKEN ` is set in your ` .env ` file
491
+ 1. Make sure you are in main: ` git checkout main`
492
+ 1. Update ` CHANGELOG .md ` and ` composer .json `
493
+ 1. Commit: ` git add CHANGELOG .md composer .json && git commit - m " Release 3.2.0" `
494
+ 1. Tag, push, and release: ` source .env && VERSION = 3.2 .0 ./ release .sh `
490
495
491
- And constructed with the following guidelines:
492
-
493
- - Breaking backward compatibility bumps the major (and resets the minor and patch)
494
- - New additions without breaking backward compatibility bumps the minor (and resets the patch)
495
- - Bug fixes and misc changes bumps the patch
496
-
497
- For more information on SemVer, please visit http://semver.org/.
498
-
499
- ## Releasing a new version
500
-
501
- ` ` ` bash
502
- # 1. update CHANGELOG .md
503
- # 2. update composer .json
504
- # 3. commit all your work
505
- source env .sh && VERSION = 3.1 .0 ./ release .sh
506
- ` ` `
496
+ This project implements the [Semantic Versioning](http://semver.org/) guidelines.
507
497
508
498
## License
509
499
0 commit comments