installed.json 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296
  1. {
  2. "packages": [
  3. {
  4. "name": "aliyuncs/oss-sdk-php",
  5. "version": "v2.6.0",
  6. "version_normalized": "2.6.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  10. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  15. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "php": ">=5.3"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "*",
  29. "satooshi/php-coveralls": "*"
  30. },
  31. "time": "2022-08-03T08:06:01+00:00",
  32. "type": "library",
  33. "installation-source": "dist",
  34. "autoload": {
  35. "psr-4": {
  36. "OSS\\": "src/OSS"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Aliyuncs",
  46. "homepage": "http://www.aliyun.com"
  47. }
  48. ],
  49. "description": "Aliyun OSS SDK for PHP",
  50. "homepage": "http://www.aliyun.com/product/oss/",
  51. "support": {
  52. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  53. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.6.0"
  54. },
  55. "install-path": "../aliyuncs/oss-sdk-php"
  56. },
  57. {
  58. "name": "easywechat-composer/easywechat-composer",
  59. "version": "1.4.1",
  60. "version_normalized": "1.4.1.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/mingyoung/easywechat-composer.git",
  64. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  69. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  70. "shasum": "",
  71. "mirrors": [
  72. {
  73. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  74. "preferred": true
  75. }
  76. ]
  77. },
  78. "require": {
  79. "composer-plugin-api": "^1.0 || ^2.0",
  80. "php": ">=7.0"
  81. },
  82. "require-dev": {
  83. "composer/composer": "^1.0 || ^2.0",
  84. "phpunit/phpunit": "^6.5 || ^7.0"
  85. },
  86. "time": "2021-07-05T04:03:22+00:00",
  87. "type": "composer-plugin",
  88. "extra": {
  89. "class": "EasyWeChatComposer\\Plugin"
  90. },
  91. "installation-source": "dist",
  92. "autoload": {
  93. "psr-4": {
  94. "EasyWeChatComposer\\": "src/"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "张铭阳",
  104. "email": "mingyoungcheung@gmail.com"
  105. }
  106. ],
  107. "description": "The composer plugin for EasyWeChat",
  108. "support": {
  109. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  110. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  111. },
  112. "install-path": "../easywechat-composer/easywechat-composer"
  113. },
  114. {
  115. "name": "ezyang/htmlpurifier",
  116. "version": "v4.16.0",
  117. "version_normalized": "4.16.0.0",
  118. "source": {
  119. "type": "git",
  120. "url": "https://github.com/ezyang/htmlpurifier.git",
  121. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  122. },
  123. "dist": {
  124. "type": "zip",
  125. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  126. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  127. "shasum": "",
  128. "mirrors": [
  129. {
  130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  131. "preferred": true
  132. }
  133. ]
  134. },
  135. "require": {
  136. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  137. },
  138. "require-dev": {
  139. "cerdic/css-tidy": "^1.7 || ^2.0",
  140. "simpletest/simpletest": "dev-master"
  141. },
  142. "suggest": {
  143. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  144. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  145. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  146. "ext-tidy": "Used for pretty-printing HTML"
  147. },
  148. "time": "2022-09-18T07:06:19+00:00",
  149. "type": "library",
  150. "installation-source": "dist",
  151. "autoload": {
  152. "files": [
  153. "library/HTMLPurifier.composer.php"
  154. ],
  155. "psr-0": {
  156. "HTMLPurifier": "library/"
  157. },
  158. "exclude-from-classmap": [
  159. "/library/HTMLPurifier/Language/"
  160. ]
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "LGPL-2.1-or-later"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Edward Z. Yang",
  169. "email": "admin@htmlpurifier.org",
  170. "homepage": "http://ezyang.com"
  171. }
  172. ],
  173. "description": "Standards compliant HTML filter written in PHP",
  174. "homepage": "http://htmlpurifier.org/",
  175. "keywords": [
  176. "html"
  177. ],
  178. "support": {
  179. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  180. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  181. },
  182. "install-path": "../ezyang/htmlpurifier"
  183. },
  184. {
  185. "name": "firebase/php-jwt",
  186. "version": "v5.5.1",
  187. "version_normalized": "5.5.1.0",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/firebase/php-jwt.git",
  191. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  196. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  197. "shasum": "",
  198. "mirrors": [
  199. {
  200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  201. "preferred": true
  202. }
  203. ]
  204. },
  205. "require": {
  206. "php": ">=5.3.0"
  207. },
  208. "require-dev": {
  209. "phpunit/phpunit": ">=4.8 <=9"
  210. },
  211. "suggest": {
  212. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  213. },
  214. "time": "2021-11-08T20:18:51+00:00",
  215. "type": "library",
  216. "installation-source": "dist",
  217. "autoload": {
  218. "psr-4": {
  219. "Firebase\\JWT\\": "src"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "BSD-3-Clause"
  225. ],
  226. "authors": [
  227. {
  228. "name": "Neuman Vong",
  229. "email": "neuman+pear@twilio.com",
  230. "role": "Developer"
  231. },
  232. {
  233. "name": "Anant Narayanan",
  234. "email": "anant@php.net",
  235. "role": "Developer"
  236. }
  237. ],
  238. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  239. "homepage": "https://github.com/firebase/php-jwt",
  240. "keywords": [
  241. "jwt",
  242. "php"
  243. ],
  244. "support": {
  245. "issues": "https://github.com/firebase/php-jwt/issues",
  246. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  247. },
  248. "install-path": "../firebase/php-jwt"
  249. },
  250. {
  251. "name": "fzaninotto/faker",
  252. "version": "v1.9.2",
  253. "version_normalized": "1.9.2.0",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/fzaninotto/Faker.git",
  257. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  262. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  263. "shasum": "",
  264. "mirrors": [
  265. {
  266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  267. "preferred": true
  268. }
  269. ]
  270. },
  271. "require": {
  272. "php": "^5.3.3 || ^7.0"
  273. },
  274. "require-dev": {
  275. "ext-intl": "*",
  276. "phpunit/phpunit": "^4.8.35 || ^5.7",
  277. "squizlabs/php_codesniffer": "^2.9.2"
  278. },
  279. "time": "2020-12-11T09:56:16+00:00",
  280. "type": "library",
  281. "extra": {
  282. "branch-alias": {
  283. "dev-master": "1.9-dev"
  284. }
  285. },
  286. "installation-source": "dist",
  287. "autoload": {
  288. "psr-4": {
  289. "Faker\\": "src/Faker/"
  290. }
  291. },
  292. "notification-url": "https://packagist.org/downloads/",
  293. "license": [
  294. "MIT"
  295. ],
  296. "authors": [
  297. {
  298. "name": "François Zaninotto"
  299. }
  300. ],
  301. "description": "Faker is a PHP library that generates fake data for you.",
  302. "keywords": [
  303. "data",
  304. "faker",
  305. "fixtures"
  306. ],
  307. "support": {
  308. "issues": "https://github.com/fzaninotto/Faker/issues",
  309. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  310. },
  311. "abandoned": true,
  312. "install-path": "../fzaninotto/faker"
  313. },
  314. {
  315. "name": "guzzlehttp/guzzle",
  316. "version": "7.5.0",
  317. "version_normalized": "7.5.0.0",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/guzzle/guzzle.git",
  321. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  326. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  327. "shasum": "",
  328. "mirrors": [
  329. {
  330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  331. "preferred": true
  332. }
  333. ]
  334. },
  335. "require": {
  336. "ext-json": "*",
  337. "guzzlehttp/promises": "^1.5",
  338. "guzzlehttp/psr7": "^1.9 || ^2.4",
  339. "php": "^7.2.5 || ^8.0",
  340. "psr/http-client": "^1.0",
  341. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  342. },
  343. "provide": {
  344. "psr/http-client-implementation": "1.0"
  345. },
  346. "require-dev": {
  347. "bamarni/composer-bin-plugin": "^1.8.1",
  348. "ext-curl": "*",
  349. "php-http/client-integration-tests": "^3.0",
  350. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  351. "psr/log": "^1.1 || ^2.0 || ^3.0"
  352. },
  353. "suggest": {
  354. "ext-curl": "Required for CURL handler support",
  355. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  356. "psr/log": "Required for using the Log middleware"
  357. },
  358. "time": "2022-08-28T15:39:27+00:00",
  359. "type": "library",
  360. "extra": {
  361. "bamarni-bin": {
  362. "bin-links": true,
  363. "forward-command": false
  364. },
  365. "branch-alias": {
  366. "dev-master": "7.5-dev"
  367. }
  368. },
  369. "installation-source": "dist",
  370. "autoload": {
  371. "files": [
  372. "src/functions_include.php"
  373. ],
  374. "psr-4": {
  375. "GuzzleHttp\\": "src/"
  376. }
  377. },
  378. "notification-url": "https://packagist.org/downloads/",
  379. "license": [
  380. "MIT"
  381. ],
  382. "authors": [
  383. {
  384. "name": "Graham Campbell",
  385. "email": "hello@gjcampbell.co.uk",
  386. "homepage": "https://github.com/GrahamCampbell"
  387. },
  388. {
  389. "name": "Michael Dowling",
  390. "email": "mtdowling@gmail.com",
  391. "homepage": "https://github.com/mtdowling"
  392. },
  393. {
  394. "name": "Jeremy Lindblom",
  395. "email": "jeremeamia@gmail.com",
  396. "homepage": "https://github.com/jeremeamia"
  397. },
  398. {
  399. "name": "George Mponos",
  400. "email": "gmponos@gmail.com",
  401. "homepage": "https://github.com/gmponos"
  402. },
  403. {
  404. "name": "Tobias Nyholm",
  405. "email": "tobias.nyholm@gmail.com",
  406. "homepage": "https://github.com/Nyholm"
  407. },
  408. {
  409. "name": "Márk Sági-Kazár",
  410. "email": "mark.sagikazar@gmail.com",
  411. "homepage": "https://github.com/sagikazarmark"
  412. },
  413. {
  414. "name": "Tobias Schultze",
  415. "email": "webmaster@tubo-world.de",
  416. "homepage": "https://github.com/Tobion"
  417. }
  418. ],
  419. "description": "Guzzle is a PHP HTTP client library",
  420. "keywords": [
  421. "client",
  422. "curl",
  423. "framework",
  424. "http",
  425. "http client",
  426. "psr-18",
  427. "psr-7",
  428. "rest",
  429. "web service"
  430. ],
  431. "support": {
  432. "issues": "https://github.com/guzzle/guzzle/issues",
  433. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  434. },
  435. "funding": [
  436. {
  437. "url": "https://github.com/GrahamCampbell",
  438. "type": "github"
  439. },
  440. {
  441. "url": "https://github.com/Nyholm",
  442. "type": "github"
  443. },
  444. {
  445. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  446. "type": "tidelift"
  447. }
  448. ],
  449. "install-path": "../guzzlehttp/guzzle"
  450. },
  451. {
  452. "name": "guzzlehttp/promises",
  453. "version": "1.5.2",
  454. "version_normalized": "1.5.2.0",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/guzzle/promises.git",
  458. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  463. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  464. "shasum": "",
  465. "mirrors": [
  466. {
  467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  468. "preferred": true
  469. }
  470. ]
  471. },
  472. "require": {
  473. "php": ">=5.5"
  474. },
  475. "require-dev": {
  476. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  477. },
  478. "time": "2022-08-28T14:55:35+00:00",
  479. "type": "library",
  480. "extra": {
  481. "branch-alias": {
  482. "dev-master": "1.5-dev"
  483. }
  484. },
  485. "installation-source": "dist",
  486. "autoload": {
  487. "files": [
  488. "src/functions_include.php"
  489. ],
  490. "psr-4": {
  491. "GuzzleHttp\\Promise\\": "src/"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Graham Campbell",
  501. "email": "hello@gjcampbell.co.uk",
  502. "homepage": "https://github.com/GrahamCampbell"
  503. },
  504. {
  505. "name": "Michael Dowling",
  506. "email": "mtdowling@gmail.com",
  507. "homepage": "https://github.com/mtdowling"
  508. },
  509. {
  510. "name": "Tobias Nyholm",
  511. "email": "tobias.nyholm@gmail.com",
  512. "homepage": "https://github.com/Nyholm"
  513. },
  514. {
  515. "name": "Tobias Schultze",
  516. "email": "webmaster@tubo-world.de",
  517. "homepage": "https://github.com/Tobion"
  518. }
  519. ],
  520. "description": "Guzzle promises library",
  521. "keywords": [
  522. "promise"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/guzzle/promises/issues",
  526. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://github.com/GrahamCampbell",
  531. "type": "github"
  532. },
  533. {
  534. "url": "https://github.com/Nyholm",
  535. "type": "github"
  536. },
  537. {
  538. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  539. "type": "tidelift"
  540. }
  541. ],
  542. "install-path": "../guzzlehttp/promises"
  543. },
  544. {
  545. "name": "guzzlehttp/psr7",
  546. "version": "2.4.3",
  547. "version_normalized": "2.4.3.0",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/guzzle/psr7.git",
  551. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  556. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  557. "shasum": "",
  558. "mirrors": [
  559. {
  560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  561. "preferred": true
  562. }
  563. ]
  564. },
  565. "require": {
  566. "php": "^7.2.5 || ^8.0",
  567. "psr/http-factory": "^1.0",
  568. "psr/http-message": "^1.0",
  569. "ralouphie/getallheaders": "^3.0"
  570. },
  571. "provide": {
  572. "psr/http-factory-implementation": "1.0",
  573. "psr/http-message-implementation": "1.0"
  574. },
  575. "require-dev": {
  576. "bamarni/composer-bin-plugin": "^1.8.1",
  577. "http-interop/http-factory-tests": "^0.9",
  578. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  579. },
  580. "suggest": {
  581. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  582. },
  583. "time": "2022-10-26T14:07:24+00:00",
  584. "type": "library",
  585. "extra": {
  586. "bamarni-bin": {
  587. "bin-links": true,
  588. "forward-command": false
  589. },
  590. "branch-alias": {
  591. "dev-master": "2.4-dev"
  592. }
  593. },
  594. "installation-source": "dist",
  595. "autoload": {
  596. "psr-4": {
  597. "GuzzleHttp\\Psr7\\": "src/"
  598. }
  599. },
  600. "notification-url": "https://packagist.org/downloads/",
  601. "license": [
  602. "MIT"
  603. ],
  604. "authors": [
  605. {
  606. "name": "Graham Campbell",
  607. "email": "hello@gjcampbell.co.uk",
  608. "homepage": "https://github.com/GrahamCampbell"
  609. },
  610. {
  611. "name": "Michael Dowling",
  612. "email": "mtdowling@gmail.com",
  613. "homepage": "https://github.com/mtdowling"
  614. },
  615. {
  616. "name": "George Mponos",
  617. "email": "gmponos@gmail.com",
  618. "homepage": "https://github.com/gmponos"
  619. },
  620. {
  621. "name": "Tobias Nyholm",
  622. "email": "tobias.nyholm@gmail.com",
  623. "homepage": "https://github.com/Nyholm"
  624. },
  625. {
  626. "name": "Márk Sági-Kazár",
  627. "email": "mark.sagikazar@gmail.com",
  628. "homepage": "https://github.com/sagikazarmark"
  629. },
  630. {
  631. "name": "Tobias Schultze",
  632. "email": "webmaster@tubo-world.de",
  633. "homepage": "https://github.com/Tobion"
  634. },
  635. {
  636. "name": "Márk Sági-Kazár",
  637. "email": "mark.sagikazar@gmail.com",
  638. "homepage": "https://sagikazarmark.hu"
  639. }
  640. ],
  641. "description": "PSR-7 message implementation that also provides common utility methods",
  642. "keywords": [
  643. "http",
  644. "message",
  645. "psr-7",
  646. "request",
  647. "response",
  648. "stream",
  649. "uri",
  650. "url"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/guzzle/psr7/issues",
  654. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/GrahamCampbell",
  659. "type": "github"
  660. },
  661. {
  662. "url": "https://github.com/Nyholm",
  663. "type": "github"
  664. },
  665. {
  666. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  667. "type": "tidelift"
  668. }
  669. ],
  670. "install-path": "../guzzlehttp/psr7"
  671. },
  672. {
  673. "name": "maennchen/zipstream-php",
  674. "version": "2.2.6",
  675. "version_normalized": "2.2.6.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  679. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  684. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  685. "shasum": "",
  686. "mirrors": [
  687. {
  688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  689. "preferred": true
  690. }
  691. ]
  692. },
  693. "require": {
  694. "myclabs/php-enum": "^1.5",
  695. "php": "^7.4 || ^8.0",
  696. "psr/http-message": "^1.0",
  697. "symfony/polyfill-mbstring": "^1.0"
  698. },
  699. "require-dev": {
  700. "ext-zip": "*",
  701. "friendsofphp/php-cs-fixer": "^3.9",
  702. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  703. "mikey179/vfsstream": "^1.6",
  704. "php-coveralls/php-coveralls": "^2.4",
  705. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  706. "vimeo/psalm": "^4.1"
  707. },
  708. "time": "2022-11-25T18:57:19+00:00",
  709. "type": "library",
  710. "installation-source": "dist",
  711. "autoload": {
  712. "psr-4": {
  713. "ZipStream\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Paul Duncan",
  723. "email": "pabs@pablotron.org"
  724. },
  725. {
  726. "name": "Jonatan Männchen",
  727. "email": "jonatan@maennchen.ch"
  728. },
  729. {
  730. "name": "Jesse Donat",
  731. "email": "donatj@gmail.com"
  732. },
  733. {
  734. "name": "András Kolesár",
  735. "email": "kolesar@kolesar.hu"
  736. }
  737. ],
  738. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  739. "keywords": [
  740. "stream",
  741. "zip"
  742. ],
  743. "support": {
  744. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  745. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  746. },
  747. "funding": [
  748. {
  749. "url": "https://github.com/maennchen",
  750. "type": "github"
  751. },
  752. {
  753. "url": "https://opencollective.com/zipstream",
  754. "type": "open_collective"
  755. }
  756. ],
  757. "install-path": "../maennchen/zipstream-php"
  758. },
  759. {
  760. "name": "markbaker/complex",
  761. "version": "3.0.2",
  762. "version_normalized": "3.0.2.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/MarkBaker/PHPComplex.git",
  766. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  771. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  772. "shasum": "",
  773. "mirrors": [
  774. {
  775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  776. "preferred": true
  777. }
  778. ]
  779. },
  780. "require": {
  781. "php": "^7.2 || ^8.0"
  782. },
  783. "require-dev": {
  784. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  785. "phpcompatibility/php-compatibility": "^9.3",
  786. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  787. "squizlabs/php_codesniffer": "^3.7"
  788. },
  789. "time": "2022-12-06T16:21:08+00:00",
  790. "type": "library",
  791. "installation-source": "dist",
  792. "autoload": {
  793. "psr-4": {
  794. "Complex\\": "classes/src/"
  795. }
  796. },
  797. "notification-url": "https://packagist.org/downloads/",
  798. "license": [
  799. "MIT"
  800. ],
  801. "authors": [
  802. {
  803. "name": "Mark Baker",
  804. "email": "mark@lange.demon.co.uk"
  805. }
  806. ],
  807. "description": "PHP Class for working with complex numbers",
  808. "homepage": "https://github.com/MarkBaker/PHPComplex",
  809. "keywords": [
  810. "complex",
  811. "mathematics"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  815. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  816. },
  817. "install-path": "../markbaker/complex"
  818. },
  819. {
  820. "name": "markbaker/matrix",
  821. "version": "3.0.1",
  822. "version_normalized": "3.0.1.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  826. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  831. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  832. "shasum": "",
  833. "mirrors": [
  834. {
  835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  836. "preferred": true
  837. }
  838. ]
  839. },
  840. "require": {
  841. "php": "^7.1 || ^8.0"
  842. },
  843. "require-dev": {
  844. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  845. "phpcompatibility/php-compatibility": "^9.3",
  846. "phpdocumentor/phpdocumentor": "2.*",
  847. "phploc/phploc": "^4.0",
  848. "phpmd/phpmd": "2.*",
  849. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  850. "sebastian/phpcpd": "^4.0",
  851. "squizlabs/php_codesniffer": "^3.7"
  852. },
  853. "time": "2022-12-02T22:17:43+00:00",
  854. "type": "library",
  855. "installation-source": "dist",
  856. "autoload": {
  857. "psr-4": {
  858. "Matrix\\": "classes/src/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Mark Baker",
  868. "email": "mark@demon-angel.eu"
  869. }
  870. ],
  871. "description": "PHP Class for working with matrices",
  872. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  873. "keywords": [
  874. "mathematics",
  875. "matrix",
  876. "vector"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  880. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  881. },
  882. "install-path": "../markbaker/matrix"
  883. },
  884. {
  885. "name": "monolog/monolog",
  886. "version": "2.9.0",
  887. "version_normalized": "2.9.0.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/Seldaek/monolog.git",
  891. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  896. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  897. "shasum": "",
  898. "mirrors": [
  899. {
  900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  901. "preferred": true
  902. }
  903. ]
  904. },
  905. "require": {
  906. "php": ">=7.2",
  907. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  908. },
  909. "provide": {
  910. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  911. },
  912. "require-dev": {
  913. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  914. "doctrine/couchdb": "~1.0@dev",
  915. "elasticsearch/elasticsearch": "^7 || ^8",
  916. "ext-json": "*",
  917. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  918. "guzzlehttp/guzzle": "^7.4",
  919. "guzzlehttp/psr7": "^2.2",
  920. "mongodb/mongodb": "^1.8",
  921. "php-amqplib/php-amqplib": "~2.4 || ^3",
  922. "phpspec/prophecy": "^1.15",
  923. "phpstan/phpstan": "^0.12.91",
  924. "phpunit/phpunit": "^8.5.14",
  925. "predis/predis": "^1.1 || ^2.0",
  926. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  927. "ruflin/elastica": "^7",
  928. "swiftmailer/swiftmailer": "^5.3|^6.0",
  929. "symfony/mailer": "^5.4 || ^6",
  930. "symfony/mime": "^5.4 || ^6"
  931. },
  932. "suggest": {
  933. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  934. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  935. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  936. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  937. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  938. "ext-mbstring": "Allow to work properly with unicode symbols",
  939. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  940. "ext-openssl": "Required to send log messages using SSL",
  941. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  942. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  943. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  944. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  945. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  946. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  947. },
  948. "time": "2023-02-05T13:07:32+00:00",
  949. "type": "library",
  950. "extra": {
  951. "branch-alias": {
  952. "dev-main": "2.x-dev"
  953. }
  954. },
  955. "installation-source": "dist",
  956. "autoload": {
  957. "psr-4": {
  958. "Monolog\\": "src/Monolog"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Jordi Boggiano",
  968. "email": "j.boggiano@seld.be",
  969. "homepage": "https://seld.be"
  970. }
  971. ],
  972. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  973. "homepage": "https://github.com/Seldaek/monolog",
  974. "keywords": [
  975. "log",
  976. "logging",
  977. "psr-3"
  978. ],
  979. "support": {
  980. "issues": "https://github.com/Seldaek/monolog/issues",
  981. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  982. },
  983. "funding": [
  984. {
  985. "url": "https://github.com/Seldaek",
  986. "type": "github"
  987. },
  988. {
  989. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  990. "type": "tidelift"
  991. }
  992. ],
  993. "install-path": "../monolog/monolog"
  994. },
  995. {
  996. "name": "myclabs/php-enum",
  997. "version": "1.8.3",
  998. "version_normalized": "1.8.3.0",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/myclabs/php-enum.git",
  1002. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  1007. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  1008. "shasum": "",
  1009. "mirrors": [
  1010. {
  1011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1012. "preferred": true
  1013. }
  1014. ]
  1015. },
  1016. "require": {
  1017. "ext-json": "*",
  1018. "php": "^7.3 || ^8.0"
  1019. },
  1020. "require-dev": {
  1021. "phpunit/phpunit": "^9.5",
  1022. "squizlabs/php_codesniffer": "1.*",
  1023. "vimeo/psalm": "^4.6.2"
  1024. },
  1025. "time": "2021-07-05T08:18:36+00:00",
  1026. "type": "library",
  1027. "installation-source": "dist",
  1028. "autoload": {
  1029. "psr-4": {
  1030. "MyCLabs\\Enum\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "PHP Enum contributors",
  1040. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1041. }
  1042. ],
  1043. "description": "PHP Enum implementation",
  1044. "homepage": "http://github.com/myclabs/php-enum",
  1045. "keywords": [
  1046. "enum"
  1047. ],
  1048. "support": {
  1049. "issues": "https://github.com/myclabs/php-enum/issues",
  1050. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  1051. },
  1052. "funding": [
  1053. {
  1054. "url": "https://github.com/mnapoli",
  1055. "type": "github"
  1056. },
  1057. {
  1058. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1059. "type": "tidelift"
  1060. }
  1061. ],
  1062. "install-path": "../myclabs/php-enum"
  1063. },
  1064. {
  1065. "name": "nesbot/carbon",
  1066. "version": "2.66.0",
  1067. "version_normalized": "2.66.0.0",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/briannesbitt/Carbon.git",
  1071. "reference": "496712849902241f04902033b0441b269effe001"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1076. "reference": "496712849902241f04902033b0441b269effe001",
  1077. "shasum": "",
  1078. "mirrors": [
  1079. {
  1080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1081. "preferred": true
  1082. }
  1083. ]
  1084. },
  1085. "require": {
  1086. "ext-json": "*",
  1087. "php": "^7.1.8 || ^8.0",
  1088. "symfony/polyfill-mbstring": "^1.0",
  1089. "symfony/polyfill-php80": "^1.16",
  1090. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1091. },
  1092. "require-dev": {
  1093. "doctrine/dbal": "^2.0 || ^3.1.4",
  1094. "doctrine/orm": "^2.7",
  1095. "friendsofphp/php-cs-fixer": "^3.0",
  1096. "kylekatarnls/multi-tester": "^2.0",
  1097. "ondrejmirtes/better-reflection": "*",
  1098. "phpmd/phpmd": "^2.9",
  1099. "phpstan/extension-installer": "^1.0",
  1100. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1101. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1102. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1103. "squizlabs/php_codesniffer": "^3.4"
  1104. },
  1105. "time": "2023-01-29T18:53:47+00:00",
  1106. "bin": [
  1107. "bin/carbon"
  1108. ],
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-3.x": "3.x-dev",
  1113. "dev-master": "2.x-dev"
  1114. },
  1115. "laravel": {
  1116. "providers": [
  1117. "Carbon\\Laravel\\ServiceProvider"
  1118. ]
  1119. },
  1120. "phpstan": {
  1121. "includes": [
  1122. "extension.neon"
  1123. ]
  1124. }
  1125. },
  1126. "installation-source": "dist",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Carbon\\": "src/Carbon/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Brian Nesbitt",
  1139. "email": "brian@nesbot.com",
  1140. "homepage": "https://markido.com"
  1141. },
  1142. {
  1143. "name": "kylekatarnls",
  1144. "homepage": "https://github.com/kylekatarnls"
  1145. }
  1146. ],
  1147. "description": "An API extension for DateTime that supports 281 different languages.",
  1148. "homepage": "https://carbon.nesbot.com",
  1149. "keywords": [
  1150. "date",
  1151. "datetime",
  1152. "time"
  1153. ],
  1154. "support": {
  1155. "docs": "https://carbon.nesbot.com/docs",
  1156. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1157. "source": "https://github.com/briannesbitt/Carbon"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://github.com/sponsors/kylekatarnls",
  1162. "type": "github"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/Carbon#sponsor",
  1166. "type": "opencollective"
  1167. },
  1168. {
  1169. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1170. "type": "tidelift"
  1171. }
  1172. ],
  1173. "install-path": "../nesbot/carbon"
  1174. },
  1175. {
  1176. "name": "overtrue/pinyin",
  1177. "version": "4.0.8",
  1178. "version_normalized": "4.0.8.0",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/overtrue/pinyin.git",
  1182. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  1187. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  1188. "shasum": "",
  1189. "mirrors": [
  1190. {
  1191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1192. "preferred": true
  1193. }
  1194. ]
  1195. },
  1196. "require": {
  1197. "php": ">=7.1"
  1198. },
  1199. "require-dev": {
  1200. "brainmaestro/composer-git-hooks": "^2.7",
  1201. "friendsofphp/php-cs-fixer": "^2.16",
  1202. "phpunit/phpunit": "~8.0"
  1203. },
  1204. "time": "2021-07-19T03:43:32+00:00",
  1205. "type": "library",
  1206. "extra": {
  1207. "hooks": {
  1208. "pre-commit": [
  1209. "composer test",
  1210. "composer fix-style"
  1211. ],
  1212. "pre-push": [
  1213. "composer test",
  1214. "composer check-style"
  1215. ]
  1216. }
  1217. },
  1218. "installation-source": "dist",
  1219. "autoload": {
  1220. "files": [
  1221. "src/const.php"
  1222. ],
  1223. "psr-4": {
  1224. "Overtrue\\Pinyin\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "overtrue",
  1234. "email": "anzhengchao@gmail.com",
  1235. "homepage": "http://github.com/overtrue"
  1236. }
  1237. ],
  1238. "description": "Chinese to pinyin translator.",
  1239. "homepage": "https://github.com/overtrue/pinyin",
  1240. "keywords": [
  1241. "Chinese",
  1242. "Pinyin",
  1243. "cn2pinyin"
  1244. ],
  1245. "support": {
  1246. "issues": "https://github.com/overtrue/pinyin/issues",
  1247. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  1248. },
  1249. "funding": [
  1250. {
  1251. "url": "https://www.patreon.com/overtrue",
  1252. "type": "patreon"
  1253. }
  1254. ],
  1255. "install-path": "../overtrue/pinyin"
  1256. },
  1257. {
  1258. "name": "overtrue/socialite",
  1259. "version": "3.5.4",
  1260. "version_normalized": "3.5.4.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/overtrue/socialite.git",
  1264. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  1269. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  1270. "shasum": "",
  1271. "mirrors": [
  1272. {
  1273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1274. "preferred": true
  1275. }
  1276. ]
  1277. },
  1278. "require": {
  1279. "ext-json": "*",
  1280. "ext-openssl": "*",
  1281. "guzzlehttp/guzzle": "~6.0|~7.0",
  1282. "php": ">=7.4",
  1283. "symfony/http-foundation": "^5.0",
  1284. "symfony/psr-http-message-bridge": "^2.0"
  1285. },
  1286. "require-dev": {
  1287. "friendsofphp/php-cs-fixer": "^3.0",
  1288. "mockery/mockery": "~1.2",
  1289. "phpunit/phpunit": "~9.0"
  1290. },
  1291. "time": "2022-11-19T13:32:42+00:00",
  1292. "type": "library",
  1293. "installation-source": "dist",
  1294. "autoload": {
  1295. "psr-4": {
  1296. "Overtrue\\Socialite\\": "src/"
  1297. }
  1298. },
  1299. "notification-url": "https://packagist.org/downloads/",
  1300. "license": [
  1301. "MIT"
  1302. ],
  1303. "authors": [
  1304. {
  1305. "name": "overtrue",
  1306. "email": "anzhengchao@gmail.com"
  1307. }
  1308. ],
  1309. "description": "A collection of OAuth 2 packages.",
  1310. "keywords": [
  1311. "Feishu",
  1312. "login",
  1313. "oauth",
  1314. "qcloud",
  1315. "qq",
  1316. "social",
  1317. "wechat",
  1318. "weibo"
  1319. ],
  1320. "support": {
  1321. "issues": "https://github.com/overtrue/socialite/issues",
  1322. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  1323. },
  1324. "funding": [
  1325. {
  1326. "url": "https://github.com/overtrue",
  1327. "type": "github"
  1328. }
  1329. ],
  1330. "install-path": "../overtrue/socialite"
  1331. },
  1332. {
  1333. "name": "overtrue/wechat",
  1334. "version": "5.30.0",
  1335. "version_normalized": "5.30.0.0",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/w7corp/easywechat.git",
  1339. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/245d1e821bc5a4609625c3244b111f570692cfc2",
  1344. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2",
  1345. "shasum": "",
  1346. "mirrors": [
  1347. {
  1348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1349. "preferred": true
  1350. }
  1351. ]
  1352. },
  1353. "require": {
  1354. "easywechat-composer/easywechat-composer": "^1.1",
  1355. "ext-fileinfo": "*",
  1356. "ext-libxml": "*",
  1357. "ext-openssl": "*",
  1358. "ext-simplexml": "*",
  1359. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1360. "monolog/monolog": "^1.22 || ^2.0",
  1361. "overtrue/socialite": "^3.2 || ^4.0",
  1362. "php": ">=7.4",
  1363. "pimple/pimple": "^3.0",
  1364. "psr/simple-cache": "^1.0||^2.0||^3.0",
  1365. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  1366. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  1367. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  1368. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  1369. },
  1370. "require-dev": {
  1371. "brainmaestro/composer-git-hooks": "^2.7",
  1372. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  1373. "friendsofphp/php-cs-fixer": "^3.5.0",
  1374. "mikey179/vfsstream": "^1.6",
  1375. "mockery/mockery": "^1.2.3",
  1376. "phpstan/phpstan": "^0.12.0",
  1377. "phpunit/phpunit": "^9.3"
  1378. },
  1379. "time": "2022-09-05T08:22:34+00:00",
  1380. "type": "library",
  1381. "extra": {
  1382. "hooks": {
  1383. "pre-commit": [
  1384. "composer test",
  1385. "composer fix-style"
  1386. ],
  1387. "pre-push": [
  1388. "composer test",
  1389. "composer fix-style"
  1390. ]
  1391. }
  1392. },
  1393. "installation-source": "dist",
  1394. "autoload": {
  1395. "files": [
  1396. "src/Kernel/Support/Helpers.php",
  1397. "src/Kernel/Helpers.php"
  1398. ],
  1399. "psr-4": {
  1400. "EasyWeChat\\": "src/"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "MIT"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "overtrue",
  1410. "email": "anzhengchao@gmail.com"
  1411. }
  1412. ],
  1413. "description": "微信SDK",
  1414. "keywords": [
  1415. "easywechat",
  1416. "sdk",
  1417. "wechat",
  1418. "weixin",
  1419. "weixin-sdk"
  1420. ],
  1421. "support": {
  1422. "issues": "https://github.com/w7corp/easywechat/issues",
  1423. "source": "https://github.com/w7corp/easywechat/tree/5.30.0"
  1424. },
  1425. "funding": [
  1426. {
  1427. "url": "https://github.com/overtrue",
  1428. "type": "github"
  1429. }
  1430. ],
  1431. "abandoned": "w7corp/easywechat",
  1432. "install-path": "../overtrue/wechat"
  1433. },
  1434. {
  1435. "name": "phpoffice/phpexcel",
  1436. "version": "1.8.2",
  1437. "version_normalized": "1.8.2.0",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1441. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1446. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1447. "shasum": "",
  1448. "mirrors": [
  1449. {
  1450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1451. "preferred": true
  1452. }
  1453. ]
  1454. },
  1455. "require": {
  1456. "ext-mbstring": "*",
  1457. "ext-xml": "*",
  1458. "ext-xmlwriter": "*",
  1459. "php": "^5.2|^7.0"
  1460. },
  1461. "require-dev": {
  1462. "squizlabs/php_codesniffer": "2.*"
  1463. },
  1464. "time": "2018-11-22T23:07:24+00:00",
  1465. "type": "library",
  1466. "installation-source": "dist",
  1467. "autoload": {
  1468. "psr-0": {
  1469. "PHPExcel": "Classes/"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "LGPL-2.1"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Maarten Balliauw",
  1479. "homepage": "http://blog.maartenballiauw.be"
  1480. },
  1481. {
  1482. "name": "Erik Tilt"
  1483. },
  1484. {
  1485. "name": "Franck Lefevre",
  1486. "homepage": "http://rootslabs.net"
  1487. },
  1488. {
  1489. "name": "Mark Baker",
  1490. "homepage": "http://markbakeruk.net"
  1491. }
  1492. ],
  1493. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1494. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1495. "keywords": [
  1496. "OpenXML",
  1497. "excel",
  1498. "php",
  1499. "spreadsheet",
  1500. "xls",
  1501. "xlsx"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  1505. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  1506. },
  1507. "abandoned": "phpoffice/phpspreadsheet",
  1508. "install-path": "../phpoffice/phpexcel"
  1509. },
  1510. {
  1511. "name": "phpoffice/phpspreadsheet",
  1512. "version": "1.28.0",
  1513. "version_normalized": "1.28.0.0",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1517. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  1522. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  1523. "shasum": "",
  1524. "mirrors": [
  1525. {
  1526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1527. "preferred": true
  1528. }
  1529. ]
  1530. },
  1531. "require": {
  1532. "ext-ctype": "*",
  1533. "ext-dom": "*",
  1534. "ext-fileinfo": "*",
  1535. "ext-gd": "*",
  1536. "ext-iconv": "*",
  1537. "ext-libxml": "*",
  1538. "ext-mbstring": "*",
  1539. "ext-simplexml": "*",
  1540. "ext-xml": "*",
  1541. "ext-xmlreader": "*",
  1542. "ext-xmlwriter": "*",
  1543. "ext-zip": "*",
  1544. "ext-zlib": "*",
  1545. "ezyang/htmlpurifier": "^4.15",
  1546. "maennchen/zipstream-php": "^2.1",
  1547. "markbaker/complex": "^3.0",
  1548. "markbaker/matrix": "^3.0",
  1549. "php": "^7.4 || ^8.0",
  1550. "psr/http-client": "^1.0",
  1551. "psr/http-factory": "^1.0",
  1552. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1553. },
  1554. "require-dev": {
  1555. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  1556. "dompdf/dompdf": "^1.0 || ^2.0",
  1557. "friendsofphp/php-cs-fixer": "^3.2",
  1558. "mitoteam/jpgraph": "^10.2.4",
  1559. "mpdf/mpdf": "^8.1.1",
  1560. "phpcompatibility/php-compatibility": "^9.3",
  1561. "phpstan/phpstan": "^1.1",
  1562. "phpstan/phpstan-phpunit": "^1.0",
  1563. "phpunit/phpunit": "^8.5 || ^9.0",
  1564. "squizlabs/php_codesniffer": "^3.7",
  1565. "tecnickcom/tcpdf": "^6.5"
  1566. },
  1567. "suggest": {
  1568. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  1569. "ext-intl": "PHP Internationalization Functions",
  1570. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1571. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1572. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  1573. },
  1574. "time": "2023-02-25T12:24:49+00:00",
  1575. "type": "library",
  1576. "installation-source": "dist",
  1577. "autoload": {
  1578. "psr-4": {
  1579. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Maarten Balliauw",
  1589. "homepage": "https://blog.maartenballiauw.be"
  1590. },
  1591. {
  1592. "name": "Mark Baker",
  1593. "homepage": "https://markbakeruk.net"
  1594. },
  1595. {
  1596. "name": "Franck Lefevre",
  1597. "homepage": "https://rootslabs.net"
  1598. },
  1599. {
  1600. "name": "Erik Tilt"
  1601. },
  1602. {
  1603. "name": "Adrien Crivelli"
  1604. }
  1605. ],
  1606. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1607. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1608. "keywords": [
  1609. "OpenXML",
  1610. "excel",
  1611. "gnumeric",
  1612. "ods",
  1613. "php",
  1614. "spreadsheet",
  1615. "xls",
  1616. "xlsx"
  1617. ],
  1618. "support": {
  1619. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1620. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.28.0"
  1621. },
  1622. "install-path": "../phpoffice/phpspreadsheet"
  1623. },
  1624. {
  1625. "name": "pimple/pimple",
  1626. "version": "v3.5.0",
  1627. "version_normalized": "3.5.0.0",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/silexphp/Pimple.git",
  1631. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1636. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1637. "shasum": "",
  1638. "mirrors": [
  1639. {
  1640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1641. "preferred": true
  1642. }
  1643. ]
  1644. },
  1645. "require": {
  1646. "php": ">=7.2.5",
  1647. "psr/container": "^1.1 || ^2.0"
  1648. },
  1649. "require-dev": {
  1650. "symfony/phpunit-bridge": "^5.4@dev"
  1651. },
  1652. "time": "2021-10-28T11:13:42+00:00",
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-master": "3.4.x-dev"
  1657. }
  1658. },
  1659. "installation-source": "dist",
  1660. "autoload": {
  1661. "psr-0": {
  1662. "Pimple": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Fabien Potencier",
  1672. "email": "fabien@symfony.com"
  1673. }
  1674. ],
  1675. "description": "Pimple, a simple Dependency Injection Container",
  1676. "homepage": "https://pimple.symfony.com",
  1677. "keywords": [
  1678. "container",
  1679. "dependency injection"
  1680. ],
  1681. "support": {
  1682. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1683. },
  1684. "install-path": "../pimple/pimple"
  1685. },
  1686. {
  1687. "name": "psr/cache",
  1688. "version": "1.0.1",
  1689. "version_normalized": "1.0.1.0",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/php-fig/cache.git",
  1693. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1698. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1699. "shasum": "",
  1700. "mirrors": [
  1701. {
  1702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1703. "preferred": true
  1704. }
  1705. ]
  1706. },
  1707. "require": {
  1708. "php": ">=5.3.0"
  1709. },
  1710. "time": "2016-08-06T20:24:11+00:00",
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.0.x-dev"
  1715. }
  1716. },
  1717. "installation-source": "dist",
  1718. "autoload": {
  1719. "psr-4": {
  1720. "Psr\\Cache\\": "src/"
  1721. }
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "PHP-FIG",
  1730. "homepage": "http://www.php-fig.org/"
  1731. }
  1732. ],
  1733. "description": "Common interface for caching libraries",
  1734. "keywords": [
  1735. "cache",
  1736. "psr",
  1737. "psr-6"
  1738. ],
  1739. "support": {
  1740. "source": "https://github.com/php-fig/cache/tree/master"
  1741. },
  1742. "install-path": "../psr/cache"
  1743. },
  1744. {
  1745. "name": "psr/container",
  1746. "version": "1.1.2",
  1747. "version_normalized": "1.1.2.0",
  1748. "source": {
  1749. "type": "git",
  1750. "url": "https://github.com/php-fig/container.git",
  1751. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1752. },
  1753. "dist": {
  1754. "type": "zip",
  1755. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1756. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1757. "shasum": "",
  1758. "mirrors": [
  1759. {
  1760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1761. "preferred": true
  1762. }
  1763. ]
  1764. },
  1765. "require": {
  1766. "php": ">=7.4.0"
  1767. },
  1768. "time": "2021-11-05T16:50:12+00:00",
  1769. "type": "library",
  1770. "installation-source": "dist",
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Psr\\Container\\": "src/"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "PHP-FIG",
  1783. "homepage": "https://www.php-fig.org/"
  1784. }
  1785. ],
  1786. "description": "Common Container Interface (PHP FIG PSR-11)",
  1787. "homepage": "https://github.com/php-fig/container",
  1788. "keywords": [
  1789. "PSR-11",
  1790. "container",
  1791. "container-interface",
  1792. "container-interop",
  1793. "psr"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/php-fig/container/issues",
  1797. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1798. },
  1799. "install-path": "../psr/container"
  1800. },
  1801. {
  1802. "name": "psr/event-dispatcher",
  1803. "version": "1.0.0",
  1804. "version_normalized": "1.0.0.0",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://github.com/php-fig/event-dispatcher.git",
  1808. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1813. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1814. "shasum": "",
  1815. "mirrors": [
  1816. {
  1817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1818. "preferred": true
  1819. }
  1820. ]
  1821. },
  1822. "require": {
  1823. "php": ">=7.2.0"
  1824. },
  1825. "time": "2019-01-08T18:20:26+00:00",
  1826. "type": "library",
  1827. "extra": {
  1828. "branch-alias": {
  1829. "dev-master": "1.0.x-dev"
  1830. }
  1831. },
  1832. "installation-source": "dist",
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Psr\\EventDispatcher\\": "src/"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "PHP-FIG",
  1845. "homepage": "http://www.php-fig.org/"
  1846. }
  1847. ],
  1848. "description": "Standard interfaces for event handling.",
  1849. "keywords": [
  1850. "events",
  1851. "psr",
  1852. "psr-14"
  1853. ],
  1854. "support": {
  1855. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1856. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1857. },
  1858. "install-path": "../psr/event-dispatcher"
  1859. },
  1860. {
  1861. "name": "psr/http-client",
  1862. "version": "1.0.1",
  1863. "version_normalized": "1.0.1.0",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/php-fig/http-client.git",
  1867. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1872. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1873. "shasum": "",
  1874. "mirrors": [
  1875. {
  1876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1877. "preferred": true
  1878. }
  1879. ]
  1880. },
  1881. "require": {
  1882. "php": "^7.0 || ^8.0",
  1883. "psr/http-message": "^1.0"
  1884. },
  1885. "time": "2020-06-29T06:28:15+00:00",
  1886. "type": "library",
  1887. "extra": {
  1888. "branch-alias": {
  1889. "dev-master": "1.0.x-dev"
  1890. }
  1891. },
  1892. "installation-source": "dist",
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Psr\\Http\\Client\\": "src/"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "PHP-FIG",
  1905. "homepage": "http://www.php-fig.org/"
  1906. }
  1907. ],
  1908. "description": "Common interface for HTTP clients",
  1909. "homepage": "https://github.com/php-fig/http-client",
  1910. "keywords": [
  1911. "http",
  1912. "http-client",
  1913. "psr",
  1914. "psr-18"
  1915. ],
  1916. "support": {
  1917. "source": "https://github.com/php-fig/http-client/tree/master"
  1918. },
  1919. "install-path": "../psr/http-client"
  1920. },
  1921. {
  1922. "name": "psr/http-factory",
  1923. "version": "1.0.1",
  1924. "version_normalized": "1.0.1.0",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/php-fig/http-factory.git",
  1928. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1933. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1934. "shasum": "",
  1935. "mirrors": [
  1936. {
  1937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1938. "preferred": true
  1939. }
  1940. ]
  1941. },
  1942. "require": {
  1943. "php": ">=7.0.0",
  1944. "psr/http-message": "^1.0"
  1945. },
  1946. "time": "2019-04-30T12:38:16+00:00",
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "1.0.x-dev"
  1951. }
  1952. },
  1953. "installation-source": "dist",
  1954. "autoload": {
  1955. "psr-4": {
  1956. "Psr\\Http\\Message\\": "src/"
  1957. }
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "MIT"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "PHP-FIG",
  1966. "homepage": "http://www.php-fig.org/"
  1967. }
  1968. ],
  1969. "description": "Common interfaces for PSR-7 HTTP message factories",
  1970. "keywords": [
  1971. "factory",
  1972. "http",
  1973. "message",
  1974. "psr",
  1975. "psr-17",
  1976. "psr-7",
  1977. "request",
  1978. "response"
  1979. ],
  1980. "support": {
  1981. "source": "https://github.com/php-fig/http-factory/tree/master"
  1982. },
  1983. "install-path": "../psr/http-factory"
  1984. },
  1985. {
  1986. "name": "psr/http-message",
  1987. "version": "1.0.1",
  1988. "version_normalized": "1.0.1.0",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/php-fig/http-message.git",
  1992. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1997. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1998. "shasum": "",
  1999. "mirrors": [
  2000. {
  2001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2002. "preferred": true
  2003. }
  2004. ]
  2005. },
  2006. "require": {
  2007. "php": ">=5.3.0"
  2008. },
  2009. "time": "2016-08-06T14:39:51+00:00",
  2010. "type": "library",
  2011. "extra": {
  2012. "branch-alias": {
  2013. "dev-master": "1.0.x-dev"
  2014. }
  2015. },
  2016. "installation-source": "dist",
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Psr\\Http\\Message\\": "src/"
  2020. }
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "MIT"
  2025. ],
  2026. "authors": [
  2027. {
  2028. "name": "PHP-FIG",
  2029. "homepage": "http://www.php-fig.org/"
  2030. }
  2031. ],
  2032. "description": "Common interface for HTTP messages",
  2033. "homepage": "https://github.com/php-fig/http-message",
  2034. "keywords": [
  2035. "http",
  2036. "http-message",
  2037. "psr",
  2038. "psr-7",
  2039. "request",
  2040. "response"
  2041. ],
  2042. "support": {
  2043. "source": "https://github.com/php-fig/http-message/tree/master"
  2044. },
  2045. "install-path": "../psr/http-message"
  2046. },
  2047. {
  2048. "name": "psr/log",
  2049. "version": "1.1.4",
  2050. "version_normalized": "1.1.4.0",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/php-fig/log.git",
  2054. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2059. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2060. "shasum": "",
  2061. "mirrors": [
  2062. {
  2063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2064. "preferred": true
  2065. }
  2066. ]
  2067. },
  2068. "require": {
  2069. "php": ">=5.3.0"
  2070. },
  2071. "time": "2021-05-03T11:20:27+00:00",
  2072. "type": "library",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "1.1.x-dev"
  2076. }
  2077. },
  2078. "installation-source": "dist",
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Psr\\Log\\": "Psr/Log/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "PHP-FIG",
  2091. "homepage": "https://www.php-fig.org/"
  2092. }
  2093. ],
  2094. "description": "Common interface for logging libraries",
  2095. "homepage": "https://github.com/php-fig/log",
  2096. "keywords": [
  2097. "log",
  2098. "psr",
  2099. "psr-3"
  2100. ],
  2101. "support": {
  2102. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2103. },
  2104. "install-path": "../psr/log"
  2105. },
  2106. {
  2107. "name": "psr/simple-cache",
  2108. "version": "1.0.1",
  2109. "version_normalized": "1.0.1.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/php-fig/simple-cache.git",
  2113. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2118. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "php": ">=5.3.0"
  2129. },
  2130. "time": "2017-10-23T01:57:42+00:00",
  2131. "type": "library",
  2132. "extra": {
  2133. "branch-alias": {
  2134. "dev-master": "1.0.x-dev"
  2135. }
  2136. },
  2137. "installation-source": "dist",
  2138. "autoload": {
  2139. "psr-4": {
  2140. "Psr\\SimpleCache\\": "src/"
  2141. }
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "PHP-FIG",
  2150. "homepage": "http://www.php-fig.org/"
  2151. }
  2152. ],
  2153. "description": "Common interfaces for simple caching",
  2154. "keywords": [
  2155. "cache",
  2156. "caching",
  2157. "psr",
  2158. "psr-16",
  2159. "simple-cache"
  2160. ],
  2161. "support": {
  2162. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2163. },
  2164. "install-path": "../psr/simple-cache"
  2165. },
  2166. {
  2167. "name": "ralouphie/getallheaders",
  2168. "version": "3.0.3",
  2169. "version_normalized": "3.0.3.0",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/ralouphie/getallheaders.git",
  2173. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2178. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2179. "shasum": "",
  2180. "mirrors": [
  2181. {
  2182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2183. "preferred": true
  2184. }
  2185. ]
  2186. },
  2187. "require": {
  2188. "php": ">=5.6"
  2189. },
  2190. "require-dev": {
  2191. "php-coveralls/php-coveralls": "^2.1",
  2192. "phpunit/phpunit": "^5 || ^6.5"
  2193. },
  2194. "time": "2019-03-08T08:55:37+00:00",
  2195. "type": "library",
  2196. "installation-source": "dist",
  2197. "autoload": {
  2198. "files": [
  2199. "src/getallheaders.php"
  2200. ]
  2201. },
  2202. "notification-url": "https://packagist.org/downloads/",
  2203. "license": [
  2204. "MIT"
  2205. ],
  2206. "authors": [
  2207. {
  2208. "name": "Ralph Khattar",
  2209. "email": "ralph.khattar@gmail.com"
  2210. }
  2211. ],
  2212. "description": "A polyfill for getallheaders.",
  2213. "support": {
  2214. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2215. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2216. },
  2217. "install-path": "../ralouphie/getallheaders"
  2218. },
  2219. {
  2220. "name": "symfony/cache",
  2221. "version": "v5.4.21",
  2222. "version_normalized": "5.4.21.0",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/symfony/cache.git",
  2226. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/symfony/cache/zipball/32cab695bf99c63aff7d27ac67919944c00530ed",
  2231. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed",
  2232. "shasum": "",
  2233. "mirrors": [
  2234. {
  2235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2236. "preferred": true
  2237. }
  2238. ]
  2239. },
  2240. "require": {
  2241. "php": ">=7.2.5",
  2242. "psr/cache": "^1.0|^2.0",
  2243. "psr/log": "^1.1|^2|^3",
  2244. "symfony/cache-contracts": "^1.1.7|^2",
  2245. "symfony/deprecation-contracts": "^2.1|^3",
  2246. "symfony/polyfill-php73": "^1.9",
  2247. "symfony/polyfill-php80": "^1.16",
  2248. "symfony/service-contracts": "^1.1|^2|^3",
  2249. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2250. },
  2251. "conflict": {
  2252. "doctrine/dbal": "<2.13.1",
  2253. "symfony/dependency-injection": "<4.4",
  2254. "symfony/http-kernel": "<4.4",
  2255. "symfony/var-dumper": "<4.4"
  2256. },
  2257. "provide": {
  2258. "psr/cache-implementation": "1.0|2.0",
  2259. "psr/simple-cache-implementation": "1.0|2.0",
  2260. "symfony/cache-implementation": "1.0|2.0"
  2261. },
  2262. "require-dev": {
  2263. "cache/integration-tests": "dev-master",
  2264. "doctrine/cache": "^1.6|^2.0",
  2265. "doctrine/dbal": "^2.13.1|^3.0",
  2266. "predis/predis": "^1.1",
  2267. "psr/simple-cache": "^1.0|^2.0",
  2268. "symfony/config": "^4.4|^5.0|^6.0",
  2269. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2270. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2271. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2272. "symfony/messenger": "^4.4|^5.0|^6.0",
  2273. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2274. },
  2275. "time": "2023-02-21T12:11:13+00:00",
  2276. "type": "library",
  2277. "installation-source": "dist",
  2278. "autoload": {
  2279. "psr-4": {
  2280. "Symfony\\Component\\Cache\\": ""
  2281. },
  2282. "exclude-from-classmap": [
  2283. "/Tests/"
  2284. ]
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Nicolas Grekas",
  2293. "email": "p@tchwork.com"
  2294. },
  2295. {
  2296. "name": "Symfony Community",
  2297. "homepage": "https://symfony.com/contributors"
  2298. }
  2299. ],
  2300. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2301. "homepage": "https://symfony.com",
  2302. "keywords": [
  2303. "caching",
  2304. "psr6"
  2305. ],
  2306. "support": {
  2307. "source": "https://github.com/symfony/cache/tree/v5.4.21"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://symfony.com/sponsor",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://github.com/fabpot",
  2316. "type": "github"
  2317. },
  2318. {
  2319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2320. "type": "tidelift"
  2321. }
  2322. ],
  2323. "install-path": "../symfony/cache"
  2324. },
  2325. {
  2326. "name": "symfony/cache-contracts",
  2327. "version": "v2.5.2",
  2328. "version_normalized": "2.5.2.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/symfony/cache-contracts.git",
  2332. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2337. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2338. "shasum": "",
  2339. "mirrors": [
  2340. {
  2341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2342. "preferred": true
  2343. }
  2344. ]
  2345. },
  2346. "require": {
  2347. "php": ">=7.2.5",
  2348. "psr/cache": "^1.0|^2.0|^3.0"
  2349. },
  2350. "suggest": {
  2351. "symfony/cache-implementation": ""
  2352. },
  2353. "time": "2022-01-02T09:53:40+00:00",
  2354. "type": "library",
  2355. "extra": {
  2356. "branch-alias": {
  2357. "dev-main": "2.5-dev"
  2358. },
  2359. "thanks": {
  2360. "name": "symfony/contracts",
  2361. "url": "https://github.com/symfony/contracts"
  2362. }
  2363. },
  2364. "installation-source": "dist",
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Symfony\\Contracts\\Cache\\": ""
  2368. }
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "MIT"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "Nicolas Grekas",
  2377. "email": "p@tchwork.com"
  2378. },
  2379. {
  2380. "name": "Symfony Community",
  2381. "homepage": "https://symfony.com/contributors"
  2382. }
  2383. ],
  2384. "description": "Generic abstractions related to caching",
  2385. "homepage": "https://symfony.com",
  2386. "keywords": [
  2387. "abstractions",
  2388. "contracts",
  2389. "decoupling",
  2390. "interfaces",
  2391. "interoperability",
  2392. "standards"
  2393. ],
  2394. "support": {
  2395. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2396. },
  2397. "funding": [
  2398. {
  2399. "url": "https://symfony.com/sponsor",
  2400. "type": "custom"
  2401. },
  2402. {
  2403. "url": "https://github.com/fabpot",
  2404. "type": "github"
  2405. },
  2406. {
  2407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2408. "type": "tidelift"
  2409. }
  2410. ],
  2411. "install-path": "../symfony/cache-contracts"
  2412. },
  2413. {
  2414. "name": "symfony/deprecation-contracts",
  2415. "version": "v2.5.2",
  2416. "version_normalized": "2.5.2.0",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/symfony/deprecation-contracts.git",
  2420. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2425. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2426. "shasum": "",
  2427. "mirrors": [
  2428. {
  2429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2430. "preferred": true
  2431. }
  2432. ]
  2433. },
  2434. "require": {
  2435. "php": ">=7.1"
  2436. },
  2437. "time": "2022-01-02T09:53:40+00:00",
  2438. "type": "library",
  2439. "extra": {
  2440. "branch-alias": {
  2441. "dev-main": "2.5-dev"
  2442. },
  2443. "thanks": {
  2444. "name": "symfony/contracts",
  2445. "url": "https://github.com/symfony/contracts"
  2446. }
  2447. },
  2448. "installation-source": "dist",
  2449. "autoload": {
  2450. "files": [
  2451. "function.php"
  2452. ]
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "Nicolas Grekas",
  2461. "email": "p@tchwork.com"
  2462. },
  2463. {
  2464. "name": "Symfony Community",
  2465. "homepage": "https://symfony.com/contributors"
  2466. }
  2467. ],
  2468. "description": "A generic function and convention to trigger deprecation notices",
  2469. "homepage": "https://symfony.com",
  2470. "support": {
  2471. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://symfony.com/sponsor",
  2476. "type": "custom"
  2477. },
  2478. {
  2479. "url": "https://github.com/fabpot",
  2480. "type": "github"
  2481. },
  2482. {
  2483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2484. "type": "tidelift"
  2485. }
  2486. ],
  2487. "install-path": "../symfony/deprecation-contracts"
  2488. },
  2489. {
  2490. "name": "symfony/event-dispatcher",
  2491. "version": "v5.4.21",
  2492. "version_normalized": "5.4.21.0",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/symfony/event-dispatcher.git",
  2496. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2501. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2502. "shasum": "",
  2503. "mirrors": [
  2504. {
  2505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2506. "preferred": true
  2507. }
  2508. ]
  2509. },
  2510. "require": {
  2511. "php": ">=7.2.5",
  2512. "symfony/deprecation-contracts": "^2.1|^3",
  2513. "symfony/event-dispatcher-contracts": "^2|^3",
  2514. "symfony/polyfill-php80": "^1.16"
  2515. },
  2516. "conflict": {
  2517. "symfony/dependency-injection": "<4.4"
  2518. },
  2519. "provide": {
  2520. "psr/event-dispatcher-implementation": "1.0",
  2521. "symfony/event-dispatcher-implementation": "2.0"
  2522. },
  2523. "require-dev": {
  2524. "psr/log": "^1|^2|^3",
  2525. "symfony/config": "^4.4|^5.0|^6.0",
  2526. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2527. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2528. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2529. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2530. "symfony/service-contracts": "^1.1|^2|^3",
  2531. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2532. },
  2533. "suggest": {
  2534. "symfony/dependency-injection": "",
  2535. "symfony/http-kernel": ""
  2536. },
  2537. "time": "2023-02-14T08:03:56+00:00",
  2538. "type": "library",
  2539. "installation-source": "dist",
  2540. "autoload": {
  2541. "psr-4": {
  2542. "Symfony\\Component\\EventDispatcher\\": ""
  2543. },
  2544. "exclude-from-classmap": [
  2545. "/Tests/"
  2546. ]
  2547. },
  2548. "notification-url": "https://packagist.org/downloads/",
  2549. "license": [
  2550. "MIT"
  2551. ],
  2552. "authors": [
  2553. {
  2554. "name": "Fabien Potencier",
  2555. "email": "fabien@symfony.com"
  2556. },
  2557. {
  2558. "name": "Symfony Community",
  2559. "homepage": "https://symfony.com/contributors"
  2560. }
  2561. ],
  2562. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2563. "homepage": "https://symfony.com",
  2564. "support": {
  2565. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  2566. },
  2567. "funding": [
  2568. {
  2569. "url": "https://symfony.com/sponsor",
  2570. "type": "custom"
  2571. },
  2572. {
  2573. "url": "https://github.com/fabpot",
  2574. "type": "github"
  2575. },
  2576. {
  2577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2578. "type": "tidelift"
  2579. }
  2580. ],
  2581. "install-path": "../symfony/event-dispatcher"
  2582. },
  2583. {
  2584. "name": "symfony/event-dispatcher-contracts",
  2585. "version": "v2.5.2",
  2586. "version_normalized": "2.5.2.0",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2590. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2595. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2596. "shasum": "",
  2597. "mirrors": [
  2598. {
  2599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2600. "preferred": true
  2601. }
  2602. ]
  2603. },
  2604. "require": {
  2605. "php": ">=7.2.5",
  2606. "psr/event-dispatcher": "^1"
  2607. },
  2608. "suggest": {
  2609. "symfony/event-dispatcher-implementation": ""
  2610. },
  2611. "time": "2022-01-02T09:53:40+00:00",
  2612. "type": "library",
  2613. "extra": {
  2614. "branch-alias": {
  2615. "dev-main": "2.5-dev"
  2616. },
  2617. "thanks": {
  2618. "name": "symfony/contracts",
  2619. "url": "https://github.com/symfony/contracts"
  2620. }
  2621. },
  2622. "installation-source": "dist",
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Symfony\\Contracts\\EventDispatcher\\": ""
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Nicolas Grekas",
  2635. "email": "p@tchwork.com"
  2636. },
  2637. {
  2638. "name": "Symfony Community",
  2639. "homepage": "https://symfony.com/contributors"
  2640. }
  2641. ],
  2642. "description": "Generic abstractions related to dispatching event",
  2643. "homepage": "https://symfony.com",
  2644. "keywords": [
  2645. "abstractions",
  2646. "contracts",
  2647. "decoupling",
  2648. "interfaces",
  2649. "interoperability",
  2650. "standards"
  2651. ],
  2652. "support": {
  2653. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  2654. },
  2655. "funding": [
  2656. {
  2657. "url": "https://symfony.com/sponsor",
  2658. "type": "custom"
  2659. },
  2660. {
  2661. "url": "https://github.com/fabpot",
  2662. "type": "github"
  2663. },
  2664. {
  2665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2666. "type": "tidelift"
  2667. }
  2668. ],
  2669. "install-path": "../symfony/event-dispatcher-contracts"
  2670. },
  2671. {
  2672. "name": "symfony/http-foundation",
  2673. "version": "v5.4.21",
  2674. "version_normalized": "5.4.21.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/symfony/http-foundation.git",
  2678. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  2683. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  2684. "shasum": "",
  2685. "mirrors": [
  2686. {
  2687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2688. "preferred": true
  2689. }
  2690. ]
  2691. },
  2692. "require": {
  2693. "php": ">=7.2.5",
  2694. "symfony/deprecation-contracts": "^2.1|^3",
  2695. "symfony/polyfill-mbstring": "~1.1",
  2696. "symfony/polyfill-php80": "^1.16"
  2697. },
  2698. "require-dev": {
  2699. "predis/predis": "~1.0",
  2700. "symfony/cache": "^4.4|^5.0|^6.0",
  2701. "symfony/dependency-injection": "^5.4|^6.0",
  2702. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2703. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  2704. "symfony/mime": "^4.4|^5.0|^6.0",
  2705. "symfony/rate-limiter": "^5.2|^6.0"
  2706. },
  2707. "suggest": {
  2708. "symfony/mime": "To use the file extension guesser"
  2709. },
  2710. "time": "2023-02-17T21:35:35+00:00",
  2711. "type": "library",
  2712. "installation-source": "dist",
  2713. "autoload": {
  2714. "psr-4": {
  2715. "Symfony\\Component\\HttpFoundation\\": ""
  2716. },
  2717. "exclude-from-classmap": [
  2718. "/Tests/"
  2719. ]
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "Fabien Potencier",
  2728. "email": "fabien@symfony.com"
  2729. },
  2730. {
  2731. "name": "Symfony Community",
  2732. "homepage": "https://symfony.com/contributors"
  2733. }
  2734. ],
  2735. "description": "Defines an object-oriented layer for the HTTP specification",
  2736. "homepage": "https://symfony.com",
  2737. "support": {
  2738. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  2739. },
  2740. "funding": [
  2741. {
  2742. "url": "https://symfony.com/sponsor",
  2743. "type": "custom"
  2744. },
  2745. {
  2746. "url": "https://github.com/fabpot",
  2747. "type": "github"
  2748. },
  2749. {
  2750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2751. "type": "tidelift"
  2752. }
  2753. ],
  2754. "install-path": "../symfony/http-foundation"
  2755. },
  2756. {
  2757. "name": "symfony/polyfill-mbstring",
  2758. "version": "v1.27.0",
  2759. "version_normalized": "1.27.0.0",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2763. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2768. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2769. "shasum": "",
  2770. "mirrors": [
  2771. {
  2772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2773. "preferred": true
  2774. }
  2775. ]
  2776. },
  2777. "require": {
  2778. "php": ">=7.1"
  2779. },
  2780. "provide": {
  2781. "ext-mbstring": "*"
  2782. },
  2783. "suggest": {
  2784. "ext-mbstring": "For best performance"
  2785. },
  2786. "time": "2022-11-03T14:55:06+00:00",
  2787. "type": "library",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-main": "1.27-dev"
  2791. },
  2792. "thanks": {
  2793. "name": "symfony/polyfill",
  2794. "url": "https://github.com/symfony/polyfill"
  2795. }
  2796. },
  2797. "installation-source": "dist",
  2798. "autoload": {
  2799. "files": [
  2800. "bootstrap.php"
  2801. ],
  2802. "psr-4": {
  2803. "Symfony\\Polyfill\\Mbstring\\": ""
  2804. }
  2805. },
  2806. "notification-url": "https://packagist.org/downloads/",
  2807. "license": [
  2808. "MIT"
  2809. ],
  2810. "authors": [
  2811. {
  2812. "name": "Nicolas Grekas",
  2813. "email": "p@tchwork.com"
  2814. },
  2815. {
  2816. "name": "Symfony Community",
  2817. "homepage": "https://symfony.com/contributors"
  2818. }
  2819. ],
  2820. "description": "Symfony polyfill for the Mbstring extension",
  2821. "homepage": "https://symfony.com",
  2822. "keywords": [
  2823. "compatibility",
  2824. "mbstring",
  2825. "polyfill",
  2826. "portable",
  2827. "shim"
  2828. ],
  2829. "support": {
  2830. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2831. },
  2832. "funding": [
  2833. {
  2834. "url": "https://symfony.com/sponsor",
  2835. "type": "custom"
  2836. },
  2837. {
  2838. "url": "https://github.com/fabpot",
  2839. "type": "github"
  2840. },
  2841. {
  2842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2843. "type": "tidelift"
  2844. }
  2845. ],
  2846. "install-path": "../symfony/polyfill-mbstring"
  2847. },
  2848. {
  2849. "name": "symfony/polyfill-php72",
  2850. "version": "v1.27.0",
  2851. "version_normalized": "1.27.0.0",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/symfony/polyfill-php72.git",
  2855. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  2860. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  2861. "shasum": "",
  2862. "mirrors": [
  2863. {
  2864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2865. "preferred": true
  2866. }
  2867. ]
  2868. },
  2869. "require": {
  2870. "php": ">=7.1"
  2871. },
  2872. "time": "2022-11-03T14:55:06+00:00",
  2873. "type": "library",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-main": "1.27-dev"
  2877. },
  2878. "thanks": {
  2879. "name": "symfony/polyfill",
  2880. "url": "https://github.com/symfony/polyfill"
  2881. }
  2882. },
  2883. "installation-source": "dist",
  2884. "autoload": {
  2885. "files": [
  2886. "bootstrap.php"
  2887. ],
  2888. "psr-4": {
  2889. "Symfony\\Polyfill\\Php72\\": ""
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Nicolas Grekas",
  2899. "email": "p@tchwork.com"
  2900. },
  2901. {
  2902. "name": "Symfony Community",
  2903. "homepage": "https://symfony.com/contributors"
  2904. }
  2905. ],
  2906. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2907. "homepage": "https://symfony.com",
  2908. "keywords": [
  2909. "compatibility",
  2910. "polyfill",
  2911. "portable",
  2912. "shim"
  2913. ],
  2914. "support": {
  2915. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  2916. },
  2917. "funding": [
  2918. {
  2919. "url": "https://symfony.com/sponsor",
  2920. "type": "custom"
  2921. },
  2922. {
  2923. "url": "https://github.com/fabpot",
  2924. "type": "github"
  2925. },
  2926. {
  2927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2928. "type": "tidelift"
  2929. }
  2930. ],
  2931. "install-path": "../symfony/polyfill-php72"
  2932. },
  2933. {
  2934. "name": "symfony/polyfill-php73",
  2935. "version": "v1.27.0",
  2936. "version_normalized": "1.27.0.0",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/symfony/polyfill-php73.git",
  2940. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2945. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2946. "shasum": "",
  2947. "mirrors": [
  2948. {
  2949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2950. "preferred": true
  2951. }
  2952. ]
  2953. },
  2954. "require": {
  2955. "php": ">=7.1"
  2956. },
  2957. "time": "2022-11-03T14:55:06+00:00",
  2958. "type": "library",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-main": "1.27-dev"
  2962. },
  2963. "thanks": {
  2964. "name": "symfony/polyfill",
  2965. "url": "https://github.com/symfony/polyfill"
  2966. }
  2967. },
  2968. "installation-source": "dist",
  2969. "autoload": {
  2970. "files": [
  2971. "bootstrap.php"
  2972. ],
  2973. "psr-4": {
  2974. "Symfony\\Polyfill\\Php73\\": ""
  2975. },
  2976. "classmap": [
  2977. "Resources/stubs"
  2978. ]
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Nicolas Grekas",
  2987. "email": "p@tchwork.com"
  2988. },
  2989. {
  2990. "name": "Symfony Community",
  2991. "homepage": "https://symfony.com/contributors"
  2992. }
  2993. ],
  2994. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2995. "homepage": "https://symfony.com",
  2996. "keywords": [
  2997. "compatibility",
  2998. "polyfill",
  2999. "portable",
  3000. "shim"
  3001. ],
  3002. "support": {
  3003. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  3004. },
  3005. "funding": [
  3006. {
  3007. "url": "https://symfony.com/sponsor",
  3008. "type": "custom"
  3009. },
  3010. {
  3011. "url": "https://github.com/fabpot",
  3012. "type": "github"
  3013. },
  3014. {
  3015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3016. "type": "tidelift"
  3017. }
  3018. ],
  3019. "install-path": "../symfony/polyfill-php73"
  3020. },
  3021. {
  3022. "name": "symfony/polyfill-php80",
  3023. "version": "v1.27.0",
  3024. "version_normalized": "1.27.0.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/symfony/polyfill-php80.git",
  3028. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3033. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3034. "shasum": "",
  3035. "mirrors": [
  3036. {
  3037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3038. "preferred": true
  3039. }
  3040. ]
  3041. },
  3042. "require": {
  3043. "php": ">=7.1"
  3044. },
  3045. "time": "2022-11-03T14:55:06+00:00",
  3046. "type": "library",
  3047. "extra": {
  3048. "branch-alias": {
  3049. "dev-main": "1.27-dev"
  3050. },
  3051. "thanks": {
  3052. "name": "symfony/polyfill",
  3053. "url": "https://github.com/symfony/polyfill"
  3054. }
  3055. },
  3056. "installation-source": "dist",
  3057. "autoload": {
  3058. "files": [
  3059. "bootstrap.php"
  3060. ],
  3061. "psr-4": {
  3062. "Symfony\\Polyfill\\Php80\\": ""
  3063. },
  3064. "classmap": [
  3065. "Resources/stubs"
  3066. ]
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "Ion Bazan",
  3075. "email": "ion.bazan@gmail.com"
  3076. },
  3077. {
  3078. "name": "Nicolas Grekas",
  3079. "email": "p@tchwork.com"
  3080. },
  3081. {
  3082. "name": "Symfony Community",
  3083. "homepage": "https://symfony.com/contributors"
  3084. }
  3085. ],
  3086. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3087. "homepage": "https://symfony.com",
  3088. "keywords": [
  3089. "compatibility",
  3090. "polyfill",
  3091. "portable",
  3092. "shim"
  3093. ],
  3094. "support": {
  3095. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  3096. },
  3097. "funding": [
  3098. {
  3099. "url": "https://symfony.com/sponsor",
  3100. "type": "custom"
  3101. },
  3102. {
  3103. "url": "https://github.com/fabpot",
  3104. "type": "github"
  3105. },
  3106. {
  3107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3108. "type": "tidelift"
  3109. }
  3110. ],
  3111. "install-path": "../symfony/polyfill-php80"
  3112. },
  3113. {
  3114. "name": "symfony/process",
  3115. "version": "v4.4.44",
  3116. "version_normalized": "4.4.44.0",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/symfony/process.git",
  3120. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3125. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3126. "shasum": "",
  3127. "mirrors": [
  3128. {
  3129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3130. "preferred": true
  3131. }
  3132. ]
  3133. },
  3134. "require": {
  3135. "php": ">=7.1.3",
  3136. "symfony/polyfill-php80": "^1.16"
  3137. },
  3138. "time": "2022-06-27T13:16:42+00:00",
  3139. "type": "library",
  3140. "installation-source": "dist",
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Symfony\\Component\\Process\\": ""
  3144. },
  3145. "exclude-from-classmap": [
  3146. "/Tests/"
  3147. ]
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Fabien Potencier",
  3156. "email": "fabien@symfony.com"
  3157. },
  3158. {
  3159. "name": "Symfony Community",
  3160. "homepage": "https://symfony.com/contributors"
  3161. }
  3162. ],
  3163. "description": "Executes commands in sub-processes",
  3164. "homepage": "https://symfony.com",
  3165. "support": {
  3166. "source": "https://github.com/symfony/process/tree/v4.4.44"
  3167. },
  3168. "funding": [
  3169. {
  3170. "url": "https://symfony.com/sponsor",
  3171. "type": "custom"
  3172. },
  3173. {
  3174. "url": "https://github.com/fabpot",
  3175. "type": "github"
  3176. },
  3177. {
  3178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3179. "type": "tidelift"
  3180. }
  3181. ],
  3182. "install-path": "../symfony/process"
  3183. },
  3184. {
  3185. "name": "symfony/psr-http-message-bridge",
  3186. "version": "v2.1.3",
  3187. "version_normalized": "2.1.3.0",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3191. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  3196. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  3197. "shasum": "",
  3198. "mirrors": [
  3199. {
  3200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3201. "preferred": true
  3202. }
  3203. ]
  3204. },
  3205. "require": {
  3206. "php": ">=7.1",
  3207. "psr/http-message": "^1.0",
  3208. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  3209. },
  3210. "require-dev": {
  3211. "nyholm/psr7": "^1.1",
  3212. "psr/log": "^1.1 || ^2 || ^3",
  3213. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  3214. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  3215. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  3216. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  3217. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  3218. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  3219. },
  3220. "suggest": {
  3221. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3222. },
  3223. "time": "2022-09-05T10:34:54+00:00",
  3224. "type": "symfony-bridge",
  3225. "extra": {
  3226. "branch-alias": {
  3227. "dev-main": "2.1-dev"
  3228. }
  3229. },
  3230. "installation-source": "dist",
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3234. },
  3235. "exclude-from-classmap": [
  3236. "/Tests/"
  3237. ]
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Fabien Potencier",
  3246. "email": "fabien@symfony.com"
  3247. },
  3248. {
  3249. "name": "Symfony Community",
  3250. "homepage": "http://symfony.com/contributors"
  3251. }
  3252. ],
  3253. "description": "PSR HTTP message bridge",
  3254. "homepage": "http://symfony.com",
  3255. "keywords": [
  3256. "http",
  3257. "http-message",
  3258. "psr-17",
  3259. "psr-7"
  3260. ],
  3261. "support": {
  3262. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  3263. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  3264. },
  3265. "funding": [
  3266. {
  3267. "url": "https://symfony.com/sponsor",
  3268. "type": "custom"
  3269. },
  3270. {
  3271. "url": "https://github.com/fabpot",
  3272. "type": "github"
  3273. },
  3274. {
  3275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3276. "type": "tidelift"
  3277. }
  3278. ],
  3279. "install-path": "../symfony/psr-http-message-bridge"
  3280. },
  3281. {
  3282. "name": "symfony/service-contracts",
  3283. "version": "v2.5.2",
  3284. "version_normalized": "2.5.2.0",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://github.com/symfony/service-contracts.git",
  3288. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3293. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3294. "shasum": "",
  3295. "mirrors": [
  3296. {
  3297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3298. "preferred": true
  3299. }
  3300. ]
  3301. },
  3302. "require": {
  3303. "php": ">=7.2.5",
  3304. "psr/container": "^1.1",
  3305. "symfony/deprecation-contracts": "^2.1|^3"
  3306. },
  3307. "conflict": {
  3308. "ext-psr": "<1.1|>=2"
  3309. },
  3310. "suggest": {
  3311. "symfony/service-implementation": ""
  3312. },
  3313. "time": "2022-05-30T19:17:29+00:00",
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-main": "2.5-dev"
  3318. },
  3319. "thanks": {
  3320. "name": "symfony/contracts",
  3321. "url": "https://github.com/symfony/contracts"
  3322. }
  3323. },
  3324. "installation-source": "dist",
  3325. "autoload": {
  3326. "psr-4": {
  3327. "Symfony\\Contracts\\Service\\": ""
  3328. }
  3329. },
  3330. "notification-url": "https://packagist.org/downloads/",
  3331. "license": [
  3332. "MIT"
  3333. ],
  3334. "authors": [
  3335. {
  3336. "name": "Nicolas Grekas",
  3337. "email": "p@tchwork.com"
  3338. },
  3339. {
  3340. "name": "Symfony Community",
  3341. "homepage": "https://symfony.com/contributors"
  3342. }
  3343. ],
  3344. "description": "Generic abstractions related to writing services",
  3345. "homepage": "https://symfony.com",
  3346. "keywords": [
  3347. "abstractions",
  3348. "contracts",
  3349. "decoupling",
  3350. "interfaces",
  3351. "interoperability",
  3352. "standards"
  3353. ],
  3354. "support": {
  3355. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  3356. },
  3357. "funding": [
  3358. {
  3359. "url": "https://symfony.com/sponsor",
  3360. "type": "custom"
  3361. },
  3362. {
  3363. "url": "https://github.com/fabpot",
  3364. "type": "github"
  3365. },
  3366. {
  3367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3368. "type": "tidelift"
  3369. }
  3370. ],
  3371. "install-path": "../symfony/service-contracts"
  3372. },
  3373. {
  3374. "name": "symfony/translation",
  3375. "version": "v5.4.21",
  3376. "version_normalized": "5.4.21.0",
  3377. "source": {
  3378. "type": "git",
  3379. "url": "https://github.com/symfony/translation.git",
  3380. "reference": "6996affeea65705086939894b77110e9a7f80874"
  3381. },
  3382. "dist": {
  3383. "type": "zip",
  3384. "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874",
  3385. "reference": "6996affeea65705086939894b77110e9a7f80874",
  3386. "shasum": "",
  3387. "mirrors": [
  3388. {
  3389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3390. "preferred": true
  3391. }
  3392. ]
  3393. },
  3394. "require": {
  3395. "php": ">=7.2.5",
  3396. "symfony/deprecation-contracts": "^2.1|^3",
  3397. "symfony/polyfill-mbstring": "~1.0",
  3398. "symfony/polyfill-php80": "^1.16",
  3399. "symfony/translation-contracts": "^2.3"
  3400. },
  3401. "conflict": {
  3402. "symfony/config": "<4.4",
  3403. "symfony/console": "<5.3",
  3404. "symfony/dependency-injection": "<5.0",
  3405. "symfony/http-kernel": "<5.0",
  3406. "symfony/twig-bundle": "<5.0",
  3407. "symfony/yaml": "<4.4"
  3408. },
  3409. "provide": {
  3410. "symfony/translation-implementation": "2.3"
  3411. },
  3412. "require-dev": {
  3413. "psr/log": "^1|^2|^3",
  3414. "symfony/config": "^4.4|^5.0|^6.0",
  3415. "symfony/console": "^5.4|^6.0",
  3416. "symfony/dependency-injection": "^5.0|^6.0",
  3417. "symfony/finder": "^4.4|^5.0|^6.0",
  3418. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  3419. "symfony/http-kernel": "^5.0|^6.0",
  3420. "symfony/intl": "^4.4|^5.0|^6.0",
  3421. "symfony/polyfill-intl-icu": "^1.21",
  3422. "symfony/service-contracts": "^1.1.2|^2|^3",
  3423. "symfony/yaml": "^4.4|^5.0|^6.0"
  3424. },
  3425. "suggest": {
  3426. "psr/log-implementation": "To use logging capability in translator",
  3427. "symfony/config": "",
  3428. "symfony/yaml": ""
  3429. },
  3430. "time": "2023-02-21T19:46:44+00:00",
  3431. "type": "library",
  3432. "installation-source": "dist",
  3433. "autoload": {
  3434. "files": [
  3435. "Resources/functions.php"
  3436. ],
  3437. "psr-4": {
  3438. "Symfony\\Component\\Translation\\": ""
  3439. },
  3440. "exclude-from-classmap": [
  3441. "/Tests/"
  3442. ]
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "Fabien Potencier",
  3451. "email": "fabien@symfony.com"
  3452. },
  3453. {
  3454. "name": "Symfony Community",
  3455. "homepage": "https://symfony.com/contributors"
  3456. }
  3457. ],
  3458. "description": "Provides tools to internationalize your application",
  3459. "homepage": "https://symfony.com",
  3460. "support": {
  3461. "source": "https://github.com/symfony/translation/tree/v5.4.21"
  3462. },
  3463. "funding": [
  3464. {
  3465. "url": "https://symfony.com/sponsor",
  3466. "type": "custom"
  3467. },
  3468. {
  3469. "url": "https://github.com/fabpot",
  3470. "type": "github"
  3471. },
  3472. {
  3473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3474. "type": "tidelift"
  3475. }
  3476. ],
  3477. "install-path": "../symfony/translation"
  3478. },
  3479. {
  3480. "name": "symfony/translation-contracts",
  3481. "version": "v2.5.2",
  3482. "version_normalized": "2.5.2.0",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/symfony/translation-contracts.git",
  3486. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3491. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3492. "shasum": "",
  3493. "mirrors": [
  3494. {
  3495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3496. "preferred": true
  3497. }
  3498. ]
  3499. },
  3500. "require": {
  3501. "php": ">=7.2.5"
  3502. },
  3503. "suggest": {
  3504. "symfony/translation-implementation": ""
  3505. },
  3506. "time": "2022-06-27T16:58:25+00:00",
  3507. "type": "library",
  3508. "extra": {
  3509. "branch-alias": {
  3510. "dev-main": "2.5-dev"
  3511. },
  3512. "thanks": {
  3513. "name": "symfony/contracts",
  3514. "url": "https://github.com/symfony/contracts"
  3515. }
  3516. },
  3517. "installation-source": "dist",
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Symfony\\Contracts\\Translation\\": ""
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "MIT"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "Nicolas Grekas",
  3530. "email": "p@tchwork.com"
  3531. },
  3532. {
  3533. "name": "Symfony Community",
  3534. "homepage": "https://symfony.com/contributors"
  3535. }
  3536. ],
  3537. "description": "Generic abstractions related to translation",
  3538. "homepage": "https://symfony.com",
  3539. "keywords": [
  3540. "abstractions",
  3541. "contracts",
  3542. "decoupling",
  3543. "interfaces",
  3544. "interoperability",
  3545. "standards"
  3546. ],
  3547. "support": {
  3548. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  3549. },
  3550. "funding": [
  3551. {
  3552. "url": "https://symfony.com/sponsor",
  3553. "type": "custom"
  3554. },
  3555. {
  3556. "url": "https://github.com/fabpot",
  3557. "type": "github"
  3558. },
  3559. {
  3560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3561. "type": "tidelift"
  3562. }
  3563. ],
  3564. "install-path": "../symfony/translation-contracts"
  3565. },
  3566. {
  3567. "name": "symfony/var-dumper",
  3568. "version": "v4.4.47",
  3569. "version_normalized": "4.4.47.0",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/symfony/var-dumper.git",
  3573. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  3578. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  3579. "shasum": "",
  3580. "mirrors": [
  3581. {
  3582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3583. "preferred": true
  3584. }
  3585. ]
  3586. },
  3587. "require": {
  3588. "php": ">=7.1.3",
  3589. "symfony/polyfill-mbstring": "~1.0",
  3590. "symfony/polyfill-php72": "~1.5",
  3591. "symfony/polyfill-php80": "^1.16"
  3592. },
  3593. "conflict": {
  3594. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3595. "symfony/console": "<3.4"
  3596. },
  3597. "require-dev": {
  3598. "ext-iconv": "*",
  3599. "symfony/console": "^3.4|^4.0|^5.0",
  3600. "symfony/process": "^4.4|^5.0",
  3601. "twig/twig": "^1.43|^2.13|^3.0.4"
  3602. },
  3603. "suggest": {
  3604. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3605. "ext-intl": "To show region name in time zone dump",
  3606. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3607. },
  3608. "time": "2022-10-03T15:15:11+00:00",
  3609. "bin": [
  3610. "Resources/bin/var-dump-server"
  3611. ],
  3612. "type": "library",
  3613. "installation-source": "dist",
  3614. "autoload": {
  3615. "files": [
  3616. "Resources/functions/dump.php"
  3617. ],
  3618. "psr-4": {
  3619. "Symfony\\Component\\VarDumper\\": ""
  3620. },
  3621. "exclude-from-classmap": [
  3622. "/Tests/"
  3623. ]
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Nicolas Grekas",
  3632. "email": "p@tchwork.com"
  3633. },
  3634. {
  3635. "name": "Symfony Community",
  3636. "homepage": "https://symfony.com/contributors"
  3637. }
  3638. ],
  3639. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3640. "homepage": "https://symfony.com",
  3641. "keywords": [
  3642. "debug",
  3643. "dump"
  3644. ],
  3645. "support": {
  3646. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  3647. },
  3648. "funding": [
  3649. {
  3650. "url": "https://symfony.com/sponsor",
  3651. "type": "custom"
  3652. },
  3653. {
  3654. "url": "https://github.com/fabpot",
  3655. "type": "github"
  3656. },
  3657. {
  3658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3659. "type": "tidelift"
  3660. }
  3661. ],
  3662. "install-path": "../symfony/var-dumper"
  3663. },
  3664. {
  3665. "name": "symfony/var-exporter",
  3666. "version": "v5.4.21",
  3667. "version_normalized": "5.4.21.0",
  3668. "source": {
  3669. "type": "git",
  3670. "url": "https://github.com/symfony/var-exporter.git",
  3671. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4"
  3672. },
  3673. "dist": {
  3674. "type": "zip",
  3675. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/be74908a6942fdd331554b3cec27ff41b45ccad4",
  3676. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4",
  3677. "shasum": "",
  3678. "mirrors": [
  3679. {
  3680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3681. "preferred": true
  3682. }
  3683. ]
  3684. },
  3685. "require": {
  3686. "php": ">=7.2.5",
  3687. "symfony/polyfill-php80": "^1.16"
  3688. },
  3689. "require-dev": {
  3690. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  3691. },
  3692. "time": "2023-02-21T19:46:44+00:00",
  3693. "type": "library",
  3694. "installation-source": "dist",
  3695. "autoload": {
  3696. "psr-4": {
  3697. "Symfony\\Component\\VarExporter\\": ""
  3698. },
  3699. "exclude-from-classmap": [
  3700. "/Tests/"
  3701. ]
  3702. },
  3703. "notification-url": "https://packagist.org/downloads/",
  3704. "license": [
  3705. "MIT"
  3706. ],
  3707. "authors": [
  3708. {
  3709. "name": "Nicolas Grekas",
  3710. "email": "p@tchwork.com"
  3711. },
  3712. {
  3713. "name": "Symfony Community",
  3714. "homepage": "https://symfony.com/contributors"
  3715. }
  3716. ],
  3717. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3718. "homepage": "https://symfony.com",
  3719. "keywords": [
  3720. "clone",
  3721. "construct",
  3722. "export",
  3723. "hydrate",
  3724. "instantiate",
  3725. "serialize"
  3726. ],
  3727. "support": {
  3728. "source": "https://github.com/symfony/var-exporter/tree/v5.4.21"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://symfony.com/sponsor",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://github.com/fabpot",
  3737. "type": "github"
  3738. },
  3739. {
  3740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3741. "type": "tidelift"
  3742. }
  3743. ],
  3744. "install-path": "../symfony/var-exporter"
  3745. },
  3746. {
  3747. "name": "topthink/framework",
  3748. "version": "v6.1.2",
  3749. "version_normalized": "6.1.2.0",
  3750. "source": {
  3751. "type": "git",
  3752. "url": "https://github.com/top-think/framework.git",
  3753. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3"
  3754. },
  3755. "dist": {
  3756. "type": "zip",
  3757. "url": "https://api.github.com/repos/top-think/framework/zipball/67235be5b919aaaf1de5aed9839f65d8e766aca3",
  3758. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3",
  3759. "shasum": "",
  3760. "mirrors": [
  3761. {
  3762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3763. "preferred": true
  3764. }
  3765. ]
  3766. },
  3767. "require": {
  3768. "ext-json": "*",
  3769. "ext-mbstring": "*",
  3770. "php": ">=7.2.5",
  3771. "psr/container": "~1.0",
  3772. "psr/http-message": "^1.0",
  3773. "psr/log": "~1.0",
  3774. "psr/simple-cache": "^1.0",
  3775. "topthink/think-helper": "^3.1.1",
  3776. "topthink/think-orm": "^2.0|^3.0"
  3777. },
  3778. "require-dev": {
  3779. "guzzlehttp/psr7": "^2.1.0",
  3780. "mikey179/vfsstream": "^1.6",
  3781. "mockery/mockery": "^1.2",
  3782. "phpunit/phpunit": "^7.0"
  3783. },
  3784. "time": "2023-02-08T02:24:01+00:00",
  3785. "type": "library",
  3786. "installation-source": "dist",
  3787. "autoload": {
  3788. "files": [],
  3789. "psr-4": {
  3790. "think\\": "src/think/"
  3791. }
  3792. },
  3793. "notification-url": "https://packagist.org/downloads/",
  3794. "license": [
  3795. "Apache-2.0"
  3796. ],
  3797. "authors": [
  3798. {
  3799. "name": "liu21st",
  3800. "email": "liu21st@gmail.com"
  3801. },
  3802. {
  3803. "name": "yunwuxin",
  3804. "email": "448901948@qq.com"
  3805. }
  3806. ],
  3807. "description": "The ThinkPHP Framework.",
  3808. "homepage": "http://thinkphp.cn/",
  3809. "keywords": [
  3810. "framework",
  3811. "orm",
  3812. "thinkphp"
  3813. ],
  3814. "support": {
  3815. "issues": "https://github.com/top-think/framework/issues",
  3816. "source": "https://github.com/top-think/framework/tree/v6.1.2"
  3817. },
  3818. "install-path": "../topthink/framework"
  3819. },
  3820. {
  3821. "name": "topthink/think-helper",
  3822. "version": "v3.1.6",
  3823. "version_normalized": "3.1.6.0",
  3824. "source": {
  3825. "type": "git",
  3826. "url": "https://github.com/top-think/think-helper.git",
  3827. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  3828. },
  3829. "dist": {
  3830. "type": "zip",
  3831. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  3832. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  3833. "shasum": "",
  3834. "mirrors": [
  3835. {
  3836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3837. "preferred": true
  3838. }
  3839. ]
  3840. },
  3841. "require": {
  3842. "php": ">=7.1.0"
  3843. },
  3844. "require-dev": {
  3845. "phpunit/phpunit": "^9.5"
  3846. },
  3847. "time": "2021-12-15T04:27:55+00:00",
  3848. "type": "library",
  3849. "installation-source": "dist",
  3850. "autoload": {
  3851. "files": [
  3852. "src/helper.php"
  3853. ],
  3854. "psr-4": {
  3855. "think\\": "src"
  3856. }
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "Apache-2.0"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "yunwuxin",
  3865. "email": "448901948@qq.com"
  3866. }
  3867. ],
  3868. "description": "The ThinkPHP6 Helper Package",
  3869. "support": {
  3870. "issues": "https://github.com/top-think/think-helper/issues",
  3871. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  3872. },
  3873. "install-path": "../topthink/think-helper"
  3874. },
  3875. {
  3876. "name": "topthink/think-migration",
  3877. "version": "v3.0.4",
  3878. "version_normalized": "3.0.4.0",
  3879. "source": {
  3880. "type": "git",
  3881. "url": "https://github.com/top-think/think-migration.git",
  3882. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811"
  3883. },
  3884. "dist": {
  3885. "type": "zip",
  3886. "url": "https://api.github.com/repos/top-think/think-migration/zipball/c5880669b277762d5ff935e551bc0d5c71de6811",
  3887. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811",
  3888. "shasum": "",
  3889. "mirrors": [
  3890. {
  3891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3892. "preferred": true
  3893. }
  3894. ]
  3895. },
  3896. "require": {
  3897. "topthink/framework": "^6.0",
  3898. "topthink/think-helper": "^3.0.3"
  3899. },
  3900. "require-dev": {
  3901. "fzaninotto/faker": "^1.8"
  3902. },
  3903. "suggest": {
  3904. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  3905. },
  3906. "time": "2022-10-26T07:57:54+00:00",
  3907. "type": "library",
  3908. "extra": {
  3909. "think": {
  3910. "services": [
  3911. "think\\migration\\Service"
  3912. ]
  3913. }
  3914. },
  3915. "installation-source": "dist",
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Phinx\\": "phinx/src/Phinx",
  3919. "think\\migration\\": "src"
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "Apache-2.0"
  3925. ],
  3926. "authors": [
  3927. {
  3928. "name": "yunwuxin",
  3929. "email": "448901948@qq.com"
  3930. }
  3931. ],
  3932. "support": {
  3933. "issues": "https://github.com/top-think/think-migration/issues",
  3934. "source": "https://github.com/top-think/think-migration/tree/v3.0.4"
  3935. },
  3936. "install-path": "../topthink/think-migration"
  3937. },
  3938. {
  3939. "name": "topthink/think-multi-app",
  3940. "version": "v1.0.16",
  3941. "version_normalized": "1.0.16.0",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/top-think/think-multi-app.git",
  3945. "reference": "07b9183855150455e1f76f8cbe9d77d6d1bc399f"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/07b9183855150455e1f76f8cbe9d77d6d1bc399f",
  3950. "reference": "07b9183855150455e1f76f8cbe9d77d6d1bc399f",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "php": ">=7.1.0",
  3961. "topthink/framework": "^6.0|^8.0"
  3962. },
  3963. "time": "2023-02-07T08:40:09+00:00",
  3964. "type": "library",
  3965. "extra": {
  3966. "think": {
  3967. "services": [
  3968. "think\\app\\Service"
  3969. ]
  3970. }
  3971. },
  3972. "installation-source": "dist",
  3973. "autoload": {
  3974. "psr-4": {
  3975. "think\\app\\": "src"
  3976. }
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "Apache-2.0"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "liu21st",
  3985. "email": "liu21st@gmail.com"
  3986. }
  3987. ],
  3988. "description": "thinkphp6 multi app support",
  3989. "support": {
  3990. "issues": "https://github.com/top-think/think-multi-app/issues",
  3991. "source": "https://github.com/top-think/think-multi-app/tree/v1.0.16"
  3992. },
  3993. "install-path": "../topthink/think-multi-app"
  3994. },
  3995. {
  3996. "name": "topthink/think-orm",
  3997. "version": "v2.0.59",
  3998. "version_normalized": "2.0.59.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/top-think/think-orm.git",
  4002. "reference": "ac0f18bc3063ca924ed5b4af6e405d74f44d2870"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/top-think/think-orm/zipball/ac0f18bc3063ca924ed5b4af6e405d74f44d2870",
  4007. "reference": "ac0f18bc3063ca924ed5b4af6e405d74f44d2870",
  4008. "shasum": "",
  4009. "mirrors": [
  4010. {
  4011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4012. "preferred": true
  4013. }
  4014. ]
  4015. },
  4016. "require": {
  4017. "ext-json": "*",
  4018. "ext-pdo": "*",
  4019. "php": ">=7.1.0",
  4020. "psr/log": "^1.0|^2.0",
  4021. "psr/simple-cache": "^1.0|^2.0",
  4022. "topthink/think-helper": "^3.1"
  4023. },
  4024. "require-dev": {
  4025. "phpunit/phpunit": "^7|^8|^9.5"
  4026. },
  4027. "time": "2023-03-06T10:12:41+00:00",
  4028. "type": "library",
  4029. "installation-source": "dist",
  4030. "autoload": {
  4031. "files": [
  4032. "stubs/load_stubs.php"
  4033. ],
  4034. "psr-4": {
  4035. "think\\": "src"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "Apache-2.0"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "liu21st",
  4045. "email": "liu21st@gmail.com"
  4046. }
  4047. ],
  4048. "description": "think orm",
  4049. "keywords": [
  4050. "database",
  4051. "orm"
  4052. ],
  4053. "support": {
  4054. "issues": "https://github.com/top-think/think-orm/issues",
  4055. "source": "https://github.com/top-think/think-orm/tree/v2.0.59"
  4056. },
  4057. "install-path": "../topthink/think-orm"
  4058. },
  4059. {
  4060. "name": "topthink/think-queue",
  4061. "version": "v3.0.7",
  4062. "version_normalized": "3.0.7.0",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/top-think/think-queue.git",
  4066. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/top-think/think-queue/zipball/cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  4071. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  4072. "shasum": "",
  4073. "mirrors": [
  4074. {
  4075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4076. "preferred": true
  4077. }
  4078. ]
  4079. },
  4080. "require": {
  4081. "ext-json": "*",
  4082. "nesbot/carbon": "^2.16",
  4083. "symfony/process": "^4.2",
  4084. "topthink/framework": "^6.0"
  4085. },
  4086. "require-dev": {
  4087. "mockery/mockery": "^1.2",
  4088. "phpunit/phpunit": "^6.2",
  4089. "topthink/think-migration": "^3.0.0"
  4090. },
  4091. "time": "2021-12-20T08:04:36+00:00",
  4092. "type": "library",
  4093. "extra": {
  4094. "think": {
  4095. "services": [
  4096. "think\\queue\\Service"
  4097. ],
  4098. "config": {
  4099. "queue": "src/config.php"
  4100. }
  4101. }
  4102. },
  4103. "installation-source": "dist",
  4104. "autoload": {
  4105. "files": [
  4106. "src/common.php"
  4107. ],
  4108. "psr-4": {
  4109. "think\\": "src"
  4110. }
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "Apache-2.0"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "yunwuxin",
  4119. "email": "448901948@qq.com"
  4120. }
  4121. ],
  4122. "description": "The ThinkPHP6 Queue Package",
  4123. "support": {
  4124. "issues": "https://github.com/top-think/think-queue/issues",
  4125. "source": "https://github.com/top-think/think-queue/tree/v3.0.7"
  4126. },
  4127. "install-path": "../topthink/think-queue"
  4128. },
  4129. {
  4130. "name": "topthink/think-template",
  4131. "version": "v2.0.9",
  4132. "version_normalized": "2.0.9.0",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/top-think/think-template.git",
  4136. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/top-think/think-template/zipball/6d25642ae0e306166742fd7073dc7a159e18073c",
  4141. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c",
  4142. "shasum": "",
  4143. "mirrors": [
  4144. {
  4145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4146. "preferred": true
  4147. }
  4148. ]
  4149. },
  4150. "require": {
  4151. "php": ">=7.1.0",
  4152. "psr/simple-cache": "^1.0"
  4153. },
  4154. "time": "2023-02-14T10:50:39+00:00",
  4155. "type": "library",
  4156. "installation-source": "dist",
  4157. "autoload": {
  4158. "psr-4": {
  4159. "think\\": "src"
  4160. }
  4161. },
  4162. "notification-url": "https://packagist.org/downloads/",
  4163. "license": [
  4164. "Apache-2.0"
  4165. ],
  4166. "authors": [
  4167. {
  4168. "name": "liu21st",
  4169. "email": "liu21st@gmail.com"
  4170. }
  4171. ],
  4172. "description": "the php template engine",
  4173. "support": {
  4174. "issues": "https://github.com/top-think/think-template/issues",
  4175. "source": "https://github.com/top-think/think-template/tree/v2.0.9"
  4176. },
  4177. "install-path": "../topthink/think-template"
  4178. },
  4179. {
  4180. "name": "topthink/think-trace",
  4181. "version": "v1.6",
  4182. "version_normalized": "1.6.0.0",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/top-think/think-trace.git",
  4186. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4191. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4192. "shasum": "",
  4193. "mirrors": [
  4194. {
  4195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4196. "preferred": true
  4197. }
  4198. ]
  4199. },
  4200. "require": {
  4201. "php": ">=7.1.0",
  4202. "topthink/framework": "^6.0|^8.0"
  4203. },
  4204. "time": "2023-02-07T08:36:32+00:00",
  4205. "type": "library",
  4206. "extra": {
  4207. "think": {
  4208. "services": [
  4209. "think\\trace\\Service"
  4210. ],
  4211. "config": {
  4212. "trace": "src/config.php"
  4213. }
  4214. }
  4215. },
  4216. "installation-source": "dist",
  4217. "autoload": {
  4218. "psr-4": {
  4219. "think\\trace\\": "src"
  4220. }
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "Apache-2.0"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "liu21st",
  4229. "email": "liu21st@gmail.com"
  4230. }
  4231. ],
  4232. "description": "thinkphp debug trace",
  4233. "support": {
  4234. "issues": "https://github.com/top-think/think-trace/issues",
  4235. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  4236. },
  4237. "install-path": "../topthink/think-trace"
  4238. },
  4239. {
  4240. "name": "topthink/think-view",
  4241. "version": "v1.0.14",
  4242. "version_normalized": "1.0.14.0",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/top-think/think-view.git",
  4246. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4251. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4252. "shasum": "",
  4253. "mirrors": [
  4254. {
  4255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4256. "preferred": true
  4257. }
  4258. ]
  4259. },
  4260. "require": {
  4261. "php": ">=7.1.0",
  4262. "topthink/think-template": "^2.0"
  4263. },
  4264. "time": "2019-11-06T11:40:13+00:00",
  4265. "type": "library",
  4266. "installation-source": "dist",
  4267. "autoload": {
  4268. "psr-4": {
  4269. "think\\view\\driver\\": "src"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "Apache-2.0"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "liu21st",
  4279. "email": "liu21st@gmail.com"
  4280. }
  4281. ],
  4282. "description": "thinkphp template driver",
  4283. "support": {
  4284. "issues": "https://github.com/top-think/think-view/issues",
  4285. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  4286. },
  4287. "install-path": "../topthink/think-view"
  4288. }
  4289. ],
  4290. "dev": true,
  4291. "dev-package-names": [
  4292. "symfony/polyfill-php72",
  4293. "symfony/var-dumper",
  4294. "topthink/think-trace"
  4295. ]
  4296. }