initial commit

This commit is contained in:
Jurgis Sakalauskas
2025-01-08 12:45:00 +02:00
commit 6df493fab3
86 changed files with 11890 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Services\Google;
/**
* "aspectRatio": "1:1, 9:16, 16:9, 3:4, or 4:3. default 1:1",
*/
enum ImageAspectRatios: string
{
case _1_1 = '1:1';
case _9_16 = '9:16';
case _16_9 = '16:9';
case _3_4 = '3:4';
case _4_3 = '4:3';
}