installed.json 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.3.0",
  6. "version_normalized": "2.3.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "ext-json": "*",
  20. "php": "^5.5 || ^7.0 || ^8.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  24. "squizlabs/php_codesniffer": "^3.6"
  25. },
  26. "time": "2022-07-12T02:52:50+00:00",
  27. "type": "library",
  28. "installation-source": "dist",
  29. "autoload": {
  30. "files": [
  31. "src/helpers.php"
  32. ],
  33. "psr-4": {
  34. "Adbar\\": "src"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Riku Särkinen",
  44. "email": "riku@adbar.io"
  45. }
  46. ],
  47. "description": "PHP dot notation access to arrays",
  48. "homepage": "https://github.com/adbario/php-dot-notation",
  49. "keywords": [
  50. "ArrayAccess",
  51. "dotnotation"
  52. ],
  53. "support": {
  54. "issues": "https://github.com/adbario/php-dot-notation/issues",
  55. "source": "https://github.com/adbario/php-dot-notation/tree/2.3.0"
  56. },
  57. "install-path": "../adbario/php-dot-notation"
  58. },
  59. {
  60. "name": "alibabacloud/client",
  61. "version": "1.5.31",
  62. "version_normalized": "1.5.31.0",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  66. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  71. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  72. "shasum": ""
  73. },
  74. "require": {
  75. "adbario/php-dot-notation": "^2.2",
  76. "clagiordano/weblibs-configmanager": "^1.0",
  77. "danielstjules/stringy": "^3.1",
  78. "ext-curl": "*",
  79. "ext-json": "*",
  80. "ext-libxml": "*",
  81. "ext-mbstring": "*",
  82. "ext-openssl": "*",
  83. "ext-simplexml": "*",
  84. "ext-xmlwriter": "*",
  85. "guzzlehttp/guzzle": "^6.3|^7.0",
  86. "mtdowling/jmespath.php": "^2.5",
  87. "php": ">=5.5"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "league/climate": "^3.2.4",
  97. "mikey179/vfsstream": "^1.6",
  98. "monolog/monolog": "^1.24",
  99. "phpunit/phpunit": "^5.7.27|^6.1",
  100. "psr/cache": "^1.0",
  101. "symfony/dotenv": "^3.4",
  102. "symfony/var-dumper": "^3.4"
  103. },
  104. "suggest": {
  105. "ext-sockets": "To use client-side monitoring"
  106. },
  107. "time": "2021-05-13T06:26:38+00:00",
  108. "type": "library",
  109. "installation-source": "dist",
  110. "autoload": {
  111. "psr-4": {
  112. "AlibabaCloud\\Client\\": "src"
  113. },
  114. "files": [
  115. "src/Functions.php"
  116. ]
  117. },
  118. "notification-url": "https://packagist.org/downloads/",
  119. "license": [
  120. "Apache-2.0"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Alibaba Cloud SDK",
  125. "email": "sdk-team@alibabacloud.com",
  126. "homepage": "http://www.alibabacloud.com"
  127. }
  128. ],
  129. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  130. "homepage": "https://www.alibabacloud.com/",
  131. "keywords": [
  132. "alibaba",
  133. "alibabacloud",
  134. "aliyun",
  135. "client",
  136. "cloud",
  137. "library",
  138. "sdk",
  139. "tool"
  140. ],
  141. "support": {
  142. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  143. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  144. },
  145. "install-path": "../alibabacloud/client"
  146. },
  147. {
  148. "name": "alibabacloud/sdk",
  149. "version": "1.8.1395",
  150. "version_normalized": "1.8.1395.0",
  151. "source": {
  152. "type": "git",
  153. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  154. "reference": "9090d2107f4b11767d1a412c6e18fbf0547ac4bf"
  155. },
  156. "dist": {
  157. "type": "zip",
  158. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/9090d2107f4b11767d1a412c6e18fbf0547ac4bf",
  159. "reference": "9090d2107f4b11767d1a412c6e18fbf0547ac4bf",
  160. "shasum": ""
  161. },
  162. "require": {
  163. "alibabacloud/client": "^1.5",
  164. "ext-curl": "*",
  165. "ext-json": "*",
  166. "ext-libxml": "*",
  167. "ext-mbstring": "*",
  168. "ext-openssl": "*",
  169. "ext-simplexml": "*",
  170. "ext-xmlwriter": "*",
  171. "php": ">=5.5"
  172. },
  173. "replace": {
  174. "alibabacloud/aas": "self.version",
  175. "alibabacloud/actiontrail": "self.version",
  176. "alibabacloud/adb": "self.version",
  177. "alibabacloud/aegis": "self.version",
  178. "alibabacloud/afs": "self.version",
  179. "alibabacloud/airec": "self.version",
  180. "alibabacloud/alidns": "self.version",
  181. "alibabacloud/alikafka": "self.version",
  182. "alibabacloud/alimt": "self.version",
  183. "alibabacloud/aliprobe": "self.version",
  184. "alibabacloud/aliyuncvc": "self.version",
  185. "alibabacloud/appmallsservice": "self.version",
  186. "alibabacloud/arms": "self.version",
  187. "alibabacloud/arms4finance": "self.version",
  188. "alibabacloud/baas": "self.version",
  189. "alibabacloud/batchcompute": "self.version",
  190. "alibabacloud/bss": "self.version",
  191. "alibabacloud/bssopenapi": "self.version",
  192. "alibabacloud/cas": "self.version",
  193. "alibabacloud/cbn": "self.version",
  194. "alibabacloud/ccc": "self.version",
  195. "alibabacloud/ccs": "self.version",
  196. "alibabacloud/cdn": "self.version",
  197. "alibabacloud/cds": "self.version",
  198. "alibabacloud/cf": "self.version",
  199. "alibabacloud/chatbot": "self.version",
  200. "alibabacloud/cloudapi": "self.version",
  201. "alibabacloud/cloudauth": "self.version",
  202. "alibabacloud/cloudesl": "self.version",
  203. "alibabacloud/cloudmarketing": "self.version",
  204. "alibabacloud/cloudphoto": "self.version",
  205. "alibabacloud/cloudwf": "self.version",
  206. "alibabacloud/cms": "self.version",
  207. "alibabacloud/commondriver": "self.version",
  208. "alibabacloud/companyreg": "self.version",
  209. "alibabacloud/cr": "self.version",
  210. "alibabacloud/crm": "self.version",
  211. "alibabacloud/cs": "self.version",
  212. "alibabacloud/csb": "self.version",
  213. "alibabacloud/cusanalyticsconline": "self.version",
  214. "alibabacloud/dataworkspublic": "self.version",
  215. "alibabacloud/dbs": "self.version",
  216. "alibabacloud/dcdn": "self.version",
  217. "alibabacloud/dds": "self.version",
  218. "alibabacloud/democenter": "self.version",
  219. "alibabacloud/dm": "self.version",
  220. "alibabacloud/dmsenterprise": "self.version",
  221. "alibabacloud/domain": "self.version",
  222. "alibabacloud/domainintl": "self.version",
  223. "alibabacloud/drcloud": "self.version",
  224. "alibabacloud/drds": "self.version",
  225. "alibabacloud/dts": "self.version",
  226. "alibabacloud/dybaseapi": "self.version",
  227. "alibabacloud/dyplsapi": "self.version",
  228. "alibabacloud/dypnsapi": "self.version",
  229. "alibabacloud/dysmsapi": "self.version",
  230. "alibabacloud/dyvmsapi": "self.version",
  231. "alibabacloud/eci": "self.version",
  232. "alibabacloud/ecs": "self.version",
  233. "alibabacloud/ecsinc": "self.version",
  234. "alibabacloud/edas": "self.version",
  235. "alibabacloud/ehpc": "self.version",
  236. "alibabacloud/elasticsearch": "self.version",
  237. "alibabacloud/emr": "self.version",
  238. "alibabacloud/ess": "self.version",
  239. "alibabacloud/facebody": "self.version",
  240. "alibabacloud/fnf": "self.version",
  241. "alibabacloud/foas": "self.version",
  242. "alibabacloud/ft": "self.version",
  243. "alibabacloud/goodstech": "self.version",
  244. "alibabacloud/gpdb": "self.version",
  245. "alibabacloud/green": "self.version",
  246. "alibabacloud/hbase": "self.version",
  247. "alibabacloud/hiknoengine": "self.version",
  248. "alibabacloud/hpc": "self.version",
  249. "alibabacloud/hsm": "self.version",
  250. "alibabacloud/httpdns": "self.version",
  251. "alibabacloud/idst": "self.version",
  252. "alibabacloud/imageaudit": "self.version",
  253. "alibabacloud/imageenhan": "self.version",
  254. "alibabacloud/imagerecog": "self.version",
  255. "alibabacloud/imagesearch": "self.version",
  256. "alibabacloud/imageseg": "self.version",
  257. "alibabacloud/imm": "self.version",
  258. "alibabacloud/industrybrain": "self.version",
  259. "alibabacloud/iot": "self.version",
  260. "alibabacloud/iqa": "self.version",
  261. "alibabacloud/itaas": "self.version",
  262. "alibabacloud/ivision": "self.version",
  263. "alibabacloud/ivpd": "self.version",
  264. "alibabacloud/jaq": "self.version",
  265. "alibabacloud/jarvis": "self.version",
  266. "alibabacloud/jarvispublic": "self.version",
  267. "alibabacloud/kms": "self.version",
  268. "alibabacloud/linkedmall": "self.version",
  269. "alibabacloud/linkface": "self.version",
  270. "alibabacloud/linkwan": "self.version",
  271. "alibabacloud/live": "self.version",
  272. "alibabacloud/lubancloud": "self.version",
  273. "alibabacloud/lubanruler": "self.version",
  274. "alibabacloud/market": "self.version",
  275. "alibabacloud/mopen": "self.version",
  276. "alibabacloud/mpserverless": "self.version",
  277. "alibabacloud/mts": "self.version",
  278. "alibabacloud/multimediaai": "self.version",
  279. "alibabacloud/nas": "self.version",
  280. "alibabacloud/netana": "self.version",
  281. "alibabacloud/nlp": "self.version",
  282. "alibabacloud/nlpautoml": "self.version",
  283. "alibabacloud/nlscloudmeta": "self.version",
  284. "alibabacloud/nlsfiletrans": "self.version",
  285. "alibabacloud/objectdet": "self.version",
  286. "alibabacloud/ocr": "self.version",
  287. "alibabacloud/ocs": "self.version",
  288. "alibabacloud/oms": "self.version",
  289. "alibabacloud/ons": "self.version",
  290. "alibabacloud/onsmqtt": "self.version",
  291. "alibabacloud/oos": "self.version",
  292. "alibabacloud/openanalytics": "self.version",
  293. "alibabacloud/ossadmin": "self.version",
  294. "alibabacloud/ots": "self.version",
  295. "alibabacloud/outboundbot": "self.version",
  296. "alibabacloud/petadata": "self.version",
  297. "alibabacloud/polardb": "self.version",
  298. "alibabacloud/productcatalog": "self.version",
  299. "alibabacloud/pts": "self.version",
  300. "alibabacloud/push": "self.version",
  301. "alibabacloud/pvtz": "self.version",
  302. "alibabacloud/qualitycheck": "self.version",
  303. "alibabacloud/ram": "self.version",
  304. "alibabacloud/rds": "self.version",
  305. "alibabacloud/reid": "self.version",
  306. "alibabacloud/retailcloud": "self.version",
  307. "alibabacloud/rkvstore": "self.version",
  308. "alibabacloud/ros": "self.version",
  309. "alibabacloud/rtc": "self.version",
  310. "alibabacloud/saf": "self.version",
  311. "alibabacloud/sas": "self.version",
  312. "alibabacloud/sasapi": "self.version",
  313. "alibabacloud/scdn": "self.version",
  314. "alibabacloud/schedulerx2": "self.version",
  315. "alibabacloud/skyeye": "self.version",
  316. "alibabacloud/slb": "self.version",
  317. "alibabacloud/smartag": "self.version",
  318. "alibabacloud/smc": "self.version",
  319. "alibabacloud/sms": "self.version",
  320. "alibabacloud/smsintl": "self.version",
  321. "alibabacloud/snsuapi": "self.version",
  322. "alibabacloud/sts": "self.version",
  323. "alibabacloud/taginner": "self.version",
  324. "alibabacloud/tesladam": "self.version",
  325. "alibabacloud/teslamaxcompute": "self.version",
  326. "alibabacloud/teslastream": "self.version",
  327. "alibabacloud/ubsms": "self.version",
  328. "alibabacloud/ubsmsinner": "self.version",
  329. "alibabacloud/uis": "self.version",
  330. "alibabacloud/unimkt": "self.version",
  331. "alibabacloud/visionai": "self.version",
  332. "alibabacloud/vod": "self.version",
  333. "alibabacloud/voicenavigator": "self.version",
  334. "alibabacloud/vpc": "self.version",
  335. "alibabacloud/vs": "self.version",
  336. "alibabacloud/wafopenapi": "self.version",
  337. "alibabacloud/welfareinner": "self.version",
  338. "alibabacloud/xspace": "self.version",
  339. "alibabacloud/xtrace": "self.version",
  340. "alibabacloud/yqbridge": "self.version",
  341. "alibabacloud/yundun": "self.version"
  342. },
  343. "require-dev": {
  344. "composer/composer": "^1.8",
  345. "league/climate": "^3.2.4",
  346. "phpunit/phpunit": "^4.8",
  347. "symfony/dotenv": "^3.4",
  348. "symfony/var-dumper": "^3.4"
  349. },
  350. "suggest": {
  351. "ext-sockets": "To use client-side monitoring"
  352. },
  353. "time": "2022-07-15T09:06:28+00:00",
  354. "type": "library",
  355. "installation-source": "dist",
  356. "autoload": {
  357. "psr-4": {
  358. "AlibabaCloud\\": "src"
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "Apache-2.0"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Alibaba Cloud SDK",
  368. "email": "sdk-team@alibabacloud.com",
  369. "homepage": "http://www.alibabacloud.com"
  370. }
  371. ],
  372. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  373. "homepage": "https://www.alibabacloud.com/",
  374. "keywords": [
  375. "alibaba",
  376. "alibabacloud",
  377. "aliyun",
  378. "cloud",
  379. "library",
  380. "sdk"
  381. ],
  382. "support": {
  383. "issues": "https://github.com/aliyun/openapi-sdk-php/issues",
  384. "source": "https://github.com/aliyun/openapi-sdk-php"
  385. },
  386. "install-path": "../alibabacloud/sdk"
  387. },
  388. {
  389. "name": "cache/adapter-common",
  390. "version": "1.3.0",
  391. "version_normalized": "1.3.0.0",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/php-cache/adapter-common.git",
  395. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  400. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  401. "shasum": "",
  402. "mirrors": [
  403. {
  404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  405. "preferred": true
  406. }
  407. ]
  408. },
  409. "require": {
  410. "cache/tag-interop": "^1.0",
  411. "php": ">=7.4",
  412. "psr/cache": "^1.0 || ^2.0",
  413. "psr/log": "^1.0 || ^2.0 || ^3.0",
  414. "psr/simple-cache": "^1.0"
  415. },
  416. "require-dev": {
  417. "cache/integration-tests": "^0.17",
  418. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  419. },
  420. "time": "2022-01-15T15:47:19+00:00",
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "1.1-dev"
  425. }
  426. },
  427. "installation-source": "dist",
  428. "autoload": {
  429. "psr-4": {
  430. "Cache\\Adapter\\Common\\": ""
  431. }
  432. },
  433. "notification-url": "https://packagist.org/downloads/",
  434. "license": [
  435. "MIT"
  436. ],
  437. "authors": [
  438. {
  439. "name": "Aaron Scherer",
  440. "email": "aequasi@gmail.com",
  441. "homepage": "https://github.com/aequasi"
  442. },
  443. {
  444. "name": "Tobias Nyholm",
  445. "email": "tobias.nyholm@gmail.com",
  446. "homepage": "https://github.com/nyholm"
  447. }
  448. ],
  449. "description": "Common classes for PSR-6 adapters",
  450. "homepage": "http://www.php-cache.com/en/latest/",
  451. "keywords": [
  452. "cache",
  453. "psr-6",
  454. "tag"
  455. ],
  456. "support": {
  457. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  458. },
  459. "install-path": "../cache/adapter-common"
  460. },
  461. {
  462. "name": "cache/hierarchical-cache",
  463. "version": "1.2.0",
  464. "version_normalized": "1.2.0.0",
  465. "source": {
  466. "type": "git",
  467. "url": "https://github.com/php-cache/hierarchical-cache.git",
  468. "reference": "dedffd0a74f72c1db76e57ce29885836944e27f3"
  469. },
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://api.github.com/repos/php-cache/hierarchical-cache/zipball/dedffd0a74f72c1db76e57ce29885836944e27f3",
  473. "reference": "dedffd0a74f72c1db76e57ce29885836944e27f3",
  474. "shasum": "",
  475. "mirrors": [
  476. {
  477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  478. "preferred": true
  479. }
  480. ]
  481. },
  482. "require": {
  483. "cache/adapter-common": "^1.0",
  484. "php": ">=7.4",
  485. "psr/cache": "^1.0 || ^2.0"
  486. },
  487. "require-dev": {
  488. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  489. },
  490. "time": "2022-01-15T15:47:19+00:00",
  491. "type": "library",
  492. "extra": {
  493. "branch-alias": {
  494. "dev-master": "1.1-dev"
  495. }
  496. },
  497. "installation-source": "dist",
  498. "autoload": {
  499. "psr-4": {
  500. "Cache\\Hierarchy\\": ""
  501. },
  502. "exclude-from-classmap": [
  503. "/Tests/"
  504. ]
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "MIT"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Aaron Scherer",
  513. "email": "aequasi@gmail.com",
  514. "homepage": "https://github.com/aequasi"
  515. },
  516. {
  517. "name": "Tobias Nyholm",
  518. "email": "tobias.nyholm@gmail.com",
  519. "homepage": "https://github.com/nyholm"
  520. }
  521. ],
  522. "description": "A helper trait and interface to your PSR-6 cache to support hierarchical keys.",
  523. "homepage": "http://www.php-cache.com/en/latest/",
  524. "keywords": [
  525. "cache",
  526. "hierarchical",
  527. "hierarchy",
  528. "psr-6"
  529. ],
  530. "support": {
  531. "source": "https://github.com/php-cache/hierarchical-cache/tree/1.2.0"
  532. },
  533. "install-path": "../cache/hierarchical-cache"
  534. },
  535. {
  536. "name": "cache/redis-adapter",
  537. "version": "1.1.0",
  538. "version_normalized": "1.1.0.0",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/php-cache/redis-adapter.git",
  542. "reference": "80645507231494f9daa874e7bc1bf85d72443188"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/php-cache/redis-adapter/zipball/80645507231494f9daa874e7bc1bf85d72443188",
  547. "reference": "80645507231494f9daa874e7bc1bf85d72443188",
  548. "shasum": "",
  549. "mirrors": [
  550. {
  551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  552. "preferred": true
  553. }
  554. ]
  555. },
  556. "require": {
  557. "cache/adapter-common": "^1.0",
  558. "cache/hierarchical-cache": "^1.0",
  559. "php": "^5.6 || ^7.0 || ^8.0",
  560. "psr/cache": "^1.0",
  561. "psr/simple-cache": "^1.0"
  562. },
  563. "provide": {
  564. "psr/cache-implementation": "^1.0",
  565. "psr/simple-cache-implementation": "^1.0"
  566. },
  567. "require-dev": {
  568. "cache/integration-tests": "^0.16",
  569. "phpunit/phpunit": "^5.7.21"
  570. },
  571. "suggest": {
  572. "ext-redis": "The extension required to use this pool."
  573. },
  574. "time": "2020-12-14T12:17:39+00:00",
  575. "type": "library",
  576. "extra": {
  577. "branch-alias": {
  578. "dev-master": "1.1-dev"
  579. }
  580. },
  581. "installation-source": "dist",
  582. "autoload": {
  583. "psr-4": {
  584. "Cache\\Adapter\\Redis\\": ""
  585. },
  586. "exclude-from-classmap": [
  587. "/Tests/"
  588. ]
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Aaron Scherer",
  597. "email": "aequasi@gmail.com",
  598. "homepage": "https://github.com/aequasi"
  599. },
  600. {
  601. "name": "Tobias Nyholm",
  602. "email": "tobias.nyholm@gmail.com",
  603. "homepage": "https://github.com/nyholm"
  604. }
  605. ],
  606. "description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
  607. "homepage": "http://www.php-cache.com/en/latest/",
  608. "keywords": [
  609. "cache",
  610. "phpredis",
  611. "psr-6",
  612. "redis",
  613. "tag"
  614. ],
  615. "support": {
  616. "source": "https://github.com/php-cache/redis-adapter/tree/1.1.0"
  617. },
  618. "install-path": "../cache/redis-adapter"
  619. },
  620. {
  621. "name": "cache/simple-cache-bridge",
  622. "version": "1.2.0",
  623. "version_normalized": "1.2.0.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/php-cache/simple-cache-bridge.git",
  627. "reference": "63c0179d9afeb34ed383870a64d19eb9a3fea0c1"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/php-cache/simple-cache-bridge/zipball/63c0179d9afeb34ed383870a64d19eb9a3fea0c1",
  632. "reference": "63c0179d9afeb34ed383870a64d19eb9a3fea0c1",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "php": ">=7.4",
  643. "psr/cache": "^1.0 || ^2.0",
  644. "psr/simple-cache": "^1.0"
  645. },
  646. "provide": {
  647. "psr/simple-cache-implementation": "^1.0"
  648. },
  649. "require-dev": {
  650. "cache/integration-tests": "^0.17",
  651. "mockery/mockery": "^1.0",
  652. "phpunit/phpunit": "^7.5.20 || ^9.5.10",
  653. "symfony/cache": "^3.2"
  654. },
  655. "time": "2022-01-15T15:47:19+00:00",
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "1.1-dev"
  660. }
  661. },
  662. "installation-source": "dist",
  663. "autoload": {
  664. "psr-4": {
  665. "Cache\\Bridge\\SimpleCache\\": ""
  666. },
  667. "exclude-from-classmap": [
  668. "/Tests/"
  669. ]
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Magnus Nordlander",
  678. "email": "magnus@fervo.se",
  679. "homepage": "https://github.com/magnusnordlander"
  680. }
  681. ],
  682. "description": "A PSR-6 bridge to PSR-16. This will make any PSR-6 cache compatible with SimpleCache.",
  683. "homepage": "http://www.php-cache.com/en/latest/",
  684. "keywords": [
  685. "Bridge",
  686. "cache",
  687. "psr-16",
  688. "psr-6"
  689. ],
  690. "support": {
  691. "source": "https://github.com/php-cache/simple-cache-bridge/tree/1.2.0"
  692. },
  693. "install-path": "../cache/simple-cache-bridge"
  694. },
  695. {
  696. "name": "cache/tag-interop",
  697. "version": "1.1.0",
  698. "version_normalized": "1.1.0.0",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/php-cache/tag-interop.git",
  702. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  707. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  708. "shasum": "",
  709. "mirrors": [
  710. {
  711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  712. "preferred": true
  713. }
  714. ]
  715. },
  716. "require": {
  717. "php": "^5.5 || ^7.0 || ^8.0",
  718. "psr/cache": "^1.0 || ^2.0"
  719. },
  720. "time": "2021-12-31T10:03:23+00:00",
  721. "type": "library",
  722. "extra": {
  723. "branch-alias": {
  724. "dev-master": "1.1-dev"
  725. }
  726. },
  727. "installation-source": "dist",
  728. "autoload": {
  729. "psr-4": {
  730. "Cache\\TagInterop\\": ""
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Tobias Nyholm",
  740. "email": "tobias.nyholm@gmail.com",
  741. "homepage": "https://github.com/nyholm"
  742. },
  743. {
  744. "name": "Nicolas Grekas",
  745. "email": "p@tchwork.com",
  746. "homepage": "https://github.com/nicolas-grekas"
  747. }
  748. ],
  749. "description": "Framework interoperable interfaces for tags",
  750. "homepage": "https://www.php-cache.com/en/latest/",
  751. "keywords": [
  752. "cache",
  753. "psr",
  754. "psr6",
  755. "tag"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/php-cache/tag-interop/issues",
  759. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  760. },
  761. "install-path": "../cache/tag-interop"
  762. },
  763. {
  764. "name": "clagiordano/weblibs-configmanager",
  765. "version": "v1.5.0",
  766. "version_normalized": "1.5.0.0",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  770. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  775. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "ext-json": "*",
  780. "php": ">=5.4",
  781. "symfony/yaml": "^2.8"
  782. },
  783. "require-dev": {
  784. "clagiordano/phpunit-result-printer": "^1",
  785. "php-coveralls/php-coveralls": "^1.1",
  786. "phpunit/phpunit": "^4.8"
  787. },
  788. "time": "2021-07-12T15:27:21+00:00",
  789. "type": "library",
  790. "installation-source": "dist",
  791. "autoload": {
  792. "psr-4": {
  793. "clagiordano\\weblibs\\configmanager\\": "src/"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "LGPL-3.0-or-later"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Claudio Giordano",
  803. "email": "claudio.giordano@autistici.org",
  804. "role": "Developer"
  805. }
  806. ],
  807. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  808. "keywords": [
  809. "clagiordano",
  810. "configuration",
  811. "manager",
  812. "tool",
  813. "weblibs"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  817. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  818. },
  819. "install-path": "../clagiordano/weblibs-configmanager"
  820. },
  821. {
  822. "name": "danielstjules/stringy",
  823. "version": "3.1.0",
  824. "version_normalized": "3.1.0.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/danielstjules/Stringy.git",
  828. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  833. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": ">=5.4.0",
  838. "symfony/polyfill-mbstring": "~1.1"
  839. },
  840. "require-dev": {
  841. "phpunit/phpunit": "~4.0"
  842. },
  843. "time": "2017-06-12T01:10:27+00:00",
  844. "type": "library",
  845. "installation-source": "dist",
  846. "autoload": {
  847. "psr-4": {
  848. "Stringy\\": "src/"
  849. },
  850. "files": [
  851. "src/Create.php"
  852. ]
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Daniel St. Jules",
  861. "email": "danielst.jules@gmail.com",
  862. "homepage": "http://www.danielstjules.com"
  863. }
  864. ],
  865. "description": "A string manipulation library with multibyte support",
  866. "homepage": "https://github.com/danielstjules/Stringy",
  867. "keywords": [
  868. "UTF",
  869. "helpers",
  870. "manipulation",
  871. "methods",
  872. "multibyte",
  873. "string",
  874. "utf-8",
  875. "utility",
  876. "utils"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/danielstjules/Stringy/issues",
  880. "source": "https://github.com/danielstjules/Stringy"
  881. },
  882. "install-path": "../danielstjules/stringy"
  883. },
  884. {
  885. "name": "easywechat-composer/easywechat-composer",
  886. "version": "1.4.1",
  887. "version_normalized": "1.4.1.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/mingyoung/easywechat-composer.git",
  891. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  896. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "composer-plugin-api": "^1.0 || ^2.0",
  901. "php": ">=7.0"
  902. },
  903. "require-dev": {
  904. "composer/composer": "^1.0 || ^2.0",
  905. "phpunit/phpunit": "^6.5 || ^7.0"
  906. },
  907. "time": "2021-07-05T04:03:22+00:00",
  908. "type": "composer-plugin",
  909. "extra": {
  910. "class": "EasyWeChatComposer\\Plugin"
  911. },
  912. "installation-source": "dist",
  913. "autoload": {
  914. "psr-4": {
  915. "EasyWeChatComposer\\": "src/"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "张铭阳",
  925. "email": "mingyoungcheung@gmail.com"
  926. }
  927. ],
  928. "description": "The composer plugin for EasyWeChat",
  929. "support": {
  930. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  931. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  932. },
  933. "install-path": "../easywechat-composer/easywechat-composer"
  934. },
  935. {
  936. "name": "elastic/transport",
  937. "version": "v8.3.0",
  938. "version_normalized": "8.3.0.0",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/elastic/elastic-transport-php.git",
  942. "reference": "dc6703f82ff48f2e0d10a95a81dcfc6a7343ec84"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/dc6703f82ff48f2e0d10a95a81dcfc6a7343ec84",
  947. "reference": "dc6703f82ff48f2e0d10a95a81dcfc6a7343ec84",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": "^7.4 || ^8.0",
  952. "php-http/discovery": "^1.14",
  953. "php-http/httplug": "^2.3",
  954. "psr/http-client": "^1.0",
  955. "psr/http-factory": "^1.0",
  956. "psr/http-message": "^1.0",
  957. "psr/log": "^1 || ^2 || ^3"
  958. },
  959. "require-dev": {
  960. "nyholm/psr7": "^1.5",
  961. "php-http/mock-client": "^1.5",
  962. "phpstan/phpstan": "^1.4",
  963. "phpunit/phpunit": "^9.5"
  964. },
  965. "time": "2022-06-27T13:24:04+00:00",
  966. "type": "library",
  967. "installation-source": "dist",
  968. "autoload": {
  969. "psr-4": {
  970. "Elastic\\Transport\\": "src/"
  971. }
  972. },
  973. "notification-url": "https://packagist.org/downloads/",
  974. "license": [
  975. "MIT"
  976. ],
  977. "description": "HTTP transport PHP library for Elastic products",
  978. "keywords": [
  979. "PSR_17",
  980. "elastic",
  981. "http",
  982. "psr-18",
  983. "psr-7",
  984. "transport"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/elastic/elastic-transport-php/issues",
  988. "source": "https://github.com/elastic/elastic-transport-php/tree/v8.3.0"
  989. },
  990. "install-path": "../elastic/transport"
  991. },
  992. {
  993. "name": "elasticsearch/elasticsearch",
  994. "version": "v8.3.2",
  995. "version_normalized": "8.3.2.0",
  996. "source": {
  997. "type": "git",
  998. "url": "git@github.com:elastic/elasticsearch-php.git",
  999. "reference": "c83fd9812873c5f6d6f4df22a66b0a9182d7c81a"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/c83fd9812873c5f6d6f4df22a66b0a9182d7c81a",
  1004. "reference": "c83fd9812873c5f6d6f4df22a66b0a9182d7c81a",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "elastic/transport": "^8.3",
  1009. "guzzlehttp/guzzle": "^7.0",
  1010. "php": "^7.4 || ^8.0",
  1011. "psr/http-client": "^1.0",
  1012. "psr/http-message": "^1.0",
  1013. "psr/log": "^1|^2|^3"
  1014. },
  1015. "require-dev": {
  1016. "ext-yaml": "*",
  1017. "ext-zip": "*",
  1018. "mockery/mockery": "^1.5",
  1019. "nyholm/psr7": "^1.5",
  1020. "php-http/mock-client": "^1.5",
  1021. "phpstan/phpstan": "^1.4",
  1022. "phpunit/phpunit": "^9.5",
  1023. "symfony/finder": "~4.0"
  1024. },
  1025. "time": "2022-07-07T18:32:38+00:00",
  1026. "type": "library",
  1027. "installation-source": "dist",
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Elastic\\Elasticsearch\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "description": "PHP Client for Elasticsearch",
  1038. "keywords": [
  1039. "client",
  1040. "elastic",
  1041. "elasticsearch",
  1042. "search"
  1043. ],
  1044. "install-path": "../elasticsearch/elasticsearch"
  1045. },
  1046. {
  1047. "name": "guzzlehttp/guzzle",
  1048. "version": "7.4.5",
  1049. "version_normalized": "7.4.5.0",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/guzzle/guzzle.git",
  1053. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1058. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "ext-json": "*",
  1063. "guzzlehttp/promises": "^1.5",
  1064. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1065. "php": "^7.2.5 || ^8.0",
  1066. "psr/http-client": "^1.0",
  1067. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1068. },
  1069. "provide": {
  1070. "psr/http-client-implementation": "1.0"
  1071. },
  1072. "require-dev": {
  1073. "bamarni/composer-bin-plugin": "^1.4.1",
  1074. "ext-curl": "*",
  1075. "php-http/client-integration-tests": "^3.0",
  1076. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1077. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1078. },
  1079. "suggest": {
  1080. "ext-curl": "Required for CURL handler support",
  1081. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1082. "psr/log": "Required for using the Log middleware"
  1083. },
  1084. "time": "2022-06-20T22:16:13+00:00",
  1085. "type": "library",
  1086. "extra": {
  1087. "branch-alias": {
  1088. "dev-master": "7.4-dev"
  1089. }
  1090. },
  1091. "installation-source": "dist",
  1092. "autoload": {
  1093. "files": [
  1094. "src/functions_include.php"
  1095. ],
  1096. "psr-4": {
  1097. "GuzzleHttp\\": "src/"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Graham Campbell",
  1107. "email": "hello@gjcampbell.co.uk",
  1108. "homepage": "https://github.com/GrahamCampbell"
  1109. },
  1110. {
  1111. "name": "Michael Dowling",
  1112. "email": "mtdowling@gmail.com",
  1113. "homepage": "https://github.com/mtdowling"
  1114. },
  1115. {
  1116. "name": "Jeremy Lindblom",
  1117. "email": "jeremeamia@gmail.com",
  1118. "homepage": "https://github.com/jeremeamia"
  1119. },
  1120. {
  1121. "name": "George Mponos",
  1122. "email": "gmponos@gmail.com",
  1123. "homepage": "https://github.com/gmponos"
  1124. },
  1125. {
  1126. "name": "Tobias Nyholm",
  1127. "email": "tobias.nyholm@gmail.com",
  1128. "homepage": "https://github.com/Nyholm"
  1129. },
  1130. {
  1131. "name": "Márk Sági-Kazár",
  1132. "email": "mark.sagikazar@gmail.com",
  1133. "homepage": "https://github.com/sagikazarmark"
  1134. },
  1135. {
  1136. "name": "Tobias Schultze",
  1137. "email": "webmaster@tubo-world.de",
  1138. "homepage": "https://github.com/Tobion"
  1139. }
  1140. ],
  1141. "description": "Guzzle is a PHP HTTP client library",
  1142. "keywords": [
  1143. "client",
  1144. "curl",
  1145. "framework",
  1146. "http",
  1147. "http client",
  1148. "psr-18",
  1149. "psr-7",
  1150. "rest",
  1151. "web service"
  1152. ],
  1153. "support": {
  1154. "issues": "https://github.com/guzzle/guzzle/issues",
  1155. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1156. },
  1157. "funding": [
  1158. {
  1159. "url": "https://github.com/GrahamCampbell",
  1160. "type": "github"
  1161. },
  1162. {
  1163. "url": "https://github.com/Nyholm",
  1164. "type": "github"
  1165. },
  1166. {
  1167. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1168. "type": "tidelift"
  1169. }
  1170. ],
  1171. "install-path": "../guzzlehttp/guzzle"
  1172. },
  1173. {
  1174. "name": "guzzlehttp/promises",
  1175. "version": "1.5.1",
  1176. "version_normalized": "1.5.1.0",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/guzzle/promises.git",
  1180. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1185. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": ">=5.5"
  1190. },
  1191. "require-dev": {
  1192. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1193. },
  1194. "time": "2021-10-22T20:56:57+00:00",
  1195. "type": "library",
  1196. "extra": {
  1197. "branch-alias": {
  1198. "dev-master": "1.5-dev"
  1199. }
  1200. },
  1201. "installation-source": "dist",
  1202. "autoload": {
  1203. "psr-4": {
  1204. "GuzzleHttp\\Promise\\": "src/"
  1205. },
  1206. "files": [
  1207. "src/functions_include.php"
  1208. ]
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "MIT"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "Graham Campbell",
  1217. "email": "hello@gjcampbell.co.uk",
  1218. "homepage": "https://github.com/GrahamCampbell"
  1219. },
  1220. {
  1221. "name": "Michael Dowling",
  1222. "email": "mtdowling@gmail.com",
  1223. "homepage": "https://github.com/mtdowling"
  1224. },
  1225. {
  1226. "name": "Tobias Nyholm",
  1227. "email": "tobias.nyholm@gmail.com",
  1228. "homepage": "https://github.com/Nyholm"
  1229. },
  1230. {
  1231. "name": "Tobias Schultze",
  1232. "email": "webmaster@tubo-world.de",
  1233. "homepage": "https://github.com/Tobion"
  1234. }
  1235. ],
  1236. "description": "Guzzle promises library",
  1237. "keywords": [
  1238. "promise"
  1239. ],
  1240. "support": {
  1241. "issues": "https://github.com/guzzle/promises/issues",
  1242. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://github.com/GrahamCampbell",
  1247. "type": "github"
  1248. },
  1249. {
  1250. "url": "https://github.com/Nyholm",
  1251. "type": "github"
  1252. },
  1253. {
  1254. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1255. "type": "tidelift"
  1256. }
  1257. ],
  1258. "install-path": "../guzzlehttp/promises"
  1259. },
  1260. {
  1261. "name": "guzzlehttp/psr7",
  1262. "version": "2.4.0",
  1263. "version_normalized": "2.4.0.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/guzzle/psr7.git",
  1267. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  1272. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": "^7.2.5 || ^8.0",
  1277. "psr/http-factory": "^1.0",
  1278. "psr/http-message": "^1.0",
  1279. "ralouphie/getallheaders": "^3.0"
  1280. },
  1281. "provide": {
  1282. "psr/http-factory-implementation": "1.0",
  1283. "psr/http-message-implementation": "1.0"
  1284. },
  1285. "require-dev": {
  1286. "bamarni/composer-bin-plugin": "^1.4.1",
  1287. "http-interop/http-factory-tests": "^0.9",
  1288. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1289. },
  1290. "suggest": {
  1291. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1292. },
  1293. "time": "2022-06-20T21:43:11+00:00",
  1294. "type": "library",
  1295. "extra": {
  1296. "branch-alias": {
  1297. "dev-master": "2.4-dev"
  1298. }
  1299. },
  1300. "installation-source": "dist",
  1301. "autoload": {
  1302. "psr-4": {
  1303. "GuzzleHttp\\Psr7\\": "src/"
  1304. }
  1305. },
  1306. "notification-url": "https://packagist.org/downloads/",
  1307. "license": [
  1308. "MIT"
  1309. ],
  1310. "authors": [
  1311. {
  1312. "name": "Graham Campbell",
  1313. "email": "hello@gjcampbell.co.uk",
  1314. "homepage": "https://github.com/GrahamCampbell"
  1315. },
  1316. {
  1317. "name": "Michael Dowling",
  1318. "email": "mtdowling@gmail.com",
  1319. "homepage": "https://github.com/mtdowling"
  1320. },
  1321. {
  1322. "name": "George Mponos",
  1323. "email": "gmponos@gmail.com",
  1324. "homepage": "https://github.com/gmponos"
  1325. },
  1326. {
  1327. "name": "Tobias Nyholm",
  1328. "email": "tobias.nyholm@gmail.com",
  1329. "homepage": "https://github.com/Nyholm"
  1330. },
  1331. {
  1332. "name": "Márk Sági-Kazár",
  1333. "email": "mark.sagikazar@gmail.com",
  1334. "homepage": "https://github.com/sagikazarmark"
  1335. },
  1336. {
  1337. "name": "Tobias Schultze",
  1338. "email": "webmaster@tubo-world.de",
  1339. "homepage": "https://github.com/Tobion"
  1340. },
  1341. {
  1342. "name": "Márk Sági-Kazár",
  1343. "email": "mark.sagikazar@gmail.com",
  1344. "homepage": "https://sagikazarmark.hu"
  1345. }
  1346. ],
  1347. "description": "PSR-7 message implementation that also provides common utility methods",
  1348. "keywords": [
  1349. "http",
  1350. "message",
  1351. "psr-7",
  1352. "request",
  1353. "response",
  1354. "stream",
  1355. "uri",
  1356. "url"
  1357. ],
  1358. "support": {
  1359. "issues": "https://github.com/guzzle/psr7/issues",
  1360. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  1361. },
  1362. "funding": [
  1363. {
  1364. "url": "https://github.com/GrahamCampbell",
  1365. "type": "github"
  1366. },
  1367. {
  1368. "url": "https://github.com/Nyholm",
  1369. "type": "github"
  1370. },
  1371. {
  1372. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1373. "type": "tidelift"
  1374. }
  1375. ],
  1376. "install-path": "../guzzlehttp/psr7"
  1377. },
  1378. {
  1379. "name": "ionepub/idcard",
  1380. "version": "1.1.1",
  1381. "version_normalized": "1.1.1.0",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/ionepub/idcard.git",
  1385. "reference": "a934609778e819822d8503c49eec06eacc87b7da"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/ionepub/idcard/zipball/a934609778e819822d8503c49eec06eacc87b7da",
  1390. "reference": "a934609778e819822d8503c49eec06eacc87b7da",
  1391. "shasum": "",
  1392. "mirrors": [
  1393. {
  1394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1395. "preferred": true
  1396. }
  1397. ]
  1398. },
  1399. "time": "2020-08-13T09:46:57+00:00",
  1400. "type": "library",
  1401. "installation-source": "dist",
  1402. "autoload": {
  1403. "psr-4": {
  1404. "Ionepub\\": "src/"
  1405. }
  1406. },
  1407. "notification-url": "https://packagist.org/downloads/",
  1408. "license": [
  1409. "MIT"
  1410. ],
  1411. "authors": [
  1412. {
  1413. "name": "ionepub",
  1414. "homepage": "http://github.com/ionepub/"
  1415. }
  1416. ],
  1417. "description": "二代身份证号码验证,可用于验证二代身份证号码是否合法、从身份证号码中获取生日/性别/年龄/地区信息 A Chinese identity card number verification class",
  1418. "homepage": "https://github.com/ionepub/idcard",
  1419. "keywords": [
  1420. "A Chinese identity card number verification class",
  1421. "id",
  1422. "身份证号码验证"
  1423. ],
  1424. "support": {
  1425. "issues": "https://github.com/ionepub/idcard/issues",
  1426. "source": "https://github.com/ionepub/idcard/tree/1.1.1"
  1427. },
  1428. "install-path": "../ionepub/idcard"
  1429. },
  1430. {
  1431. "name": "karsonzhang/fastadmin-addons",
  1432. "version": "1.2.12",
  1433. "version_normalized": "1.2.12.0",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/karsonzhang/fastadmin-addons.git",
  1437. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/karsonzhang/fastadmin-addons/zipball/7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1442. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1443. "shasum": ""
  1444. },
  1445. "require": {
  1446. "nelexa/zip": "^3.3",
  1447. "php": ">=7.0.0",
  1448. "symfony/var-exporter": "^4.4.13"
  1449. },
  1450. "time": "2021-07-19T08:10:11+00:00",
  1451. "type": "library",
  1452. "extra": {
  1453. "think-config": {
  1454. "addons": "src/config.php"
  1455. }
  1456. },
  1457. "installation-source": "dist",
  1458. "autoload": {
  1459. "psr-4": {
  1460. "think\\": "src/"
  1461. },
  1462. "files": [
  1463. "src/common.php"
  1464. ]
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "Apache-2.0"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Karson",
  1473. "email": "karson@fastadmin.net"
  1474. },
  1475. {
  1476. "name": "xiaobo.sun",
  1477. "email": "xiaobo.sun@qq.com"
  1478. }
  1479. ],
  1480. "description": "addons package for fastadmin",
  1481. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  1482. "support": {
  1483. "issues": "https://github.com/karsonzhang/fastadmin-addons/issues",
  1484. "source": "https://github.com/karsonzhang/fastadmin-addons/tree/v1.2.12"
  1485. },
  1486. "install-path": "../karsonzhang/fastadmin-addons"
  1487. },
  1488. {
  1489. "name": "markbaker/complex",
  1490. "version": "1.5.0",
  1491. "version_normalized": "1.5.0.0",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1495. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1500. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "php": "^5.6.0|^7.0"
  1511. },
  1512. "require-dev": {
  1513. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1514. "phpcompatibility/php-compatibility": "^9.0",
  1515. "phpdocumentor/phpdocumentor": "2.*",
  1516. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1517. "phpmd/phpmd": "2.*",
  1518. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1519. "sebastian/phpcpd": "2.*",
  1520. "squizlabs/php_codesniffer": "^3.4.0"
  1521. },
  1522. "time": "2020-08-26T19:47:57+00:00",
  1523. "type": "library",
  1524. "installation-source": "dist",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Complex\\": "classes/src/"
  1528. },
  1529. "files": [
  1530. "classes/src/functions/abs.php",
  1531. "classes/src/functions/acos.php",
  1532. "classes/src/functions/acosh.php",
  1533. "classes/src/functions/acot.php",
  1534. "classes/src/functions/acoth.php",
  1535. "classes/src/functions/acsc.php",
  1536. "classes/src/functions/acsch.php",
  1537. "classes/src/functions/argument.php",
  1538. "classes/src/functions/asec.php",
  1539. "classes/src/functions/asech.php",
  1540. "classes/src/functions/asin.php",
  1541. "classes/src/functions/asinh.php",
  1542. "classes/src/functions/atan.php",
  1543. "classes/src/functions/atanh.php",
  1544. "classes/src/functions/conjugate.php",
  1545. "classes/src/functions/cos.php",
  1546. "classes/src/functions/cosh.php",
  1547. "classes/src/functions/cot.php",
  1548. "classes/src/functions/coth.php",
  1549. "classes/src/functions/csc.php",
  1550. "classes/src/functions/csch.php",
  1551. "classes/src/functions/exp.php",
  1552. "classes/src/functions/inverse.php",
  1553. "classes/src/functions/ln.php",
  1554. "classes/src/functions/log2.php",
  1555. "classes/src/functions/log10.php",
  1556. "classes/src/functions/negative.php",
  1557. "classes/src/functions/pow.php",
  1558. "classes/src/functions/rho.php",
  1559. "classes/src/functions/sec.php",
  1560. "classes/src/functions/sech.php",
  1561. "classes/src/functions/sin.php",
  1562. "classes/src/functions/sinh.php",
  1563. "classes/src/functions/sqrt.php",
  1564. "classes/src/functions/tan.php",
  1565. "classes/src/functions/tanh.php",
  1566. "classes/src/functions/theta.php",
  1567. "classes/src/operations/add.php",
  1568. "classes/src/operations/subtract.php",
  1569. "classes/src/operations/multiply.php",
  1570. "classes/src/operations/divideby.php",
  1571. "classes/src/operations/divideinto.php"
  1572. ]
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Mark Baker",
  1581. "email": "mark@lange.demon.co.uk"
  1582. }
  1583. ],
  1584. "description": "PHP Class for working with complex numbers",
  1585. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1586. "keywords": [
  1587. "complex",
  1588. "mathematics"
  1589. ],
  1590. "install-path": "../markbaker/complex"
  1591. },
  1592. {
  1593. "name": "markbaker/matrix",
  1594. "version": "1.2.3",
  1595. "version_normalized": "1.2.3.0",
  1596. "source": {
  1597. "type": "git",
  1598. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1599. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  1600. },
  1601. "dist": {
  1602. "type": "zip",
  1603. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1604. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1605. "shasum": "",
  1606. "mirrors": [
  1607. {
  1608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1609. "preferred": true
  1610. }
  1611. ]
  1612. },
  1613. "require": {
  1614. "php": "^5.6.0|^7.0.0"
  1615. },
  1616. "require-dev": {
  1617. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1618. "phpcompatibility/php-compatibility": "dev-master",
  1619. "phploc/phploc": "^4",
  1620. "phpmd/phpmd": "dev-master",
  1621. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1622. "sebastian/phpcpd": "^3.0",
  1623. "squizlabs/php_codesniffer": "^3.0@dev"
  1624. },
  1625. "time": "2021-01-26T14:36:01+00:00",
  1626. "type": "library",
  1627. "installation-source": "dist",
  1628. "autoload": {
  1629. "psr-4": {
  1630. "Matrix\\": "classes/src/"
  1631. },
  1632. "files": [
  1633. "classes/src/Functions/adjoint.php",
  1634. "classes/src/Functions/antidiagonal.php",
  1635. "classes/src/Functions/cofactors.php",
  1636. "classes/src/Functions/determinant.php",
  1637. "classes/src/Functions/diagonal.php",
  1638. "classes/src/Functions/identity.php",
  1639. "classes/src/Functions/inverse.php",
  1640. "classes/src/Functions/minors.php",
  1641. "classes/src/Functions/trace.php",
  1642. "classes/src/Functions/transpose.php",
  1643. "classes/src/Operations/add.php",
  1644. "classes/src/Operations/directsum.php",
  1645. "classes/src/Operations/subtract.php",
  1646. "classes/src/Operations/multiply.php",
  1647. "classes/src/Operations/divideby.php",
  1648. "classes/src/Operations/divideinto.php"
  1649. ]
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Mark Baker",
  1658. "email": "mark@lange.demon.co.uk"
  1659. }
  1660. ],
  1661. "description": "PHP Class for working with matrices",
  1662. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1663. "keywords": [
  1664. "mathematics",
  1665. "matrix",
  1666. "vector"
  1667. ],
  1668. "install-path": "../markbaker/matrix"
  1669. },
  1670. {
  1671. "name": "monolog/monolog",
  1672. "version": "2.7.0",
  1673. "version_normalized": "2.7.0.0",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/Seldaek/monolog.git",
  1677. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  1682. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  1683. "shasum": ""
  1684. },
  1685. "require": {
  1686. "php": ">=7.2",
  1687. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1688. },
  1689. "provide": {
  1690. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1691. },
  1692. "require-dev": {
  1693. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1694. "doctrine/couchdb": "~1.0@dev",
  1695. "elasticsearch/elasticsearch": "^7 || ^8",
  1696. "ext-json": "*",
  1697. "graylog2/gelf-php": "^1.4.2",
  1698. "guzzlehttp/guzzle": "^7.4",
  1699. "guzzlehttp/psr7": "^2.2",
  1700. "mongodb/mongodb": "^1.8",
  1701. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1702. "php-console/php-console": "^3.1.3",
  1703. "phpspec/prophecy": "^1.15",
  1704. "phpstan/phpstan": "^0.12.91",
  1705. "phpunit/phpunit": "^8.5.14",
  1706. "predis/predis": "^1.1",
  1707. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1708. "ruflin/elastica": "^7",
  1709. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1710. "symfony/mailer": "^5.4 || ^6",
  1711. "symfony/mime": "^5.4 || ^6"
  1712. },
  1713. "suggest": {
  1714. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1715. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1716. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1717. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1718. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1719. "ext-mbstring": "Allow to work properly with unicode symbols",
  1720. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1721. "ext-openssl": "Required to send log messages using SSL",
  1722. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1723. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1724. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1725. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1726. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1727. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1728. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1729. },
  1730. "time": "2022-06-09T08:59:12+00:00",
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-main": "2.x-dev"
  1735. }
  1736. },
  1737. "installation-source": "dist",
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Monolog\\": "src/Monolog"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Jordi Boggiano",
  1750. "email": "j.boggiano@seld.be",
  1751. "homepage": "https://seld.be"
  1752. }
  1753. ],
  1754. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1755. "homepage": "https://github.com/Seldaek/monolog",
  1756. "keywords": [
  1757. "log",
  1758. "logging",
  1759. "psr-3"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/Seldaek/monolog/issues",
  1763. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://github.com/Seldaek",
  1768. "type": "github"
  1769. },
  1770. {
  1771. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1772. "type": "tidelift"
  1773. }
  1774. ],
  1775. "install-path": "../monolog/monolog"
  1776. },
  1777. {
  1778. "name": "mtdowling/jmespath.php",
  1779. "version": "2.6.1",
  1780. "version_normalized": "2.6.1.0",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/jmespath/jmespath.php.git",
  1784. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1789. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "php": "^5.4 || ^7.0 || ^8.0",
  1794. "symfony/polyfill-mbstring": "^1.17"
  1795. },
  1796. "require-dev": {
  1797. "composer/xdebug-handler": "^1.4 || ^2.0",
  1798. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1799. },
  1800. "time": "2021-06-14T00:11:39+00:00",
  1801. "bin": [
  1802. "bin/jp.php"
  1803. ],
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-master": "2.6-dev"
  1808. }
  1809. },
  1810. "installation-source": "dist",
  1811. "autoload": {
  1812. "psr-4": {
  1813. "JmesPath\\": "src/"
  1814. },
  1815. "files": [
  1816. "src/JmesPath.php"
  1817. ]
  1818. },
  1819. "notification-url": "https://packagist.org/downloads/",
  1820. "license": [
  1821. "MIT"
  1822. ],
  1823. "authors": [
  1824. {
  1825. "name": "Michael Dowling",
  1826. "email": "mtdowling@gmail.com",
  1827. "homepage": "https://github.com/mtdowling"
  1828. }
  1829. ],
  1830. "description": "Declaratively specify how to extract elements from a JSON document",
  1831. "keywords": [
  1832. "json",
  1833. "jsonpath"
  1834. ],
  1835. "support": {
  1836. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1837. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  1838. },
  1839. "install-path": "../mtdowling/jmespath.php"
  1840. },
  1841. {
  1842. "name": "nelexa/zip",
  1843. "version": "3.3.3",
  1844. "version_normalized": "3.3.3.0",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/Ne-Lexa/php-zip.git",
  1848. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1853. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1854. "shasum": "",
  1855. "mirrors": [
  1856. {
  1857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1858. "preferred": true
  1859. }
  1860. ]
  1861. },
  1862. "require": {
  1863. "ext-zlib": "*",
  1864. "paragonie/random_compat": "*",
  1865. "php": "^5.5.9 || ^7.0",
  1866. "psr/http-message": "^1.0",
  1867. "symfony/finder": "^3.0|^4.0|^5.0"
  1868. },
  1869. "require-dev": {
  1870. "ext-bz2": "*",
  1871. "ext-fileinfo": "*",
  1872. "ext-openssl": "*",
  1873. "ext-xml": "*",
  1874. "guzzlehttp/psr7": "^1.6",
  1875. "phpunit/phpunit": "^4.8|^5.7",
  1876. "symfony/var-dumper": "^3.0|^4.0|^5.0"
  1877. },
  1878. "suggest": {
  1879. "ext-bz2": "Needed to support BZIP2 compression",
  1880. "ext-fileinfo": "Needed to get mime-type file",
  1881. "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
  1882. "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
  1883. },
  1884. "time": "2020-07-11T21:01:42+00:00",
  1885. "type": "library",
  1886. "installation-source": "dist",
  1887. "autoload": {
  1888. "psr-4": {
  1889. "PhpZip\\": "src/"
  1890. }
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "MIT"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "Ne-Lexa",
  1899. "email": "alexey@nelexa.ru",
  1900. "role": "Developer"
  1901. }
  1902. ],
  1903. "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
  1904. "homepage": "https://github.com/Ne-Lexa/php-zip",
  1905. "keywords": [
  1906. "archive",
  1907. "extract",
  1908. "unzip",
  1909. "winzip",
  1910. "zip",
  1911. "zipalign",
  1912. "ziparchive"
  1913. ],
  1914. "install-path": "../nelexa/zip"
  1915. },
  1916. {
  1917. "name": "overtrue/pinyin",
  1918. "version": "4.0.8",
  1919. "version_normalized": "4.0.8.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/overtrue/pinyin.git",
  1923. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  1928. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": ">=7.1"
  1933. },
  1934. "require-dev": {
  1935. "brainmaestro/composer-git-hooks": "^2.7",
  1936. "friendsofphp/php-cs-fixer": "^2.16",
  1937. "phpunit/phpunit": "~8.0"
  1938. },
  1939. "time": "2021-07-19T03:43:32+00:00",
  1940. "type": "library",
  1941. "extra": {
  1942. "hooks": {
  1943. "pre-commit": [
  1944. "composer test",
  1945. "composer fix-style"
  1946. ],
  1947. "pre-push": [
  1948. "composer test",
  1949. "composer check-style"
  1950. ]
  1951. }
  1952. },
  1953. "installation-source": "dist",
  1954. "autoload": {
  1955. "psr-4": {
  1956. "Overtrue\\Pinyin\\": "src/"
  1957. },
  1958. "files": [
  1959. "src/const.php"
  1960. ]
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "overtrue",
  1969. "email": "anzhengchao@gmail.com",
  1970. "homepage": "http://github.com/overtrue"
  1971. }
  1972. ],
  1973. "description": "Chinese to pinyin translator.",
  1974. "homepage": "https://github.com/overtrue/pinyin",
  1975. "keywords": [
  1976. "Chinese",
  1977. "Pinyin",
  1978. "cn2pinyin"
  1979. ],
  1980. "support": {
  1981. "issues": "https://github.com/overtrue/pinyin/issues",
  1982. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  1983. },
  1984. "funding": [
  1985. {
  1986. "url": "https://www.patreon.com/overtrue",
  1987. "type": "patreon"
  1988. }
  1989. ],
  1990. "install-path": "../overtrue/pinyin"
  1991. },
  1992. {
  1993. "name": "overtrue/socialite",
  1994. "version": "2.0.24",
  1995. "version_normalized": "2.0.24.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/overtrue/socialite.git",
  1999. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2004. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "ext-json": "*",
  2009. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  2010. "php": ">=5.6",
  2011. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  2012. },
  2013. "require-dev": {
  2014. "mockery/mockery": "~1.2",
  2015. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  2016. },
  2017. "time": "2021-05-13T16:04:48+00:00",
  2018. "type": "library",
  2019. "installation-source": "dist",
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Overtrue\\Socialite\\": "src/"
  2023. }
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "MIT"
  2028. ],
  2029. "authors": [
  2030. {
  2031. "name": "overtrue",
  2032. "email": "anzhengchao@gmail.com"
  2033. }
  2034. ],
  2035. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2036. "keywords": [
  2037. "login",
  2038. "oauth",
  2039. "qq",
  2040. "social",
  2041. "wechat",
  2042. "weibo"
  2043. ],
  2044. "support": {
  2045. "issues": "https://github.com/overtrue/socialite/issues",
  2046. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  2047. },
  2048. "funding": [
  2049. {
  2050. "url": "https://www.patreon.com/overtrue",
  2051. "type": "patreon"
  2052. }
  2053. ],
  2054. "install-path": "../overtrue/socialite"
  2055. },
  2056. {
  2057. "name": "overtrue/wechat",
  2058. "version": "4.5.0",
  2059. "version_normalized": "4.5.0.0",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://github.com/w7corp/easywechat.git",
  2063. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2068. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2069. "shasum": ""
  2070. },
  2071. "require": {
  2072. "easywechat-composer/easywechat-composer": "^1.1",
  2073. "ext-fileinfo": "*",
  2074. "ext-openssl": "*",
  2075. "ext-simplexml": "*",
  2076. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2077. "monolog/monolog": "^1.22 || ^2.0",
  2078. "overtrue/socialite": "~2.0",
  2079. "php": ">=7.2",
  2080. "pimple/pimple": "^3.0",
  2081. "psr/simple-cache": "^1.0",
  2082. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2083. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2084. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2085. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2086. },
  2087. "require-dev": {
  2088. "friendsofphp/php-cs-fixer": "^2.15",
  2089. "mikey179/vfsstream": "^1.6",
  2090. "mockery/mockery": "^1.2.3",
  2091. "phpstan/phpstan": "^0.12.0",
  2092. "phpunit/phpunit": "^7.5"
  2093. },
  2094. "time": "2021-12-27T13:56:47+00:00",
  2095. "type": "library",
  2096. "installation-source": "dist",
  2097. "autoload": {
  2098. "files": [
  2099. "src/Kernel/Support/Helpers.php",
  2100. "src/Kernel/Helpers.php"
  2101. ],
  2102. "psr-4": {
  2103. "EasyWeChat\\": "src/"
  2104. }
  2105. },
  2106. "notification-url": "https://packagist.org/downloads/",
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "authors": [
  2111. {
  2112. "name": "overtrue",
  2113. "email": "anzhengchao@gmail.com"
  2114. }
  2115. ],
  2116. "description": "微信SDK",
  2117. "keywords": [
  2118. "easywechat",
  2119. "sdk",
  2120. "wechat",
  2121. "weixin",
  2122. "weixin-sdk"
  2123. ],
  2124. "support": {
  2125. "issues": "https://github.com/w7corp/easywechat/issues",
  2126. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  2127. },
  2128. "funding": [
  2129. {
  2130. "url": "https://github.com/overtrue",
  2131. "type": "github"
  2132. }
  2133. ],
  2134. "abandoned": "w7corp/easywechat",
  2135. "install-path": "../overtrue/wechat"
  2136. },
  2137. {
  2138. "name": "paragonie/random_compat",
  2139. "version": "v9.99.100",
  2140. "version_normalized": "9.99.100.0",
  2141. "source": {
  2142. "type": "git",
  2143. "url": "https://github.com/paragonie/random_compat.git",
  2144. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2145. },
  2146. "dist": {
  2147. "type": "zip",
  2148. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2149. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2150. "shasum": "",
  2151. "mirrors": [
  2152. {
  2153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2154. "preferred": true
  2155. }
  2156. ]
  2157. },
  2158. "require": {
  2159. "php": ">= 7"
  2160. },
  2161. "require-dev": {
  2162. "phpunit/phpunit": "4.*|5.*",
  2163. "vimeo/psalm": "^1"
  2164. },
  2165. "suggest": {
  2166. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2167. },
  2168. "time": "2020-10-15T08:29:30+00:00",
  2169. "type": "library",
  2170. "installation-source": "dist",
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Paragon Initiative Enterprises",
  2178. "email": "security@paragonie.com",
  2179. "homepage": "https://paragonie.com"
  2180. }
  2181. ],
  2182. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2183. "keywords": [
  2184. "csprng",
  2185. "polyfill",
  2186. "pseudorandom",
  2187. "random"
  2188. ],
  2189. "install-path": "../paragonie/random_compat"
  2190. },
  2191. {
  2192. "name": "php-http/discovery",
  2193. "version": "1.14.3",
  2194. "version_normalized": "1.14.3.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/php-http/discovery.git",
  2198. "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/php-http/discovery/zipball/31d8ee46d0215108df16a8527c7438e96a4d7735",
  2203. "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": "^7.1 || ^8.0"
  2208. },
  2209. "conflict": {
  2210. "nyholm/psr7": "<1.0"
  2211. },
  2212. "require-dev": {
  2213. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2214. "php-http/httplug": "^1.0 || ^2.0",
  2215. "php-http/message-factory": "^1.0",
  2216. "phpspec/phpspec": "^5.1 || ^6.1"
  2217. },
  2218. "suggest": {
  2219. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories"
  2220. },
  2221. "time": "2022-07-11T14:04:40+00:00",
  2222. "type": "library",
  2223. "extra": {
  2224. "branch-alias": {
  2225. "dev-master": "1.9-dev"
  2226. }
  2227. },
  2228. "installation-source": "dist",
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Http\\Discovery\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Márk Sági-Kazár",
  2241. "email": "mark.sagikazar@gmail.com"
  2242. }
  2243. ],
  2244. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  2245. "homepage": "http://php-http.org",
  2246. "keywords": [
  2247. "adapter",
  2248. "client",
  2249. "discovery",
  2250. "factory",
  2251. "http",
  2252. "message",
  2253. "psr7"
  2254. ],
  2255. "support": {
  2256. "issues": "https://github.com/php-http/discovery/issues",
  2257. "source": "https://github.com/php-http/discovery/tree/1.14.3"
  2258. },
  2259. "install-path": "../php-http/discovery"
  2260. },
  2261. {
  2262. "name": "php-http/httplug",
  2263. "version": "2.3.0",
  2264. "version_normalized": "2.3.0.0",
  2265. "source": {
  2266. "type": "git",
  2267. "url": "https://github.com/php-http/httplug.git",
  2268. "reference": "f640739f80dfa1152533976e3c112477f69274eb"
  2269. },
  2270. "dist": {
  2271. "type": "zip",
  2272. "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb",
  2273. "reference": "f640739f80dfa1152533976e3c112477f69274eb",
  2274. "shasum": ""
  2275. },
  2276. "require": {
  2277. "php": "^7.1 || ^8.0",
  2278. "php-http/promise": "^1.1",
  2279. "psr/http-client": "^1.0",
  2280. "psr/http-message": "^1.0"
  2281. },
  2282. "require-dev": {
  2283. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  2284. "phpspec/phpspec": "^5.1 || ^6.0"
  2285. },
  2286. "time": "2022-02-21T09:52:22+00:00",
  2287. "type": "library",
  2288. "extra": {
  2289. "branch-alias": {
  2290. "dev-master": "2.x-dev"
  2291. }
  2292. },
  2293. "installation-source": "dist",
  2294. "autoload": {
  2295. "psr-4": {
  2296. "Http\\Client\\": "src/"
  2297. }
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Eric GELOEN",
  2306. "email": "geloen.eric@gmail.com"
  2307. },
  2308. {
  2309. "name": "Márk Sági-Kazár",
  2310. "email": "mark.sagikazar@gmail.com",
  2311. "homepage": "https://sagikazarmark.hu"
  2312. }
  2313. ],
  2314. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2315. "homepage": "http://httplug.io",
  2316. "keywords": [
  2317. "client",
  2318. "http"
  2319. ],
  2320. "support": {
  2321. "issues": "https://github.com/php-http/httplug/issues",
  2322. "source": "https://github.com/php-http/httplug/tree/2.3.0"
  2323. },
  2324. "install-path": "../php-http/httplug"
  2325. },
  2326. {
  2327. "name": "php-http/promise",
  2328. "version": "1.1.0",
  2329. "version_normalized": "1.1.0.0",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/php-http/promise.git",
  2333. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  2338. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "php": "^7.1 || ^8.0"
  2343. },
  2344. "require-dev": {
  2345. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  2346. "phpspec/phpspec": "^5.1.2 || ^6.2"
  2347. },
  2348. "time": "2020-07-07T09:29:14+00:00",
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "1.1-dev"
  2353. }
  2354. },
  2355. "installation-source": "dist",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "Http\\Promise\\": "src/"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Joel Wurtz",
  2368. "email": "joel.wurtz@gmail.com"
  2369. },
  2370. {
  2371. "name": "Márk Sági-Kazár",
  2372. "email": "mark.sagikazar@gmail.com"
  2373. }
  2374. ],
  2375. "description": "Promise used for asynchronous HTTP requests",
  2376. "homepage": "http://httplug.io",
  2377. "keywords": [
  2378. "promise"
  2379. ],
  2380. "support": {
  2381. "issues": "https://github.com/php-http/promise/issues",
  2382. "source": "https://github.com/php-http/promise/tree/1.1.0"
  2383. },
  2384. "install-path": "../php-http/promise"
  2385. },
  2386. {
  2387. "name": "phpoffice/phpspreadsheet",
  2388. "version": "1.12.0",
  2389. "version_normalized": "1.12.0.0",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2393. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2398. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2399. "shasum": "",
  2400. "mirrors": [
  2401. {
  2402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2403. "preferred": true
  2404. }
  2405. ]
  2406. },
  2407. "require": {
  2408. "ext-ctype": "*",
  2409. "ext-dom": "*",
  2410. "ext-fileinfo": "*",
  2411. "ext-gd": "*",
  2412. "ext-iconv": "*",
  2413. "ext-libxml": "*",
  2414. "ext-mbstring": "*",
  2415. "ext-simplexml": "*",
  2416. "ext-xml": "*",
  2417. "ext-xmlreader": "*",
  2418. "ext-xmlwriter": "*",
  2419. "ext-zip": "*",
  2420. "ext-zlib": "*",
  2421. "markbaker/complex": "^1.4",
  2422. "markbaker/matrix": "^1.2",
  2423. "php": "^7.1",
  2424. "psr/simple-cache": "^1.0"
  2425. },
  2426. "require-dev": {
  2427. "dompdf/dompdf": "^0.8.3",
  2428. "friendsofphp/php-cs-fixer": "^2.16",
  2429. "jpgraph/jpgraph": "^4.0",
  2430. "mpdf/mpdf": "^8.0",
  2431. "phpcompatibility/php-compatibility": "^9.3",
  2432. "phpunit/phpunit": "^7.5",
  2433. "squizlabs/php_codesniffer": "^3.5",
  2434. "tecnickcom/tcpdf": "^6.3"
  2435. },
  2436. "suggest": {
  2437. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2438. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2439. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2440. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2441. },
  2442. "time": "2020-04-27T08:12:48+00:00",
  2443. "type": "library",
  2444. "installation-source": "dist",
  2445. "autoload": {
  2446. "psr-4": {
  2447. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2448. }
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Maarten Balliauw",
  2457. "homepage": "https://blog.maartenballiauw.be"
  2458. },
  2459. {
  2460. "name": "Mark Baker",
  2461. "homepage": "https://markbakeruk.net"
  2462. },
  2463. {
  2464. "name": "Franck Lefevre",
  2465. "homepage": "https://rootslabs.net"
  2466. },
  2467. {
  2468. "name": "Erik Tilt"
  2469. },
  2470. {
  2471. "name": "Adrien Crivelli"
  2472. }
  2473. ],
  2474. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2475. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2476. "keywords": [
  2477. "OpenXML",
  2478. "excel",
  2479. "gnumeric",
  2480. "ods",
  2481. "php",
  2482. "spreadsheet",
  2483. "xls",
  2484. "xlsx"
  2485. ],
  2486. "install-path": "../phpoffice/phpspreadsheet"
  2487. },
  2488. {
  2489. "name": "pimple/pimple",
  2490. "version": "v3.5.0",
  2491. "version_normalized": "3.5.0.0",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/silexphp/Pimple.git",
  2495. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2500. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2501. "shasum": ""
  2502. },
  2503. "require": {
  2504. "php": ">=7.2.5",
  2505. "psr/container": "^1.1 || ^2.0"
  2506. },
  2507. "require-dev": {
  2508. "symfony/phpunit-bridge": "^5.4@dev"
  2509. },
  2510. "time": "2021-10-28T11:13:42+00:00",
  2511. "type": "library",
  2512. "extra": {
  2513. "branch-alias": {
  2514. "dev-master": "3.4.x-dev"
  2515. }
  2516. },
  2517. "installation-source": "dist",
  2518. "autoload": {
  2519. "psr-0": {
  2520. "Pimple": "src/"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Fabien Potencier",
  2530. "email": "fabien@symfony.com"
  2531. }
  2532. ],
  2533. "description": "Pimple, a simple Dependency Injection Container",
  2534. "homepage": "https://pimple.symfony.com",
  2535. "keywords": [
  2536. "container",
  2537. "dependency injection"
  2538. ],
  2539. "support": {
  2540. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2541. },
  2542. "install-path": "../pimple/pimple"
  2543. },
  2544. {
  2545. "name": "psr/cache",
  2546. "version": "1.0.1",
  2547. "version_normalized": "1.0.1.0",
  2548. "source": {
  2549. "type": "git",
  2550. "url": "https://github.com/php-fig/cache.git",
  2551. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2552. },
  2553. "dist": {
  2554. "type": "zip",
  2555. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2556. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2557. "shasum": "",
  2558. "mirrors": [
  2559. {
  2560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2561. "preferred": true
  2562. }
  2563. ]
  2564. },
  2565. "require": {
  2566. "php": ">=5.3.0"
  2567. },
  2568. "time": "2016-08-06T20:24:11+00:00",
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "1.0.x-dev"
  2573. }
  2574. },
  2575. "installation-source": "dist",
  2576. "autoload": {
  2577. "psr-4": {
  2578. "Psr\\Cache\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "PHP-FIG",
  2588. "homepage": "http://www.php-fig.org/"
  2589. }
  2590. ],
  2591. "description": "Common interface for caching libraries",
  2592. "keywords": [
  2593. "cache",
  2594. "psr",
  2595. "psr-6"
  2596. ],
  2597. "install-path": "../psr/cache"
  2598. },
  2599. {
  2600. "name": "psr/container",
  2601. "version": "2.0.2",
  2602. "version_normalized": "2.0.2.0",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/php-fig/container.git",
  2606. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2611. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "php": ">=7.4.0"
  2616. },
  2617. "time": "2021-11-05T16:47:00+00:00",
  2618. "type": "library",
  2619. "extra": {
  2620. "branch-alias": {
  2621. "dev-master": "2.0.x-dev"
  2622. }
  2623. },
  2624. "installation-source": "dist",
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Psr\\Container\\": "src/"
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "PHP-FIG",
  2637. "homepage": "https://www.php-fig.org/"
  2638. }
  2639. ],
  2640. "description": "Common Container Interface (PHP FIG PSR-11)",
  2641. "homepage": "https://github.com/php-fig/container",
  2642. "keywords": [
  2643. "PSR-11",
  2644. "container",
  2645. "container-interface",
  2646. "container-interop",
  2647. "psr"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/php-fig/container/issues",
  2651. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2652. },
  2653. "install-path": "../psr/container"
  2654. },
  2655. {
  2656. "name": "psr/event-dispatcher",
  2657. "version": "1.0.0",
  2658. "version_normalized": "1.0.0.0",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/php-fig/event-dispatcher.git",
  2662. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2667. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2668. "shasum": ""
  2669. },
  2670. "require": {
  2671. "php": ">=7.2.0"
  2672. },
  2673. "time": "2019-01-08T18:20:26+00:00",
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-master": "1.0.x-dev"
  2678. }
  2679. },
  2680. "installation-source": "dist",
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Psr\\EventDispatcher\\": "src/"
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "PHP-FIG",
  2693. "homepage": "http://www.php-fig.org/"
  2694. }
  2695. ],
  2696. "description": "Standard interfaces for event handling.",
  2697. "keywords": [
  2698. "events",
  2699. "psr",
  2700. "psr-14"
  2701. ],
  2702. "support": {
  2703. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2704. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2705. },
  2706. "install-path": "../psr/event-dispatcher"
  2707. },
  2708. {
  2709. "name": "psr/http-client",
  2710. "version": "1.0.1",
  2711. "version_normalized": "1.0.1.0",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://github.com/php-fig/http-client.git",
  2715. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2720. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2721. "shasum": ""
  2722. },
  2723. "require": {
  2724. "php": "^7.0 || ^8.0",
  2725. "psr/http-message": "^1.0"
  2726. },
  2727. "time": "2020-06-29T06:28:15+00:00",
  2728. "type": "library",
  2729. "extra": {
  2730. "branch-alias": {
  2731. "dev-master": "1.0.x-dev"
  2732. }
  2733. },
  2734. "installation-source": "dist",
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Psr\\Http\\Client\\": "src/"
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "PHP-FIG",
  2747. "homepage": "http://www.php-fig.org/"
  2748. }
  2749. ],
  2750. "description": "Common interface for HTTP clients",
  2751. "homepage": "https://github.com/php-fig/http-client",
  2752. "keywords": [
  2753. "http",
  2754. "http-client",
  2755. "psr",
  2756. "psr-18"
  2757. ],
  2758. "support": {
  2759. "source": "https://github.com/php-fig/http-client/tree/master"
  2760. },
  2761. "install-path": "../psr/http-client"
  2762. },
  2763. {
  2764. "name": "psr/http-factory",
  2765. "version": "1.0.1",
  2766. "version_normalized": "1.0.1.0",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/php-fig/http-factory.git",
  2770. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2775. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "php": ">=7.0.0",
  2780. "psr/http-message": "^1.0"
  2781. },
  2782. "time": "2019-04-30T12:38:16+00:00",
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "1.0.x-dev"
  2787. }
  2788. },
  2789. "installation-source": "dist",
  2790. "autoload": {
  2791. "psr-4": {
  2792. "Psr\\Http\\Message\\": "src/"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "PHP-FIG",
  2802. "homepage": "http://www.php-fig.org/"
  2803. }
  2804. ],
  2805. "description": "Common interfaces for PSR-7 HTTP message factories",
  2806. "keywords": [
  2807. "factory",
  2808. "http",
  2809. "message",
  2810. "psr",
  2811. "psr-17",
  2812. "psr-7",
  2813. "request",
  2814. "response"
  2815. ],
  2816. "support": {
  2817. "source": "https://github.com/php-fig/http-factory/tree/master"
  2818. },
  2819. "install-path": "../psr/http-factory"
  2820. },
  2821. {
  2822. "name": "psr/http-message",
  2823. "version": "1.0.1",
  2824. "version_normalized": "1.0.1.0",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/php-fig/http-message.git",
  2828. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2833. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2834. "shasum": "",
  2835. "mirrors": [
  2836. {
  2837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2838. "preferred": true
  2839. }
  2840. ]
  2841. },
  2842. "require": {
  2843. "php": ">=5.3.0"
  2844. },
  2845. "time": "2016-08-06T14:39:51+00:00",
  2846. "type": "library",
  2847. "extra": {
  2848. "branch-alias": {
  2849. "dev-master": "1.0.x-dev"
  2850. }
  2851. },
  2852. "installation-source": "dist",
  2853. "autoload": {
  2854. "psr-4": {
  2855. "Psr\\Http\\Message\\": "src/"
  2856. }
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "PHP-FIG",
  2865. "homepage": "http://www.php-fig.org/"
  2866. }
  2867. ],
  2868. "description": "Common interface for HTTP messages",
  2869. "homepage": "https://github.com/php-fig/http-message",
  2870. "keywords": [
  2871. "http",
  2872. "http-message",
  2873. "psr",
  2874. "psr-7",
  2875. "request",
  2876. "response"
  2877. ],
  2878. "install-path": "../psr/http-message"
  2879. },
  2880. {
  2881. "name": "psr/log",
  2882. "version": "1.1.4",
  2883. "version_normalized": "1.1.4.0",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/php-fig/log.git",
  2887. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2892. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "php": ">=5.3.0"
  2897. },
  2898. "time": "2021-05-03T11:20:27+00:00",
  2899. "type": "library",
  2900. "extra": {
  2901. "branch-alias": {
  2902. "dev-master": "1.1.x-dev"
  2903. }
  2904. },
  2905. "installation-source": "dist",
  2906. "autoload": {
  2907. "psr-4": {
  2908. "Psr\\Log\\": "Psr/Log/"
  2909. }
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "PHP-FIG",
  2918. "homepage": "https://www.php-fig.org/"
  2919. }
  2920. ],
  2921. "description": "Common interface for logging libraries",
  2922. "homepage": "https://github.com/php-fig/log",
  2923. "keywords": [
  2924. "log",
  2925. "psr",
  2926. "psr-3"
  2927. ],
  2928. "support": {
  2929. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2930. },
  2931. "install-path": "../psr/log"
  2932. },
  2933. {
  2934. "name": "psr/simple-cache",
  2935. "version": "1.0.1",
  2936. "version_normalized": "1.0.1.0",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/php-fig/simple-cache.git",
  2940. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2945. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2946. "shasum": "",
  2947. "mirrors": [
  2948. {
  2949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2950. "preferred": true
  2951. }
  2952. ]
  2953. },
  2954. "require": {
  2955. "php": ">=5.3.0"
  2956. },
  2957. "time": "2017-10-23T01:57:42+00:00",
  2958. "type": "library",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-master": "1.0.x-dev"
  2962. }
  2963. },
  2964. "installation-source": "dist",
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Psr\\SimpleCache\\": "src/"
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "PHP-FIG",
  2977. "homepage": "http://www.php-fig.org/"
  2978. }
  2979. ],
  2980. "description": "Common interfaces for simple caching",
  2981. "keywords": [
  2982. "cache",
  2983. "caching",
  2984. "psr",
  2985. "psr-16",
  2986. "simple-cache"
  2987. ],
  2988. "install-path": "../psr/simple-cache"
  2989. },
  2990. {
  2991. "name": "ralouphie/getallheaders",
  2992. "version": "3.0.3",
  2993. "version_normalized": "3.0.3.0",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/ralouphie/getallheaders.git",
  2997. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3002. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3003. "shasum": "",
  3004. "mirrors": [
  3005. {
  3006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3007. "preferred": true
  3008. }
  3009. ]
  3010. },
  3011. "require": {
  3012. "php": ">=5.6"
  3013. },
  3014. "require-dev": {
  3015. "php-coveralls/php-coveralls": "^2.1",
  3016. "phpunit/phpunit": "^5 || ^6.5"
  3017. },
  3018. "time": "2019-03-08T08:55:37+00:00",
  3019. "type": "library",
  3020. "installation-source": "dist",
  3021. "autoload": {
  3022. "files": [
  3023. "src/getallheaders.php"
  3024. ]
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Ralph Khattar",
  3033. "email": "ralph.khattar@gmail.com"
  3034. }
  3035. ],
  3036. "description": "A polyfill for getallheaders.",
  3037. "install-path": "../ralouphie/getallheaders"
  3038. },
  3039. {
  3040. "name": "symfony/cache",
  3041. "version": "v5.4.10",
  3042. "version_normalized": "5.4.10.0",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/symfony/cache.git",
  3046. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  3051. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  3052. "shasum": ""
  3053. },
  3054. "require": {
  3055. "php": ">=7.2.5",
  3056. "psr/cache": "^1.0|^2.0",
  3057. "psr/log": "^1.1|^2|^3",
  3058. "symfony/cache-contracts": "^1.1.7|^2",
  3059. "symfony/deprecation-contracts": "^2.1|^3",
  3060. "symfony/polyfill-php73": "^1.9",
  3061. "symfony/polyfill-php80": "^1.16",
  3062. "symfony/service-contracts": "^1.1|^2|^3",
  3063. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3064. },
  3065. "conflict": {
  3066. "doctrine/dbal": "<2.13.1",
  3067. "symfony/dependency-injection": "<4.4",
  3068. "symfony/http-kernel": "<4.4",
  3069. "symfony/var-dumper": "<4.4"
  3070. },
  3071. "provide": {
  3072. "psr/cache-implementation": "1.0|2.0",
  3073. "psr/simple-cache-implementation": "1.0|2.0",
  3074. "symfony/cache-implementation": "1.0|2.0"
  3075. },
  3076. "require-dev": {
  3077. "cache/integration-tests": "dev-master",
  3078. "doctrine/cache": "^1.6|^2.0",
  3079. "doctrine/dbal": "^2.13.1|^3.0",
  3080. "predis/predis": "^1.1",
  3081. "psr/simple-cache": "^1.0|^2.0",
  3082. "symfony/config": "^4.4|^5.0|^6.0",
  3083. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3084. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3085. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3086. "symfony/messenger": "^4.4|^5.0|^6.0",
  3087. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3088. },
  3089. "time": "2022-06-19T12:03:50+00:00",
  3090. "type": "library",
  3091. "installation-source": "dist",
  3092. "autoload": {
  3093. "psr-4": {
  3094. "Symfony\\Component\\Cache\\": ""
  3095. },
  3096. "exclude-from-classmap": [
  3097. "/Tests/"
  3098. ]
  3099. },
  3100. "notification-url": "https://packagist.org/downloads/",
  3101. "license": [
  3102. "MIT"
  3103. ],
  3104. "authors": [
  3105. {
  3106. "name": "Nicolas Grekas",
  3107. "email": "p@tchwork.com"
  3108. },
  3109. {
  3110. "name": "Symfony Community",
  3111. "homepage": "https://symfony.com/contributors"
  3112. }
  3113. ],
  3114. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3115. "homepage": "https://symfony.com",
  3116. "keywords": [
  3117. "caching",
  3118. "psr6"
  3119. ],
  3120. "support": {
  3121. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  3122. },
  3123. "funding": [
  3124. {
  3125. "url": "https://symfony.com/sponsor",
  3126. "type": "custom"
  3127. },
  3128. {
  3129. "url": "https://github.com/fabpot",
  3130. "type": "github"
  3131. },
  3132. {
  3133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3134. "type": "tidelift"
  3135. }
  3136. ],
  3137. "install-path": "../symfony/cache"
  3138. },
  3139. {
  3140. "name": "symfony/cache-contracts",
  3141. "version": "v2.5.2",
  3142. "version_normalized": "2.5.2.0",
  3143. "source": {
  3144. "type": "git",
  3145. "url": "https://github.com/symfony/cache-contracts.git",
  3146. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  3147. },
  3148. "dist": {
  3149. "type": "zip",
  3150. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3151. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3152. "shasum": ""
  3153. },
  3154. "require": {
  3155. "php": ">=7.2.5",
  3156. "psr/cache": "^1.0|^2.0|^3.0"
  3157. },
  3158. "suggest": {
  3159. "symfony/cache-implementation": ""
  3160. },
  3161. "time": "2022-01-02T09:53:40+00:00",
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-main": "2.5-dev"
  3166. },
  3167. "thanks": {
  3168. "name": "symfony/contracts",
  3169. "url": "https://github.com/symfony/contracts"
  3170. }
  3171. },
  3172. "installation-source": "dist",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "Symfony\\Contracts\\Cache\\": ""
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Nicolas Grekas",
  3185. "email": "p@tchwork.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Generic abstractions related to caching",
  3193. "homepage": "https://symfony.com",
  3194. "keywords": [
  3195. "abstractions",
  3196. "contracts",
  3197. "decoupling",
  3198. "interfaces",
  3199. "interoperability",
  3200. "standards"
  3201. ],
  3202. "support": {
  3203. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  3204. },
  3205. "funding": [
  3206. {
  3207. "url": "https://symfony.com/sponsor",
  3208. "type": "custom"
  3209. },
  3210. {
  3211. "url": "https://github.com/fabpot",
  3212. "type": "github"
  3213. },
  3214. {
  3215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3216. "type": "tidelift"
  3217. }
  3218. ],
  3219. "install-path": "../symfony/cache-contracts"
  3220. },
  3221. {
  3222. "name": "symfony/deprecation-contracts",
  3223. "version": "v2.5.2",
  3224. "version_normalized": "2.5.2.0",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/symfony/deprecation-contracts.git",
  3228. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3233. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=7.1"
  3238. },
  3239. "time": "2022-01-02T09:53:40+00:00",
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-main": "2.5-dev"
  3244. },
  3245. "thanks": {
  3246. "name": "symfony/contracts",
  3247. "url": "https://github.com/symfony/contracts"
  3248. }
  3249. },
  3250. "installation-source": "dist",
  3251. "autoload": {
  3252. "files": [
  3253. "function.php"
  3254. ]
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Nicolas Grekas",
  3263. "email": "p@tchwork.com"
  3264. },
  3265. {
  3266. "name": "Symfony Community",
  3267. "homepage": "https://symfony.com/contributors"
  3268. }
  3269. ],
  3270. "description": "A generic function and convention to trigger deprecation notices",
  3271. "homepage": "https://symfony.com",
  3272. "support": {
  3273. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3274. },
  3275. "funding": [
  3276. {
  3277. "url": "https://symfony.com/sponsor",
  3278. "type": "custom"
  3279. },
  3280. {
  3281. "url": "https://github.com/fabpot",
  3282. "type": "github"
  3283. },
  3284. {
  3285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3286. "type": "tidelift"
  3287. }
  3288. ],
  3289. "install-path": "../symfony/deprecation-contracts"
  3290. },
  3291. {
  3292. "name": "symfony/event-dispatcher",
  3293. "version": "v5.4.9",
  3294. "version_normalized": "5.4.9.0",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/symfony/event-dispatcher.git",
  3298. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3303. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3304. "shasum": ""
  3305. },
  3306. "require": {
  3307. "php": ">=7.2.5",
  3308. "symfony/deprecation-contracts": "^2.1|^3",
  3309. "symfony/event-dispatcher-contracts": "^2|^3",
  3310. "symfony/polyfill-php80": "^1.16"
  3311. },
  3312. "conflict": {
  3313. "symfony/dependency-injection": "<4.4"
  3314. },
  3315. "provide": {
  3316. "psr/event-dispatcher-implementation": "1.0",
  3317. "symfony/event-dispatcher-implementation": "2.0"
  3318. },
  3319. "require-dev": {
  3320. "psr/log": "^1|^2|^3",
  3321. "symfony/config": "^4.4|^5.0|^6.0",
  3322. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3323. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3324. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3325. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3326. "symfony/service-contracts": "^1.1|^2|^3",
  3327. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3328. },
  3329. "suggest": {
  3330. "symfony/dependency-injection": "",
  3331. "symfony/http-kernel": ""
  3332. },
  3333. "time": "2022-05-05T16:45:39+00:00",
  3334. "type": "library",
  3335. "installation-source": "dist",
  3336. "autoload": {
  3337. "psr-4": {
  3338. "Symfony\\Component\\EventDispatcher\\": ""
  3339. },
  3340. "exclude-from-classmap": [
  3341. "/Tests/"
  3342. ]
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Fabien Potencier",
  3351. "email": "fabien@symfony.com"
  3352. },
  3353. {
  3354. "name": "Symfony Community",
  3355. "homepage": "https://symfony.com/contributors"
  3356. }
  3357. ],
  3358. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3359. "homepage": "https://symfony.com",
  3360. "support": {
  3361. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3362. },
  3363. "funding": [
  3364. {
  3365. "url": "https://symfony.com/sponsor",
  3366. "type": "custom"
  3367. },
  3368. {
  3369. "url": "https://github.com/fabpot",
  3370. "type": "github"
  3371. },
  3372. {
  3373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3374. "type": "tidelift"
  3375. }
  3376. ],
  3377. "install-path": "../symfony/event-dispatcher"
  3378. },
  3379. {
  3380. "name": "symfony/event-dispatcher-contracts",
  3381. "version": "v2.5.2",
  3382. "version_normalized": "2.5.2.0",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3386. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3391. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": ">=7.2.5",
  3396. "psr/event-dispatcher": "^1"
  3397. },
  3398. "suggest": {
  3399. "symfony/event-dispatcher-implementation": ""
  3400. },
  3401. "time": "2022-01-02T09:53:40+00:00",
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-main": "2.5-dev"
  3406. },
  3407. "thanks": {
  3408. "name": "symfony/contracts",
  3409. "url": "https://github.com/symfony/contracts"
  3410. }
  3411. },
  3412. "installation-source": "dist",
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Symfony\\Contracts\\EventDispatcher\\": ""
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Nicolas Grekas",
  3425. "email": "p@tchwork.com"
  3426. },
  3427. {
  3428. "name": "Symfony Community",
  3429. "homepage": "https://symfony.com/contributors"
  3430. }
  3431. ],
  3432. "description": "Generic abstractions related to dispatching event",
  3433. "homepage": "https://symfony.com",
  3434. "keywords": [
  3435. "abstractions",
  3436. "contracts",
  3437. "decoupling",
  3438. "interfaces",
  3439. "interoperability",
  3440. "standards"
  3441. ],
  3442. "support": {
  3443. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3444. },
  3445. "funding": [
  3446. {
  3447. "url": "https://symfony.com/sponsor",
  3448. "type": "custom"
  3449. },
  3450. {
  3451. "url": "https://github.com/fabpot",
  3452. "type": "github"
  3453. },
  3454. {
  3455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3456. "type": "tidelift"
  3457. }
  3458. ],
  3459. "install-path": "../symfony/event-dispatcher-contracts"
  3460. },
  3461. {
  3462. "name": "symfony/finder",
  3463. "version": "v5.4.8",
  3464. "version_normalized": "5.4.8.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/symfony/finder.git",
  3468. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3473. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3474. "shasum": ""
  3475. },
  3476. "require": {
  3477. "php": ">=7.2.5",
  3478. "symfony/deprecation-contracts": "^2.1|^3",
  3479. "symfony/polyfill-php80": "^1.16"
  3480. },
  3481. "time": "2022-04-15T08:07:45+00:00",
  3482. "type": "library",
  3483. "installation-source": "dist",
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Symfony\\Component\\Finder\\": ""
  3487. },
  3488. "exclude-from-classmap": [
  3489. "/Tests/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Fabien Potencier",
  3499. "email": "fabien@symfony.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Finds files and directories via an intuitive fluent interface",
  3507. "homepage": "https://symfony.com",
  3508. "support": {
  3509. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  3510. },
  3511. "funding": [
  3512. {
  3513. "url": "https://symfony.com/sponsor",
  3514. "type": "custom"
  3515. },
  3516. {
  3517. "url": "https://github.com/fabpot",
  3518. "type": "github"
  3519. },
  3520. {
  3521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3522. "type": "tidelift"
  3523. }
  3524. ],
  3525. "install-path": "../symfony/finder"
  3526. },
  3527. {
  3528. "name": "symfony/http-foundation",
  3529. "version": "v5.4.10",
  3530. "version_normalized": "5.4.10.0",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/symfony/http-foundation.git",
  3534. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3539. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "php": ">=7.2.5",
  3544. "symfony/deprecation-contracts": "^2.1|^3",
  3545. "symfony/polyfill-mbstring": "~1.1",
  3546. "symfony/polyfill-php80": "^1.16"
  3547. },
  3548. "require-dev": {
  3549. "predis/predis": "~1.0",
  3550. "symfony/cache": "^4.4|^5.0|^6.0",
  3551. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3552. "symfony/mime": "^4.4|^5.0|^6.0"
  3553. },
  3554. "suggest": {
  3555. "symfony/mime": "To use the file extension guesser"
  3556. },
  3557. "time": "2022-06-19T13:13:40+00:00",
  3558. "type": "library",
  3559. "installation-source": "dist",
  3560. "autoload": {
  3561. "psr-4": {
  3562. "Symfony\\Component\\HttpFoundation\\": ""
  3563. },
  3564. "exclude-from-classmap": [
  3565. "/Tests/"
  3566. ]
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "MIT"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "Fabien Potencier",
  3575. "email": "fabien@symfony.com"
  3576. },
  3577. {
  3578. "name": "Symfony Community",
  3579. "homepage": "https://symfony.com/contributors"
  3580. }
  3581. ],
  3582. "description": "Defines an object-oriented layer for the HTTP specification",
  3583. "homepage": "https://symfony.com",
  3584. "support": {
  3585. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  3586. },
  3587. "funding": [
  3588. {
  3589. "url": "https://symfony.com/sponsor",
  3590. "type": "custom"
  3591. },
  3592. {
  3593. "url": "https://github.com/fabpot",
  3594. "type": "github"
  3595. },
  3596. {
  3597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3598. "type": "tidelift"
  3599. }
  3600. ],
  3601. "install-path": "../symfony/http-foundation"
  3602. },
  3603. {
  3604. "name": "symfony/polyfill-ctype",
  3605. "version": "v1.26.0",
  3606. "version_normalized": "1.26.0.0",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/symfony/polyfill-ctype.git",
  3610. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3615. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3616. "shasum": ""
  3617. },
  3618. "require": {
  3619. "php": ">=7.1"
  3620. },
  3621. "provide": {
  3622. "ext-ctype": "*"
  3623. },
  3624. "suggest": {
  3625. "ext-ctype": "For best performance"
  3626. },
  3627. "time": "2022-05-24T11:49:31+00:00",
  3628. "type": "library",
  3629. "extra": {
  3630. "branch-alias": {
  3631. "dev-main": "1.26-dev"
  3632. },
  3633. "thanks": {
  3634. "name": "symfony/polyfill",
  3635. "url": "https://github.com/symfony/polyfill"
  3636. }
  3637. },
  3638. "installation-source": "dist",
  3639. "autoload": {
  3640. "files": [
  3641. "bootstrap.php"
  3642. ],
  3643. "psr-4": {
  3644. "Symfony\\Polyfill\\Ctype\\": ""
  3645. }
  3646. },
  3647. "notification-url": "https://packagist.org/downloads/",
  3648. "license": [
  3649. "MIT"
  3650. ],
  3651. "authors": [
  3652. {
  3653. "name": "Gert de Pagter",
  3654. "email": "BackEndTea@gmail.com"
  3655. },
  3656. {
  3657. "name": "Symfony Community",
  3658. "homepage": "https://symfony.com/contributors"
  3659. }
  3660. ],
  3661. "description": "Symfony polyfill for ctype functions",
  3662. "homepage": "https://symfony.com",
  3663. "keywords": [
  3664. "compatibility",
  3665. "ctype",
  3666. "polyfill",
  3667. "portable"
  3668. ],
  3669. "support": {
  3670. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3671. },
  3672. "funding": [
  3673. {
  3674. "url": "https://symfony.com/sponsor",
  3675. "type": "custom"
  3676. },
  3677. {
  3678. "url": "https://github.com/fabpot",
  3679. "type": "github"
  3680. },
  3681. {
  3682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3683. "type": "tidelift"
  3684. }
  3685. ],
  3686. "install-path": "../symfony/polyfill-ctype"
  3687. },
  3688. {
  3689. "name": "symfony/polyfill-mbstring",
  3690. "version": "v1.26.0",
  3691. "version_normalized": "1.26.0.0",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3695. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3700. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "php": ">=7.1"
  3705. },
  3706. "provide": {
  3707. "ext-mbstring": "*"
  3708. },
  3709. "suggest": {
  3710. "ext-mbstring": "For best performance"
  3711. },
  3712. "time": "2022-05-24T11:49:31+00:00",
  3713. "type": "library",
  3714. "extra": {
  3715. "branch-alias": {
  3716. "dev-main": "1.26-dev"
  3717. },
  3718. "thanks": {
  3719. "name": "symfony/polyfill",
  3720. "url": "https://github.com/symfony/polyfill"
  3721. }
  3722. },
  3723. "installation-source": "dist",
  3724. "autoload": {
  3725. "files": [
  3726. "bootstrap.php"
  3727. ],
  3728. "psr-4": {
  3729. "Symfony\\Polyfill\\Mbstring\\": ""
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Nicolas Grekas",
  3739. "email": "p@tchwork.com"
  3740. },
  3741. {
  3742. "name": "Symfony Community",
  3743. "homepage": "https://symfony.com/contributors"
  3744. }
  3745. ],
  3746. "description": "Symfony polyfill for the Mbstring extension",
  3747. "homepage": "https://symfony.com",
  3748. "keywords": [
  3749. "compatibility",
  3750. "mbstring",
  3751. "polyfill",
  3752. "portable",
  3753. "shim"
  3754. ],
  3755. "support": {
  3756. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://symfony.com/sponsor",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://github.com/fabpot",
  3765. "type": "github"
  3766. },
  3767. {
  3768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3769. "type": "tidelift"
  3770. }
  3771. ],
  3772. "install-path": "../symfony/polyfill-mbstring"
  3773. },
  3774. {
  3775. "name": "symfony/polyfill-php73",
  3776. "version": "v1.26.0",
  3777. "version_normalized": "1.26.0.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/symfony/polyfill-php73.git",
  3781. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3786. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3787. "shasum": ""
  3788. },
  3789. "require": {
  3790. "php": ">=7.1"
  3791. },
  3792. "time": "2022-05-24T11:49:31+00:00",
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-main": "1.26-dev"
  3797. },
  3798. "thanks": {
  3799. "name": "symfony/polyfill",
  3800. "url": "https://github.com/symfony/polyfill"
  3801. }
  3802. },
  3803. "installation-source": "dist",
  3804. "autoload": {
  3805. "files": [
  3806. "bootstrap.php"
  3807. ],
  3808. "psr-4": {
  3809. "Symfony\\Polyfill\\Php73\\": ""
  3810. },
  3811. "classmap": [
  3812. "Resources/stubs"
  3813. ]
  3814. },
  3815. "notification-url": "https://packagist.org/downloads/",
  3816. "license": [
  3817. "MIT"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "Nicolas Grekas",
  3822. "email": "p@tchwork.com"
  3823. },
  3824. {
  3825. "name": "Symfony Community",
  3826. "homepage": "https://symfony.com/contributors"
  3827. }
  3828. ],
  3829. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3830. "homepage": "https://symfony.com",
  3831. "keywords": [
  3832. "compatibility",
  3833. "polyfill",
  3834. "portable",
  3835. "shim"
  3836. ],
  3837. "support": {
  3838. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  3839. },
  3840. "funding": [
  3841. {
  3842. "url": "https://symfony.com/sponsor",
  3843. "type": "custom"
  3844. },
  3845. {
  3846. "url": "https://github.com/fabpot",
  3847. "type": "github"
  3848. },
  3849. {
  3850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3851. "type": "tidelift"
  3852. }
  3853. ],
  3854. "install-path": "../symfony/polyfill-php73"
  3855. },
  3856. {
  3857. "name": "symfony/polyfill-php80",
  3858. "version": "v1.26.0",
  3859. "version_normalized": "1.26.0.0",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://github.com/symfony/polyfill-php80.git",
  3863. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3868. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3869. "shasum": ""
  3870. },
  3871. "require": {
  3872. "php": ">=7.1"
  3873. },
  3874. "time": "2022-05-10T07:21:04+00:00",
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-main": "1.26-dev"
  3879. },
  3880. "thanks": {
  3881. "name": "symfony/polyfill",
  3882. "url": "https://github.com/symfony/polyfill"
  3883. }
  3884. },
  3885. "installation-source": "dist",
  3886. "autoload": {
  3887. "files": [
  3888. "bootstrap.php"
  3889. ],
  3890. "psr-4": {
  3891. "Symfony\\Polyfill\\Php80\\": ""
  3892. },
  3893. "classmap": [
  3894. "Resources/stubs"
  3895. ]
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Ion Bazan",
  3904. "email": "ion.bazan@gmail.com"
  3905. },
  3906. {
  3907. "name": "Nicolas Grekas",
  3908. "email": "p@tchwork.com"
  3909. },
  3910. {
  3911. "name": "Symfony Community",
  3912. "homepage": "https://symfony.com/contributors"
  3913. }
  3914. ],
  3915. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3916. "homepage": "https://symfony.com",
  3917. "keywords": [
  3918. "compatibility",
  3919. "polyfill",
  3920. "portable",
  3921. "shim"
  3922. ],
  3923. "support": {
  3924. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  3925. },
  3926. "funding": [
  3927. {
  3928. "url": "https://symfony.com/sponsor",
  3929. "type": "custom"
  3930. },
  3931. {
  3932. "url": "https://github.com/fabpot",
  3933. "type": "github"
  3934. },
  3935. {
  3936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3937. "type": "tidelift"
  3938. }
  3939. ],
  3940. "install-path": "../symfony/polyfill-php80"
  3941. },
  3942. {
  3943. "name": "symfony/psr-http-message-bridge",
  3944. "version": "v2.1.2",
  3945. "version_normalized": "2.1.2.0",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3949. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3954. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3955. "shasum": ""
  3956. },
  3957. "require": {
  3958. "php": ">=7.1",
  3959. "psr/http-message": "^1.0",
  3960. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  3961. },
  3962. "require-dev": {
  3963. "nyholm/psr7": "^1.1",
  3964. "psr/log": "^1.1 || ^2 || ^3",
  3965. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  3966. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  3967. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  3968. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  3969. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  3970. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  3971. },
  3972. "suggest": {
  3973. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3974. },
  3975. "time": "2021-11-05T13:13:39+00:00",
  3976. "type": "symfony-bridge",
  3977. "extra": {
  3978. "branch-alias": {
  3979. "dev-main": "2.1-dev"
  3980. }
  3981. },
  3982. "installation-source": "dist",
  3983. "autoload": {
  3984. "psr-4": {
  3985. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3986. },
  3987. "exclude-from-classmap": [
  3988. "/Tests/"
  3989. ]
  3990. },
  3991. "notification-url": "https://packagist.org/downloads/",
  3992. "license": [
  3993. "MIT"
  3994. ],
  3995. "authors": [
  3996. {
  3997. "name": "Fabien Potencier",
  3998. "email": "fabien@symfony.com"
  3999. },
  4000. {
  4001. "name": "Symfony Community",
  4002. "homepage": "http://symfony.com/contributors"
  4003. }
  4004. ],
  4005. "description": "PSR HTTP message bridge",
  4006. "homepage": "http://symfony.com",
  4007. "keywords": [
  4008. "http",
  4009. "http-message",
  4010. "psr-17",
  4011. "psr-7"
  4012. ],
  4013. "support": {
  4014. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4015. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  4016. },
  4017. "funding": [
  4018. {
  4019. "url": "https://symfony.com/sponsor",
  4020. "type": "custom"
  4021. },
  4022. {
  4023. "url": "https://github.com/fabpot",
  4024. "type": "github"
  4025. },
  4026. {
  4027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4028. "type": "tidelift"
  4029. }
  4030. ],
  4031. "install-path": "../symfony/psr-http-message-bridge"
  4032. },
  4033. {
  4034. "name": "symfony/service-contracts",
  4035. "version": "v1.1.2",
  4036. "version_normalized": "1.1.2.0",
  4037. "source": {
  4038. "type": "git",
  4039. "url": "https://github.com/symfony/service-contracts.git",
  4040. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4041. },
  4042. "dist": {
  4043. "type": "zip",
  4044. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4045. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4046. "shasum": ""
  4047. },
  4048. "require": {
  4049. "php": "^7.1.3"
  4050. },
  4051. "suggest": {
  4052. "psr/container": "",
  4053. "symfony/service-implementation": ""
  4054. },
  4055. "time": "2019-05-28T07:50:59+00:00",
  4056. "type": "library",
  4057. "extra": {
  4058. "branch-alias": {
  4059. "dev-master": "1.1-dev"
  4060. }
  4061. },
  4062. "installation-source": "dist",
  4063. "autoload": {
  4064. "psr-4": {
  4065. "Symfony\\Contracts\\Service\\": ""
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "Nicolas Grekas",
  4075. "email": "p@tchwork.com"
  4076. },
  4077. {
  4078. "name": "Symfony Community",
  4079. "homepage": "https://symfony.com/contributors"
  4080. }
  4081. ],
  4082. "description": "Generic abstractions related to writing services",
  4083. "homepage": "https://symfony.com",
  4084. "keywords": [
  4085. "abstractions",
  4086. "contracts",
  4087. "decoupling",
  4088. "interfaces",
  4089. "interoperability",
  4090. "standards"
  4091. ],
  4092. "support": {
  4093. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4094. },
  4095. "install-path": "../symfony/service-contracts"
  4096. },
  4097. {
  4098. "name": "symfony/var-exporter",
  4099. "version": "v4.4.43",
  4100. "version_normalized": "4.4.43.0",
  4101. "source": {
  4102. "type": "git",
  4103. "url": "https://github.com/symfony/var-exporter.git",
  4104. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b"
  4105. },
  4106. "dist": {
  4107. "type": "zip",
  4108. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  4109. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  4110. "shasum": ""
  4111. },
  4112. "require": {
  4113. "php": ">=7.1.3",
  4114. "symfony/polyfill-php80": "^1.16"
  4115. },
  4116. "require-dev": {
  4117. "symfony/var-dumper": "^4.4.9|^5.0.9"
  4118. },
  4119. "time": "2022-05-27T11:44:32+00:00",
  4120. "type": "library",
  4121. "installation-source": "dist",
  4122. "autoload": {
  4123. "psr-4": {
  4124. "Symfony\\Component\\VarExporter\\": ""
  4125. },
  4126. "exclude-from-classmap": [
  4127. "/Tests/"
  4128. ]
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "MIT"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "Nicolas Grekas",
  4137. "email": "p@tchwork.com"
  4138. },
  4139. {
  4140. "name": "Symfony Community",
  4141. "homepage": "https://symfony.com/contributors"
  4142. }
  4143. ],
  4144. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4145. "homepage": "https://symfony.com",
  4146. "keywords": [
  4147. "clone",
  4148. "construct",
  4149. "export",
  4150. "hydrate",
  4151. "instantiate",
  4152. "serialize"
  4153. ],
  4154. "support": {
  4155. "source": "https://github.com/symfony/var-exporter/tree/v4.4.43"
  4156. },
  4157. "funding": [
  4158. {
  4159. "url": "https://symfony.com/sponsor",
  4160. "type": "custom"
  4161. },
  4162. {
  4163. "url": "https://github.com/fabpot",
  4164. "type": "github"
  4165. },
  4166. {
  4167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4168. "type": "tidelift"
  4169. }
  4170. ],
  4171. "install-path": "../symfony/var-exporter"
  4172. },
  4173. {
  4174. "name": "symfony/yaml",
  4175. "version": "v2.8.52",
  4176. "version_normalized": "2.8.52.0",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/symfony/yaml.git",
  4180. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4185. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=5.3.9",
  4190. "symfony/polyfill-ctype": "~1.8"
  4191. },
  4192. "time": "2018-11-11T11:18:13+00:00",
  4193. "type": "library",
  4194. "extra": {
  4195. "branch-alias": {
  4196. "dev-master": "2.8-dev"
  4197. }
  4198. },
  4199. "installation-source": "dist",
  4200. "autoload": {
  4201. "psr-4": {
  4202. "Symfony\\Component\\Yaml\\": ""
  4203. },
  4204. "exclude-from-classmap": [
  4205. "/Tests/"
  4206. ]
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "Fabien Potencier",
  4215. "email": "fabien@symfony.com"
  4216. },
  4217. {
  4218. "name": "Symfony Community",
  4219. "homepage": "https://symfony.com/contributors"
  4220. }
  4221. ],
  4222. "description": "Symfony Yaml Component",
  4223. "homepage": "https://symfony.com",
  4224. "support": {
  4225. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4226. },
  4227. "install-path": "../symfony/yaml"
  4228. },
  4229. {
  4230. "name": "topthink/framework",
  4231. "version": "dev-master",
  4232. "version_normalized": "dev-master",
  4233. "source": {
  4234. "type": "git",
  4235. "url": "https://gitee.com/karson/framework",
  4236. "reference": "0999d4733451e6c219c3e99090fa2cccb19115a6"
  4237. },
  4238. "require": {
  4239. "php": ">=7.1.0",
  4240. "topthink/think-installer": "~1.0"
  4241. },
  4242. "require-dev": {
  4243. "johnkary/phpunit-speedtrap": "^1.0",
  4244. "mikey179/vfsstream": "~1.6",
  4245. "phpdocumentor/reflection-docblock": "^2.0",
  4246. "phploc/phploc": "2.*",
  4247. "phpunit/phpunit": "4.8.*",
  4248. "sebastian/phpcpd": "2.*"
  4249. },
  4250. "time": "2022-05-07T15:02:42+00:00",
  4251. "default-branch": true,
  4252. "type": "think-framework",
  4253. "installation-source": "source",
  4254. "autoload": {
  4255. "psr-4": {
  4256. "think\\": "library/think"
  4257. }
  4258. },
  4259. "license": [
  4260. "Apache-2.0"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "liu21st",
  4265. "email": "liu21st@gmail.com"
  4266. }
  4267. ],
  4268. "description": "the new thinkphp framework",
  4269. "homepage": "http://thinkphp.cn/",
  4270. "keywords": [
  4271. "ORM",
  4272. "framework",
  4273. "thinkphp"
  4274. ],
  4275. "install-path": "../../thinkphp"
  4276. },
  4277. {
  4278. "name": "topthink/think-captcha",
  4279. "version": "v1.0.7",
  4280. "version_normalized": "1.0.7.0",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/top-think/think-captcha.git",
  4284. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0c55455df26a1626a60d0dc35d2d89002b741d44",
  4289. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  4290. "shasum": "",
  4291. "mirrors": [
  4292. {
  4293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4294. "preferred": true
  4295. }
  4296. ]
  4297. },
  4298. "time": "2016-07-06T01:47:11+00:00",
  4299. "type": "library",
  4300. "installation-source": "dist",
  4301. "autoload": {
  4302. "psr-4": {
  4303. "think\\captcha\\": "src/"
  4304. },
  4305. "files": [
  4306. "src/helper.php"
  4307. ]
  4308. },
  4309. "notification-url": "https://packagist.org/downloads/",
  4310. "license": [
  4311. "Apache-2.0"
  4312. ],
  4313. "authors": [
  4314. {
  4315. "name": "yunwuxin",
  4316. "email": "448901948@qq.com"
  4317. }
  4318. ],
  4319. "description": "captcha package for thinkphp5",
  4320. "install-path": "../topthink/think-captcha"
  4321. },
  4322. {
  4323. "name": "topthink/think-helper",
  4324. "version": "v1.0.7",
  4325. "version_normalized": "1.0.7.0",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/top-think/think-helper.git",
  4329. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  4334. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  4335. "shasum": "",
  4336. "mirrors": [
  4337. {
  4338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4339. "preferred": true
  4340. }
  4341. ]
  4342. },
  4343. "time": "2018-10-05T00:43:21+00:00",
  4344. "type": "library",
  4345. "installation-source": "dist",
  4346. "autoload": {
  4347. "psr-4": {
  4348. "think\\helper\\": "src"
  4349. },
  4350. "files": [
  4351. "src/helper.php"
  4352. ]
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "Apache-2.0"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "yunwuxin",
  4361. "email": "448901948@qq.com"
  4362. }
  4363. ],
  4364. "description": "The ThinkPHP5 Helper Package",
  4365. "install-path": "../topthink/think-helper"
  4366. },
  4367. {
  4368. "name": "topthink/think-installer",
  4369. "version": "v1.0.14",
  4370. "version_normalized": "1.0.14.0",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://github.com/top-think/think-installer.git",
  4374. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  4379. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  4380. "shasum": "",
  4381. "mirrors": [
  4382. {
  4383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4384. "preferred": true
  4385. }
  4386. ]
  4387. },
  4388. "require": {
  4389. "composer-plugin-api": "^1.0||^2.0"
  4390. },
  4391. "require-dev": {
  4392. "composer/composer": "^1.0||^2.0"
  4393. },
  4394. "time": "2021-03-25T08:34:02+00:00",
  4395. "type": "composer-plugin",
  4396. "extra": {
  4397. "class": "think\\composer\\Plugin"
  4398. },
  4399. "installation-source": "dist",
  4400. "autoload": {
  4401. "psr-4": {
  4402. "think\\composer\\": "src"
  4403. }
  4404. },
  4405. "notification-url": "https://packagist.org/downloads/",
  4406. "license": [
  4407. "Apache-2.0"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "yunwuxin",
  4412. "email": "448901948@qq.com"
  4413. }
  4414. ],
  4415. "install-path": "../topthink/think-installer"
  4416. },
  4417. {
  4418. "name": "topthink/think-queue",
  4419. "version": "v1.1.6",
  4420. "version_normalized": "1.1.6.0",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/top-think/think-queue.git",
  4424. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4429. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4430. "shasum": "",
  4431. "mirrors": [
  4432. {
  4433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4434. "preferred": true
  4435. }
  4436. ]
  4437. },
  4438. "require": {
  4439. "topthink/think-helper": ">=1.0.4",
  4440. "topthink/think-installer": ">=1.0.10"
  4441. },
  4442. "require-dev": {
  4443. "topthink/framework": "~5.0.0"
  4444. },
  4445. "time": "2018-10-15T10:16:55+00:00",
  4446. "type": "think-extend",
  4447. "extra": {
  4448. "think-config": {
  4449. "queue": "src/config.php"
  4450. }
  4451. },
  4452. "installation-source": "dist",
  4453. "autoload": {
  4454. "psr-4": {
  4455. "think\\": "src"
  4456. },
  4457. "files": [
  4458. "src/common.php"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "Apache-2.0"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "yunwuxin",
  4468. "email": "448901948@qq.com"
  4469. }
  4470. ],
  4471. "description": "The ThinkPHP5 Queue Package",
  4472. "install-path": "../topthink/think-queue"
  4473. },
  4474. {
  4475. "name": "topthink/think-worker",
  4476. "version": "v1.0.1",
  4477. "version_normalized": "1.0.1.0",
  4478. "source": {
  4479. "type": "git",
  4480. "url": "https://github.com/top-think/think-worker.git",
  4481. "reference": "b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1"
  4482. },
  4483. "dist": {
  4484. "type": "zip",
  4485. "url": "https://api.github.com/repos/top-think/think-worker/zipball/b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1",
  4486. "reference": "b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1",
  4487. "shasum": "",
  4488. "mirrors": [
  4489. {
  4490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4491. "preferred": true
  4492. }
  4493. ]
  4494. },
  4495. "require": {
  4496. "workerman/workerman": "^3.3.0"
  4497. },
  4498. "time": "2016-10-08T06:07:03+00:00",
  4499. "type": "library",
  4500. "installation-source": "dist",
  4501. "autoload": {
  4502. "files": [],
  4503. "psr-4": {
  4504. "think\\worker\\": "src"
  4505. }
  4506. },
  4507. "notification-url": "https://packagist.org/downloads/",
  4508. "license": [
  4509. "Apache-2.0"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "liu21st",
  4514. "email": "liu21st@gmail.com"
  4515. }
  4516. ],
  4517. "description": "workerman extend for thinkphp5",
  4518. "support": {
  4519. "issues": "https://github.com/top-think/think-worker/issues",
  4520. "source": "https://github.com/top-think/think-worker/tree/master"
  4521. },
  4522. "install-path": "../topthink/think-worker"
  4523. },
  4524. {
  4525. "name": "txthinking/mailer",
  4526. "version": "v2.0.1",
  4527. "version_normalized": "2.0.1.0",
  4528. "source": {
  4529. "type": "git",
  4530. "url": "https://github.com/txthinking/Mailer.git",
  4531. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9"
  4532. },
  4533. "dist": {
  4534. "type": "zip",
  4535. "url": "https://api.github.com/repos/txthinking/Mailer/zipball/09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4536. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4537. "shasum": "",
  4538. "mirrors": [
  4539. {
  4540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4541. "preferred": true
  4542. }
  4543. ]
  4544. },
  4545. "require": {
  4546. "php": ">=5.3.2",
  4547. "psr/log": "~1.0"
  4548. },
  4549. "require-dev": {
  4550. "monolog/monolog": "~1.13",
  4551. "phpunit/phpunit": "~4.0"
  4552. },
  4553. "time": "2018-10-09T10:47:23+00:00",
  4554. "type": "library",
  4555. "installation-source": "dist",
  4556. "autoload": {
  4557. "psr-4": {
  4558. "Tx\\": "src/"
  4559. }
  4560. },
  4561. "notification-url": "https://packagist.org/downloads/",
  4562. "license": [
  4563. "MIT"
  4564. ],
  4565. "authors": [
  4566. {
  4567. "name": "Cloud",
  4568. "email": "cloud@txthinking.com",
  4569. "homepage": "http://www.txthinking.com",
  4570. "role": "Thinker"
  4571. },
  4572. {
  4573. "name": "Matt Sowers",
  4574. "email": "msowers@erblearn.org"
  4575. }
  4576. ],
  4577. "description": "A very lightweight PHP SMTP mail sender",
  4578. "homepage": "http://github.com/txthinking/Mailer",
  4579. "keywords": [
  4580. "mail",
  4581. "smtp"
  4582. ],
  4583. "install-path": "../txthinking/mailer"
  4584. },
  4585. {
  4586. "name": "workerman/workerman",
  4587. "version": "v3.5.31",
  4588. "version_normalized": "3.5.31.0",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/walkor/Workerman.git",
  4592. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/walkor/Workerman/zipball/b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4597. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4598. "shasum": "",
  4599. "mirrors": [
  4600. {
  4601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4602. "preferred": true
  4603. }
  4604. ]
  4605. },
  4606. "require": {
  4607. "php": ">=5.3"
  4608. },
  4609. "suggest": {
  4610. "ext-event": "For better performance. "
  4611. },
  4612. "time": "2020-08-24T03:49:23+00:00",
  4613. "type": "library",
  4614. "installation-source": "dist",
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Workerman\\": "./"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "walkor",
  4627. "email": "walkor@workerman.net",
  4628. "homepage": "http://www.workerman.net",
  4629. "role": "Developer"
  4630. }
  4631. ],
  4632. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4633. "homepage": "http://www.workerman.net",
  4634. "keywords": [
  4635. "asynchronous",
  4636. "event-loop"
  4637. ],
  4638. "support": {
  4639. "email": "walkor@workerman.net",
  4640. "forum": "http://wenda.workerman.net/",
  4641. "issues": "https://github.com/walkor/workerman/issues",
  4642. "source": "https://github.com/walkor/workerman",
  4643. "wiki": "http://doc.workerman.net/"
  4644. },
  4645. "install-path": "../workerman/workerman"
  4646. }
  4647. ],
  4648. "dev": true,
  4649. "dev-package-names": []
  4650. }