composer.lock 101 KB

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