Yahya Uddin

Results 13 issues of Yahya Uddin

Text columns as generated as follows: `$table->text('foo', 65536);` This is incorrect, as the `text` column only accepts 1 parameter. It should either be: `$table->string('foo', 65536);` or `$table->text('foo');`

**Describe the bug** I am running the following command to compile an app for Android: ``` ti build -p android -T device ``` The build process runs a bunch of...

bug
docs

I am really struggling to create even a simple version of this using the documentation. Here is my code: ```php use GuzzleHttp\Promise\Promise; use Overblog\DataLoader\DataLoader; use Overblog\PromiseAdapter\Adapter\GuzzleHttpPromiseAdapter; class Sandbox { public...

Hi, I managed to install libgit2 with PHP-git properly on Ubuntu. The problem I have found is that no commands in the api seem to work except: echo git_libgit2_version(). I...

According to the docs it says: > If you're making multiple requests to the same server, you can keep open a persistent connection by using a Client rather than making...

### Question Given a URL e.g, `https://ucarecdn.com//-/preview/30x50/` how can I get the original width and height. Right now I can get the transformed dimensions as follows: ``` $file = $api->uploader()->fromUrl("https://ucarecdn.com//-/preview/30x50/");...

question

### Question I have the following transformed URL given by the uploader like so: https://ucarecdn.com/8ee8182c-8927-4cdc-8338-d66e4dabf119/-/crop/270x152/0,59/-/resize/1600x900/ I am able to get the original dimensions using the following code: ```php $uuidRegexp =...

enhancement

**1. Please specify the following:** - OS: OSX ___ - Shell: zsh ____ **2. Description** After installing the CLI, as described in the docs I get the following error when...

We are currently on Titanium 7.5.0GA. Any chance we can get an update to make sure this tool works for the newest version of Titanium. Many Thanks!

I am using TiShadow on my Android phone. However my custom fonts for Android don't seem to be loading. I have copied them to both `app/assets/android/fonts` as well as `assets/fonts`...

can't replicate