1
0

composer.lock 155 KB

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