composer.lock 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "7b456152fa0efbf38315140961ff527b",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "1.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d",
  20. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.1.8 || ^8.0"
  31. },
  32. "conflict": {
  33. "doctrine/dbal": ">=3.7.0"
  34. },
  35. "require-dev": {
  36. "doctrine/dbal": ">=2.0.0",
  37. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  38. "phpunit/phpunit": "^10.3"
  39. },
  40. "type": "library",
  41. "autoload": {
  42. "psr-4": {
  43. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "KyleKatarn",
  53. "email": "kylekatarnls@gmail.com"
  54. }
  55. ],
  56. "description": "Types to use Carbon in Doctrine",
  57. "keywords": [
  58. "carbon",
  59. "date",
  60. "datetime",
  61. "doctrine",
  62. "time"
  63. ],
  64. "support": {
  65. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  66. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0"
  67. },
  68. "funding": [
  69. {
  70. "url": "https://github.com/kylekatarnls",
  71. "type": "github"
  72. },
  73. {
  74. "url": "https://opencollective.com/Carbon",
  75. "type": "open_collective"
  76. },
  77. {
  78. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  79. "type": "tidelift"
  80. }
  81. ],
  82. "time": "2023-10-01T12:35:29+00:00"
  83. },
  84. {
  85. "name": "doctrine/inflector",
  86. "version": "2.0.10",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/doctrine/inflector.git",
  90. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  95. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  96. "shasum": "",
  97. "mirrors": [
  98. {
  99. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  100. "preferred": true
  101. }
  102. ]
  103. },
  104. "require": {
  105. "php": "^7.2 || ^8.0"
  106. },
  107. "require-dev": {
  108. "doctrine/coding-standard": "^11.0",
  109. "phpstan/phpstan": "^1.8",
  110. "phpstan/phpstan-phpunit": "^1.1",
  111. "phpstan/phpstan-strict-rules": "^1.3",
  112. "phpunit/phpunit": "^8.5 || ^9.5",
  113. "vimeo/psalm": "^4.25 || ^5.4"
  114. },
  115. "type": "library",
  116. "autoload": {
  117. "psr-4": {
  118. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "authors": [
  126. {
  127. "name": "Guilherme Blanco",
  128. "email": "guilhermeblanco@gmail.com"
  129. },
  130. {
  131. "name": "Roman Borschel",
  132. "email": "roman@code-factory.org"
  133. },
  134. {
  135. "name": "Benjamin Eberlei",
  136. "email": "kontakt@beberlei.de"
  137. },
  138. {
  139. "name": "Jonathan Wage",
  140. "email": "jonwage@gmail.com"
  141. },
  142. {
  143. "name": "Johannes Schmitt",
  144. "email": "schmittjoh@gmail.com"
  145. }
  146. ],
  147. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  148. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  149. "keywords": [
  150. "inflection",
  151. "inflector",
  152. "lowercase",
  153. "manipulation",
  154. "php",
  155. "plural",
  156. "singular",
  157. "strings",
  158. "uppercase",
  159. "words"
  160. ],
  161. "support": {
  162. "issues": "https://github.com/doctrine/inflector/issues",
  163. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  164. },
  165. "funding": [
  166. {
  167. "url": "https://www.doctrine-project.org/sponsorship.html",
  168. "type": "custom"
  169. },
  170. {
  171. "url": "https://www.patreon.com/phpdoctrine",
  172. "type": "patreon"
  173. },
  174. {
  175. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  176. "type": "tidelift"
  177. }
  178. ],
  179. "time": "2024-02-18T20:23:39+00:00"
  180. },
  181. {
  182. "name": "graham-campbell/result-type",
  183. "version": "v1.1.2",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  187. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  192. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  193. "shasum": "",
  194. "mirrors": [
  195. {
  196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  197. "preferred": true
  198. }
  199. ]
  200. },
  201. "require": {
  202. "php": "^7.2.5 || ^8.0",
  203. "phpoption/phpoption": "^1.9.2"
  204. },
  205. "require-dev": {
  206. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "GrahamCampbell\\ResultType\\": "src/"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Graham Campbell",
  221. "email": "hello@gjcampbell.co.uk",
  222. "homepage": "https://github.com/GrahamCampbell"
  223. }
  224. ],
  225. "description": "An Implementation Of The Result Type",
  226. "keywords": [
  227. "Graham Campbell",
  228. "GrahamCampbell",
  229. "Result Type",
  230. "Result-Type",
  231. "result"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  235. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://github.com/GrahamCampbell",
  240. "type": "github"
  241. },
  242. {
  243. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  244. "type": "tidelift"
  245. }
  246. ],
  247. "time": "2023-11-12T22:16:48+00:00"
  248. },
  249. {
  250. "name": "illuminate/bus",
  251. "version": "v8.83.27",
  252. "source": {
  253. "type": "git",
  254. "url": "https://github.com/illuminate/bus.git",
  255. "reference": "d2a8ae4bfd881086e55455e470776358eab27eae"
  256. },
  257. "dist": {
  258. "type": "zip",
  259. "url": "https://api.github.com/repos/illuminate/bus/zipball/d2a8ae4bfd881086e55455e470776358eab27eae",
  260. "reference": "d2a8ae4bfd881086e55455e470776358eab27eae",
  261. "shasum": "",
  262. "mirrors": [
  263. {
  264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  265. "preferred": true
  266. }
  267. ]
  268. },
  269. "require": {
  270. "illuminate/collections": "^8.0",
  271. "illuminate/contracts": "^8.0",
  272. "illuminate/pipeline": "^8.0",
  273. "illuminate/support": "^8.0",
  274. "php": "^7.3|^8.0"
  275. },
  276. "suggest": {
  277. "illuminate/queue": "Required to use closures when chaining jobs (^7.0)."
  278. },
  279. "type": "library",
  280. "extra": {
  281. "branch-alias": {
  282. "dev-master": "8.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-4": {
  287. "Illuminate\\Bus\\": ""
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Taylor Otwell",
  297. "email": "taylor@laravel.com"
  298. }
  299. ],
  300. "description": "The Illuminate Bus package.",
  301. "homepage": "https://laravel.com",
  302. "support": {
  303. "issues": "https://github.com/laravel/framework/issues",
  304. "source": "https://github.com/laravel/framework"
  305. },
  306. "time": "2022-03-07T15:02:42+00:00"
  307. },
  308. {
  309. "name": "illuminate/collections",
  310. "version": "v8.83.27",
  311. "source": {
  312. "type": "git",
  313. "url": "https://github.com/illuminate/collections.git",
  314. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4"
  315. },
  316. "dist": {
  317. "type": "zip",
  318. "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  319. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  320. "shasum": "",
  321. "mirrors": [
  322. {
  323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  324. "preferred": true
  325. }
  326. ]
  327. },
  328. "require": {
  329. "illuminate/contracts": "^8.0",
  330. "illuminate/macroable": "^8.0",
  331. "php": "^7.3|^8.0"
  332. },
  333. "suggest": {
  334. "symfony/var-dumper": "Required to use the dump method (^5.4)."
  335. },
  336. "type": "library",
  337. "extra": {
  338. "branch-alias": {
  339. "dev-master": "8.x-dev"
  340. }
  341. },
  342. "autoload": {
  343. "files": [
  344. "helpers.php"
  345. ],
  346. "psr-4": {
  347. "Illuminate\\Support\\": ""
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "MIT"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Taylor Otwell",
  357. "email": "taylor@laravel.com"
  358. }
  359. ],
  360. "description": "The Illuminate Collections package.",
  361. "homepage": "https://laravel.com",
  362. "support": {
  363. "issues": "https://github.com/laravel/framework/issues",
  364. "source": "https://github.com/laravel/framework"
  365. },
  366. "time": "2022-06-23T15:29:49+00:00"
  367. },
  368. {
  369. "name": "illuminate/container",
  370. "version": "v8.83.27",
  371. "source": {
  372. "type": "git",
  373. "url": "https://github.com/illuminate/container.git",
  374. "reference": "14062628d05f75047c5a1360b9350028427d568e"
  375. },
  376. "dist": {
  377. "type": "zip",
  378. "url": "https://api.github.com/repos/illuminate/container/zipball/14062628d05f75047c5a1360b9350028427d568e",
  379. "reference": "14062628d05f75047c5a1360b9350028427d568e",
  380. "shasum": "",
  381. "mirrors": [
  382. {
  383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  384. "preferred": true
  385. }
  386. ]
  387. },
  388. "require": {
  389. "illuminate/contracts": "^8.0",
  390. "php": "^7.3|^8.0",
  391. "psr/container": "^1.0"
  392. },
  393. "provide": {
  394. "psr/container-implementation": "1.0"
  395. },
  396. "type": "library",
  397. "extra": {
  398. "branch-alias": {
  399. "dev-master": "8.x-dev"
  400. }
  401. },
  402. "autoload": {
  403. "psr-4": {
  404. "Illuminate\\Container\\": ""
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Taylor Otwell",
  414. "email": "taylor@laravel.com"
  415. }
  416. ],
  417. "description": "The Illuminate Container package.",
  418. "homepage": "https://laravel.com",
  419. "support": {
  420. "issues": "https://github.com/laravel/framework/issues",
  421. "source": "https://github.com/laravel/framework"
  422. },
  423. "time": "2022-02-02T21:03:35+00:00"
  424. },
  425. {
  426. "name": "illuminate/contracts",
  427. "version": "v8.83.27",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/illuminate/contracts.git",
  431. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  436. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  437. "shasum": "",
  438. "mirrors": [
  439. {
  440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  441. "preferred": true
  442. }
  443. ]
  444. },
  445. "require": {
  446. "php": "^7.3|^8.0",
  447. "psr/container": "^1.0",
  448. "psr/simple-cache": "^1.0"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "branch-alias": {
  453. "dev-master": "8.x-dev"
  454. }
  455. },
  456. "autoload": {
  457. "psr-4": {
  458. "Illuminate\\Contracts\\": ""
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Taylor Otwell",
  468. "email": "taylor@laravel.com"
  469. }
  470. ],
  471. "description": "The Illuminate Contracts package.",
  472. "homepage": "https://laravel.com",
  473. "support": {
  474. "issues": "https://github.com/laravel/framework/issues",
  475. "source": "https://github.com/laravel/framework"
  476. },
  477. "time": "2022-01-13T14:47:47+00:00"
  478. },
  479. {
  480. "name": "illuminate/database",
  481. "version": "v8.83.27",
  482. "source": {
  483. "type": "git",
  484. "url": "https://github.com/illuminate/database.git",
  485. "reference": "1a5b0e4e6913415464fa2aab554a38b9e6fa44b1"
  486. },
  487. "dist": {
  488. "type": "zip",
  489. "url": "https://api.github.com/repos/illuminate/database/zipball/1a5b0e4e6913415464fa2aab554a38b9e6fa44b1",
  490. "reference": "1a5b0e4e6913415464fa2aab554a38b9e6fa44b1",
  491. "shasum": "",
  492. "mirrors": [
  493. {
  494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  495. "preferred": true
  496. }
  497. ]
  498. },
  499. "require": {
  500. "ext-json": "*",
  501. "illuminate/collections": "^8.0",
  502. "illuminate/container": "^8.0",
  503. "illuminate/contracts": "^8.0",
  504. "illuminate/macroable": "^8.0",
  505. "illuminate/support": "^8.0",
  506. "php": "^7.3|^8.0",
  507. "symfony/console": "^5.4"
  508. },
  509. "suggest": {
  510. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  511. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  512. "illuminate/console": "Required to use the database commands (^8.0).",
  513. "illuminate/events": "Required to use the observers with Eloquent (^8.0).",
  514. "illuminate/filesystem": "Required to use the migrations (^8.0).",
  515. "illuminate/pagination": "Required to paginate the result set (^8.0).",
  516. "symfony/finder": "Required to use Eloquent model factories (^5.4)."
  517. },
  518. "type": "library",
  519. "extra": {
  520. "branch-alias": {
  521. "dev-master": "8.x-dev"
  522. }
  523. },
  524. "autoload": {
  525. "psr-4": {
  526. "Illuminate\\Database\\": ""
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "MIT"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Taylor Otwell",
  536. "email": "taylor@laravel.com"
  537. }
  538. ],
  539. "description": "The Illuminate Database package.",
  540. "homepage": "https://laravel.com",
  541. "keywords": [
  542. "database",
  543. "laravel",
  544. "orm",
  545. "sql"
  546. ],
  547. "support": {
  548. "issues": "https://github.com/laravel/framework/issues",
  549. "source": "https://github.com/laravel/framework"
  550. },
  551. "time": "2022-08-31T16:16:06+00:00"
  552. },
  553. {
  554. "name": "illuminate/events",
  555. "version": "v8.83.27",
  556. "source": {
  557. "type": "git",
  558. "url": "https://github.com/illuminate/events.git",
  559. "reference": "b7f06cafb6c09581617f2ca05d69e9b159e5a35d"
  560. },
  561. "dist": {
  562. "type": "zip",
  563. "url": "https://api.github.com/repos/illuminate/events/zipball/b7f06cafb6c09581617f2ca05d69e9b159e5a35d",
  564. "reference": "b7f06cafb6c09581617f2ca05d69e9b159e5a35d",
  565. "shasum": "",
  566. "mirrors": [
  567. {
  568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  569. "preferred": true
  570. }
  571. ]
  572. },
  573. "require": {
  574. "illuminate/bus": "^8.0",
  575. "illuminate/collections": "^8.0",
  576. "illuminate/container": "^8.0",
  577. "illuminate/contracts": "^8.0",
  578. "illuminate/macroable": "^8.0",
  579. "illuminate/support": "^8.0",
  580. "php": "^7.3|^8.0"
  581. },
  582. "type": "library",
  583. "extra": {
  584. "branch-alias": {
  585. "dev-master": "8.x-dev"
  586. }
  587. },
  588. "autoload": {
  589. "files": [
  590. "functions.php"
  591. ],
  592. "psr-4": {
  593. "Illuminate\\Events\\": ""
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Taylor Otwell",
  603. "email": "taylor@laravel.com"
  604. }
  605. ],
  606. "description": "The Illuminate Events package.",
  607. "homepage": "https://laravel.com",
  608. "support": {
  609. "issues": "https://github.com/laravel/framework/issues",
  610. "source": "https://github.com/laravel/framework"
  611. },
  612. "time": "2021-09-15T14:32:50+00:00"
  613. },
  614. {
  615. "name": "illuminate/macroable",
  616. "version": "v8.83.27",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/illuminate/macroable.git",
  620. "reference": "aed81891a6e046fdee72edd497f822190f61c162"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
  625. "reference": "aed81891a6e046fdee72edd497f822190f61c162",
  626. "shasum": "",
  627. "mirrors": [
  628. {
  629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  630. "preferred": true
  631. }
  632. ]
  633. },
  634. "require": {
  635. "php": "^7.3|^8.0"
  636. },
  637. "type": "library",
  638. "extra": {
  639. "branch-alias": {
  640. "dev-master": "8.x-dev"
  641. }
  642. },
  643. "autoload": {
  644. "psr-4": {
  645. "Illuminate\\Support\\": ""
  646. }
  647. },
  648. "notification-url": "https://packagist.org/downloads/",
  649. "license": [
  650. "MIT"
  651. ],
  652. "authors": [
  653. {
  654. "name": "Taylor Otwell",
  655. "email": "taylor@laravel.com"
  656. }
  657. ],
  658. "description": "The Illuminate Macroable package.",
  659. "homepage": "https://laravel.com",
  660. "support": {
  661. "issues": "https://github.com/laravel/framework/issues",
  662. "source": "https://github.com/laravel/framework"
  663. },
  664. "time": "2021-11-16T13:57:03+00:00"
  665. },
  666. {
  667. "name": "illuminate/pagination",
  668. "version": "v8.83.27",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/illuminate/pagination.git",
  672. "reference": "16fe8dc35f9d18c58a3471469af656a02e9ab692"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/illuminate/pagination/zipball/16fe8dc35f9d18c58a3471469af656a02e9ab692",
  677. "reference": "16fe8dc35f9d18c58a3471469af656a02e9ab692",
  678. "shasum": "",
  679. "mirrors": [
  680. {
  681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  682. "preferred": true
  683. }
  684. ]
  685. },
  686. "require": {
  687. "ext-json": "*",
  688. "illuminate/collections": "^8.0",
  689. "illuminate/contracts": "^8.0",
  690. "illuminate/support": "^8.0",
  691. "php": "^7.3|^8.0"
  692. },
  693. "type": "library",
  694. "extra": {
  695. "branch-alias": {
  696. "dev-master": "8.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Illuminate\\Pagination\\": ""
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Taylor Otwell",
  711. "email": "taylor@laravel.com"
  712. }
  713. ],
  714. "description": "The Illuminate Pagination package.",
  715. "homepage": "https://laravel.com",
  716. "support": {
  717. "issues": "https://github.com/laravel/framework/issues",
  718. "source": "https://github.com/laravel/framework"
  719. },
  720. "time": "2022-06-27T13:26:06+00:00"
  721. },
  722. {
  723. "name": "illuminate/pipeline",
  724. "version": "v8.83.27",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/illuminate/pipeline.git",
  728. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  733. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  734. "shasum": "",
  735. "mirrors": [
  736. {
  737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  738. "preferred": true
  739. }
  740. ]
  741. },
  742. "require": {
  743. "illuminate/contracts": "^8.0",
  744. "illuminate/support": "^8.0",
  745. "php": "^7.3|^8.0"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "8.x-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Illuminate\\Pipeline\\": ""
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Taylor Otwell",
  765. "email": "taylor@laravel.com"
  766. }
  767. ],
  768. "description": "The Illuminate Pipeline package.",
  769. "homepage": "https://laravel.com",
  770. "support": {
  771. "issues": "https://github.com/laravel/framework/issues",
  772. "source": "https://github.com/laravel/framework"
  773. },
  774. "time": "2021-03-26T18:39:16+00:00"
  775. },
  776. {
  777. "name": "illuminate/redis",
  778. "version": "v8.83.27",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/illuminate/redis.git",
  782. "reference": "0fee121324054226823a59623fab3d98ad88fbd5"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/illuminate/redis/zipball/0fee121324054226823a59623fab3d98ad88fbd5",
  787. "reference": "0fee121324054226823a59623fab3d98ad88fbd5",
  788. "shasum": "",
  789. "mirrors": [
  790. {
  791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  792. "preferred": true
  793. }
  794. ]
  795. },
  796. "require": {
  797. "illuminate/collections": "^8.0",
  798. "illuminate/contracts": "^8.0",
  799. "illuminate/macroable": "^8.0",
  800. "illuminate/support": "^8.0",
  801. "php": "^7.3|^8.0"
  802. },
  803. "suggest": {
  804. "ext-redis": "Required to use the phpredis connector (^4.0|^5.0).",
  805. "predis/predis": "Required to use the predis connector (^1.1.9)."
  806. },
  807. "type": "library",
  808. "extra": {
  809. "branch-alias": {
  810. "dev-master": "8.x-dev"
  811. }
  812. },
  813. "autoload": {
  814. "psr-4": {
  815. "Illuminate\\Redis\\": ""
  816. }
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Taylor Otwell",
  825. "email": "taylor@laravel.com"
  826. }
  827. ],
  828. "description": "The Illuminate Redis package.",
  829. "homepage": "https://laravel.com",
  830. "support": {
  831. "issues": "https://github.com/laravel/framework/issues",
  832. "source": "https://github.com/laravel/framework"
  833. },
  834. "time": "2022-01-24T02:32:30+00:00"
  835. },
  836. {
  837. "name": "illuminate/support",
  838. "version": "v8.83.27",
  839. "source": {
  840. "type": "git",
  841. "url": "https://github.com/illuminate/support.git",
  842. "reference": "1c79242468d3bbd9a0f7477df34f9647dde2a09b"
  843. },
  844. "dist": {
  845. "type": "zip",
  846. "url": "https://api.github.com/repos/illuminate/support/zipball/1c79242468d3bbd9a0f7477df34f9647dde2a09b",
  847. "reference": "1c79242468d3bbd9a0f7477df34f9647dde2a09b",
  848. "shasum": "",
  849. "mirrors": [
  850. {
  851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  852. "preferred": true
  853. }
  854. ]
  855. },
  856. "require": {
  857. "doctrine/inflector": "^1.4|^2.0",
  858. "ext-json": "*",
  859. "ext-mbstring": "*",
  860. "illuminate/collections": "^8.0",
  861. "illuminate/contracts": "^8.0",
  862. "illuminate/macroable": "^8.0",
  863. "nesbot/carbon": "^2.53.1",
  864. "php": "^7.3|^8.0",
  865. "voku/portable-ascii": "^1.6.1"
  866. },
  867. "conflict": {
  868. "tightenco/collect": "<5.5.33"
  869. },
  870. "suggest": {
  871. "illuminate/filesystem": "Required to use the composer class (^8.0).",
  872. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).",
  873. "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
  874. "symfony/process": "Required to use the composer class (^5.4).",
  875. "symfony/var-dumper": "Required to use the dd function (^5.4).",
  876. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  877. },
  878. "type": "library",
  879. "extra": {
  880. "branch-alias": {
  881. "dev-master": "8.x-dev"
  882. }
  883. },
  884. "autoload": {
  885. "files": [
  886. "helpers.php"
  887. ],
  888. "psr-4": {
  889. "Illuminate\\Support\\": ""
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Taylor Otwell",
  899. "email": "taylor@laravel.com"
  900. }
  901. ],
  902. "description": "The Illuminate Support package.",
  903. "homepage": "https://laravel.com",
  904. "support": {
  905. "issues": "https://github.com/laravel/framework/issues",
  906. "source": "https://github.com/laravel/framework"
  907. },
  908. "time": "2022-09-21T21:30:03+00:00"
  909. },
  910. {
  911. "name": "monolog/monolog",
  912. "version": "2.9.2",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/Seldaek/monolog.git",
  916. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  921. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  922. "shasum": "",
  923. "mirrors": [
  924. {
  925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  926. "preferred": true
  927. }
  928. ]
  929. },
  930. "require": {
  931. "php": ">=7.2",
  932. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  933. },
  934. "provide": {
  935. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  936. },
  937. "require-dev": {
  938. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  939. "doctrine/couchdb": "~1.0@dev",
  940. "elasticsearch/elasticsearch": "^7 || ^8",
  941. "ext-json": "*",
  942. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  943. "guzzlehttp/guzzle": "^7.4",
  944. "guzzlehttp/psr7": "^2.2",
  945. "mongodb/mongodb": "^1.8",
  946. "php-amqplib/php-amqplib": "~2.4 || ^3",
  947. "phpspec/prophecy": "^1.15",
  948. "phpstan/phpstan": "^0.12.91",
  949. "phpunit/phpunit": "^8.5.14",
  950. "predis/predis": "^1.1 || ^2.0",
  951. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  952. "ruflin/elastica": "^7",
  953. "swiftmailer/swiftmailer": "^5.3|^6.0",
  954. "symfony/mailer": "^5.4 || ^6",
  955. "symfony/mime": "^5.4 || ^6"
  956. },
  957. "suggest": {
  958. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  959. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  960. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  961. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  962. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  963. "ext-mbstring": "Allow to work properly with unicode symbols",
  964. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  965. "ext-openssl": "Required to send log messages using SSL",
  966. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  967. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  968. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  969. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  970. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  971. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "branch-alias": {
  976. "dev-main": "2.x-dev"
  977. }
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "Monolog\\": "src/Monolog"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Jordi Boggiano",
  991. "email": "j.boggiano@seld.be",
  992. "homepage": "https://seld.be"
  993. }
  994. ],
  995. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  996. "homepage": "https://github.com/Seldaek/monolog",
  997. "keywords": [
  998. "log",
  999. "logging",
  1000. "psr-3"
  1001. ],
  1002. "support": {
  1003. "issues": "https://github.com/Seldaek/monolog/issues",
  1004. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  1005. },
  1006. "funding": [
  1007. {
  1008. "url": "https://github.com/Seldaek",
  1009. "type": "github"
  1010. },
  1011. {
  1012. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1013. "type": "tidelift"
  1014. }
  1015. ],
  1016. "time": "2023-10-27T15:25:26+00:00"
  1017. },
  1018. {
  1019. "name": "nesbot/carbon",
  1020. "version": "2.72.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/briannesbitt/Carbon.git",
  1024. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  1029. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  1030. "shasum": "",
  1031. "mirrors": [
  1032. {
  1033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1034. "preferred": true
  1035. }
  1036. ]
  1037. },
  1038. "require": {
  1039. "carbonphp/carbon-doctrine-types": "*",
  1040. "ext-json": "*",
  1041. "php": "^7.1.8 || ^8.0",
  1042. "psr/clock": "^1.0",
  1043. "symfony/polyfill-mbstring": "^1.0",
  1044. "symfony/polyfill-php80": "^1.16",
  1045. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1046. },
  1047. "provide": {
  1048. "psr/clock-implementation": "1.0"
  1049. },
  1050. "require-dev": {
  1051. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  1052. "doctrine/orm": "^2.7 || ^3.0",
  1053. "friendsofphp/php-cs-fixer": "^3.0",
  1054. "kylekatarnls/multi-tester": "^2.0",
  1055. "ondrejmirtes/better-reflection": "*",
  1056. "phpmd/phpmd": "^2.9",
  1057. "phpstan/extension-installer": "^1.0",
  1058. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1059. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1060. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1061. "squizlabs/php_codesniffer": "^3.4"
  1062. },
  1063. "bin": [
  1064. "bin/carbon"
  1065. ],
  1066. "type": "library",
  1067. "extra": {
  1068. "branch-alias": {
  1069. "dev-3.x": "3.x-dev",
  1070. "dev-master": "2.x-dev"
  1071. },
  1072. "laravel": {
  1073. "providers": [
  1074. "Carbon\\Laravel\\ServiceProvider"
  1075. ]
  1076. },
  1077. "phpstan": {
  1078. "includes": [
  1079. "extension.neon"
  1080. ]
  1081. }
  1082. },
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Carbon\\": "src/Carbon/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Brian Nesbitt",
  1095. "email": "brian@nesbot.com",
  1096. "homepage": "https://markido.com"
  1097. },
  1098. {
  1099. "name": "kylekatarnls",
  1100. "homepage": "https://github.com/kylekatarnls"
  1101. }
  1102. ],
  1103. "description": "An API extension for DateTime that supports 281 different languages.",
  1104. "homepage": "https://carbon.nesbot.com",
  1105. "keywords": [
  1106. "date",
  1107. "datetime",
  1108. "time"
  1109. ],
  1110. "support": {
  1111. "docs": "https://carbon.nesbot.com/docs",
  1112. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1113. "source": "https://github.com/briannesbitt/Carbon"
  1114. },
  1115. "funding": [
  1116. {
  1117. "url": "https://github.com/sponsors/kylekatarnls",
  1118. "type": "github"
  1119. },
  1120. {
  1121. "url": "https://opencollective.com/Carbon#sponsor",
  1122. "type": "opencollective"
  1123. },
  1124. {
  1125. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1126. "type": "tidelift"
  1127. }
  1128. ],
  1129. "time": "2024-01-25T10:35:09+00:00"
  1130. },
  1131. {
  1132. "name": "nikic/fast-route",
  1133. "version": "v1.3.0",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/nikic/FastRoute.git",
  1137. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1142. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1143. "shasum": "",
  1144. "mirrors": [
  1145. {
  1146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1147. "preferred": true
  1148. }
  1149. ]
  1150. },
  1151. "require": {
  1152. "php": ">=5.4.0"
  1153. },
  1154. "require-dev": {
  1155. "phpunit/phpunit": "^4.8.35|~5.7"
  1156. },
  1157. "type": "library",
  1158. "autoload": {
  1159. "files": [
  1160. "src/functions.php"
  1161. ],
  1162. "psr-4": {
  1163. "FastRoute\\": "src/"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "BSD-3-Clause"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Nikita Popov",
  1173. "email": "nikic@php.net"
  1174. }
  1175. ],
  1176. "description": "Fast request router for PHP",
  1177. "keywords": [
  1178. "router",
  1179. "routing"
  1180. ],
  1181. "support": {
  1182. "issues": "https://github.com/nikic/FastRoute/issues",
  1183. "source": "https://github.com/nikic/FastRoute/tree/master"
  1184. },
  1185. "time": "2018-02-13T20:26:39+00:00"
  1186. },
  1187. {
  1188. "name": "phpoption/phpoption",
  1189. "version": "1.9.2",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/schmittjoh/php-option.git",
  1193. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  1198. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  1199. "shasum": "",
  1200. "mirrors": [
  1201. {
  1202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1203. "preferred": true
  1204. }
  1205. ]
  1206. },
  1207. "require": {
  1208. "php": "^7.2.5 || ^8.0"
  1209. },
  1210. "require-dev": {
  1211. "bamarni/composer-bin-plugin": "^1.8.2",
  1212. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "bamarni-bin": {
  1217. "bin-links": true,
  1218. "forward-command": true
  1219. },
  1220. "branch-alias": {
  1221. "dev-master": "1.9-dev"
  1222. }
  1223. },
  1224. "autoload": {
  1225. "psr-4": {
  1226. "PhpOption\\": "src/PhpOption/"
  1227. }
  1228. },
  1229. "notification-url": "https://packagist.org/downloads/",
  1230. "license": [
  1231. "Apache-2.0"
  1232. ],
  1233. "authors": [
  1234. {
  1235. "name": "Johannes M. Schmitt",
  1236. "email": "schmittjoh@gmail.com",
  1237. "homepage": "https://github.com/schmittjoh"
  1238. },
  1239. {
  1240. "name": "Graham Campbell",
  1241. "email": "hello@gjcampbell.co.uk",
  1242. "homepage": "https://github.com/GrahamCampbell"
  1243. }
  1244. ],
  1245. "description": "Option Type for PHP",
  1246. "keywords": [
  1247. "language",
  1248. "option",
  1249. "php",
  1250. "type"
  1251. ],
  1252. "support": {
  1253. "issues": "https://github.com/schmittjoh/php-option/issues",
  1254. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  1255. },
  1256. "funding": [
  1257. {
  1258. "url": "https://github.com/GrahamCampbell",
  1259. "type": "github"
  1260. },
  1261. {
  1262. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1263. "type": "tidelift"
  1264. }
  1265. ],
  1266. "time": "2023-11-12T21:59:55+00:00"
  1267. },
  1268. {
  1269. "name": "psr/clock",
  1270. "version": "1.0.0",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/php-fig/clock.git",
  1274. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1279. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1280. "shasum": "",
  1281. "mirrors": [
  1282. {
  1283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1284. "preferred": true
  1285. }
  1286. ]
  1287. },
  1288. "require": {
  1289. "php": "^7.0 || ^8.0"
  1290. },
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Psr\\Clock\\": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "PHP-FIG",
  1304. "homepage": "https://www.php-fig.org/"
  1305. }
  1306. ],
  1307. "description": "Common interface for reading the clock.",
  1308. "homepage": "https://github.com/php-fig/clock",
  1309. "keywords": [
  1310. "clock",
  1311. "now",
  1312. "psr",
  1313. "psr-20",
  1314. "time"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/php-fig/clock/issues",
  1318. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1319. },
  1320. "time": "2022-11-25T14:36:26+00:00"
  1321. },
  1322. {
  1323. "name": "psr/container",
  1324. "version": "1.1.1",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/php-fig/container.git",
  1328. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1333. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1334. "shasum": "",
  1335. "mirrors": [
  1336. {
  1337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1338. "preferred": true
  1339. }
  1340. ]
  1341. },
  1342. "require": {
  1343. "php": ">=7.2.0"
  1344. },
  1345. "type": "library",
  1346. "autoload": {
  1347. "psr-4": {
  1348. "Psr\\Container\\": "src/"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "authors": [
  1356. {
  1357. "name": "PHP-FIG",
  1358. "homepage": "https://www.php-fig.org/"
  1359. }
  1360. ],
  1361. "description": "Common Container Interface (PHP FIG PSR-11)",
  1362. "homepage": "https://github.com/php-fig/container",
  1363. "keywords": [
  1364. "PSR-11",
  1365. "container",
  1366. "container-interface",
  1367. "container-interop",
  1368. "psr"
  1369. ],
  1370. "support": {
  1371. "issues": "https://github.com/php-fig/container/issues",
  1372. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1373. },
  1374. "time": "2021-03-05T17:36:06+00:00"
  1375. },
  1376. {
  1377. "name": "psr/log",
  1378. "version": "1.1.4",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/php-fig/log.git",
  1382. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1387. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1388. "shasum": "",
  1389. "mirrors": [
  1390. {
  1391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1392. "preferred": true
  1393. }
  1394. ]
  1395. },
  1396. "require": {
  1397. "php": ">=5.3.0"
  1398. },
  1399. "type": "library",
  1400. "extra": {
  1401. "branch-alias": {
  1402. "dev-master": "1.1.x-dev"
  1403. }
  1404. },
  1405. "autoload": {
  1406. "psr-4": {
  1407. "Psr\\Log\\": "Psr/Log/"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "PHP-FIG",
  1417. "homepage": "https://www.php-fig.org/"
  1418. }
  1419. ],
  1420. "description": "Common interface for logging libraries",
  1421. "homepage": "https://github.com/php-fig/log",
  1422. "keywords": [
  1423. "log",
  1424. "psr",
  1425. "psr-3"
  1426. ],
  1427. "support": {
  1428. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1429. },
  1430. "time": "2021-05-03T11:20:27+00:00"
  1431. },
  1432. {
  1433. "name": "psr/simple-cache",
  1434. "version": "1.0.1",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/php-fig/simple-cache.git",
  1438. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1443. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1444. "shasum": "",
  1445. "mirrors": [
  1446. {
  1447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1448. "preferred": true
  1449. }
  1450. ]
  1451. },
  1452. "require": {
  1453. "php": ">=5.3.0"
  1454. },
  1455. "type": "library",
  1456. "extra": {
  1457. "branch-alias": {
  1458. "dev-master": "1.0.x-dev"
  1459. }
  1460. },
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Psr\\SimpleCache\\": "src/"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "PHP-FIG",
  1473. "homepage": "http://www.php-fig.org/"
  1474. }
  1475. ],
  1476. "description": "Common interfaces for simple caching",
  1477. "keywords": [
  1478. "cache",
  1479. "caching",
  1480. "psr",
  1481. "psr-16",
  1482. "simple-cache"
  1483. ],
  1484. "support": {
  1485. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1486. },
  1487. "time": "2017-10-23T01:57:42+00:00"
  1488. },
  1489. {
  1490. "name": "symfony/console",
  1491. "version": "v5.4.35",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/symfony/console.git",
  1495. "reference": "dbdf6adcb88d5f83790e1efb57ef4074309d3931"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/symfony/console/zipball/dbdf6adcb88d5f83790e1efb57ef4074309d3931",
  1500. "reference": "dbdf6adcb88d5f83790e1efb57ef4074309d3931",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "php": ">=7.2.5",
  1511. "symfony/deprecation-contracts": "^2.1|^3",
  1512. "symfony/polyfill-mbstring": "~1.0",
  1513. "symfony/polyfill-php73": "^1.9",
  1514. "symfony/polyfill-php80": "^1.16",
  1515. "symfony/service-contracts": "^1.1|^2|^3",
  1516. "symfony/string": "^5.1|^6.0"
  1517. },
  1518. "conflict": {
  1519. "psr/log": ">=3",
  1520. "symfony/dependency-injection": "<4.4",
  1521. "symfony/dotenv": "<5.1",
  1522. "symfony/event-dispatcher": "<4.4",
  1523. "symfony/lock": "<4.4",
  1524. "symfony/process": "<4.4"
  1525. },
  1526. "provide": {
  1527. "psr/log-implementation": "1.0|2.0"
  1528. },
  1529. "require-dev": {
  1530. "psr/log": "^1|^2",
  1531. "symfony/config": "^4.4|^5.0|^6.0",
  1532. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1533. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  1534. "symfony/lock": "^4.4|^5.0|^6.0",
  1535. "symfony/process": "^4.4|^5.0|^6.0",
  1536. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1537. },
  1538. "suggest": {
  1539. "psr/log": "For using the console logger",
  1540. "symfony/event-dispatcher": "",
  1541. "symfony/lock": "",
  1542. "symfony/process": ""
  1543. },
  1544. "type": "library",
  1545. "autoload": {
  1546. "psr-4": {
  1547. "Symfony\\Component\\Console\\": ""
  1548. },
  1549. "exclude-from-classmap": [
  1550. "/Tests/"
  1551. ]
  1552. },
  1553. "notification-url": "https://packagist.org/downloads/",
  1554. "license": [
  1555. "MIT"
  1556. ],
  1557. "authors": [
  1558. {
  1559. "name": "Fabien Potencier",
  1560. "email": "fabien@symfony.com"
  1561. },
  1562. {
  1563. "name": "Symfony Community",
  1564. "homepage": "https://symfony.com/contributors"
  1565. }
  1566. ],
  1567. "description": "Eases the creation of beautiful and testable command line interfaces",
  1568. "homepage": "https://symfony.com",
  1569. "keywords": [
  1570. "cli",
  1571. "command-line",
  1572. "console",
  1573. "terminal"
  1574. ],
  1575. "support": {
  1576. "source": "https://github.com/symfony/console/tree/v5.4.35"
  1577. },
  1578. "funding": [
  1579. {
  1580. "url": "https://symfony.com/sponsor",
  1581. "type": "custom"
  1582. },
  1583. {
  1584. "url": "https://github.com/fabpot",
  1585. "type": "github"
  1586. },
  1587. {
  1588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1589. "type": "tidelift"
  1590. }
  1591. ],
  1592. "time": "2024-01-23T14:28:09+00:00"
  1593. },
  1594. {
  1595. "name": "symfony/deprecation-contracts",
  1596. "version": "v2.5.2",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/symfony/deprecation-contracts.git",
  1600. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1605. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1606. "shasum": "",
  1607. "mirrors": [
  1608. {
  1609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1610. "preferred": true
  1611. }
  1612. ]
  1613. },
  1614. "require": {
  1615. "php": ">=7.1"
  1616. },
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-main": "2.5-dev"
  1621. },
  1622. "thanks": {
  1623. "name": "symfony/contracts",
  1624. "url": "https://github.com/symfony/contracts"
  1625. }
  1626. },
  1627. "autoload": {
  1628. "files": [
  1629. "function.php"
  1630. ]
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Nicolas Grekas",
  1639. "email": "p@tchwork.com"
  1640. },
  1641. {
  1642. "name": "Symfony Community",
  1643. "homepage": "https://symfony.com/contributors"
  1644. }
  1645. ],
  1646. "description": "A generic function and convention to trigger deprecation notices",
  1647. "homepage": "https://symfony.com",
  1648. "support": {
  1649. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1650. },
  1651. "funding": [
  1652. {
  1653. "url": "https://symfony.com/sponsor",
  1654. "type": "custom"
  1655. },
  1656. {
  1657. "url": "https://github.com/fabpot",
  1658. "type": "github"
  1659. },
  1660. {
  1661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1662. "type": "tidelift"
  1663. }
  1664. ],
  1665. "time": "2022-01-02T09:53:40+00:00"
  1666. },
  1667. {
  1668. "name": "symfony/polyfill-ctype",
  1669. "version": "v1.28.0",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/polyfill-ctype.git",
  1673. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  1678. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  1679. "shasum": "",
  1680. "mirrors": [
  1681. {
  1682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1683. "preferred": true
  1684. }
  1685. ]
  1686. },
  1687. "require": {
  1688. "php": ">=7.1"
  1689. },
  1690. "provide": {
  1691. "ext-ctype": "*"
  1692. },
  1693. "suggest": {
  1694. "ext-ctype": "For best performance"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-main": "1.28-dev"
  1700. },
  1701. "thanks": {
  1702. "name": "symfony/polyfill",
  1703. "url": "https://github.com/symfony/polyfill"
  1704. }
  1705. },
  1706. "autoload": {
  1707. "files": [
  1708. "bootstrap.php"
  1709. ],
  1710. "psr-4": {
  1711. "Symfony\\Polyfill\\Ctype\\": ""
  1712. }
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "authors": [
  1719. {
  1720. "name": "Gert de Pagter",
  1721. "email": "BackEndTea@gmail.com"
  1722. },
  1723. {
  1724. "name": "Symfony Community",
  1725. "homepage": "https://symfony.com/contributors"
  1726. }
  1727. ],
  1728. "description": "Symfony polyfill for ctype functions",
  1729. "homepage": "https://symfony.com",
  1730. "keywords": [
  1731. "compatibility",
  1732. "ctype",
  1733. "polyfill",
  1734. "portable"
  1735. ],
  1736. "support": {
  1737. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  1738. },
  1739. "funding": [
  1740. {
  1741. "url": "https://symfony.com/sponsor",
  1742. "type": "custom"
  1743. },
  1744. {
  1745. "url": "https://github.com/fabpot",
  1746. "type": "github"
  1747. },
  1748. {
  1749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1750. "type": "tidelift"
  1751. }
  1752. ],
  1753. "time": "2023-01-26T09:26:14+00:00"
  1754. },
  1755. {
  1756. "name": "symfony/polyfill-intl-grapheme",
  1757. "version": "v1.29.0",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1761. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1766. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1767. "shasum": "",
  1768. "mirrors": [
  1769. {
  1770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1771. "preferred": true
  1772. }
  1773. ]
  1774. },
  1775. "require": {
  1776. "php": ">=7.1"
  1777. },
  1778. "suggest": {
  1779. "ext-intl": "For best performance"
  1780. },
  1781. "type": "library",
  1782. "extra": {
  1783. "thanks": {
  1784. "name": "symfony/polyfill",
  1785. "url": "https://github.com/symfony/polyfill"
  1786. }
  1787. },
  1788. "autoload": {
  1789. "files": [
  1790. "bootstrap.php"
  1791. ],
  1792. "psr-4": {
  1793. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  1794. }
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "MIT"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Nicolas Grekas",
  1803. "email": "p@tchwork.com"
  1804. },
  1805. {
  1806. "name": "Symfony Community",
  1807. "homepage": "https://symfony.com/contributors"
  1808. }
  1809. ],
  1810. "description": "Symfony polyfill for intl's grapheme_* functions",
  1811. "homepage": "https://symfony.com",
  1812. "keywords": [
  1813. "compatibility",
  1814. "grapheme",
  1815. "intl",
  1816. "polyfill",
  1817. "portable",
  1818. "shim"
  1819. ],
  1820. "support": {
  1821. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  1822. },
  1823. "funding": [
  1824. {
  1825. "url": "https://symfony.com/sponsor",
  1826. "type": "custom"
  1827. },
  1828. {
  1829. "url": "https://github.com/fabpot",
  1830. "type": "github"
  1831. },
  1832. {
  1833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1834. "type": "tidelift"
  1835. }
  1836. ],
  1837. "time": "2024-01-29T20:11:03+00:00"
  1838. },
  1839. {
  1840. "name": "symfony/polyfill-intl-normalizer",
  1841. "version": "v1.28.0",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1845. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  1850. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  1851. "shasum": "",
  1852. "mirrors": [
  1853. {
  1854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1855. "preferred": true
  1856. }
  1857. ]
  1858. },
  1859. "require": {
  1860. "php": ">=7.1"
  1861. },
  1862. "suggest": {
  1863. "ext-intl": "For best performance"
  1864. },
  1865. "type": "library",
  1866. "extra": {
  1867. "branch-alias": {
  1868. "dev-main": "1.28-dev"
  1869. },
  1870. "thanks": {
  1871. "name": "symfony/polyfill",
  1872. "url": "https://github.com/symfony/polyfill"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "files": [
  1877. "bootstrap.php"
  1878. ],
  1879. "psr-4": {
  1880. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1881. },
  1882. "classmap": [
  1883. "Resources/stubs"
  1884. ]
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Nicolas Grekas",
  1893. "email": "p@tchwork.com"
  1894. },
  1895. {
  1896. "name": "Symfony Community",
  1897. "homepage": "https://symfony.com/contributors"
  1898. }
  1899. ],
  1900. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1901. "homepage": "https://symfony.com",
  1902. "keywords": [
  1903. "compatibility",
  1904. "intl",
  1905. "normalizer",
  1906. "polyfill",
  1907. "portable",
  1908. "shim"
  1909. ],
  1910. "support": {
  1911. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://symfony.com/sponsor",
  1916. "type": "custom"
  1917. },
  1918. {
  1919. "url": "https://github.com/fabpot",
  1920. "type": "github"
  1921. },
  1922. {
  1923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1924. "type": "tidelift"
  1925. }
  1926. ],
  1927. "time": "2023-01-26T09:26:14+00:00"
  1928. },
  1929. {
  1930. "name": "symfony/polyfill-mbstring",
  1931. "version": "v1.28.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1935. "reference": "42292d99c55abe617799667f454222c54c60e229"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  1940. "reference": "42292d99c55abe617799667f454222c54c60e229",
  1941. "shasum": "",
  1942. "mirrors": [
  1943. {
  1944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1945. "preferred": true
  1946. }
  1947. ]
  1948. },
  1949. "require": {
  1950. "php": ">=7.1"
  1951. },
  1952. "provide": {
  1953. "ext-mbstring": "*"
  1954. },
  1955. "suggest": {
  1956. "ext-mbstring": "For best performance"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-main": "1.28-dev"
  1962. },
  1963. "thanks": {
  1964. "name": "symfony/polyfill",
  1965. "url": "https://github.com/symfony/polyfill"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "files": [
  1970. "bootstrap.php"
  1971. ],
  1972. "psr-4": {
  1973. "Symfony\\Polyfill\\Mbstring\\": ""
  1974. }
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Nicolas Grekas",
  1983. "email": "p@tchwork.com"
  1984. },
  1985. {
  1986. "name": "Symfony Community",
  1987. "homepage": "https://symfony.com/contributors"
  1988. }
  1989. ],
  1990. "description": "Symfony polyfill for the Mbstring extension",
  1991. "homepage": "https://symfony.com",
  1992. "keywords": [
  1993. "compatibility",
  1994. "mbstring",
  1995. "polyfill",
  1996. "portable",
  1997. "shim"
  1998. ],
  1999. "support": {
  2000. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  2001. },
  2002. "funding": [
  2003. {
  2004. "url": "https://symfony.com/sponsor",
  2005. "type": "custom"
  2006. },
  2007. {
  2008. "url": "https://github.com/fabpot",
  2009. "type": "github"
  2010. },
  2011. {
  2012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2013. "type": "tidelift"
  2014. }
  2015. ],
  2016. "time": "2023-07-28T09:04:16+00:00"
  2017. },
  2018. {
  2019. "name": "symfony/polyfill-php73",
  2020. "version": "v1.28.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/symfony/polyfill-php73.git",
  2024. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  2029. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  2030. "shasum": "",
  2031. "mirrors": [
  2032. {
  2033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2034. "preferred": true
  2035. }
  2036. ]
  2037. },
  2038. "require": {
  2039. "php": ">=7.1"
  2040. },
  2041. "type": "library",
  2042. "extra": {
  2043. "branch-alias": {
  2044. "dev-main": "1.28-dev"
  2045. },
  2046. "thanks": {
  2047. "name": "symfony/polyfill",
  2048. "url": "https://github.com/symfony/polyfill"
  2049. }
  2050. },
  2051. "autoload": {
  2052. "files": [
  2053. "bootstrap.php"
  2054. ],
  2055. "psr-4": {
  2056. "Symfony\\Polyfill\\Php73\\": ""
  2057. },
  2058. "classmap": [
  2059. "Resources/stubs"
  2060. ]
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Nicolas Grekas",
  2069. "email": "p@tchwork.com"
  2070. },
  2071. {
  2072. "name": "Symfony Community",
  2073. "homepage": "https://symfony.com/contributors"
  2074. }
  2075. ],
  2076. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2077. "homepage": "https://symfony.com",
  2078. "keywords": [
  2079. "compatibility",
  2080. "polyfill",
  2081. "portable",
  2082. "shim"
  2083. ],
  2084. "support": {
  2085. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  2086. },
  2087. "funding": [
  2088. {
  2089. "url": "https://symfony.com/sponsor",
  2090. "type": "custom"
  2091. },
  2092. {
  2093. "url": "https://github.com/fabpot",
  2094. "type": "github"
  2095. },
  2096. {
  2097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2098. "type": "tidelift"
  2099. }
  2100. ],
  2101. "time": "2023-01-26T09:26:14+00:00"
  2102. },
  2103. {
  2104. "name": "symfony/polyfill-php80",
  2105. "version": "v1.29.0",
  2106. "source": {
  2107. "type": "git",
  2108. "url": "https://github.com/symfony/polyfill-php80.git",
  2109. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  2110. },
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2114. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2115. "shasum": "",
  2116. "mirrors": [
  2117. {
  2118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2119. "preferred": true
  2120. }
  2121. ]
  2122. },
  2123. "require": {
  2124. "php": ">=7.1"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "thanks": {
  2129. "name": "symfony/polyfill",
  2130. "url": "https://github.com/symfony/polyfill"
  2131. }
  2132. },
  2133. "autoload": {
  2134. "files": [
  2135. "bootstrap.php"
  2136. ],
  2137. "psr-4": {
  2138. "Symfony\\Polyfill\\Php80\\": ""
  2139. },
  2140. "classmap": [
  2141. "Resources/stubs"
  2142. ]
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Ion Bazan",
  2151. "email": "ion.bazan@gmail.com"
  2152. },
  2153. {
  2154. "name": "Nicolas Grekas",
  2155. "email": "p@tchwork.com"
  2156. },
  2157. {
  2158. "name": "Symfony Community",
  2159. "homepage": "https://symfony.com/contributors"
  2160. }
  2161. ],
  2162. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2163. "homepage": "https://symfony.com",
  2164. "keywords": [
  2165. "compatibility",
  2166. "polyfill",
  2167. "portable",
  2168. "shim"
  2169. ],
  2170. "support": {
  2171. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  2172. },
  2173. "funding": [
  2174. {
  2175. "url": "https://symfony.com/sponsor",
  2176. "type": "custom"
  2177. },
  2178. {
  2179. "url": "https://github.com/fabpot",
  2180. "type": "github"
  2181. },
  2182. {
  2183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2184. "type": "tidelift"
  2185. }
  2186. ],
  2187. "time": "2024-01-29T20:11:03+00:00"
  2188. },
  2189. {
  2190. "name": "symfony/service-contracts",
  2191. "version": "v2.5.2",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://github.com/symfony/service-contracts.git",
  2195. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  2200. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  2201. "shasum": "",
  2202. "mirrors": [
  2203. {
  2204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2205. "preferred": true
  2206. }
  2207. ]
  2208. },
  2209. "require": {
  2210. "php": ">=7.2.5",
  2211. "psr/container": "^1.1",
  2212. "symfony/deprecation-contracts": "^2.1|^3"
  2213. },
  2214. "conflict": {
  2215. "ext-psr": "<1.1|>=2"
  2216. },
  2217. "suggest": {
  2218. "symfony/service-implementation": ""
  2219. },
  2220. "type": "library",
  2221. "extra": {
  2222. "branch-alias": {
  2223. "dev-main": "2.5-dev"
  2224. },
  2225. "thanks": {
  2226. "name": "symfony/contracts",
  2227. "url": "https://github.com/symfony/contracts"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Symfony\\Contracts\\Service\\": ""
  2233. }
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "authors": [
  2240. {
  2241. "name": "Nicolas Grekas",
  2242. "email": "p@tchwork.com"
  2243. },
  2244. {
  2245. "name": "Symfony Community",
  2246. "homepage": "https://symfony.com/contributors"
  2247. }
  2248. ],
  2249. "description": "Generic abstractions related to writing services",
  2250. "homepage": "https://symfony.com",
  2251. "keywords": [
  2252. "abstractions",
  2253. "contracts",
  2254. "decoupling",
  2255. "interfaces",
  2256. "interoperability",
  2257. "standards"
  2258. ],
  2259. "support": {
  2260. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  2261. },
  2262. "funding": [
  2263. {
  2264. "url": "https://symfony.com/sponsor",
  2265. "type": "custom"
  2266. },
  2267. {
  2268. "url": "https://github.com/fabpot",
  2269. "type": "github"
  2270. },
  2271. {
  2272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2273. "type": "tidelift"
  2274. }
  2275. ],
  2276. "time": "2022-05-30T19:17:29+00:00"
  2277. },
  2278. {
  2279. "name": "symfony/string",
  2280. "version": "v5.4.35",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/symfony/string.git",
  2284. "reference": "c209c4d0559acce1c9a2067612cfb5d35756edc2"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/symfony/string/zipball/c209c4d0559acce1c9a2067612cfb5d35756edc2",
  2289. "reference": "c209c4d0559acce1c9a2067612cfb5d35756edc2",
  2290. "shasum": "",
  2291. "mirrors": [
  2292. {
  2293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2294. "preferred": true
  2295. }
  2296. ]
  2297. },
  2298. "require": {
  2299. "php": ">=7.2.5",
  2300. "symfony/polyfill-ctype": "~1.8",
  2301. "symfony/polyfill-intl-grapheme": "~1.0",
  2302. "symfony/polyfill-intl-normalizer": "~1.0",
  2303. "symfony/polyfill-mbstring": "~1.0",
  2304. "symfony/polyfill-php80": "~1.15"
  2305. },
  2306. "conflict": {
  2307. "symfony/translation-contracts": ">=3.0"
  2308. },
  2309. "require-dev": {
  2310. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2311. "symfony/http-client": "^4.4|^5.0|^6.0",
  2312. "symfony/translation-contracts": "^1.1|^2",
  2313. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2314. },
  2315. "type": "library",
  2316. "autoload": {
  2317. "files": [
  2318. "Resources/functions.php"
  2319. ],
  2320. "psr-4": {
  2321. "Symfony\\Component\\String\\": ""
  2322. },
  2323. "exclude-from-classmap": [
  2324. "/Tests/"
  2325. ]
  2326. },
  2327. "notification-url": "https://packagist.org/downloads/",
  2328. "license": [
  2329. "MIT"
  2330. ],
  2331. "authors": [
  2332. {
  2333. "name": "Nicolas Grekas",
  2334. "email": "p@tchwork.com"
  2335. },
  2336. {
  2337. "name": "Symfony Community",
  2338. "homepage": "https://symfony.com/contributors"
  2339. }
  2340. ],
  2341. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2342. "homepage": "https://symfony.com",
  2343. "keywords": [
  2344. "grapheme",
  2345. "i18n",
  2346. "string",
  2347. "unicode",
  2348. "utf-8",
  2349. "utf8"
  2350. ],
  2351. "support": {
  2352. "source": "https://github.com/symfony/string/tree/v5.4.35"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://symfony.com/sponsor",
  2357. "type": "custom"
  2358. },
  2359. {
  2360. "url": "https://github.com/fabpot",
  2361. "type": "github"
  2362. },
  2363. {
  2364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2365. "type": "tidelift"
  2366. }
  2367. ],
  2368. "time": "2024-01-23T13:51:25+00:00"
  2369. },
  2370. {
  2371. "name": "symfony/translation",
  2372. "version": "v5.4.35",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/symfony/translation.git",
  2376. "reference": "77d7d1e46f52827585e65e6cd6f52a2542e59c72"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/symfony/translation/zipball/77d7d1e46f52827585e65e6cd6f52a2542e59c72",
  2381. "reference": "77d7d1e46f52827585e65e6cd6f52a2542e59c72",
  2382. "shasum": "",
  2383. "mirrors": [
  2384. {
  2385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2386. "preferred": true
  2387. }
  2388. ]
  2389. },
  2390. "require": {
  2391. "php": ">=7.2.5",
  2392. "symfony/deprecation-contracts": "^2.1|^3",
  2393. "symfony/polyfill-mbstring": "~1.0",
  2394. "symfony/polyfill-php80": "^1.16",
  2395. "symfony/translation-contracts": "^2.3"
  2396. },
  2397. "conflict": {
  2398. "symfony/config": "<4.4",
  2399. "symfony/console": "<5.3",
  2400. "symfony/dependency-injection": "<5.0",
  2401. "symfony/http-kernel": "<5.0",
  2402. "symfony/twig-bundle": "<5.0",
  2403. "symfony/yaml": "<4.4"
  2404. },
  2405. "provide": {
  2406. "symfony/translation-implementation": "2.3"
  2407. },
  2408. "require-dev": {
  2409. "psr/log": "^1|^2|^3",
  2410. "symfony/config": "^4.4|^5.0|^6.0",
  2411. "symfony/console": "^5.4|^6.0",
  2412. "symfony/dependency-injection": "^5.0|^6.0",
  2413. "symfony/finder": "^4.4|^5.0|^6.0",
  2414. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  2415. "symfony/http-kernel": "^5.0|^6.0",
  2416. "symfony/intl": "^4.4|^5.0|^6.0",
  2417. "symfony/polyfill-intl-icu": "^1.21",
  2418. "symfony/service-contracts": "^1.1.2|^2|^3",
  2419. "symfony/yaml": "^4.4|^5.0|^6.0"
  2420. },
  2421. "suggest": {
  2422. "psr/log-implementation": "To use logging capability in translator",
  2423. "symfony/config": "",
  2424. "symfony/yaml": ""
  2425. },
  2426. "type": "library",
  2427. "autoload": {
  2428. "files": [
  2429. "Resources/functions.php"
  2430. ],
  2431. "psr-4": {
  2432. "Symfony\\Component\\Translation\\": ""
  2433. },
  2434. "exclude-from-classmap": [
  2435. "/Tests/"
  2436. ]
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "authors": [
  2443. {
  2444. "name": "Fabien Potencier",
  2445. "email": "fabien@symfony.com"
  2446. },
  2447. {
  2448. "name": "Symfony Community",
  2449. "homepage": "https://symfony.com/contributors"
  2450. }
  2451. ],
  2452. "description": "Provides tools to internationalize your application",
  2453. "homepage": "https://symfony.com",
  2454. "support": {
  2455. "source": "https://github.com/symfony/translation/tree/v5.4.35"
  2456. },
  2457. "funding": [
  2458. {
  2459. "url": "https://symfony.com/sponsor",
  2460. "type": "custom"
  2461. },
  2462. {
  2463. "url": "https://github.com/fabpot",
  2464. "type": "github"
  2465. },
  2466. {
  2467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2468. "type": "tidelift"
  2469. }
  2470. ],
  2471. "time": "2024-01-23T13:51:25+00:00"
  2472. },
  2473. {
  2474. "name": "symfony/translation-contracts",
  2475. "version": "v2.5.2",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/symfony/translation-contracts.git",
  2479. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2484. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2485. "shasum": "",
  2486. "mirrors": [
  2487. {
  2488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2489. "preferred": true
  2490. }
  2491. ]
  2492. },
  2493. "require": {
  2494. "php": ">=7.2.5"
  2495. },
  2496. "suggest": {
  2497. "symfony/translation-implementation": ""
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-main": "2.5-dev"
  2503. },
  2504. "thanks": {
  2505. "name": "symfony/contracts",
  2506. "url": "https://github.com/symfony/contracts"
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Symfony\\Contracts\\Translation\\": ""
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Nicolas Grekas",
  2521. "email": "p@tchwork.com"
  2522. },
  2523. {
  2524. "name": "Symfony Community",
  2525. "homepage": "https://symfony.com/contributors"
  2526. }
  2527. ],
  2528. "description": "Generic abstractions related to translation",
  2529. "homepage": "https://symfony.com",
  2530. "keywords": [
  2531. "abstractions",
  2532. "contracts",
  2533. "decoupling",
  2534. "interfaces",
  2535. "interoperability",
  2536. "standards"
  2537. ],
  2538. "support": {
  2539. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  2540. },
  2541. "funding": [
  2542. {
  2543. "url": "https://symfony.com/sponsor",
  2544. "type": "custom"
  2545. },
  2546. {
  2547. "url": "https://github.com/fabpot",
  2548. "type": "github"
  2549. },
  2550. {
  2551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2552. "type": "tidelift"
  2553. }
  2554. ],
  2555. "time": "2022-06-27T16:58:25+00:00"
  2556. },
  2557. {
  2558. "name": "symfony/var-dumper",
  2559. "version": "v5.4.35",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/symfony/var-dumper.git",
  2563. "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ce4685b30e47d94dfc990c5566285ff99ddf012b",
  2568. "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b",
  2569. "shasum": "",
  2570. "mirrors": [
  2571. {
  2572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2573. "preferred": true
  2574. }
  2575. ]
  2576. },
  2577. "require": {
  2578. "php": ">=7.2.5",
  2579. "symfony/polyfill-mbstring": "~1.0",
  2580. "symfony/polyfill-php80": "^1.16"
  2581. },
  2582. "conflict": {
  2583. "symfony/console": "<4.4"
  2584. },
  2585. "require-dev": {
  2586. "ext-iconv": "*",
  2587. "symfony/console": "^4.4|^5.0|^6.0",
  2588. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2589. "symfony/process": "^4.4|^5.0|^6.0",
  2590. "symfony/uid": "^5.1|^6.0",
  2591. "twig/twig": "^2.13|^3.0.4"
  2592. },
  2593. "suggest": {
  2594. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2595. "ext-intl": "To show region name in time zone dump",
  2596. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2597. },
  2598. "bin": [
  2599. "Resources/bin/var-dump-server"
  2600. ],
  2601. "type": "library",
  2602. "autoload": {
  2603. "files": [
  2604. "Resources/functions/dump.php"
  2605. ],
  2606. "psr-4": {
  2607. "Symfony\\Component\\VarDumper\\": ""
  2608. },
  2609. "exclude-from-classmap": [
  2610. "/Tests/"
  2611. ]
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "MIT"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "Nicolas Grekas",
  2620. "email": "p@tchwork.com"
  2621. },
  2622. {
  2623. "name": "Symfony Community",
  2624. "homepage": "https://symfony.com/contributors"
  2625. }
  2626. ],
  2627. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2628. "homepage": "https://symfony.com",
  2629. "keywords": [
  2630. "debug",
  2631. "dump"
  2632. ],
  2633. "support": {
  2634. "source": "https://github.com/symfony/var-dumper/tree/v5.4.35"
  2635. },
  2636. "funding": [
  2637. {
  2638. "url": "https://symfony.com/sponsor",
  2639. "type": "custom"
  2640. },
  2641. {
  2642. "url": "https://github.com/fabpot",
  2643. "type": "github"
  2644. },
  2645. {
  2646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2647. "type": "tidelift"
  2648. }
  2649. ],
  2650. "time": "2024-01-23T14:28:09+00:00"
  2651. },
  2652. {
  2653. "name": "topthink/think-container",
  2654. "version": "v2.0.5",
  2655. "source": {
  2656. "type": "git",
  2657. "url": "https://github.com/top-think/think-container.git",
  2658. "reference": "2189b39e42af2c14203ed4372b92e38989e9dabb"
  2659. },
  2660. "dist": {
  2661. "type": "zip",
  2662. "url": "https://api.github.com/repos/top-think/think-container/zipball/2189b39e42af2c14203ed4372b92e38989e9dabb",
  2663. "reference": "2189b39e42af2c14203ed4372b92e38989e9dabb",
  2664. "shasum": "",
  2665. "mirrors": [
  2666. {
  2667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2668. "preferred": true
  2669. }
  2670. ]
  2671. },
  2672. "require": {
  2673. "php": ">=7.2.0",
  2674. "psr/container": "^1.0|^2.0",
  2675. "topthink/think-helper": "^3.1"
  2676. },
  2677. "require-dev": {
  2678. "phpunit/phpunit": "^7.0|^8.0"
  2679. },
  2680. "type": "library",
  2681. "autoload": {
  2682. "files": [],
  2683. "psr-4": {
  2684. "think\\": "src"
  2685. }
  2686. },
  2687. "notification-url": "https://packagist.org/downloads/",
  2688. "license": [
  2689. "Apache-2.0"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "liu21st",
  2694. "email": "liu21st@gmail.com"
  2695. }
  2696. ],
  2697. "description": "PHP Container & Facade Manager",
  2698. "support": {
  2699. "issues": "https://github.com/top-think/think-container/issues",
  2700. "source": "https://github.com/top-think/think-container/tree/v2.0.5"
  2701. },
  2702. "time": "2022-05-23T06:24:54+00:00"
  2703. },
  2704. {
  2705. "name": "topthink/think-helper",
  2706. "version": "v3.1.6",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/top-think/think-helper.git",
  2710. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2715. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2716. "shasum": "",
  2717. "mirrors": [
  2718. {
  2719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2720. "preferred": true
  2721. }
  2722. ]
  2723. },
  2724. "require": {
  2725. "php": ">=7.1.0"
  2726. },
  2727. "require-dev": {
  2728. "phpunit/phpunit": "^9.5"
  2729. },
  2730. "type": "library",
  2731. "autoload": {
  2732. "files": [
  2733. "src/helper.php"
  2734. ],
  2735. "psr-4": {
  2736. "think\\": "src"
  2737. }
  2738. },
  2739. "notification-url": "https://packagist.org/downloads/",
  2740. "license": [
  2741. "Apache-2.0"
  2742. ],
  2743. "authors": [
  2744. {
  2745. "name": "yunwuxin",
  2746. "email": "448901948@qq.com"
  2747. }
  2748. ],
  2749. "description": "The ThinkPHP6 Helper Package",
  2750. "support": {
  2751. "issues": "https://github.com/top-think/think-helper/issues",
  2752. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  2753. },
  2754. "time": "2021-12-15T04:27:55+00:00"
  2755. },
  2756. {
  2757. "name": "topthink/think-validate",
  2758. "version": "v2.0.2",
  2759. "source": {
  2760. "type": "git",
  2761. "url": "https://github.com/top-think/think-validate.git",
  2762. "reference": "857f9bffc1a09a41e3969a19726cb04315848f0f"
  2763. },
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/top-think/think-validate/zipball/857f9bffc1a09a41e3969a19726cb04315848f0f",
  2767. "reference": "857f9bffc1a09a41e3969a19726cb04315848f0f",
  2768. "shasum": "",
  2769. "mirrors": [
  2770. {
  2771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2772. "preferred": true
  2773. }
  2774. ]
  2775. },
  2776. "require": {
  2777. "php": ">=7.1.0",
  2778. "topthink/think-container": "~2.0"
  2779. },
  2780. "type": "library",
  2781. "autoload": {
  2782. "files": [],
  2783. "psr-4": {
  2784. "think\\": "src"
  2785. }
  2786. },
  2787. "notification-url": "https://packagist.org/downloads/",
  2788. "license": [
  2789. "Apache-2.0"
  2790. ],
  2791. "authors": [
  2792. {
  2793. "name": "liu21st",
  2794. "email": "liu21st@gmail.com"
  2795. }
  2796. ],
  2797. "description": "think validate",
  2798. "support": {
  2799. "issues": "https://github.com/top-think/think-validate/issues",
  2800. "source": "https://github.com/top-think/think-validate/tree/2.0"
  2801. },
  2802. "time": "2019-05-15T06:58:23+00:00"
  2803. },
  2804. {
  2805. "name": "vlucas/phpdotenv",
  2806. "version": "v5.5.0",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/vlucas/phpdotenv.git",
  2810. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  2815. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  2816. "shasum": "",
  2817. "mirrors": [
  2818. {
  2819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2820. "preferred": true
  2821. }
  2822. ]
  2823. },
  2824. "require": {
  2825. "ext-pcre": "*",
  2826. "graham-campbell/result-type": "^1.0.2",
  2827. "php": "^7.1.3 || ^8.0",
  2828. "phpoption/phpoption": "^1.8",
  2829. "symfony/polyfill-ctype": "^1.23",
  2830. "symfony/polyfill-mbstring": "^1.23.1",
  2831. "symfony/polyfill-php80": "^1.23.1"
  2832. },
  2833. "require-dev": {
  2834. "bamarni/composer-bin-plugin": "^1.4.1",
  2835. "ext-filter": "*",
  2836. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  2837. },
  2838. "suggest": {
  2839. "ext-filter": "Required to use the boolean validator."
  2840. },
  2841. "type": "library",
  2842. "extra": {
  2843. "bamarni-bin": {
  2844. "bin-links": true,
  2845. "forward-command": true
  2846. },
  2847. "branch-alias": {
  2848. "dev-master": "5.5-dev"
  2849. }
  2850. },
  2851. "autoload": {
  2852. "psr-4": {
  2853. "Dotenv\\": "src/"
  2854. }
  2855. },
  2856. "notification-url": "https://packagist.org/downloads/",
  2857. "license": [
  2858. "BSD-3-Clause"
  2859. ],
  2860. "authors": [
  2861. {
  2862. "name": "Graham Campbell",
  2863. "email": "hello@gjcampbell.co.uk",
  2864. "homepage": "https://github.com/GrahamCampbell"
  2865. },
  2866. {
  2867. "name": "Vance Lucas",
  2868. "email": "vance@vancelucas.com",
  2869. "homepage": "https://github.com/vlucas"
  2870. }
  2871. ],
  2872. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2873. "keywords": [
  2874. "dotenv",
  2875. "env",
  2876. "environment"
  2877. ],
  2878. "support": {
  2879. "issues": "https://github.com/vlucas/phpdotenv/issues",
  2880. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  2881. },
  2882. "funding": [
  2883. {
  2884. "url": "https://github.com/GrahamCampbell",
  2885. "type": "github"
  2886. },
  2887. {
  2888. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  2889. "type": "tidelift"
  2890. }
  2891. ],
  2892. "time": "2022-10-16T01:01:54+00:00"
  2893. },
  2894. {
  2895. "name": "voku/portable-ascii",
  2896. "version": "1.6.1",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/voku/portable-ascii.git",
  2900. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  2905. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  2906. "shasum": "",
  2907. "mirrors": [
  2908. {
  2909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2910. "preferred": true
  2911. }
  2912. ]
  2913. },
  2914. "require": {
  2915. "php": ">=7.0.0"
  2916. },
  2917. "require-dev": {
  2918. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  2919. },
  2920. "suggest": {
  2921. "ext-intl": "Use Intl for transliterator_transliterate() support"
  2922. },
  2923. "type": "library",
  2924. "autoload": {
  2925. "psr-4": {
  2926. "voku\\": "src/voku/"
  2927. }
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "MIT"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "Lars Moelleken",
  2936. "homepage": "http://www.moelleken.org/"
  2937. }
  2938. ],
  2939. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  2940. "homepage": "https://github.com/voku/portable-ascii",
  2941. "keywords": [
  2942. "ascii",
  2943. "clean",
  2944. "php"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/voku/portable-ascii/issues",
  2948. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://www.paypal.me/moelleken",
  2953. "type": "custom"
  2954. },
  2955. {
  2956. "url": "https://github.com/voku",
  2957. "type": "github"
  2958. },
  2959. {
  2960. "url": "https://opencollective.com/portable-ascii",
  2961. "type": "open_collective"
  2962. },
  2963. {
  2964. "url": "https://www.patreon.com/voku",
  2965. "type": "patreon"
  2966. },
  2967. {
  2968. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  2969. "type": "tidelift"
  2970. }
  2971. ],
  2972. "time": "2022-01-24T18:55:24+00:00"
  2973. },
  2974. {
  2975. "name": "workerman/webman-framework",
  2976. "version": "v1.5.16",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/walkor/webman-framework.git",
  2980. "reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/walkor/webman-framework/zipball/84335520a340ee60adf7cf17aeb0edb9536c24e8",
  2985. "reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8",
  2986. "shasum": "",
  2987. "mirrors": [
  2988. {
  2989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2990. "preferred": true
  2991. }
  2992. ]
  2993. },
  2994. "require": {
  2995. "ext-json": "*",
  2996. "nikic/fast-route": "^1.3",
  2997. "php": ">=7.2",
  2998. "psr/container": ">=1.0",
  2999. "workerman/workerman": "^4.0.4 || ^5.0.0"
  3000. },
  3001. "suggest": {
  3002. "ext-event": "For better performance. "
  3003. },
  3004. "type": "library",
  3005. "autoload": {
  3006. "psr-4": {
  3007. "Webman\\": "./src",
  3008. "Support\\": "./src/support",
  3009. "support\\": "./src/support",
  3010. "Support\\View\\": "./src/support/view",
  3011. "Support\\Bootstrap\\": "./src/support/bootstrap",
  3012. "Support\\Exception\\": "./src/support/exception"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "walkor",
  3022. "email": "walkor@workerman.net",
  3023. "homepage": "https://www.workerman.net",
  3024. "role": "Developer"
  3025. }
  3026. ],
  3027. "description": "High performance HTTP Service Framework.",
  3028. "homepage": "https://www.workerman.net",
  3029. "keywords": [
  3030. "High Performance",
  3031. "http service"
  3032. ],
  3033. "support": {
  3034. "email": "walkor@workerman.net",
  3035. "forum": "https://wenda.workerman.net/",
  3036. "issues": "https://github.com/walkor/webman/issues",
  3037. "source": "https://github.com/walkor/webman-framework",
  3038. "wiki": "https://doc.workerman.net/"
  3039. },
  3040. "time": "2024-01-15T12:11:49+00:00"
  3041. },
  3042. {
  3043. "name": "workerman/workerman",
  3044. "version": "v4.1.15",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/walkor/workerman.git",
  3048. "reference": "afc8242fc769ab7cf22eb4ac22b97cb59d465e4e"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/walkor/workerman/zipball/afc8242fc769ab7cf22eb4ac22b97cb59d465e4e",
  3053. "reference": "afc8242fc769ab7cf22eb4ac22b97cb59d465e4e",
  3054. "shasum": "",
  3055. "mirrors": [
  3056. {
  3057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3058. "preferred": true
  3059. }
  3060. ]
  3061. },
  3062. "require": {
  3063. "php": ">=7.0"
  3064. },
  3065. "suggest": {
  3066. "ext-event": "For better performance. "
  3067. },
  3068. "type": "library",
  3069. "autoload": {
  3070. "psr-4": {
  3071. "Workerman\\": "./"
  3072. }
  3073. },
  3074. "notification-url": "https://packagist.org/downloads/",
  3075. "license": [
  3076. "MIT"
  3077. ],
  3078. "authors": [
  3079. {
  3080. "name": "walkor",
  3081. "email": "walkor@workerman.net",
  3082. "homepage": "http://www.workerman.net",
  3083. "role": "Developer"
  3084. }
  3085. ],
  3086. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3087. "homepage": "http://www.workerman.net",
  3088. "keywords": [
  3089. "asynchronous",
  3090. "event-loop"
  3091. ],
  3092. "support": {
  3093. "email": "walkor@workerman.net",
  3094. "forum": "http://wenda.workerman.net/",
  3095. "issues": "https://github.com/walkor/workerman/issues",
  3096. "source": "https://github.com/walkor/workerman",
  3097. "wiki": "http://doc.workerman.net/"
  3098. },
  3099. "funding": [
  3100. {
  3101. "url": "https://opencollective.com/workerman",
  3102. "type": "open_collective"
  3103. },
  3104. {
  3105. "url": "https://www.patreon.com/walkor",
  3106. "type": "patreon"
  3107. }
  3108. ],
  3109. "time": "2024-02-19T02:10:39+00:00"
  3110. }
  3111. ],
  3112. "packages-dev": [],
  3113. "aliases": [],
  3114. "minimum-stability": "stable",
  3115. "stability-flags": [],
  3116. "prefer-stable": false,
  3117. "prefer-lowest": false,
  3118. "platform": {
  3119. "php": ">=7.2"
  3120. },
  3121. "platform-dev": [],
  3122. "plugin-api-version": "2.6.0"
  3123. }