installed.json 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.5.0",
  6. "version_normalized": "2.5.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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-10-14T20:31:46+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.5.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.1585",
  150. "version_normalized": "1.8.1585.0",
  151. "source": {
  152. "type": "git",
  153. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  154. "reference": "0e51d66cb5c6967072532d03723be65a721c5909"
  155. },
  156. "dist": {
  157. "type": "zip",
  158. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/0e51d66cb5c6967072532d03723be65a721c5909",
  159. "reference": "0e51d66cb5c6967072532d03723be65a721c5909",
  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-12-02T01:18:56+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.5.0",
  938. "version_normalized": "8.5.0.0",
  939. "source": {
  940. "type": "git",
  941. "url": "git@github.com:elastic/elastic-transport-php.git",
  942. "reference": "f4ed45936e4ae6e9f3c3e4ab30a2c976b5a841c9"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/f4ed45936e4ae6e9f3c3e4ab30a2c976b5a841c9",
  947. "reference": "f4ed45936e4ae6e9f3c3e4ab30a2c976b5a841c9",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "composer-runtime-api": "^2.0",
  952. "php": "^7.4 || ^8.0",
  953. "php-http/discovery": "^1.14",
  954. "php-http/httplug": "^2.3",
  955. "psr/http-client": "^1.0",
  956. "psr/http-factory": "^1.0",
  957. "psr/http-message": "^1.0",
  958. "psr/log": "^1 || ^2 || ^3"
  959. },
  960. "require-dev": {
  961. "nyholm/psr7": "^1.5",
  962. "php-http/mock-client": "^1.5",
  963. "phpstan/phpstan": "^1.4",
  964. "phpunit/phpunit": "^9.5"
  965. },
  966. "time": "2022-10-14T15:08:50+00:00",
  967. "type": "library",
  968. "installation-source": "dist",
  969. "autoload": {
  970. "psr-4": {
  971. "Elastic\\Transport\\": "src/"
  972. }
  973. },
  974. "notification-url": "https://packagist.org/downloads/",
  975. "license": [
  976. "MIT"
  977. ],
  978. "description": "HTTP transport PHP library for Elastic products",
  979. "keywords": [
  980. "PSR_17",
  981. "elastic",
  982. "http",
  983. "psr-18",
  984. "psr-7",
  985. "transport"
  986. ],
  987. "install-path": "../elastic/transport"
  988. },
  989. {
  990. "name": "elasticsearch/elasticsearch",
  991. "version": "v8.5.2",
  992. "version_normalized": "8.5.2.0",
  993. "source": {
  994. "type": "git",
  995. "url": "git@github.com:elastic/elasticsearch-php.git",
  996. "reference": "8a6dbaad352247e3ab6ee720a4c45d67236864b2"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/8a6dbaad352247e3ab6ee720a4c45d67236864b2",
  1001. "reference": "8a6dbaad352247e3ab6ee720a4c45d67236864b2",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "elastic/transport": "^8.5",
  1006. "guzzlehttp/guzzle": "^7.0",
  1007. "php": "^7.4 || ^8.0",
  1008. "psr/http-client": "^1.0",
  1009. "psr/http-message": "^1.0",
  1010. "psr/log": "^1|^2|^3"
  1011. },
  1012. "require-dev": {
  1013. "ext-yaml": "*",
  1014. "ext-zip": "*",
  1015. "mockery/mockery": "^1.5",
  1016. "nyholm/psr7": "^1.5",
  1017. "php-http/mock-client": "^1.5",
  1018. "phpstan/phpstan": "^1.4",
  1019. "phpunit/phpunit": "^9.5",
  1020. "symfony/finder": "~4.0",
  1021. "symfony/http-client": "^5.0|^6.0"
  1022. },
  1023. "time": "2022-11-15T10:44:30+00:00",
  1024. "type": "library",
  1025. "installation-source": "dist",
  1026. "autoload": {
  1027. "psr-4": {
  1028. "Elastic\\Elasticsearch\\": "src/"
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "description": "PHP Client for Elasticsearch",
  1036. "keywords": [
  1037. "client",
  1038. "elastic",
  1039. "elasticsearch",
  1040. "search"
  1041. ],
  1042. "install-path": "../elasticsearch/elasticsearch"
  1043. },
  1044. {
  1045. "name": "guzzlehttp/guzzle",
  1046. "version": "7.5.0",
  1047. "version_normalized": "7.5.0.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/guzzle/guzzle.git",
  1051. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1056. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "ext-json": "*",
  1061. "guzzlehttp/promises": "^1.5",
  1062. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1063. "php": "^7.2.5 || ^8.0",
  1064. "psr/http-client": "^1.0",
  1065. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1066. },
  1067. "provide": {
  1068. "psr/http-client-implementation": "1.0"
  1069. },
  1070. "require-dev": {
  1071. "bamarni/composer-bin-plugin": "^1.8.1",
  1072. "ext-curl": "*",
  1073. "php-http/client-integration-tests": "^3.0",
  1074. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1075. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1076. },
  1077. "suggest": {
  1078. "ext-curl": "Required for CURL handler support",
  1079. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1080. "psr/log": "Required for using the Log middleware"
  1081. },
  1082. "time": "2022-08-28T15:39:27+00:00",
  1083. "type": "library",
  1084. "extra": {
  1085. "bamarni-bin": {
  1086. "bin-links": true,
  1087. "forward-command": false
  1088. },
  1089. "branch-alias": {
  1090. "dev-master": "7.5-dev"
  1091. }
  1092. },
  1093. "installation-source": "dist",
  1094. "autoload": {
  1095. "files": [
  1096. "src/functions_include.php"
  1097. ],
  1098. "psr-4": {
  1099. "GuzzleHttp\\": "src/"
  1100. }
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "MIT"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "Graham Campbell",
  1109. "email": "hello@gjcampbell.co.uk",
  1110. "homepage": "https://github.com/GrahamCampbell"
  1111. },
  1112. {
  1113. "name": "Michael Dowling",
  1114. "email": "mtdowling@gmail.com",
  1115. "homepage": "https://github.com/mtdowling"
  1116. },
  1117. {
  1118. "name": "Jeremy Lindblom",
  1119. "email": "jeremeamia@gmail.com",
  1120. "homepage": "https://github.com/jeremeamia"
  1121. },
  1122. {
  1123. "name": "George Mponos",
  1124. "email": "gmponos@gmail.com",
  1125. "homepage": "https://github.com/gmponos"
  1126. },
  1127. {
  1128. "name": "Tobias Nyholm",
  1129. "email": "tobias.nyholm@gmail.com",
  1130. "homepage": "https://github.com/Nyholm"
  1131. },
  1132. {
  1133. "name": "Márk Sági-Kazár",
  1134. "email": "mark.sagikazar@gmail.com",
  1135. "homepage": "https://github.com/sagikazarmark"
  1136. },
  1137. {
  1138. "name": "Tobias Schultze",
  1139. "email": "webmaster@tubo-world.de",
  1140. "homepage": "https://github.com/Tobion"
  1141. }
  1142. ],
  1143. "description": "Guzzle is a PHP HTTP client library",
  1144. "keywords": [
  1145. "client",
  1146. "curl",
  1147. "framework",
  1148. "http",
  1149. "http client",
  1150. "psr-18",
  1151. "psr-7",
  1152. "rest",
  1153. "web service"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/guzzle/guzzle/issues",
  1157. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://github.com/GrahamCampbell",
  1162. "type": "github"
  1163. },
  1164. {
  1165. "url": "https://github.com/Nyholm",
  1166. "type": "github"
  1167. },
  1168. {
  1169. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1170. "type": "tidelift"
  1171. }
  1172. ],
  1173. "install-path": "../guzzlehttp/guzzle"
  1174. },
  1175. {
  1176. "name": "guzzlehttp/promises",
  1177. "version": "1.5.2",
  1178. "version_normalized": "1.5.2.0",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/guzzle/promises.git",
  1182. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1187. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "php": ">=5.5"
  1192. },
  1193. "require-dev": {
  1194. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1195. },
  1196. "time": "2022-08-28T14:55:35+00:00",
  1197. "type": "library",
  1198. "extra": {
  1199. "branch-alias": {
  1200. "dev-master": "1.5-dev"
  1201. }
  1202. },
  1203. "installation-source": "dist",
  1204. "autoload": {
  1205. "files": [
  1206. "src/functions_include.php"
  1207. ],
  1208. "psr-4": {
  1209. "GuzzleHttp\\Promise\\": "src/"
  1210. }
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "Graham Campbell",
  1219. "email": "hello@gjcampbell.co.uk",
  1220. "homepage": "https://github.com/GrahamCampbell"
  1221. },
  1222. {
  1223. "name": "Michael Dowling",
  1224. "email": "mtdowling@gmail.com",
  1225. "homepage": "https://github.com/mtdowling"
  1226. },
  1227. {
  1228. "name": "Tobias Nyholm",
  1229. "email": "tobias.nyholm@gmail.com",
  1230. "homepage": "https://github.com/Nyholm"
  1231. },
  1232. {
  1233. "name": "Tobias Schultze",
  1234. "email": "webmaster@tubo-world.de",
  1235. "homepage": "https://github.com/Tobion"
  1236. }
  1237. ],
  1238. "description": "Guzzle promises library",
  1239. "keywords": [
  1240. "promise"
  1241. ],
  1242. "support": {
  1243. "issues": "https://github.com/guzzle/promises/issues",
  1244. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1245. },
  1246. "funding": [
  1247. {
  1248. "url": "https://github.com/GrahamCampbell",
  1249. "type": "github"
  1250. },
  1251. {
  1252. "url": "https://github.com/Nyholm",
  1253. "type": "github"
  1254. },
  1255. {
  1256. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1257. "type": "tidelift"
  1258. }
  1259. ],
  1260. "install-path": "../guzzlehttp/promises"
  1261. },
  1262. {
  1263. "name": "guzzlehttp/psr7",
  1264. "version": "2.4.3",
  1265. "version_normalized": "2.4.3.0",
  1266. "source": {
  1267. "type": "git",
  1268. "url": "https://github.com/guzzle/psr7.git",
  1269. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  1270. },
  1271. "dist": {
  1272. "type": "zip",
  1273. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  1274. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  1275. "shasum": ""
  1276. },
  1277. "require": {
  1278. "php": "^7.2.5 || ^8.0",
  1279. "psr/http-factory": "^1.0",
  1280. "psr/http-message": "^1.0",
  1281. "ralouphie/getallheaders": "^3.0"
  1282. },
  1283. "provide": {
  1284. "psr/http-factory-implementation": "1.0",
  1285. "psr/http-message-implementation": "1.0"
  1286. },
  1287. "require-dev": {
  1288. "bamarni/composer-bin-plugin": "^1.8.1",
  1289. "http-interop/http-factory-tests": "^0.9",
  1290. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1291. },
  1292. "suggest": {
  1293. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1294. },
  1295. "time": "2022-10-26T14:07:24+00:00",
  1296. "type": "library",
  1297. "extra": {
  1298. "bamarni-bin": {
  1299. "bin-links": true,
  1300. "forward-command": false
  1301. },
  1302. "branch-alias": {
  1303. "dev-master": "2.4-dev"
  1304. }
  1305. },
  1306. "installation-source": "dist",
  1307. "autoload": {
  1308. "psr-4": {
  1309. "GuzzleHttp\\Psr7\\": "src/"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Graham Campbell",
  1319. "email": "hello@gjcampbell.co.uk",
  1320. "homepage": "https://github.com/GrahamCampbell"
  1321. },
  1322. {
  1323. "name": "Michael Dowling",
  1324. "email": "mtdowling@gmail.com",
  1325. "homepage": "https://github.com/mtdowling"
  1326. },
  1327. {
  1328. "name": "George Mponos",
  1329. "email": "gmponos@gmail.com",
  1330. "homepage": "https://github.com/gmponos"
  1331. },
  1332. {
  1333. "name": "Tobias Nyholm",
  1334. "email": "tobias.nyholm@gmail.com",
  1335. "homepage": "https://github.com/Nyholm"
  1336. },
  1337. {
  1338. "name": "Márk Sági-Kazár",
  1339. "email": "mark.sagikazar@gmail.com",
  1340. "homepage": "https://github.com/sagikazarmark"
  1341. },
  1342. {
  1343. "name": "Tobias Schultze",
  1344. "email": "webmaster@tubo-world.de",
  1345. "homepage": "https://github.com/Tobion"
  1346. },
  1347. {
  1348. "name": "Márk Sági-Kazár",
  1349. "email": "mark.sagikazar@gmail.com",
  1350. "homepage": "https://sagikazarmark.hu"
  1351. }
  1352. ],
  1353. "description": "PSR-7 message implementation that also provides common utility methods",
  1354. "keywords": [
  1355. "http",
  1356. "message",
  1357. "psr-7",
  1358. "request",
  1359. "response",
  1360. "stream",
  1361. "uri",
  1362. "url"
  1363. ],
  1364. "support": {
  1365. "issues": "https://github.com/guzzle/psr7/issues",
  1366. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  1367. },
  1368. "funding": [
  1369. {
  1370. "url": "https://github.com/GrahamCampbell",
  1371. "type": "github"
  1372. },
  1373. {
  1374. "url": "https://github.com/Nyholm",
  1375. "type": "github"
  1376. },
  1377. {
  1378. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1379. "type": "tidelift"
  1380. }
  1381. ],
  1382. "install-path": "../guzzlehttp/psr7"
  1383. },
  1384. {
  1385. "name": "ionepub/idcard",
  1386. "version": "1.1.1",
  1387. "version_normalized": "1.1.1.0",
  1388. "source": {
  1389. "type": "git",
  1390. "url": "https://github.com/ionepub/idcard.git",
  1391. "reference": "a934609778e819822d8503c49eec06eacc87b7da"
  1392. },
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://api.github.com/repos/ionepub/idcard/zipball/a934609778e819822d8503c49eec06eacc87b7da",
  1396. "reference": "a934609778e819822d8503c49eec06eacc87b7da",
  1397. "shasum": "",
  1398. "mirrors": [
  1399. {
  1400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1401. "preferred": true
  1402. }
  1403. ]
  1404. },
  1405. "time": "2020-08-13T09:46:57+00:00",
  1406. "type": "library",
  1407. "installation-source": "dist",
  1408. "autoload": {
  1409. "psr-4": {
  1410. "Ionepub\\": "src/"
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "ionepub",
  1420. "homepage": "http://github.com/ionepub/"
  1421. }
  1422. ],
  1423. "description": "二代身份证号码验证,可用于验证二代身份证号码是否合法、从身份证号码中获取生日/性别/年龄/地区信息 A Chinese identity card number verification class",
  1424. "homepage": "https://github.com/ionepub/idcard",
  1425. "keywords": [
  1426. "A Chinese identity card number verification class",
  1427. "id",
  1428. "身份证号码验证"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/ionepub/idcard/issues",
  1432. "source": "https://github.com/ionepub/idcard/tree/1.1.1"
  1433. },
  1434. "install-path": "../ionepub/idcard"
  1435. },
  1436. {
  1437. "name": "karsonzhang/fastadmin-addons",
  1438. "version": "1.2.12",
  1439. "version_normalized": "1.2.12.0",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/karsonzhang/fastadmin-addons.git",
  1443. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/karsonzhang/fastadmin-addons/zipball/7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1448. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "nelexa/zip": "^3.3",
  1453. "php": ">=7.0.0",
  1454. "symfony/var-exporter": "^4.4.13"
  1455. },
  1456. "time": "2021-07-19T08:10:11+00:00",
  1457. "type": "library",
  1458. "extra": {
  1459. "think-config": {
  1460. "addons": "src/config.php"
  1461. }
  1462. },
  1463. "installation-source": "dist",
  1464. "autoload": {
  1465. "psr-4": {
  1466. "think\\": "src/"
  1467. },
  1468. "files": [
  1469. "src/common.php"
  1470. ]
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "Apache-2.0"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Karson",
  1479. "email": "karson@fastadmin.net"
  1480. },
  1481. {
  1482. "name": "xiaobo.sun",
  1483. "email": "xiaobo.sun@qq.com"
  1484. }
  1485. ],
  1486. "description": "addons package for fastadmin",
  1487. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  1488. "support": {
  1489. "issues": "https://github.com/karsonzhang/fastadmin-addons/issues",
  1490. "source": "https://github.com/karsonzhang/fastadmin-addons/tree/v1.2.12"
  1491. },
  1492. "install-path": "../karsonzhang/fastadmin-addons"
  1493. },
  1494. {
  1495. "name": "kylekatarnls/update-helper",
  1496. "version": "1.2.1",
  1497. "version_normalized": "1.2.1.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/kylekatarnls/update-helper.git",
  1501. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
  1506. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "composer-plugin-api": "^1.1.0 || ^2.0.0",
  1511. "php": ">=5.3.0"
  1512. },
  1513. "require-dev": {
  1514. "codeclimate/php-test-reporter": "dev-master",
  1515. "composer/composer": "2.0.x-dev || ^2.0.0-dev",
  1516. "phpunit/phpunit": ">=4.8.35 <6.0"
  1517. },
  1518. "time": "2020-04-07T20:44:10+00:00",
  1519. "type": "composer-plugin",
  1520. "extra": {
  1521. "class": "UpdateHelper\\ComposerPlugin"
  1522. },
  1523. "installation-source": "dist",
  1524. "autoload": {
  1525. "psr-0": {
  1526. "UpdateHelper\\": "src/"
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "authors": [
  1534. {
  1535. "name": "Kyle",
  1536. "email": "kylekatarnls@gmail.com"
  1537. }
  1538. ],
  1539. "description": "Update helper",
  1540. "support": {
  1541. "issues": "https://github.com/kylekatarnls/update-helper/issues",
  1542. "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1"
  1543. },
  1544. "funding": [
  1545. {
  1546. "url": "https://github.com/kylekatarnls",
  1547. "type": "github"
  1548. },
  1549. {
  1550. "url": "https://opencollective.com/Carbon",
  1551. "type": "open_collective"
  1552. },
  1553. {
  1554. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1555. "type": "tidelift"
  1556. }
  1557. ],
  1558. "install-path": "../kylekatarnls/update-helper"
  1559. },
  1560. {
  1561. "name": "markbaker/complex",
  1562. "version": "1.5.0",
  1563. "version_normalized": "1.5.0.0",
  1564. "source": {
  1565. "type": "git",
  1566. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1567. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1568. },
  1569. "dist": {
  1570. "type": "zip",
  1571. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1572. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1573. "shasum": "",
  1574. "mirrors": [
  1575. {
  1576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1577. "preferred": true
  1578. }
  1579. ]
  1580. },
  1581. "require": {
  1582. "php": "^5.6.0|^7.0"
  1583. },
  1584. "require-dev": {
  1585. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1586. "phpcompatibility/php-compatibility": "^9.0",
  1587. "phpdocumentor/phpdocumentor": "2.*",
  1588. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1589. "phpmd/phpmd": "2.*",
  1590. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1591. "sebastian/phpcpd": "2.*",
  1592. "squizlabs/php_codesniffer": "^3.4.0"
  1593. },
  1594. "time": "2020-08-26T19:47:57+00:00",
  1595. "type": "library",
  1596. "installation-source": "dist",
  1597. "autoload": {
  1598. "psr-4": {
  1599. "Complex\\": "classes/src/"
  1600. },
  1601. "files": [
  1602. "classes/src/functions/abs.php",
  1603. "classes/src/functions/acos.php",
  1604. "classes/src/functions/acosh.php",
  1605. "classes/src/functions/acot.php",
  1606. "classes/src/functions/acoth.php",
  1607. "classes/src/functions/acsc.php",
  1608. "classes/src/functions/acsch.php",
  1609. "classes/src/functions/argument.php",
  1610. "classes/src/functions/asec.php",
  1611. "classes/src/functions/asech.php",
  1612. "classes/src/functions/asin.php",
  1613. "classes/src/functions/asinh.php",
  1614. "classes/src/functions/atan.php",
  1615. "classes/src/functions/atanh.php",
  1616. "classes/src/functions/conjugate.php",
  1617. "classes/src/functions/cos.php",
  1618. "classes/src/functions/cosh.php",
  1619. "classes/src/functions/cot.php",
  1620. "classes/src/functions/coth.php",
  1621. "classes/src/functions/csc.php",
  1622. "classes/src/functions/csch.php",
  1623. "classes/src/functions/exp.php",
  1624. "classes/src/functions/inverse.php",
  1625. "classes/src/functions/ln.php",
  1626. "classes/src/functions/log2.php",
  1627. "classes/src/functions/log10.php",
  1628. "classes/src/functions/negative.php",
  1629. "classes/src/functions/pow.php",
  1630. "classes/src/functions/rho.php",
  1631. "classes/src/functions/sec.php",
  1632. "classes/src/functions/sech.php",
  1633. "classes/src/functions/sin.php",
  1634. "classes/src/functions/sinh.php",
  1635. "classes/src/functions/sqrt.php",
  1636. "classes/src/functions/tan.php",
  1637. "classes/src/functions/tanh.php",
  1638. "classes/src/functions/theta.php",
  1639. "classes/src/operations/add.php",
  1640. "classes/src/operations/subtract.php",
  1641. "classes/src/operations/multiply.php",
  1642. "classes/src/operations/divideby.php",
  1643. "classes/src/operations/divideinto.php"
  1644. ]
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Mark Baker",
  1653. "email": "mark@lange.demon.co.uk"
  1654. }
  1655. ],
  1656. "description": "PHP Class for working with complex numbers",
  1657. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1658. "keywords": [
  1659. "complex",
  1660. "mathematics"
  1661. ],
  1662. "install-path": "../markbaker/complex"
  1663. },
  1664. {
  1665. "name": "markbaker/matrix",
  1666. "version": "1.2.3",
  1667. "version_normalized": "1.2.3.0",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1671. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1676. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1677. "shasum": "",
  1678. "mirrors": [
  1679. {
  1680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1681. "preferred": true
  1682. }
  1683. ]
  1684. },
  1685. "require": {
  1686. "php": "^5.6.0|^7.0.0"
  1687. },
  1688. "require-dev": {
  1689. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1690. "phpcompatibility/php-compatibility": "dev-master",
  1691. "phploc/phploc": "^4",
  1692. "phpmd/phpmd": "dev-master",
  1693. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1694. "sebastian/phpcpd": "^3.0",
  1695. "squizlabs/php_codesniffer": "^3.0@dev"
  1696. },
  1697. "time": "2021-01-26T14:36:01+00:00",
  1698. "type": "library",
  1699. "installation-source": "dist",
  1700. "autoload": {
  1701. "psr-4": {
  1702. "Matrix\\": "classes/src/"
  1703. },
  1704. "files": [
  1705. "classes/src/Functions/adjoint.php",
  1706. "classes/src/Functions/antidiagonal.php",
  1707. "classes/src/Functions/cofactors.php",
  1708. "classes/src/Functions/determinant.php",
  1709. "classes/src/Functions/diagonal.php",
  1710. "classes/src/Functions/identity.php",
  1711. "classes/src/Functions/inverse.php",
  1712. "classes/src/Functions/minors.php",
  1713. "classes/src/Functions/trace.php",
  1714. "classes/src/Functions/transpose.php",
  1715. "classes/src/Operations/add.php",
  1716. "classes/src/Operations/directsum.php",
  1717. "classes/src/Operations/subtract.php",
  1718. "classes/src/Operations/multiply.php",
  1719. "classes/src/Operations/divideby.php",
  1720. "classes/src/Operations/divideinto.php"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Mark Baker",
  1730. "email": "mark@lange.demon.co.uk"
  1731. }
  1732. ],
  1733. "description": "PHP Class for working with matrices",
  1734. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1735. "keywords": [
  1736. "mathematics",
  1737. "matrix",
  1738. "vector"
  1739. ],
  1740. "install-path": "../markbaker/matrix"
  1741. },
  1742. {
  1743. "name": "monolog/monolog",
  1744. "version": "2.8.0",
  1745. "version_normalized": "2.8.0.0",
  1746. "source": {
  1747. "type": "git",
  1748. "url": "https://github.com/Seldaek/monolog.git",
  1749. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  1750. },
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  1754. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "php": ">=7.2",
  1759. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1760. },
  1761. "provide": {
  1762. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1763. },
  1764. "require-dev": {
  1765. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1766. "doctrine/couchdb": "~1.0@dev",
  1767. "elasticsearch/elasticsearch": "^7 || ^8",
  1768. "ext-json": "*",
  1769. "graylog2/gelf-php": "^1.4.2",
  1770. "guzzlehttp/guzzle": "^7.4",
  1771. "guzzlehttp/psr7": "^2.2",
  1772. "mongodb/mongodb": "^1.8",
  1773. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1774. "phpspec/prophecy": "^1.15",
  1775. "phpstan/phpstan": "^0.12.91",
  1776. "phpunit/phpunit": "^8.5.14",
  1777. "predis/predis": "^1.1 || ^2.0",
  1778. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1779. "ruflin/elastica": "^7",
  1780. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1781. "symfony/mailer": "^5.4 || ^6",
  1782. "symfony/mime": "^5.4 || ^6"
  1783. },
  1784. "suggest": {
  1785. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1786. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1787. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1788. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1789. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1790. "ext-mbstring": "Allow to work properly with unicode symbols",
  1791. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1792. "ext-openssl": "Required to send log messages using SSL",
  1793. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1794. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1795. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1796. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1797. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1798. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1799. },
  1800. "time": "2022-07-24T11:55:47+00:00",
  1801. "type": "library",
  1802. "extra": {
  1803. "branch-alias": {
  1804. "dev-main": "2.x-dev"
  1805. }
  1806. },
  1807. "installation-source": "dist",
  1808. "autoload": {
  1809. "psr-4": {
  1810. "Monolog\\": "src/Monolog"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "MIT"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Jordi Boggiano",
  1820. "email": "j.boggiano@seld.be",
  1821. "homepage": "https://seld.be"
  1822. }
  1823. ],
  1824. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1825. "homepage": "https://github.com/Seldaek/monolog",
  1826. "keywords": [
  1827. "log",
  1828. "logging",
  1829. "psr-3"
  1830. ],
  1831. "support": {
  1832. "issues": "https://github.com/Seldaek/monolog/issues",
  1833. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  1834. },
  1835. "funding": [
  1836. {
  1837. "url": "https://github.com/Seldaek",
  1838. "type": "github"
  1839. },
  1840. {
  1841. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1842. "type": "tidelift"
  1843. }
  1844. ],
  1845. "install-path": "../monolog/monolog"
  1846. },
  1847. {
  1848. "name": "mpdf/mpdf",
  1849. "version": "v8.1.2",
  1850. "version_normalized": "8.1.2.0",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/mpdf/mpdf.git",
  1854. "reference": "a8a22f4874157e490d41b486053a20bec42e182c"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/a8a22f4874157e490d41b486053a20bec42e182c",
  1859. "reference": "a8a22f4874157e490d41b486053a20bec42e182c",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "ext-gd": "*",
  1864. "ext-mbstring": "*",
  1865. "myclabs/deep-copy": "^1.7",
  1866. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  1867. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0",
  1868. "php-http/message-factory": "^1.0",
  1869. "psr/http-message": "^1.0",
  1870. "psr/log": "^1.0 || ^2.0",
  1871. "setasign/fpdi": "^2.1"
  1872. },
  1873. "require-dev": {
  1874. "mockery/mockery": "^1.3.0",
  1875. "mpdf/qrcode": "^1.1.0",
  1876. "squizlabs/php_codesniffer": "^3.5.0",
  1877. "tracy/tracy": "^2.4",
  1878. "yoast/phpunit-polyfills": "^1.0"
  1879. },
  1880. "suggest": {
  1881. "ext-bcmath": "Needed for generation of some types of barcodes",
  1882. "ext-xml": "Needed mainly for SVG manipulation",
  1883. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  1884. },
  1885. "time": "2022-08-15T08:15:09+00:00",
  1886. "type": "library",
  1887. "installation-source": "dist",
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Mpdf\\": "src/"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "GPL-2.0-only"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Matěj Humpál",
  1900. "role": "Developer, maintainer"
  1901. },
  1902. {
  1903. "name": "Ian Back",
  1904. "role": "Developer (retired)"
  1905. }
  1906. ],
  1907. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  1908. "homepage": "https://mpdf.github.io",
  1909. "keywords": [
  1910. "pdf",
  1911. "php",
  1912. "utf-8"
  1913. ],
  1914. "support": {
  1915. "docs": "http://mpdf.github.io",
  1916. "issues": "https://github.com/mpdf/mpdf/issues",
  1917. "source": "https://github.com/mpdf/mpdf"
  1918. },
  1919. "funding": [
  1920. {
  1921. "url": "https://www.paypal.me/mpdf",
  1922. "type": "custom"
  1923. }
  1924. ],
  1925. "install-path": "../mpdf/mpdf"
  1926. },
  1927. {
  1928. "name": "mtdowling/jmespath.php",
  1929. "version": "2.6.1",
  1930. "version_normalized": "2.6.1.0",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/jmespath/jmespath.php.git",
  1934. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1939. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "php": "^5.4 || ^7.0 || ^8.0",
  1944. "symfony/polyfill-mbstring": "^1.17"
  1945. },
  1946. "require-dev": {
  1947. "composer/xdebug-handler": "^1.4 || ^2.0",
  1948. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1949. },
  1950. "time": "2021-06-14T00:11:39+00:00",
  1951. "bin": [
  1952. "bin/jp.php"
  1953. ],
  1954. "type": "library",
  1955. "extra": {
  1956. "branch-alias": {
  1957. "dev-master": "2.6-dev"
  1958. }
  1959. },
  1960. "installation-source": "dist",
  1961. "autoload": {
  1962. "psr-4": {
  1963. "JmesPath\\": "src/"
  1964. },
  1965. "files": [
  1966. "src/JmesPath.php"
  1967. ]
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Michael Dowling",
  1976. "email": "mtdowling@gmail.com",
  1977. "homepage": "https://github.com/mtdowling"
  1978. }
  1979. ],
  1980. "description": "Declaratively specify how to extract elements from a JSON document",
  1981. "keywords": [
  1982. "json",
  1983. "jsonpath"
  1984. ],
  1985. "support": {
  1986. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1987. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  1988. },
  1989. "install-path": "../mtdowling/jmespath.php"
  1990. },
  1991. {
  1992. "name": "myclabs/deep-copy",
  1993. "version": "1.11.0",
  1994. "version_normalized": "1.11.0.0",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/myclabs/DeepCopy.git",
  1998. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2003. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2004. "shasum": ""
  2005. },
  2006. "require": {
  2007. "php": "^7.1 || ^8.0"
  2008. },
  2009. "conflict": {
  2010. "doctrine/collections": "<1.6.8",
  2011. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  2012. },
  2013. "require-dev": {
  2014. "doctrine/collections": "^1.6.8",
  2015. "doctrine/common": "^2.13.3 || ^3.2.2",
  2016. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  2017. },
  2018. "time": "2022-03-03T13:19:32+00:00",
  2019. "type": "library",
  2020. "installation-source": "dist",
  2021. "autoload": {
  2022. "files": [
  2023. "src/DeepCopy/deep_copy.php"
  2024. ],
  2025. "psr-4": {
  2026. "DeepCopy\\": "src/DeepCopy/"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "description": "Create deep copies (clones) of your objects",
  2034. "keywords": [
  2035. "clone",
  2036. "copy",
  2037. "duplicate",
  2038. "object",
  2039. "object graph"
  2040. ],
  2041. "support": {
  2042. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2043. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  2044. },
  2045. "funding": [
  2046. {
  2047. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2048. "type": "tidelift"
  2049. }
  2050. ],
  2051. "install-path": "../myclabs/deep-copy"
  2052. },
  2053. {
  2054. "name": "nelexa/zip",
  2055. "version": "3.3.3",
  2056. "version_normalized": "3.3.3.0",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/Ne-Lexa/php-zip.git",
  2060. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
  2065. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
  2066. "shasum": "",
  2067. "mirrors": [
  2068. {
  2069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2070. "preferred": true
  2071. }
  2072. ]
  2073. },
  2074. "require": {
  2075. "ext-zlib": "*",
  2076. "paragonie/random_compat": "*",
  2077. "php": "^5.5.9 || ^7.0",
  2078. "psr/http-message": "^1.0",
  2079. "symfony/finder": "^3.0|^4.0|^5.0"
  2080. },
  2081. "require-dev": {
  2082. "ext-bz2": "*",
  2083. "ext-fileinfo": "*",
  2084. "ext-openssl": "*",
  2085. "ext-xml": "*",
  2086. "guzzlehttp/psr7": "^1.6",
  2087. "phpunit/phpunit": "^4.8|^5.7",
  2088. "symfony/var-dumper": "^3.0|^4.0|^5.0"
  2089. },
  2090. "suggest": {
  2091. "ext-bz2": "Needed to support BZIP2 compression",
  2092. "ext-fileinfo": "Needed to get mime-type file",
  2093. "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
  2094. "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
  2095. },
  2096. "time": "2020-07-11T21:01:42+00:00",
  2097. "type": "library",
  2098. "installation-source": "dist",
  2099. "autoload": {
  2100. "psr-4": {
  2101. "PhpZip\\": "src/"
  2102. }
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "MIT"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Ne-Lexa",
  2111. "email": "alexey@nelexa.ru",
  2112. "role": "Developer"
  2113. }
  2114. ],
  2115. "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.",
  2116. "homepage": "https://github.com/Ne-Lexa/php-zip",
  2117. "keywords": [
  2118. "archive",
  2119. "extract",
  2120. "unzip",
  2121. "winzip",
  2122. "zip",
  2123. "zipalign",
  2124. "ziparchive"
  2125. ],
  2126. "install-path": "../nelexa/zip"
  2127. },
  2128. {
  2129. "name": "nesbot/carbon",
  2130. "version": "1.39.1",
  2131. "version_normalized": "1.39.1.0",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/briannesbitt/Carbon.git",
  2135. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2140. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "kylekatarnls/update-helper": "^1.1",
  2145. "php": ">=5.3.9",
  2146. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  2147. },
  2148. "require-dev": {
  2149. "composer/composer": "^1.2",
  2150. "friendsofphp/php-cs-fixer": "~2",
  2151. "phpunit/phpunit": "^4.8.35 || ^5.7"
  2152. },
  2153. "time": "2019-10-14T05:51:36+00:00",
  2154. "bin": [
  2155. "bin/upgrade-carbon"
  2156. ],
  2157. "type": "library",
  2158. "extra": {
  2159. "update-helper": "Carbon\\Upgrade",
  2160. "laravel": {
  2161. "providers": [
  2162. "Carbon\\Laravel\\ServiceProvider"
  2163. ]
  2164. }
  2165. },
  2166. "installation-source": "dist",
  2167. "autoload": {
  2168. "psr-4": {
  2169. "": "src/"
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "MIT"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Brian Nesbitt",
  2179. "email": "brian@nesbot.com",
  2180. "homepage": "http://nesbot.com"
  2181. }
  2182. ],
  2183. "description": "A simple API extension for DateTime.",
  2184. "homepage": "http://carbon.nesbot.com",
  2185. "keywords": [
  2186. "date",
  2187. "datetime",
  2188. "time"
  2189. ],
  2190. "support": {
  2191. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2192. "source": "https://github.com/briannesbitt/Carbon"
  2193. },
  2194. "install-path": "../nesbot/carbon"
  2195. },
  2196. {
  2197. "name": "overtrue/pinyin",
  2198. "version": "4.0.8",
  2199. "version_normalized": "4.0.8.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/overtrue/pinyin.git",
  2203. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2208. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=7.1"
  2213. },
  2214. "require-dev": {
  2215. "brainmaestro/composer-git-hooks": "^2.7",
  2216. "friendsofphp/php-cs-fixer": "^2.16",
  2217. "phpunit/phpunit": "~8.0"
  2218. },
  2219. "time": "2021-07-19T03:43:32+00:00",
  2220. "type": "library",
  2221. "extra": {
  2222. "hooks": {
  2223. "pre-commit": [
  2224. "composer test",
  2225. "composer fix-style"
  2226. ],
  2227. "pre-push": [
  2228. "composer test",
  2229. "composer check-style"
  2230. ]
  2231. }
  2232. },
  2233. "installation-source": "dist",
  2234. "autoload": {
  2235. "psr-4": {
  2236. "Overtrue\\Pinyin\\": "src/"
  2237. },
  2238. "files": [
  2239. "src/const.php"
  2240. ]
  2241. },
  2242. "notification-url": "https://packagist.org/downloads/",
  2243. "license": [
  2244. "MIT"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "overtrue",
  2249. "email": "anzhengchao@gmail.com",
  2250. "homepage": "http://github.com/overtrue"
  2251. }
  2252. ],
  2253. "description": "Chinese to pinyin translator.",
  2254. "homepage": "https://github.com/overtrue/pinyin",
  2255. "keywords": [
  2256. "Chinese",
  2257. "Pinyin",
  2258. "cn2pinyin"
  2259. ],
  2260. "support": {
  2261. "issues": "https://github.com/overtrue/pinyin/issues",
  2262. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  2263. },
  2264. "funding": [
  2265. {
  2266. "url": "https://www.patreon.com/overtrue",
  2267. "type": "patreon"
  2268. }
  2269. ],
  2270. "install-path": "../overtrue/pinyin"
  2271. },
  2272. {
  2273. "name": "overtrue/socialite",
  2274. "version": "2.0.24",
  2275. "version_normalized": "2.0.24.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://github.com/overtrue/socialite.git",
  2279. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2284. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2285. "shasum": ""
  2286. },
  2287. "require": {
  2288. "ext-json": "*",
  2289. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  2290. "php": ">=5.6",
  2291. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  2292. },
  2293. "require-dev": {
  2294. "mockery/mockery": "~1.2",
  2295. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  2296. },
  2297. "time": "2021-05-13T16:04:48+00:00",
  2298. "type": "library",
  2299. "installation-source": "dist",
  2300. "autoload": {
  2301. "psr-4": {
  2302. "Overtrue\\Socialite\\": "src/"
  2303. }
  2304. },
  2305. "notification-url": "https://packagist.org/downloads/",
  2306. "license": [
  2307. "MIT"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "overtrue",
  2312. "email": "anzhengchao@gmail.com"
  2313. }
  2314. ],
  2315. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2316. "keywords": [
  2317. "login",
  2318. "oauth",
  2319. "qq",
  2320. "social",
  2321. "wechat",
  2322. "weibo"
  2323. ],
  2324. "support": {
  2325. "issues": "https://github.com/overtrue/socialite/issues",
  2326. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  2327. },
  2328. "funding": [
  2329. {
  2330. "url": "https://www.patreon.com/overtrue",
  2331. "type": "patreon"
  2332. }
  2333. ],
  2334. "install-path": "../overtrue/socialite"
  2335. },
  2336. {
  2337. "name": "overtrue/wechat",
  2338. "version": "4.7.0",
  2339. "version_normalized": "4.7.0.0",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://github.com/w7corp/easywechat.git",
  2343. "reference": "4accb0627803ffb6e45d2988898a0293d2a48e68"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/4accb0627803ffb6e45d2988898a0293d2a48e68",
  2348. "reference": "4accb0627803ffb6e45d2988898a0293d2a48e68",
  2349. "shasum": ""
  2350. },
  2351. "require": {
  2352. "easywechat-composer/easywechat-composer": "^1.1",
  2353. "ext-fileinfo": "*",
  2354. "ext-openssl": "*",
  2355. "ext-simplexml": "*",
  2356. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2357. "monolog/monolog": "^1.22 || ^2.0",
  2358. "overtrue/socialite": "~2.0",
  2359. "php": ">=7.2",
  2360. "pimple/pimple": "^3.0",
  2361. "psr/simple-cache": "^1.0",
  2362. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2363. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2364. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2365. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2366. },
  2367. "require-dev": {
  2368. "friendsofphp/php-cs-fixer": "^2.15",
  2369. "mikey179/vfsstream": "^1.6",
  2370. "mockery/mockery": "^1.2.3",
  2371. "phpstan/phpstan": "^0.12.0",
  2372. "phpunit/phpunit": "^7.5"
  2373. },
  2374. "time": "2022-10-21T07:00:02+00:00",
  2375. "type": "library",
  2376. "installation-source": "dist",
  2377. "autoload": {
  2378. "files": [
  2379. "src/Kernel/Support/Helpers.php",
  2380. "src/Kernel/Helpers.php"
  2381. ],
  2382. "psr-4": {
  2383. "EasyWeChat\\": "src/"
  2384. }
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "overtrue",
  2393. "email": "anzhengchao@gmail.com"
  2394. }
  2395. ],
  2396. "description": "微信SDK",
  2397. "keywords": [
  2398. "easywechat",
  2399. "sdk",
  2400. "wechat",
  2401. "weixin",
  2402. "weixin-sdk"
  2403. ],
  2404. "support": {
  2405. "issues": "https://github.com/w7corp/easywechat/issues",
  2406. "source": "https://github.com/w7corp/easywechat/tree/4.7.0"
  2407. },
  2408. "funding": [
  2409. {
  2410. "url": "https://github.com/overtrue",
  2411. "type": "github"
  2412. }
  2413. ],
  2414. "abandoned": "w7corp/easywechat",
  2415. "install-path": "../overtrue/wechat"
  2416. },
  2417. {
  2418. "name": "paragonie/random_compat",
  2419. "version": "v9.99.100",
  2420. "version_normalized": "9.99.100.0",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/paragonie/random_compat.git",
  2424. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2429. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2430. "shasum": "",
  2431. "mirrors": [
  2432. {
  2433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2434. "preferred": true
  2435. }
  2436. ]
  2437. },
  2438. "require": {
  2439. "php": ">= 7"
  2440. },
  2441. "require-dev": {
  2442. "phpunit/phpunit": "4.*|5.*",
  2443. "vimeo/psalm": "^1"
  2444. },
  2445. "suggest": {
  2446. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2447. },
  2448. "time": "2020-10-15T08:29:30+00:00",
  2449. "type": "library",
  2450. "installation-source": "dist",
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Paragon Initiative Enterprises",
  2458. "email": "security@paragonie.com",
  2459. "homepage": "https://paragonie.com"
  2460. }
  2461. ],
  2462. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2463. "keywords": [
  2464. "csprng",
  2465. "polyfill",
  2466. "pseudorandom",
  2467. "random"
  2468. ],
  2469. "install-path": "../paragonie/random_compat"
  2470. },
  2471. {
  2472. "name": "php-http/discovery",
  2473. "version": "1.14.3",
  2474. "version_normalized": "1.14.3.0",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/php-http/discovery.git",
  2478. "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/php-http/discovery/zipball/31d8ee46d0215108df16a8527c7438e96a4d7735",
  2483. "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735",
  2484. "shasum": ""
  2485. },
  2486. "require": {
  2487. "php": "^7.1 || ^8.0"
  2488. },
  2489. "conflict": {
  2490. "nyholm/psr7": "<1.0"
  2491. },
  2492. "require-dev": {
  2493. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2494. "php-http/httplug": "^1.0 || ^2.0",
  2495. "php-http/message-factory": "^1.0",
  2496. "phpspec/phpspec": "^5.1 || ^6.1"
  2497. },
  2498. "suggest": {
  2499. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories"
  2500. },
  2501. "time": "2022-07-11T14:04:40+00:00",
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "1.9-dev"
  2506. }
  2507. },
  2508. "installation-source": "dist",
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Http\\Discovery\\": "src/"
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Márk Sági-Kazár",
  2521. "email": "mark.sagikazar@gmail.com"
  2522. }
  2523. ],
  2524. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  2525. "homepage": "http://php-http.org",
  2526. "keywords": [
  2527. "adapter",
  2528. "client",
  2529. "discovery",
  2530. "factory",
  2531. "http",
  2532. "message",
  2533. "psr7"
  2534. ],
  2535. "support": {
  2536. "issues": "https://github.com/php-http/discovery/issues",
  2537. "source": "https://github.com/php-http/discovery/tree/1.14.3"
  2538. },
  2539. "install-path": "../php-http/discovery"
  2540. },
  2541. {
  2542. "name": "php-http/httplug",
  2543. "version": "2.3.0",
  2544. "version_normalized": "2.3.0.0",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/php-http/httplug.git",
  2548. "reference": "f640739f80dfa1152533976e3c112477f69274eb"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb",
  2553. "reference": "f640739f80dfa1152533976e3c112477f69274eb",
  2554. "shasum": ""
  2555. },
  2556. "require": {
  2557. "php": "^7.1 || ^8.0",
  2558. "php-http/promise": "^1.1",
  2559. "psr/http-client": "^1.0",
  2560. "psr/http-message": "^1.0"
  2561. },
  2562. "require-dev": {
  2563. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  2564. "phpspec/phpspec": "^5.1 || ^6.0"
  2565. },
  2566. "time": "2022-02-21T09:52:22+00:00",
  2567. "type": "library",
  2568. "extra": {
  2569. "branch-alias": {
  2570. "dev-master": "2.x-dev"
  2571. }
  2572. },
  2573. "installation-source": "dist",
  2574. "autoload": {
  2575. "psr-4": {
  2576. "Http\\Client\\": "src/"
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Eric GELOEN",
  2586. "email": "geloen.eric@gmail.com"
  2587. },
  2588. {
  2589. "name": "Márk Sági-Kazár",
  2590. "email": "mark.sagikazar@gmail.com",
  2591. "homepage": "https://sagikazarmark.hu"
  2592. }
  2593. ],
  2594. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2595. "homepage": "http://httplug.io",
  2596. "keywords": [
  2597. "client",
  2598. "http"
  2599. ],
  2600. "support": {
  2601. "issues": "https://github.com/php-http/httplug/issues",
  2602. "source": "https://github.com/php-http/httplug/tree/2.3.0"
  2603. },
  2604. "install-path": "../php-http/httplug"
  2605. },
  2606. {
  2607. "name": "php-http/message-factory",
  2608. "version": "v1.0.2",
  2609. "version_normalized": "1.0.2.0",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/php-http/message-factory.git",
  2613. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2618. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2619. "shasum": ""
  2620. },
  2621. "require": {
  2622. "php": ">=5.4",
  2623. "psr/http-message": "^1.0"
  2624. },
  2625. "time": "2015-12-19T14:08:53+00:00",
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "1.0-dev"
  2630. }
  2631. },
  2632. "installation-source": "dist",
  2633. "autoload": {
  2634. "psr-4": {
  2635. "Http\\Message\\": "src/"
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Márk Sági-Kazár",
  2645. "email": "mark.sagikazar@gmail.com"
  2646. }
  2647. ],
  2648. "description": "Factory interfaces for PSR-7 HTTP Message",
  2649. "homepage": "http://php-http.org",
  2650. "keywords": [
  2651. "factory",
  2652. "http",
  2653. "message",
  2654. "stream",
  2655. "uri"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/php-http/message-factory/issues",
  2659. "source": "https://github.com/php-http/message-factory/tree/master"
  2660. },
  2661. "install-path": "../php-http/message-factory"
  2662. },
  2663. {
  2664. "name": "php-http/promise",
  2665. "version": "1.1.0",
  2666. "version_normalized": "1.1.0.0",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/php-http/promise.git",
  2670. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  2675. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "php": "^7.1 || ^8.0"
  2680. },
  2681. "require-dev": {
  2682. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  2683. "phpspec/phpspec": "^5.1.2 || ^6.2"
  2684. },
  2685. "time": "2020-07-07T09:29:14+00:00",
  2686. "type": "library",
  2687. "extra": {
  2688. "branch-alias": {
  2689. "dev-master": "1.1-dev"
  2690. }
  2691. },
  2692. "installation-source": "dist",
  2693. "autoload": {
  2694. "psr-4": {
  2695. "Http\\Promise\\": "src/"
  2696. }
  2697. },
  2698. "notification-url": "https://packagist.org/downloads/",
  2699. "license": [
  2700. "MIT"
  2701. ],
  2702. "authors": [
  2703. {
  2704. "name": "Joel Wurtz",
  2705. "email": "joel.wurtz@gmail.com"
  2706. },
  2707. {
  2708. "name": "Márk Sági-Kazár",
  2709. "email": "mark.sagikazar@gmail.com"
  2710. }
  2711. ],
  2712. "description": "Promise used for asynchronous HTTP requests",
  2713. "homepage": "http://httplug.io",
  2714. "keywords": [
  2715. "promise"
  2716. ],
  2717. "support": {
  2718. "issues": "https://github.com/php-http/promise/issues",
  2719. "source": "https://github.com/php-http/promise/tree/1.1.0"
  2720. },
  2721. "install-path": "../php-http/promise"
  2722. },
  2723. {
  2724. "name": "phpoffice/phpspreadsheet",
  2725. "version": "1.12.0",
  2726. "version_normalized": "1.12.0.0",
  2727. "source": {
  2728. "type": "git",
  2729. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2730. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd"
  2731. },
  2732. "dist": {
  2733. "type": "zip",
  2734. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2735. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2736. "shasum": "",
  2737. "mirrors": [
  2738. {
  2739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2740. "preferred": true
  2741. }
  2742. ]
  2743. },
  2744. "require": {
  2745. "ext-ctype": "*",
  2746. "ext-dom": "*",
  2747. "ext-fileinfo": "*",
  2748. "ext-gd": "*",
  2749. "ext-iconv": "*",
  2750. "ext-libxml": "*",
  2751. "ext-mbstring": "*",
  2752. "ext-simplexml": "*",
  2753. "ext-xml": "*",
  2754. "ext-xmlreader": "*",
  2755. "ext-xmlwriter": "*",
  2756. "ext-zip": "*",
  2757. "ext-zlib": "*",
  2758. "markbaker/complex": "^1.4",
  2759. "markbaker/matrix": "^1.2",
  2760. "php": "^7.1",
  2761. "psr/simple-cache": "^1.0"
  2762. },
  2763. "require-dev": {
  2764. "dompdf/dompdf": "^0.8.3",
  2765. "friendsofphp/php-cs-fixer": "^2.16",
  2766. "jpgraph/jpgraph": "^4.0",
  2767. "mpdf/mpdf": "^8.0",
  2768. "phpcompatibility/php-compatibility": "^9.3",
  2769. "phpunit/phpunit": "^7.5",
  2770. "squizlabs/php_codesniffer": "^3.5",
  2771. "tecnickcom/tcpdf": "^6.3"
  2772. },
  2773. "suggest": {
  2774. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2775. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2776. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2777. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2778. },
  2779. "time": "2020-04-27T08:12:48+00:00",
  2780. "type": "library",
  2781. "installation-source": "dist",
  2782. "autoload": {
  2783. "psr-4": {
  2784. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2785. }
  2786. },
  2787. "notification-url": "https://packagist.org/downloads/",
  2788. "license": [
  2789. "MIT"
  2790. ],
  2791. "authors": [
  2792. {
  2793. "name": "Maarten Balliauw",
  2794. "homepage": "https://blog.maartenballiauw.be"
  2795. },
  2796. {
  2797. "name": "Mark Baker",
  2798. "homepage": "https://markbakeruk.net"
  2799. },
  2800. {
  2801. "name": "Franck Lefevre",
  2802. "homepage": "https://rootslabs.net"
  2803. },
  2804. {
  2805. "name": "Erik Tilt"
  2806. },
  2807. {
  2808. "name": "Adrien Crivelli"
  2809. }
  2810. ],
  2811. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2812. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2813. "keywords": [
  2814. "OpenXML",
  2815. "excel",
  2816. "gnumeric",
  2817. "ods",
  2818. "php",
  2819. "spreadsheet",
  2820. "xls",
  2821. "xlsx"
  2822. ],
  2823. "install-path": "../phpoffice/phpspreadsheet"
  2824. },
  2825. {
  2826. "name": "pimple/pimple",
  2827. "version": "v3.5.0",
  2828. "version_normalized": "3.5.0.0",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/silexphp/Pimple.git",
  2832. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2837. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": ">=7.2.5",
  2842. "psr/container": "^1.1 || ^2.0"
  2843. },
  2844. "require-dev": {
  2845. "symfony/phpunit-bridge": "^5.4@dev"
  2846. },
  2847. "time": "2021-10-28T11:13:42+00:00",
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-master": "3.4.x-dev"
  2852. }
  2853. },
  2854. "installation-source": "dist",
  2855. "autoload": {
  2856. "psr-0": {
  2857. "Pimple": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Fabien Potencier",
  2867. "email": "fabien@symfony.com"
  2868. }
  2869. ],
  2870. "description": "Pimple, a simple Dependency Injection Container",
  2871. "homepage": "https://pimple.symfony.com",
  2872. "keywords": [
  2873. "container",
  2874. "dependency injection"
  2875. ],
  2876. "support": {
  2877. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2878. },
  2879. "install-path": "../pimple/pimple"
  2880. },
  2881. {
  2882. "name": "psr/cache",
  2883. "version": "1.0.1",
  2884. "version_normalized": "1.0.1.0",
  2885. "source": {
  2886. "type": "git",
  2887. "url": "https://github.com/php-fig/cache.git",
  2888. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2889. },
  2890. "dist": {
  2891. "type": "zip",
  2892. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2893. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2894. "shasum": "",
  2895. "mirrors": [
  2896. {
  2897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2898. "preferred": true
  2899. }
  2900. ]
  2901. },
  2902. "require": {
  2903. "php": ">=5.3.0"
  2904. },
  2905. "time": "2016-08-06T20:24:11+00:00",
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "1.0.x-dev"
  2910. }
  2911. },
  2912. "installation-source": "dist",
  2913. "autoload": {
  2914. "psr-4": {
  2915. "Psr\\Cache\\": "src/"
  2916. }
  2917. },
  2918. "notification-url": "https://packagist.org/downloads/",
  2919. "license": [
  2920. "MIT"
  2921. ],
  2922. "authors": [
  2923. {
  2924. "name": "PHP-FIG",
  2925. "homepage": "http://www.php-fig.org/"
  2926. }
  2927. ],
  2928. "description": "Common interface for caching libraries",
  2929. "keywords": [
  2930. "cache",
  2931. "psr",
  2932. "psr-6"
  2933. ],
  2934. "install-path": "../psr/cache"
  2935. },
  2936. {
  2937. "name": "psr/container",
  2938. "version": "2.0.2",
  2939. "version_normalized": "2.0.2.0",
  2940. "source": {
  2941. "type": "git",
  2942. "url": "https://github.com/php-fig/container.git",
  2943. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2944. },
  2945. "dist": {
  2946. "type": "zip",
  2947. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2948. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2949. "shasum": ""
  2950. },
  2951. "require": {
  2952. "php": ">=7.4.0"
  2953. },
  2954. "time": "2021-11-05T16:47:00+00:00",
  2955. "type": "library",
  2956. "extra": {
  2957. "branch-alias": {
  2958. "dev-master": "2.0.x-dev"
  2959. }
  2960. },
  2961. "installation-source": "dist",
  2962. "autoload": {
  2963. "psr-4": {
  2964. "Psr\\Container\\": "src/"
  2965. }
  2966. },
  2967. "notification-url": "https://packagist.org/downloads/",
  2968. "license": [
  2969. "MIT"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "PHP-FIG",
  2974. "homepage": "https://www.php-fig.org/"
  2975. }
  2976. ],
  2977. "description": "Common Container Interface (PHP FIG PSR-11)",
  2978. "homepage": "https://github.com/php-fig/container",
  2979. "keywords": [
  2980. "PSR-11",
  2981. "container",
  2982. "container-interface",
  2983. "container-interop",
  2984. "psr"
  2985. ],
  2986. "support": {
  2987. "issues": "https://github.com/php-fig/container/issues",
  2988. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2989. },
  2990. "install-path": "../psr/container"
  2991. },
  2992. {
  2993. "name": "psr/event-dispatcher",
  2994. "version": "1.0.0",
  2995. "version_normalized": "1.0.0.0",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://github.com/php-fig/event-dispatcher.git",
  2999. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3004. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3005. "shasum": ""
  3006. },
  3007. "require": {
  3008. "php": ">=7.2.0"
  3009. },
  3010. "time": "2019-01-08T18:20:26+00:00",
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "1.0.x-dev"
  3015. }
  3016. },
  3017. "installation-source": "dist",
  3018. "autoload": {
  3019. "psr-4": {
  3020. "Psr\\EventDispatcher\\": "src/"
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "PHP-FIG",
  3030. "homepage": "http://www.php-fig.org/"
  3031. }
  3032. ],
  3033. "description": "Standard interfaces for event handling.",
  3034. "keywords": [
  3035. "events",
  3036. "psr",
  3037. "psr-14"
  3038. ],
  3039. "support": {
  3040. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3041. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3042. },
  3043. "install-path": "../psr/event-dispatcher"
  3044. },
  3045. {
  3046. "name": "psr/http-client",
  3047. "version": "1.0.1",
  3048. "version_normalized": "1.0.1.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/php-fig/http-client.git",
  3052. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3057. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3058. "shasum": ""
  3059. },
  3060. "require": {
  3061. "php": "^7.0 || ^8.0",
  3062. "psr/http-message": "^1.0"
  3063. },
  3064. "time": "2020-06-29T06:28:15+00:00",
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "1.0.x-dev"
  3069. }
  3070. },
  3071. "installation-source": "dist",
  3072. "autoload": {
  3073. "psr-4": {
  3074. "Psr\\Http\\Client\\": "src/"
  3075. }
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "PHP-FIG",
  3084. "homepage": "http://www.php-fig.org/"
  3085. }
  3086. ],
  3087. "description": "Common interface for HTTP clients",
  3088. "homepage": "https://github.com/php-fig/http-client",
  3089. "keywords": [
  3090. "http",
  3091. "http-client",
  3092. "psr",
  3093. "psr-18"
  3094. ],
  3095. "support": {
  3096. "source": "https://github.com/php-fig/http-client/tree/master"
  3097. },
  3098. "install-path": "../psr/http-client"
  3099. },
  3100. {
  3101. "name": "psr/http-factory",
  3102. "version": "1.0.1",
  3103. "version_normalized": "1.0.1.0",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/php-fig/http-factory.git",
  3107. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3112. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=7.0.0",
  3117. "psr/http-message": "^1.0"
  3118. },
  3119. "time": "2019-04-30T12:38:16+00:00",
  3120. "type": "library",
  3121. "extra": {
  3122. "branch-alias": {
  3123. "dev-master": "1.0.x-dev"
  3124. }
  3125. },
  3126. "installation-source": "dist",
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Psr\\Http\\Message\\": "src/"
  3130. }
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "PHP-FIG",
  3139. "homepage": "http://www.php-fig.org/"
  3140. }
  3141. ],
  3142. "description": "Common interfaces for PSR-7 HTTP message factories",
  3143. "keywords": [
  3144. "factory",
  3145. "http",
  3146. "message",
  3147. "psr",
  3148. "psr-17",
  3149. "psr-7",
  3150. "request",
  3151. "response"
  3152. ],
  3153. "support": {
  3154. "source": "https://github.com/php-fig/http-factory/tree/master"
  3155. },
  3156. "install-path": "../psr/http-factory"
  3157. },
  3158. {
  3159. "name": "psr/http-message",
  3160. "version": "1.0.1",
  3161. "version_normalized": "1.0.1.0",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/php-fig/http-message.git",
  3165. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3170. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "php": ">=5.3.0"
  3181. },
  3182. "time": "2016-08-06T14:39:51+00:00",
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "1.0.x-dev"
  3187. }
  3188. },
  3189. "installation-source": "dist",
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Psr\\Http\\Message\\": "src/"
  3193. }
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "authors": [
  3200. {
  3201. "name": "PHP-FIG",
  3202. "homepage": "http://www.php-fig.org/"
  3203. }
  3204. ],
  3205. "description": "Common interface for HTTP messages",
  3206. "homepage": "https://github.com/php-fig/http-message",
  3207. "keywords": [
  3208. "http",
  3209. "http-message",
  3210. "psr",
  3211. "psr-7",
  3212. "request",
  3213. "response"
  3214. ],
  3215. "install-path": "../psr/http-message"
  3216. },
  3217. {
  3218. "name": "psr/log",
  3219. "version": "1.1.4",
  3220. "version_normalized": "1.1.4.0",
  3221. "source": {
  3222. "type": "git",
  3223. "url": "https://github.com/php-fig/log.git",
  3224. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3225. },
  3226. "dist": {
  3227. "type": "zip",
  3228. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3229. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3230. "shasum": ""
  3231. },
  3232. "require": {
  3233. "php": ">=5.3.0"
  3234. },
  3235. "time": "2021-05-03T11:20:27+00:00",
  3236. "type": "library",
  3237. "extra": {
  3238. "branch-alias": {
  3239. "dev-master": "1.1.x-dev"
  3240. }
  3241. },
  3242. "installation-source": "dist",
  3243. "autoload": {
  3244. "psr-4": {
  3245. "Psr\\Log\\": "Psr/Log/"
  3246. }
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "PHP-FIG",
  3255. "homepage": "https://www.php-fig.org/"
  3256. }
  3257. ],
  3258. "description": "Common interface for logging libraries",
  3259. "homepage": "https://github.com/php-fig/log",
  3260. "keywords": [
  3261. "log",
  3262. "psr",
  3263. "psr-3"
  3264. ],
  3265. "support": {
  3266. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3267. },
  3268. "install-path": "../psr/log"
  3269. },
  3270. {
  3271. "name": "psr/simple-cache",
  3272. "version": "1.0.1",
  3273. "version_normalized": "1.0.1.0",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/php-fig/simple-cache.git",
  3277. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3282. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3283. "shasum": "",
  3284. "mirrors": [
  3285. {
  3286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3287. "preferred": true
  3288. }
  3289. ]
  3290. },
  3291. "require": {
  3292. "php": ">=5.3.0"
  3293. },
  3294. "time": "2017-10-23T01:57:42+00:00",
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-master": "1.0.x-dev"
  3299. }
  3300. },
  3301. "installation-source": "dist",
  3302. "autoload": {
  3303. "psr-4": {
  3304. "Psr\\SimpleCache\\": "src/"
  3305. }
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "MIT"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "PHP-FIG",
  3314. "homepage": "http://www.php-fig.org/"
  3315. }
  3316. ],
  3317. "description": "Common interfaces for simple caching",
  3318. "keywords": [
  3319. "cache",
  3320. "caching",
  3321. "psr",
  3322. "psr-16",
  3323. "simple-cache"
  3324. ],
  3325. "install-path": "../psr/simple-cache"
  3326. },
  3327. {
  3328. "name": "ralouphie/getallheaders",
  3329. "version": "3.0.3",
  3330. "version_normalized": "3.0.3.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/ralouphie/getallheaders.git",
  3334. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3339. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3340. "shasum": "",
  3341. "mirrors": [
  3342. {
  3343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3344. "preferred": true
  3345. }
  3346. ]
  3347. },
  3348. "require": {
  3349. "php": ">=5.6"
  3350. },
  3351. "require-dev": {
  3352. "php-coveralls/php-coveralls": "^2.1",
  3353. "phpunit/phpunit": "^5 || ^6.5"
  3354. },
  3355. "time": "2019-03-08T08:55:37+00:00",
  3356. "type": "library",
  3357. "installation-source": "dist",
  3358. "autoload": {
  3359. "files": [
  3360. "src/getallheaders.php"
  3361. ]
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "MIT"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Ralph Khattar",
  3370. "email": "ralph.khattar@gmail.com"
  3371. }
  3372. ],
  3373. "description": "A polyfill for getallheaders.",
  3374. "install-path": "../ralouphie/getallheaders"
  3375. },
  3376. {
  3377. "name": "setasign/fpdi",
  3378. "version": "v2.3.6",
  3379. "version_normalized": "2.3.6.0",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/Setasign/FPDI.git",
  3383. "reference": "6231e315f73e4f62d72b73f3d6d78ff0eed93c31"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/6231e315f73e4f62d72b73f3d6d78ff0eed93c31",
  3388. "reference": "6231e315f73e4f62d72b73f3d6d78ff0eed93c31",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "ext-zlib": "*",
  3393. "php": "^5.6 || ^7.0 || ^8.0"
  3394. },
  3395. "conflict": {
  3396. "setasign/tfpdf": "<1.31"
  3397. },
  3398. "require-dev": {
  3399. "phpunit/phpunit": "~5.7",
  3400. "setasign/fpdf": "~1.8",
  3401. "setasign/tfpdf": "1.31",
  3402. "squizlabs/php_codesniffer": "^3.5",
  3403. "tecnickcom/tcpdf": "~6.2"
  3404. },
  3405. "suggest": {
  3406. "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
  3407. },
  3408. "time": "2021-02-11T11:37:01+00:00",
  3409. "type": "library",
  3410. "installation-source": "dist",
  3411. "autoload": {
  3412. "psr-4": {
  3413. "setasign\\Fpdi\\": "src/"
  3414. }
  3415. },
  3416. "notification-url": "https://packagist.org/downloads/",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Jan Slabon",
  3423. "email": "jan.slabon@setasign.com",
  3424. "homepage": "https://www.setasign.com"
  3425. },
  3426. {
  3427. "name": "Maximilian Kresse",
  3428. "email": "maximilian.kresse@setasign.com",
  3429. "homepage": "https://www.setasign.com"
  3430. }
  3431. ],
  3432. "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
  3433. "homepage": "https://www.setasign.com/fpdi",
  3434. "keywords": [
  3435. "fpdf",
  3436. "fpdi",
  3437. "pdf"
  3438. ],
  3439. "support": {
  3440. "issues": "https://github.com/Setasign/FPDI/issues",
  3441. "source": "https://github.com/Setasign/FPDI/tree/v2.3.6"
  3442. },
  3443. "funding": [
  3444. {
  3445. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  3446. "type": "tidelift"
  3447. }
  3448. ],
  3449. "install-path": "../setasign/fpdi"
  3450. },
  3451. {
  3452. "name": "symfony/cache",
  3453. "version": "v5.4.15",
  3454. "version_normalized": "5.4.15.0",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/symfony/cache.git",
  3458. "reference": "60e87188abbacd29ccde44d69c5392a33e888e98"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/symfony/cache/zipball/60e87188abbacd29ccde44d69c5392a33e888e98",
  3463. "reference": "60e87188abbacd29ccde44d69c5392a33e888e98",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "php": ">=7.2.5",
  3468. "psr/cache": "^1.0|^2.0",
  3469. "psr/log": "^1.1|^2|^3",
  3470. "symfony/cache-contracts": "^1.1.7|^2",
  3471. "symfony/deprecation-contracts": "^2.1|^3",
  3472. "symfony/polyfill-php73": "^1.9",
  3473. "symfony/polyfill-php80": "^1.16",
  3474. "symfony/service-contracts": "^1.1|^2|^3",
  3475. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3476. },
  3477. "conflict": {
  3478. "doctrine/dbal": "<2.13.1",
  3479. "symfony/dependency-injection": "<4.4",
  3480. "symfony/http-kernel": "<4.4",
  3481. "symfony/var-dumper": "<4.4"
  3482. },
  3483. "provide": {
  3484. "psr/cache-implementation": "1.0|2.0",
  3485. "psr/simple-cache-implementation": "1.0|2.0",
  3486. "symfony/cache-implementation": "1.0|2.0"
  3487. },
  3488. "require-dev": {
  3489. "cache/integration-tests": "dev-master",
  3490. "doctrine/cache": "^1.6|^2.0",
  3491. "doctrine/dbal": "^2.13.1|^3.0",
  3492. "predis/predis": "^1.1",
  3493. "psr/simple-cache": "^1.0|^2.0",
  3494. "symfony/config": "^4.4|^5.0|^6.0",
  3495. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3496. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3497. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3498. "symfony/messenger": "^4.4|^5.0|^6.0",
  3499. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3500. },
  3501. "time": "2022-10-27T07:55:40+00:00",
  3502. "type": "library",
  3503. "installation-source": "dist",
  3504. "autoload": {
  3505. "psr-4": {
  3506. "Symfony\\Component\\Cache\\": ""
  3507. },
  3508. "exclude-from-classmap": [
  3509. "/Tests/"
  3510. ]
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Nicolas Grekas",
  3519. "email": "p@tchwork.com"
  3520. },
  3521. {
  3522. "name": "Symfony Community",
  3523. "homepage": "https://symfony.com/contributors"
  3524. }
  3525. ],
  3526. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3527. "homepage": "https://symfony.com",
  3528. "keywords": [
  3529. "caching",
  3530. "psr6"
  3531. ],
  3532. "support": {
  3533. "source": "https://github.com/symfony/cache/tree/v5.4.15"
  3534. },
  3535. "funding": [
  3536. {
  3537. "url": "https://symfony.com/sponsor",
  3538. "type": "custom"
  3539. },
  3540. {
  3541. "url": "https://github.com/fabpot",
  3542. "type": "github"
  3543. },
  3544. {
  3545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3546. "type": "tidelift"
  3547. }
  3548. ],
  3549. "install-path": "../symfony/cache"
  3550. },
  3551. {
  3552. "name": "symfony/cache-contracts",
  3553. "version": "v2.5.2",
  3554. "version_normalized": "2.5.2.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/symfony/cache-contracts.git",
  3558. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3563. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3564. "shasum": ""
  3565. },
  3566. "require": {
  3567. "php": ">=7.2.5",
  3568. "psr/cache": "^1.0|^2.0|^3.0"
  3569. },
  3570. "suggest": {
  3571. "symfony/cache-implementation": ""
  3572. },
  3573. "time": "2022-01-02T09:53:40+00:00",
  3574. "type": "library",
  3575. "extra": {
  3576. "branch-alias": {
  3577. "dev-main": "2.5-dev"
  3578. },
  3579. "thanks": {
  3580. "name": "symfony/contracts",
  3581. "url": "https://github.com/symfony/contracts"
  3582. }
  3583. },
  3584. "installation-source": "dist",
  3585. "autoload": {
  3586. "psr-4": {
  3587. "Symfony\\Contracts\\Cache\\": ""
  3588. }
  3589. },
  3590. "notification-url": "https://packagist.org/downloads/",
  3591. "license": [
  3592. "MIT"
  3593. ],
  3594. "authors": [
  3595. {
  3596. "name": "Nicolas Grekas",
  3597. "email": "p@tchwork.com"
  3598. },
  3599. {
  3600. "name": "Symfony Community",
  3601. "homepage": "https://symfony.com/contributors"
  3602. }
  3603. ],
  3604. "description": "Generic abstractions related to caching",
  3605. "homepage": "https://symfony.com",
  3606. "keywords": [
  3607. "abstractions",
  3608. "contracts",
  3609. "decoupling",
  3610. "interfaces",
  3611. "interoperability",
  3612. "standards"
  3613. ],
  3614. "support": {
  3615. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  3616. },
  3617. "funding": [
  3618. {
  3619. "url": "https://symfony.com/sponsor",
  3620. "type": "custom"
  3621. },
  3622. {
  3623. "url": "https://github.com/fabpot",
  3624. "type": "github"
  3625. },
  3626. {
  3627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3628. "type": "tidelift"
  3629. }
  3630. ],
  3631. "install-path": "../symfony/cache-contracts"
  3632. },
  3633. {
  3634. "name": "symfony/deprecation-contracts",
  3635. "version": "v2.5.2",
  3636. "version_normalized": "2.5.2.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/symfony/deprecation-contracts.git",
  3640. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3645. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "php": ">=7.1"
  3650. },
  3651. "time": "2022-01-02T09:53:40+00:00",
  3652. "type": "library",
  3653. "extra": {
  3654. "branch-alias": {
  3655. "dev-main": "2.5-dev"
  3656. },
  3657. "thanks": {
  3658. "name": "symfony/contracts",
  3659. "url": "https://github.com/symfony/contracts"
  3660. }
  3661. },
  3662. "installation-source": "dist",
  3663. "autoload": {
  3664. "files": [
  3665. "function.php"
  3666. ]
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "Nicolas Grekas",
  3675. "email": "p@tchwork.com"
  3676. },
  3677. {
  3678. "name": "Symfony Community",
  3679. "homepage": "https://symfony.com/contributors"
  3680. }
  3681. ],
  3682. "description": "A generic function and convention to trigger deprecation notices",
  3683. "homepage": "https://symfony.com",
  3684. "support": {
  3685. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3686. },
  3687. "funding": [
  3688. {
  3689. "url": "https://symfony.com/sponsor",
  3690. "type": "custom"
  3691. },
  3692. {
  3693. "url": "https://github.com/fabpot",
  3694. "type": "github"
  3695. },
  3696. {
  3697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3698. "type": "tidelift"
  3699. }
  3700. ],
  3701. "install-path": "../symfony/deprecation-contracts"
  3702. },
  3703. {
  3704. "name": "symfony/event-dispatcher",
  3705. "version": "v5.4.9",
  3706. "version_normalized": "5.4.9.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/symfony/event-dispatcher.git",
  3710. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3715. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "php": ">=7.2.5",
  3720. "symfony/deprecation-contracts": "^2.1|^3",
  3721. "symfony/event-dispatcher-contracts": "^2|^3",
  3722. "symfony/polyfill-php80": "^1.16"
  3723. },
  3724. "conflict": {
  3725. "symfony/dependency-injection": "<4.4"
  3726. },
  3727. "provide": {
  3728. "psr/event-dispatcher-implementation": "1.0",
  3729. "symfony/event-dispatcher-implementation": "2.0"
  3730. },
  3731. "require-dev": {
  3732. "psr/log": "^1|^2|^3",
  3733. "symfony/config": "^4.4|^5.0|^6.0",
  3734. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3735. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3736. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3737. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3738. "symfony/service-contracts": "^1.1|^2|^3",
  3739. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3740. },
  3741. "suggest": {
  3742. "symfony/dependency-injection": "",
  3743. "symfony/http-kernel": ""
  3744. },
  3745. "time": "2022-05-05T16:45:39+00:00",
  3746. "type": "library",
  3747. "installation-source": "dist",
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Symfony\\Component\\EventDispatcher\\": ""
  3751. },
  3752. "exclude-from-classmap": [
  3753. "/Tests/"
  3754. ]
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Fabien Potencier",
  3763. "email": "fabien@symfony.com"
  3764. },
  3765. {
  3766. "name": "Symfony Community",
  3767. "homepage": "https://symfony.com/contributors"
  3768. }
  3769. ],
  3770. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3771. "homepage": "https://symfony.com",
  3772. "support": {
  3773. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3774. },
  3775. "funding": [
  3776. {
  3777. "url": "https://symfony.com/sponsor",
  3778. "type": "custom"
  3779. },
  3780. {
  3781. "url": "https://github.com/fabpot",
  3782. "type": "github"
  3783. },
  3784. {
  3785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3786. "type": "tidelift"
  3787. }
  3788. ],
  3789. "install-path": "../symfony/event-dispatcher"
  3790. },
  3791. {
  3792. "name": "symfony/event-dispatcher-contracts",
  3793. "version": "v2.5.2",
  3794. "version_normalized": "2.5.2.0",
  3795. "source": {
  3796. "type": "git",
  3797. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3798. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3799. },
  3800. "dist": {
  3801. "type": "zip",
  3802. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3803. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3804. "shasum": ""
  3805. },
  3806. "require": {
  3807. "php": ">=7.2.5",
  3808. "psr/event-dispatcher": "^1"
  3809. },
  3810. "suggest": {
  3811. "symfony/event-dispatcher-implementation": ""
  3812. },
  3813. "time": "2022-01-02T09:53:40+00:00",
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-main": "2.5-dev"
  3818. },
  3819. "thanks": {
  3820. "name": "symfony/contracts",
  3821. "url": "https://github.com/symfony/contracts"
  3822. }
  3823. },
  3824. "installation-source": "dist",
  3825. "autoload": {
  3826. "psr-4": {
  3827. "Symfony\\Contracts\\EventDispatcher\\": ""
  3828. }
  3829. },
  3830. "notification-url": "https://packagist.org/downloads/",
  3831. "license": [
  3832. "MIT"
  3833. ],
  3834. "authors": [
  3835. {
  3836. "name": "Nicolas Grekas",
  3837. "email": "p@tchwork.com"
  3838. },
  3839. {
  3840. "name": "Symfony Community",
  3841. "homepage": "https://symfony.com/contributors"
  3842. }
  3843. ],
  3844. "description": "Generic abstractions related to dispatching event",
  3845. "homepage": "https://symfony.com",
  3846. "keywords": [
  3847. "abstractions",
  3848. "contracts",
  3849. "decoupling",
  3850. "interfaces",
  3851. "interoperability",
  3852. "standards"
  3853. ],
  3854. "support": {
  3855. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3856. },
  3857. "funding": [
  3858. {
  3859. "url": "https://symfony.com/sponsor",
  3860. "type": "custom"
  3861. },
  3862. {
  3863. "url": "https://github.com/fabpot",
  3864. "type": "github"
  3865. },
  3866. {
  3867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3868. "type": "tidelift"
  3869. }
  3870. ],
  3871. "install-path": "../symfony/event-dispatcher-contracts"
  3872. },
  3873. {
  3874. "name": "symfony/finder",
  3875. "version": "v5.4.11",
  3876. "version_normalized": "5.4.11.0",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/symfony/finder.git",
  3880. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3885. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3886. "shasum": ""
  3887. },
  3888. "require": {
  3889. "php": ">=7.2.5",
  3890. "symfony/deprecation-contracts": "^2.1|^3",
  3891. "symfony/polyfill-php80": "^1.16"
  3892. },
  3893. "time": "2022-07-29T07:37:50+00:00",
  3894. "type": "library",
  3895. "installation-source": "dist",
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Symfony\\Component\\Finder\\": ""
  3899. },
  3900. "exclude-from-classmap": [
  3901. "/Tests/"
  3902. ]
  3903. },
  3904. "notification-url": "https://packagist.org/downloads/",
  3905. "license": [
  3906. "MIT"
  3907. ],
  3908. "authors": [
  3909. {
  3910. "name": "Fabien Potencier",
  3911. "email": "fabien@symfony.com"
  3912. },
  3913. {
  3914. "name": "Symfony Community",
  3915. "homepage": "https://symfony.com/contributors"
  3916. }
  3917. ],
  3918. "description": "Finds files and directories via an intuitive fluent interface",
  3919. "homepage": "https://symfony.com",
  3920. "support": {
  3921. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  3922. },
  3923. "funding": [
  3924. {
  3925. "url": "https://symfony.com/sponsor",
  3926. "type": "custom"
  3927. },
  3928. {
  3929. "url": "https://github.com/fabpot",
  3930. "type": "github"
  3931. },
  3932. {
  3933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3934. "type": "tidelift"
  3935. }
  3936. ],
  3937. "install-path": "../symfony/finder"
  3938. },
  3939. {
  3940. "name": "symfony/http-foundation",
  3941. "version": "v5.4.16",
  3942. "version_normalized": "5.4.16.0",
  3943. "source": {
  3944. "type": "git",
  3945. "url": "https://github.com/symfony/http-foundation.git",
  3946. "reference": "5032c5849aef24741e1970cb03511b0dd131d838"
  3947. },
  3948. "dist": {
  3949. "type": "zip",
  3950. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5032c5849aef24741e1970cb03511b0dd131d838",
  3951. "reference": "5032c5849aef24741e1970cb03511b0dd131d838",
  3952. "shasum": ""
  3953. },
  3954. "require": {
  3955. "php": ">=7.2.5",
  3956. "symfony/deprecation-contracts": "^2.1|^3",
  3957. "symfony/polyfill-mbstring": "~1.1",
  3958. "symfony/polyfill-php80": "^1.16"
  3959. },
  3960. "require-dev": {
  3961. "predis/predis": "~1.0",
  3962. "symfony/cache": "^4.4|^5.0|^6.0",
  3963. "symfony/dependency-injection": "^5.4|^6.0",
  3964. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3965. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3966. "symfony/mime": "^4.4|^5.0|^6.0",
  3967. "symfony/rate-limiter": "^5.2|^6.0"
  3968. },
  3969. "suggest": {
  3970. "symfony/mime": "To use the file extension guesser"
  3971. },
  3972. "time": "2022-11-07T08:06:40+00:00",
  3973. "type": "library",
  3974. "installation-source": "dist",
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Symfony\\Component\\HttpFoundation\\": ""
  3978. },
  3979. "exclude-from-classmap": [
  3980. "/Tests/"
  3981. ]
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "Fabien Potencier",
  3990. "email": "fabien@symfony.com"
  3991. },
  3992. {
  3993. "name": "Symfony Community",
  3994. "homepage": "https://symfony.com/contributors"
  3995. }
  3996. ],
  3997. "description": "Defines an object-oriented layer for the HTTP specification",
  3998. "homepage": "https://symfony.com",
  3999. "support": {
  4000. "source": "https://github.com/symfony/http-foundation/tree/v5.4.16"
  4001. },
  4002. "funding": [
  4003. {
  4004. "url": "https://symfony.com/sponsor",
  4005. "type": "custom"
  4006. },
  4007. {
  4008. "url": "https://github.com/fabpot",
  4009. "type": "github"
  4010. },
  4011. {
  4012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4013. "type": "tidelift"
  4014. }
  4015. ],
  4016. "install-path": "../symfony/http-foundation"
  4017. },
  4018. {
  4019. "name": "symfony/polyfill-ctype",
  4020. "version": "v1.27.0",
  4021. "version_normalized": "1.27.0.0",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/symfony/polyfill-ctype.git",
  4025. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  4030. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "php": ">=7.1"
  4035. },
  4036. "provide": {
  4037. "ext-ctype": "*"
  4038. },
  4039. "suggest": {
  4040. "ext-ctype": "For best performance"
  4041. },
  4042. "time": "2022-11-03T14:55:06+00:00",
  4043. "type": "library",
  4044. "extra": {
  4045. "branch-alias": {
  4046. "dev-main": "1.27-dev"
  4047. },
  4048. "thanks": {
  4049. "name": "symfony/polyfill",
  4050. "url": "https://github.com/symfony/polyfill"
  4051. }
  4052. },
  4053. "installation-source": "dist",
  4054. "autoload": {
  4055. "files": [
  4056. "bootstrap.php"
  4057. ],
  4058. "psr-4": {
  4059. "Symfony\\Polyfill\\Ctype\\": ""
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "authors": [
  4067. {
  4068. "name": "Gert de Pagter",
  4069. "email": "BackEndTea@gmail.com"
  4070. },
  4071. {
  4072. "name": "Symfony Community",
  4073. "homepage": "https://symfony.com/contributors"
  4074. }
  4075. ],
  4076. "description": "Symfony polyfill for ctype functions",
  4077. "homepage": "https://symfony.com",
  4078. "keywords": [
  4079. "compatibility",
  4080. "ctype",
  4081. "polyfill",
  4082. "portable"
  4083. ],
  4084. "support": {
  4085. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  4086. },
  4087. "funding": [
  4088. {
  4089. "url": "https://symfony.com/sponsor",
  4090. "type": "custom"
  4091. },
  4092. {
  4093. "url": "https://github.com/fabpot",
  4094. "type": "github"
  4095. },
  4096. {
  4097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4098. "type": "tidelift"
  4099. }
  4100. ],
  4101. "install-path": "../symfony/polyfill-ctype"
  4102. },
  4103. {
  4104. "name": "symfony/polyfill-mbstring",
  4105. "version": "v1.27.0",
  4106. "version_normalized": "1.27.0.0",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4110. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4115. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4116. "shasum": ""
  4117. },
  4118. "require": {
  4119. "php": ">=7.1"
  4120. },
  4121. "provide": {
  4122. "ext-mbstring": "*"
  4123. },
  4124. "suggest": {
  4125. "ext-mbstring": "For best performance"
  4126. },
  4127. "time": "2022-11-03T14:55:06+00:00",
  4128. "type": "library",
  4129. "extra": {
  4130. "branch-alias": {
  4131. "dev-main": "1.27-dev"
  4132. },
  4133. "thanks": {
  4134. "name": "symfony/polyfill",
  4135. "url": "https://github.com/symfony/polyfill"
  4136. }
  4137. },
  4138. "installation-source": "dist",
  4139. "autoload": {
  4140. "files": [
  4141. "bootstrap.php"
  4142. ],
  4143. "psr-4": {
  4144. "Symfony\\Polyfill\\Mbstring\\": ""
  4145. }
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "MIT"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Nicolas Grekas",
  4154. "email": "p@tchwork.com"
  4155. },
  4156. {
  4157. "name": "Symfony Community",
  4158. "homepage": "https://symfony.com/contributors"
  4159. }
  4160. ],
  4161. "description": "Symfony polyfill for the Mbstring extension",
  4162. "homepage": "https://symfony.com",
  4163. "keywords": [
  4164. "compatibility",
  4165. "mbstring",
  4166. "polyfill",
  4167. "portable",
  4168. "shim"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4172. },
  4173. "funding": [
  4174. {
  4175. "url": "https://symfony.com/sponsor",
  4176. "type": "custom"
  4177. },
  4178. {
  4179. "url": "https://github.com/fabpot",
  4180. "type": "github"
  4181. },
  4182. {
  4183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4184. "type": "tidelift"
  4185. }
  4186. ],
  4187. "install-path": "../symfony/polyfill-mbstring"
  4188. },
  4189. {
  4190. "name": "symfony/polyfill-php73",
  4191. "version": "v1.27.0",
  4192. "version_normalized": "1.27.0.0",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/symfony/polyfill-php73.git",
  4196. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4201. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4202. "shasum": ""
  4203. },
  4204. "require": {
  4205. "php": ">=7.1"
  4206. },
  4207. "time": "2022-11-03T14:55:06+00:00",
  4208. "type": "library",
  4209. "extra": {
  4210. "branch-alias": {
  4211. "dev-main": "1.27-dev"
  4212. },
  4213. "thanks": {
  4214. "name": "symfony/polyfill",
  4215. "url": "https://github.com/symfony/polyfill"
  4216. }
  4217. },
  4218. "installation-source": "dist",
  4219. "autoload": {
  4220. "files": [
  4221. "bootstrap.php"
  4222. ],
  4223. "psr-4": {
  4224. "Symfony\\Polyfill\\Php73\\": ""
  4225. },
  4226. "classmap": [
  4227. "Resources/stubs"
  4228. ]
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Nicolas Grekas",
  4237. "email": "p@tchwork.com"
  4238. },
  4239. {
  4240. "name": "Symfony Community",
  4241. "homepage": "https://symfony.com/contributors"
  4242. }
  4243. ],
  4244. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4245. "homepage": "https://symfony.com",
  4246. "keywords": [
  4247. "compatibility",
  4248. "polyfill",
  4249. "portable",
  4250. "shim"
  4251. ],
  4252. "support": {
  4253. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4254. },
  4255. "funding": [
  4256. {
  4257. "url": "https://symfony.com/sponsor",
  4258. "type": "custom"
  4259. },
  4260. {
  4261. "url": "https://github.com/fabpot",
  4262. "type": "github"
  4263. },
  4264. {
  4265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4266. "type": "tidelift"
  4267. }
  4268. ],
  4269. "install-path": "../symfony/polyfill-php73"
  4270. },
  4271. {
  4272. "name": "symfony/polyfill-php80",
  4273. "version": "v1.27.0",
  4274. "version_normalized": "1.27.0.0",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://github.com/symfony/polyfill-php80.git",
  4278. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4283. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4284. "shasum": ""
  4285. },
  4286. "require": {
  4287. "php": ">=7.1"
  4288. },
  4289. "time": "2022-11-03T14:55:06+00:00",
  4290. "type": "library",
  4291. "extra": {
  4292. "branch-alias": {
  4293. "dev-main": "1.27-dev"
  4294. },
  4295. "thanks": {
  4296. "name": "symfony/polyfill",
  4297. "url": "https://github.com/symfony/polyfill"
  4298. }
  4299. },
  4300. "installation-source": "dist",
  4301. "autoload": {
  4302. "files": [
  4303. "bootstrap.php"
  4304. ],
  4305. "psr-4": {
  4306. "Symfony\\Polyfill\\Php80\\": ""
  4307. },
  4308. "classmap": [
  4309. "Resources/stubs"
  4310. ]
  4311. },
  4312. "notification-url": "https://packagist.org/downloads/",
  4313. "license": [
  4314. "MIT"
  4315. ],
  4316. "authors": [
  4317. {
  4318. "name": "Ion Bazan",
  4319. "email": "ion.bazan@gmail.com"
  4320. },
  4321. {
  4322. "name": "Nicolas Grekas",
  4323. "email": "p@tchwork.com"
  4324. },
  4325. {
  4326. "name": "Symfony Community",
  4327. "homepage": "https://symfony.com/contributors"
  4328. }
  4329. ],
  4330. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4331. "homepage": "https://symfony.com",
  4332. "keywords": [
  4333. "compatibility",
  4334. "polyfill",
  4335. "portable",
  4336. "shim"
  4337. ],
  4338. "support": {
  4339. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4340. },
  4341. "funding": [
  4342. {
  4343. "url": "https://symfony.com/sponsor",
  4344. "type": "custom"
  4345. },
  4346. {
  4347. "url": "https://github.com/fabpot",
  4348. "type": "github"
  4349. },
  4350. {
  4351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4352. "type": "tidelift"
  4353. }
  4354. ],
  4355. "install-path": "../symfony/polyfill-php80"
  4356. },
  4357. {
  4358. "name": "symfony/psr-http-message-bridge",
  4359. "version": "v2.1.4",
  4360. "version_normalized": "2.1.4.0",
  4361. "source": {
  4362. "type": "git",
  4363. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4364. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  4365. },
  4366. "dist": {
  4367. "type": "zip",
  4368. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  4369. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  4370. "shasum": ""
  4371. },
  4372. "require": {
  4373. "php": ">=7.1",
  4374. "psr/http-message": "^1.0",
  4375. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  4376. },
  4377. "require-dev": {
  4378. "nyholm/psr7": "^1.1",
  4379. "psr/log": "^1.1 || ^2 || ^3",
  4380. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  4381. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  4382. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  4383. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  4384. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  4385. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  4386. },
  4387. "suggest": {
  4388. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4389. },
  4390. "time": "2022-11-28T22:46:34+00:00",
  4391. "type": "symfony-bridge",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-main": "2.1-dev"
  4395. }
  4396. },
  4397. "installation-source": "dist",
  4398. "autoload": {
  4399. "psr-4": {
  4400. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4401. },
  4402. "exclude-from-classmap": [
  4403. "/Tests/"
  4404. ]
  4405. },
  4406. "notification-url": "https://packagist.org/downloads/",
  4407. "license": [
  4408. "MIT"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Fabien Potencier",
  4413. "email": "fabien@symfony.com"
  4414. },
  4415. {
  4416. "name": "Symfony Community",
  4417. "homepage": "http://symfony.com/contributors"
  4418. }
  4419. ],
  4420. "description": "PSR HTTP message bridge",
  4421. "homepage": "http://symfony.com",
  4422. "keywords": [
  4423. "http",
  4424. "http-message",
  4425. "psr-17",
  4426. "psr-7"
  4427. ],
  4428. "support": {
  4429. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4430. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  4431. },
  4432. "funding": [
  4433. {
  4434. "url": "https://symfony.com/sponsor",
  4435. "type": "custom"
  4436. },
  4437. {
  4438. "url": "https://github.com/fabpot",
  4439. "type": "github"
  4440. },
  4441. {
  4442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4443. "type": "tidelift"
  4444. }
  4445. ],
  4446. "install-path": "../symfony/psr-http-message-bridge"
  4447. },
  4448. {
  4449. "name": "symfony/service-contracts",
  4450. "version": "v1.1.2",
  4451. "version_normalized": "1.1.2.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/symfony/service-contracts.git",
  4455. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4460. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "php": "^7.1.3"
  4465. },
  4466. "suggest": {
  4467. "psr/container": "",
  4468. "symfony/service-implementation": ""
  4469. },
  4470. "time": "2019-05-28T07:50:59+00:00",
  4471. "type": "library",
  4472. "extra": {
  4473. "branch-alias": {
  4474. "dev-master": "1.1-dev"
  4475. }
  4476. },
  4477. "installation-source": "dist",
  4478. "autoload": {
  4479. "psr-4": {
  4480. "Symfony\\Contracts\\Service\\": ""
  4481. }
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Nicolas Grekas",
  4490. "email": "p@tchwork.com"
  4491. },
  4492. {
  4493. "name": "Symfony Community",
  4494. "homepage": "https://symfony.com/contributors"
  4495. }
  4496. ],
  4497. "description": "Generic abstractions related to writing services",
  4498. "homepage": "https://symfony.com",
  4499. "keywords": [
  4500. "abstractions",
  4501. "contracts",
  4502. "decoupling",
  4503. "interfaces",
  4504. "interoperability",
  4505. "standards"
  4506. ],
  4507. "support": {
  4508. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4509. },
  4510. "install-path": "../symfony/service-contracts"
  4511. },
  4512. {
  4513. "name": "symfony/translation",
  4514. "version": "v3.2.14",
  4515. "version_normalized": "3.2.14.0",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/symfony/translation.git",
  4519. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  4524. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  4525. "shasum": ""
  4526. },
  4527. "require": {
  4528. "php": ">=5.5.9",
  4529. "symfony/polyfill-mbstring": "~1.0"
  4530. },
  4531. "conflict": {
  4532. "symfony/config": "<2.8"
  4533. },
  4534. "require-dev": {
  4535. "psr/log": "~1.0",
  4536. "symfony/config": "~2.8|~3.0",
  4537. "symfony/intl": "^2.8.18|^3.2.5",
  4538. "symfony/yaml": "~2.8|~3.0"
  4539. },
  4540. "suggest": {
  4541. "psr/log": "To use logging capability in translator",
  4542. "symfony/config": "",
  4543. "symfony/yaml": ""
  4544. },
  4545. "time": "2017-06-24T16:45:17+00:00",
  4546. "type": "library",
  4547. "extra": {
  4548. "branch-alias": {
  4549. "dev-master": "3.2-dev"
  4550. }
  4551. },
  4552. "installation-source": "dist",
  4553. "autoload": {
  4554. "psr-4": {
  4555. "Symfony\\Component\\Translation\\": ""
  4556. },
  4557. "exclude-from-classmap": [
  4558. "/Tests/"
  4559. ]
  4560. },
  4561. "notification-url": "https://packagist.org/downloads/",
  4562. "license": [
  4563. "MIT"
  4564. ],
  4565. "authors": [
  4566. {
  4567. "name": "Fabien Potencier",
  4568. "email": "fabien@symfony.com"
  4569. },
  4570. {
  4571. "name": "Symfony Community",
  4572. "homepage": "https://symfony.com/contributors"
  4573. }
  4574. ],
  4575. "description": "Symfony Translation Component",
  4576. "homepage": "https://symfony.com",
  4577. "support": {
  4578. "source": "https://github.com/symfony/translation/tree/3.2"
  4579. },
  4580. "install-path": "../symfony/translation"
  4581. },
  4582. {
  4583. "name": "symfony/var-exporter",
  4584. "version": "v4.4.43",
  4585. "version_normalized": "4.4.43.0",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/symfony/var-exporter.git",
  4589. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  4594. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  4595. "shasum": ""
  4596. },
  4597. "require": {
  4598. "php": ">=7.1.3",
  4599. "symfony/polyfill-php80": "^1.16"
  4600. },
  4601. "require-dev": {
  4602. "symfony/var-dumper": "^4.4.9|^5.0.9"
  4603. },
  4604. "time": "2022-05-27T11:44:32+00:00",
  4605. "type": "library",
  4606. "installation-source": "dist",
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Symfony\\Component\\VarExporter\\": ""
  4610. },
  4611. "exclude-from-classmap": [
  4612. "/Tests/"
  4613. ]
  4614. },
  4615. "notification-url": "https://packagist.org/downloads/",
  4616. "license": [
  4617. "MIT"
  4618. ],
  4619. "authors": [
  4620. {
  4621. "name": "Nicolas Grekas",
  4622. "email": "p@tchwork.com"
  4623. },
  4624. {
  4625. "name": "Symfony Community",
  4626. "homepage": "https://symfony.com/contributors"
  4627. }
  4628. ],
  4629. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4630. "homepage": "https://symfony.com",
  4631. "keywords": [
  4632. "clone",
  4633. "construct",
  4634. "export",
  4635. "hydrate",
  4636. "instantiate",
  4637. "serialize"
  4638. ],
  4639. "support": {
  4640. "source": "https://github.com/symfony/var-exporter/tree/v4.4.43"
  4641. },
  4642. "funding": [
  4643. {
  4644. "url": "https://symfony.com/sponsor",
  4645. "type": "custom"
  4646. },
  4647. {
  4648. "url": "https://github.com/fabpot",
  4649. "type": "github"
  4650. },
  4651. {
  4652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4653. "type": "tidelift"
  4654. }
  4655. ],
  4656. "install-path": "../symfony/var-exporter"
  4657. },
  4658. {
  4659. "name": "symfony/yaml",
  4660. "version": "v2.8.52",
  4661. "version_normalized": "2.8.52.0",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://github.com/symfony/yaml.git",
  4665. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4670. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4671. "shasum": ""
  4672. },
  4673. "require": {
  4674. "php": ">=5.3.9",
  4675. "symfony/polyfill-ctype": "~1.8"
  4676. },
  4677. "time": "2018-11-11T11:18:13+00:00",
  4678. "type": "library",
  4679. "extra": {
  4680. "branch-alias": {
  4681. "dev-master": "2.8-dev"
  4682. }
  4683. },
  4684. "installation-source": "dist",
  4685. "autoload": {
  4686. "psr-4": {
  4687. "Symfony\\Component\\Yaml\\": ""
  4688. },
  4689. "exclude-from-classmap": [
  4690. "/Tests/"
  4691. ]
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Fabien Potencier",
  4700. "email": "fabien@symfony.com"
  4701. },
  4702. {
  4703. "name": "Symfony Community",
  4704. "homepage": "https://symfony.com/contributors"
  4705. }
  4706. ],
  4707. "description": "Symfony Yaml Component",
  4708. "homepage": "https://symfony.com",
  4709. "support": {
  4710. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4711. },
  4712. "install-path": "../symfony/yaml"
  4713. },
  4714. {
  4715. "name": "topthink/framework",
  4716. "version": "dev-master",
  4717. "version_normalized": "dev-master",
  4718. "source": {
  4719. "type": "git",
  4720. "url": "https://gitee.com/karson/framework",
  4721. "reference": "0999d4733451e6c219c3e99090fa2cccb19115a6"
  4722. },
  4723. "require": {
  4724. "php": ">=7.1.0",
  4725. "topthink/think-installer": "~1.0"
  4726. },
  4727. "require-dev": {
  4728. "johnkary/phpunit-speedtrap": "^1.0",
  4729. "mikey179/vfsstream": "~1.6",
  4730. "phpdocumentor/reflection-docblock": "^2.0",
  4731. "phploc/phploc": "2.*",
  4732. "phpunit/phpunit": "4.8.*",
  4733. "sebastian/phpcpd": "2.*"
  4734. },
  4735. "time": "2022-05-07T15:02:42+00:00",
  4736. "default-branch": true,
  4737. "type": "think-framework",
  4738. "installation-source": "source",
  4739. "autoload": {
  4740. "psr-4": {
  4741. "think\\": "library/think"
  4742. }
  4743. },
  4744. "license": [
  4745. "Apache-2.0"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "liu21st",
  4750. "email": "liu21st@gmail.com"
  4751. }
  4752. ],
  4753. "description": "the new thinkphp framework",
  4754. "homepage": "http://thinkphp.cn/",
  4755. "keywords": [
  4756. "ORM",
  4757. "framework",
  4758. "thinkphp"
  4759. ],
  4760. "install-path": "../../thinkphp"
  4761. },
  4762. {
  4763. "name": "topthink/think-captcha",
  4764. "version": "v1.0.7",
  4765. "version_normalized": "1.0.7.0",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/top-think/think-captcha.git",
  4769. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0c55455df26a1626a60d0dc35d2d89002b741d44",
  4774. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  4775. "shasum": "",
  4776. "mirrors": [
  4777. {
  4778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4779. "preferred": true
  4780. }
  4781. ]
  4782. },
  4783. "time": "2016-07-06T01:47:11+00:00",
  4784. "type": "library",
  4785. "installation-source": "dist",
  4786. "autoload": {
  4787. "psr-4": {
  4788. "think\\captcha\\": "src/"
  4789. },
  4790. "files": [
  4791. "src/helper.php"
  4792. ]
  4793. },
  4794. "notification-url": "https://packagist.org/downloads/",
  4795. "license": [
  4796. "Apache-2.0"
  4797. ],
  4798. "authors": [
  4799. {
  4800. "name": "yunwuxin",
  4801. "email": "448901948@qq.com"
  4802. }
  4803. ],
  4804. "description": "captcha package for thinkphp5",
  4805. "install-path": "../topthink/think-captcha"
  4806. },
  4807. {
  4808. "name": "topthink/think-helper",
  4809. "version": "v1.0.7",
  4810. "version_normalized": "1.0.7.0",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://github.com/top-think/think-helper.git",
  4814. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  4819. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  4820. "shasum": "",
  4821. "mirrors": [
  4822. {
  4823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4824. "preferred": true
  4825. }
  4826. ]
  4827. },
  4828. "time": "2018-10-05T00:43:21+00:00",
  4829. "type": "library",
  4830. "installation-source": "dist",
  4831. "autoload": {
  4832. "psr-4": {
  4833. "think\\helper\\": "src"
  4834. },
  4835. "files": [
  4836. "src/helper.php"
  4837. ]
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "Apache-2.0"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "yunwuxin",
  4846. "email": "448901948@qq.com"
  4847. }
  4848. ],
  4849. "description": "The ThinkPHP5 Helper Package",
  4850. "install-path": "../topthink/think-helper"
  4851. },
  4852. {
  4853. "name": "topthink/think-installer",
  4854. "version": "v1.0.14",
  4855. "version_normalized": "1.0.14.0",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://github.com/top-think/think-installer.git",
  4859. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  4864. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  4865. "shasum": "",
  4866. "mirrors": [
  4867. {
  4868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4869. "preferred": true
  4870. }
  4871. ]
  4872. },
  4873. "require": {
  4874. "composer-plugin-api": "^1.0||^2.0"
  4875. },
  4876. "require-dev": {
  4877. "composer/composer": "^1.0||^2.0"
  4878. },
  4879. "time": "2021-03-25T08:34:02+00:00",
  4880. "type": "composer-plugin",
  4881. "extra": {
  4882. "class": "think\\composer\\Plugin"
  4883. },
  4884. "installation-source": "dist",
  4885. "autoload": {
  4886. "psr-4": {
  4887. "think\\composer\\": "src"
  4888. }
  4889. },
  4890. "notification-url": "https://packagist.org/downloads/",
  4891. "license": [
  4892. "Apache-2.0"
  4893. ],
  4894. "authors": [
  4895. {
  4896. "name": "yunwuxin",
  4897. "email": "448901948@qq.com"
  4898. }
  4899. ],
  4900. "install-path": "../topthink/think-installer"
  4901. },
  4902. {
  4903. "name": "topthink/think-queue",
  4904. "version": "v1.1.6",
  4905. "version_normalized": "1.1.6.0",
  4906. "source": {
  4907. "type": "git",
  4908. "url": "https://github.com/top-think/think-queue.git",
  4909. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  4910. },
  4911. "dist": {
  4912. "type": "zip",
  4913. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4914. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4915. "shasum": "",
  4916. "mirrors": [
  4917. {
  4918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4919. "preferred": true
  4920. }
  4921. ]
  4922. },
  4923. "require": {
  4924. "topthink/think-helper": ">=1.0.4",
  4925. "topthink/think-installer": ">=1.0.10"
  4926. },
  4927. "require-dev": {
  4928. "topthink/framework": "~5.0.0"
  4929. },
  4930. "time": "2018-10-15T10:16:55+00:00",
  4931. "type": "think-extend",
  4932. "extra": {
  4933. "think-config": {
  4934. "queue": "src/config.php"
  4935. }
  4936. },
  4937. "installation-source": "dist",
  4938. "autoload": {
  4939. "psr-4": {
  4940. "think\\": "src"
  4941. },
  4942. "files": [
  4943. "src/common.php"
  4944. ]
  4945. },
  4946. "notification-url": "https://packagist.org/downloads/",
  4947. "license": [
  4948. "Apache-2.0"
  4949. ],
  4950. "authors": [
  4951. {
  4952. "name": "yunwuxin",
  4953. "email": "448901948@qq.com"
  4954. }
  4955. ],
  4956. "description": "The ThinkPHP5 Queue Package",
  4957. "install-path": "../topthink/think-queue"
  4958. },
  4959. {
  4960. "name": "topthink/think-worker",
  4961. "version": "v1.0.1",
  4962. "version_normalized": "1.0.1.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/top-think/think-worker.git",
  4966. "reference": "b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/top-think/think-worker/zipball/b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1",
  4971. "reference": "b609ff5e38dbb7194aab027d2b2c6b31a7ed1bd1",
  4972. "shasum": "",
  4973. "mirrors": [
  4974. {
  4975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4976. "preferred": true
  4977. }
  4978. ]
  4979. },
  4980. "require": {
  4981. "workerman/workerman": "^3.3.0"
  4982. },
  4983. "time": "2016-10-08T06:07:03+00:00",
  4984. "type": "library",
  4985. "installation-source": "dist",
  4986. "autoload": {
  4987. "files": [],
  4988. "psr-4": {
  4989. "think\\worker\\": "src"
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "Apache-2.0"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "liu21st",
  4999. "email": "liu21st@gmail.com"
  5000. }
  5001. ],
  5002. "description": "workerman extend for thinkphp5",
  5003. "support": {
  5004. "issues": "https://github.com/top-think/think-worker/issues",
  5005. "source": "https://github.com/top-think/think-worker/tree/master"
  5006. },
  5007. "install-path": "../topthink/think-worker"
  5008. },
  5009. {
  5010. "name": "txthinking/mailer",
  5011. "version": "v2.0.1",
  5012. "version_normalized": "2.0.1.0",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/txthinking/Mailer.git",
  5016. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/txthinking/Mailer/zipball/09013cf9dad3aac195f66ae5309e8c3343c018e9",
  5021. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9",
  5022. "shasum": "",
  5023. "mirrors": [
  5024. {
  5025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5026. "preferred": true
  5027. }
  5028. ]
  5029. },
  5030. "require": {
  5031. "php": ">=5.3.2",
  5032. "psr/log": "~1.0"
  5033. },
  5034. "require-dev": {
  5035. "monolog/monolog": "~1.13",
  5036. "phpunit/phpunit": "~4.0"
  5037. },
  5038. "time": "2018-10-09T10:47:23+00:00",
  5039. "type": "library",
  5040. "installation-source": "dist",
  5041. "autoload": {
  5042. "psr-4": {
  5043. "Tx\\": "src/"
  5044. }
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "MIT"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Cloud",
  5053. "email": "cloud@txthinking.com",
  5054. "homepage": "http://www.txthinking.com",
  5055. "role": "Thinker"
  5056. },
  5057. {
  5058. "name": "Matt Sowers",
  5059. "email": "msowers@erblearn.org"
  5060. }
  5061. ],
  5062. "description": "A very lightweight PHP SMTP mail sender",
  5063. "homepage": "http://github.com/txthinking/Mailer",
  5064. "keywords": [
  5065. "mail",
  5066. "smtp"
  5067. ],
  5068. "install-path": "../txthinking/mailer"
  5069. },
  5070. {
  5071. "name": "workerman/workerman",
  5072. "version": "v3.5.33",
  5073. "version_normalized": "3.5.33.0",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://github.com/walkor/workerman.git",
  5077. "reference": "5eb02cf161ec1e5b7c0e4a8556d0541654c2b6da"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://api.github.com/repos/walkor/workerman/zipball/5eb02cf161ec1e5b7c0e4a8556d0541654c2b6da",
  5082. "reference": "5eb02cf161ec1e5b7c0e4a8556d0541654c2b6da",
  5083. "shasum": ""
  5084. },
  5085. "require": {
  5086. "php": ">=5.3"
  5087. },
  5088. "suggest": {
  5089. "ext-event": "For better performance. "
  5090. },
  5091. "time": "2022-11-17T03:32:28+00:00",
  5092. "type": "library",
  5093. "installation-source": "dist",
  5094. "autoload": {
  5095. "psr-4": {
  5096. "Workerman\\": "./"
  5097. }
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "MIT"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "walkor",
  5106. "email": "walkor@workerman.net",
  5107. "homepage": "http://www.workerman.net",
  5108. "role": "Developer"
  5109. }
  5110. ],
  5111. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  5112. "homepage": "http://www.workerman.net",
  5113. "keywords": [
  5114. "asynchronous",
  5115. "event-loop"
  5116. ],
  5117. "support": {
  5118. "email": "walkor@workerman.net",
  5119. "forum": "http://wenda.workerman.net/",
  5120. "issues": "https://github.com/walkor/workerman/issues",
  5121. "source": "https://github.com/walkor/workerman",
  5122. "wiki": "http://doc.workerman.net/"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://opencollective.com/workerman",
  5127. "type": "open_collective"
  5128. },
  5129. {
  5130. "url": "https://www.patreon.com/walkor",
  5131. "type": "patreon"
  5132. }
  5133. ],
  5134. "install-path": "../workerman/workerman"
  5135. }
  5136. ],
  5137. "dev": true,
  5138. "dev-package-names": []
  5139. }