composer.lock 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "811b1384d855a195194130a727ad2e79",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "time": "2019-01-01T23:59:15+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/credentials",
  66. "version": "1.1.4",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/credentials-php.git",
  70. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  75. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "alibabacloud/tea": "^3.0",
  87. "ext-curl": "*",
  88. "ext-json": "*",
  89. "ext-libxml": "*",
  90. "ext-mbstring": "*",
  91. "ext-openssl": "*",
  92. "ext-simplexml": "*",
  93. "ext-xmlwriter": "*",
  94. "guzzlehttp/guzzle": "^6.3|^7.0",
  95. "php": ">=5.6"
  96. },
  97. "require-dev": {
  98. "composer/composer": "^1.8",
  99. "drupal/coder": "^8.3",
  100. "ext-dom": "*",
  101. "ext-pcre": "*",
  102. "ext-sockets": "*",
  103. "ext-spl": "*",
  104. "mikey179/vfsstream": "^1.6",
  105. "monolog/monolog": "^1.24",
  106. "phpunit/phpunit": "^4.8.35|^5.4.3",
  107. "psr/cache": "^1.0",
  108. "symfony/dotenv": "^3.4",
  109. "symfony/var-dumper": "^3.4"
  110. },
  111. "suggest": {
  112. "ext-sockets": "To use client-side monitoring"
  113. },
  114. "type": "library",
  115. "autoload": {
  116. "psr-4": {
  117. "AlibabaCloud\\Credentials\\": "src"
  118. }
  119. },
  120. "notification-url": "https://packagist.org/downloads/",
  121. "license": [
  122. "Apache-2.0"
  123. ],
  124. "authors": [
  125. {
  126. "name": "Alibaba Cloud SDK",
  127. "email": "sdk-team@alibabacloud.com",
  128. "homepage": "http://www.alibabacloud.com"
  129. }
  130. ],
  131. "description": "Alibaba Cloud Credentials for PHP",
  132. "homepage": "https://www.alibabacloud.com/",
  133. "keywords": [
  134. "alibaba",
  135. "alibabacloud",
  136. "aliyun",
  137. "client",
  138. "cloud",
  139. "credentials",
  140. "library",
  141. "sdk",
  142. "tool"
  143. ],
  144. "support": {
  145. "issues": "https://github.com/aliyun/credentials-php/issues",
  146. "source": "https://github.com/aliyun/credentials-php"
  147. },
  148. "time": "2021-06-08T10:49:34+00:00"
  149. },
  150. {
  151. "name": "alibabacloud/darabonba-openapi",
  152. "version": "0.2.6",
  153. "source": {
  154. "type": "git",
  155. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  156. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742"
  157. },
  158. "dist": {
  159. "type": "zip",
  160. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  161. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  162. "shasum": "",
  163. "mirrors": [
  164. {
  165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  166. "preferred": true
  167. }
  168. ]
  169. },
  170. "require": {
  171. "alibabacloud/credentials": "^1.1",
  172. "alibabacloud/gateway-spi": "^1",
  173. "alibabacloud/openapi-util": "^0.1.10",
  174. "alibabacloud/tea-utils": "^0.2.0",
  175. "alibabacloud/tea-xml": "^0.2",
  176. "php": ">5.5"
  177. },
  178. "type": "library",
  179. "autoload": {
  180. "psr-4": {
  181. "Darabonba\\OpenApi\\": "src"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "Apache-2.0"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Alibaba Cloud SDK",
  191. "email": "sdk-team@alibabacloud.com"
  192. }
  193. ],
  194. "description": "Alibaba Cloud OpenApi Client",
  195. "support": {
  196. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  197. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.6"
  198. },
  199. "time": "2022-07-20T08:38:03+00:00"
  200. },
  201. {
  202. "name": "alibabacloud/dysmsapi-20170525",
  203. "version": "2.0.16",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  207. "reference": "43c4ba11cbc0fec26a373ce2c8f3572cfcad32b5"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/43c4ba11cbc0fec26a373ce2c8f3572cfcad32b5",
  212. "reference": "43c4ba11cbc0fec26a373ce2c8f3572cfcad32b5",
  213. "shasum": "",
  214. "mirrors": [
  215. {
  216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  217. "preferred": true
  218. }
  219. ]
  220. },
  221. "require": {
  222. "alibabacloud/darabonba-openapi": "^0.2.5",
  223. "alibabacloud/endpoint-util": "^0.1.0",
  224. "alibabacloud/openapi-util": "^0.1.10",
  225. "alibabacloud/tea-utils": "^0.2.16",
  226. "php": ">5.5"
  227. },
  228. "type": "library",
  229. "autoload": {
  230. "psr-4": {
  231. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  232. }
  233. },
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "Apache-2.0"
  237. ],
  238. "authors": [
  239. {
  240. "name": "Alibaba Cloud SDK",
  241. "email": "sdk-team@alibabacloud.com"
  242. }
  243. ],
  244. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  245. "support": {
  246. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.16"
  247. },
  248. "time": "2022-07-14T03:22:11+00:00"
  249. },
  250. {
  251. "name": "alibabacloud/endpoint-util",
  252. "version": "0.1.1",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  256. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  261. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  262. "shasum": "",
  263. "mirrors": [
  264. {
  265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  266. "preferred": true
  267. }
  268. ]
  269. },
  270. "require": {
  271. "php": ">5.5"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.8.35|^5.4.3"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "psr-4": {
  279. "AlibabaCloud\\Endpoint\\": "src"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "Apache-2.0"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Alibaba Cloud SDK",
  289. "email": "sdk-team@alibabacloud.com"
  290. }
  291. ],
  292. "description": "Alibaba Cloud Endpoint Library for PHP",
  293. "support": {
  294. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  295. },
  296. "time": "2020-06-04T10:57:15+00:00"
  297. },
  298. {
  299. "name": "alibabacloud/gateway-spi",
  300. "version": "1.0.0",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  304. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  309. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  310. "shasum": "",
  311. "mirrors": [
  312. {
  313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  314. "preferred": true
  315. }
  316. ]
  317. },
  318. "require": {
  319. "alibabacloud/credentials": "^1.1",
  320. "php": ">5.5"
  321. },
  322. "type": "library",
  323. "autoload": {
  324. "psr-4": {
  325. "Darabonba\\GatewaySpi\\": "src"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "Apache-2.0"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Alibaba Cloud SDK",
  335. "email": "sdk-team@alibabacloud.com"
  336. }
  337. ],
  338. "description": "Alibaba Cloud Gateway SPI Client",
  339. "support": {
  340. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  341. },
  342. "time": "2022-07-14T05:31:35+00:00"
  343. },
  344. {
  345. "name": "alibabacloud/openapi-util",
  346. "version": "0.1.11",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  350. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  355. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  356. "shasum": "",
  357. "mirrors": [
  358. {
  359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  360. "preferred": true
  361. }
  362. ]
  363. },
  364. "require": {
  365. "alibabacloud/tea": "^3.1",
  366. "alibabacloud/tea-utils": "^0.2",
  367. "lizhichao/one-sm": "^1.5",
  368. "php": ">5.5"
  369. },
  370. "require-dev": {
  371. "phpunit/phpunit": "^4.8.35|^5.4.3"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "AlibabaCloud\\OpenApiUtil\\": "src"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "Apache-2.0"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Alibaba Cloud SDK",
  386. "email": "sdk-team@alibabacloud.com"
  387. }
  388. ],
  389. "description": "Alibaba Cloud OpenApi Util",
  390. "support": {
  391. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  392. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  393. },
  394. "time": "2021-12-28T07:57:21+00:00"
  395. },
  396. {
  397. "name": "alibabacloud/tea",
  398. "version": "3.1.19",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/aliyun/tea-php.git",
  402. "reference": "f940148fa6eee0f014fbf138a68310df28e67765"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/f940148fa6eee0f014fbf138a68310df28e67765",
  407. "reference": "f940148fa6eee0f014fbf138a68310df28e67765",
  408. "shasum": "",
  409. "mirrors": [
  410. {
  411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  412. "preferred": true
  413. }
  414. ]
  415. },
  416. "require": {
  417. "adbario/php-dot-notation": "^2.2",
  418. "ext-curl": "*",
  419. "ext-json": "*",
  420. "ext-libxml": "*",
  421. "ext-mbstring": "*",
  422. "ext-openssl": "*",
  423. "ext-simplexml": "*",
  424. "ext-xmlwriter": "*",
  425. "guzzlehttp/guzzle": "^6.3|^7.0",
  426. "php": ">=5.5"
  427. },
  428. "require-dev": {
  429. "phpunit/phpunit": "*",
  430. "symfony/dotenv": "^3.4",
  431. "symfony/var-dumper": "^3.4"
  432. },
  433. "suggest": {
  434. "ext-sockets": "To use client-side monitoring"
  435. },
  436. "type": "library",
  437. "autoload": {
  438. "psr-4": {
  439. "AlibabaCloud\\Tea\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "Apache-2.0"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Alibaba Cloud SDK",
  449. "email": "sdk-team@alibabacloud.com",
  450. "homepage": "http://www.alibabacloud.com"
  451. }
  452. ],
  453. "description": "Client of Tea for PHP",
  454. "homepage": "https://www.alibabacloud.com/",
  455. "keywords": [
  456. "alibabacloud",
  457. "client",
  458. "cloud",
  459. "tea"
  460. ],
  461. "time": "2020-10-09T06:51:20+00:00"
  462. },
  463. {
  464. "name": "alibabacloud/tea-fileform",
  465. "version": "0.3.3",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  469. "reference": "3878427b661392566411dfe13620e2359334c318"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/3878427b661392566411dfe13620e2359334c318",
  474. "reference": "3878427b661392566411dfe13620e2359334c318",
  475. "shasum": "",
  476. "mirrors": [
  477. {
  478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  479. "preferred": true
  480. }
  481. ]
  482. },
  483. "require": {
  484. "adbario/php-dot-notation": "^2.2",
  485. "alibabacloud/tea": "^3.0",
  486. "guzzlehttp/guzzle": "^6.5|^7.0",
  487. "php": ">5.5"
  488. },
  489. "require-dev": {
  490. "phpunit/phpunit": "^4.8.35|^5.4.3",
  491. "symfony/var-dumper": "^5.0"
  492. },
  493. "type": "library",
  494. "autoload": {
  495. "psr-4": {
  496. "AlibabaCloud\\Tea\\FileForm\\": "src"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "Apache-2.0"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Alibaba Cloud SDK",
  506. "email": "sdk-team@alibabacloud.com"
  507. }
  508. ],
  509. "description": "Alibaba Cloud Tea File Library for PHP",
  510. "time": "2020-09-19T15:49:15+00:00"
  511. },
  512. {
  513. "name": "alibabacloud/tea-utils",
  514. "version": "0.2.16",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  518. "reference": "ae10b306509a196e4af71803db710a0a05c54e60"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/ae10b306509a196e4af71803db710a0a05c54e60",
  523. "reference": "ae10b306509a196e4af71803db710a0a05c54e60",
  524. "shasum": "",
  525. "mirrors": [
  526. {
  527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  528. "preferred": true
  529. }
  530. ]
  531. },
  532. "require": {
  533. "alibabacloud/tea": "^3.1",
  534. "php": ">5.5"
  535. },
  536. "type": "library",
  537. "autoload": {
  538. "psr-4": {
  539. "AlibabaCloud\\Tea\\Utils\\": "src"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "Apache-2.0"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Alibaba Cloud SDK",
  549. "email": "sdk-team@alibabacloud.com"
  550. }
  551. ],
  552. "description": "Alibaba Cloud Tea Utils for PHP",
  553. "support": {
  554. "issues": "https://github.com/aliyun/tea-util/issues",
  555. "source": "https://github.com/aliyun/tea-util"
  556. },
  557. "time": "2022-07-05T09:58:20+00:00"
  558. },
  559. {
  560. "name": "alibabacloud/tea-xml",
  561. "version": "0.2.3",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  565. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  570. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  571. "shasum": "",
  572. "mirrors": [
  573. {
  574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  575. "preferred": true
  576. }
  577. ]
  578. },
  579. "require": {
  580. "php": ">5.5"
  581. },
  582. "require-dev": {
  583. "phpunit/phpunit": "^4.8.35|^5.4.3",
  584. "symfony/var-dumper": "*"
  585. },
  586. "type": "library",
  587. "autoload": {
  588. "psr-4": {
  589. "AlibabaCloud\\Tea\\XML\\": "src"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "Apache-2.0"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Alibaba Cloud SDK",
  599. "email": "sdk-team@alibabacloud.com"
  600. }
  601. ],
  602. "description": "Alibaba Cloud Tea XML Library for PHP",
  603. "support": {
  604. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  605. },
  606. "time": "2021-12-08T06:43:00+00:00"
  607. },
  608. {
  609. "name": "alipaysdk/easysdk",
  610. "version": "2.0.0",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/alipay/alipay-easysdk.git",
  614. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  619. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  620. "shasum": "",
  621. "mirrors": [
  622. {
  623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  624. "preferred": true
  625. }
  626. ]
  627. },
  628. "require": {
  629. "adbario/php-dot-notation": "^2.2",
  630. "alibabacloud/tea": "^3.1",
  631. "alibabacloud/tea-fileform": "^0.3.2",
  632. "danielstjules/stringy": "^3.1",
  633. "ext-ctype": "*",
  634. "ext-curl": "*",
  635. "ext-dom": "*",
  636. "ext-fileinfo": "*",
  637. "ext-json": "*",
  638. "ext-libxml": "*",
  639. "ext-mbstring": "*",
  640. "ext-openssl": "*",
  641. "ext-simplexml": "*",
  642. "ext-xmlwriter": "*",
  643. "guzzlehttp/guzzle": ">=6.3",
  644. "mtdowling/jmespath.php": "^2.4",
  645. "php": ">=7.0",
  646. "pimple/pimple": "^3.0",
  647. "psr/log": "^1.1",
  648. "songshenzong/support": "^2.0",
  649. "xin/container": "^2.0.1"
  650. },
  651. "require-dev": {
  652. "phpunit/phpunit": "^7.5"
  653. },
  654. "type": "library",
  655. "autoload": {
  656. "psr-4": {
  657. "Alipay\\EasySDK\\": "php/src/"
  658. }
  659. },
  660. "notification-url": "https://packagist.org/downloads/",
  661. "license": [
  662. "Apache-2.0"
  663. ],
  664. "authors": [
  665. {
  666. "name": "junying.wjy",
  667. "email": "junying.wjy@antfin.com"
  668. }
  669. ],
  670. "description": "支付宝官方 Alipay Easy SDK",
  671. "time": "2020-07-07T09:28:36+00:00"
  672. },
  673. {
  674. "name": "aliyuncs/oss-sdk-php",
  675. "version": "v2.3.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  679. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  684. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  685. "shasum": "",
  686. "mirrors": [
  687. {
  688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  689. "preferred": true
  690. }
  691. ]
  692. },
  693. "require": {
  694. "php": ">=5.3"
  695. },
  696. "require-dev": {
  697. "phpunit/phpunit": "~4.0",
  698. "satooshi/php-coveralls": "~1.0"
  699. },
  700. "type": "library",
  701. "autoload": {
  702. "psr-4": {
  703. "OSS\\": "src/OSS"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Aliyuncs",
  713. "homepage": "http://www.aliyun.com"
  714. }
  715. ],
  716. "description": "Aliyun OSS SDK for PHP",
  717. "homepage": "http://www.aliyun.com/product/oss/",
  718. "time": "2018-01-08T06:59:35+00:00"
  719. },
  720. {
  721. "name": "aws/aws-sdk-php",
  722. "version": "3.173.19",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/aws/aws-sdk-php.git",
  726. "reference": "63c6feca49bf4083f33bf250401c0c286759e101"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63c6feca49bf4083f33bf250401c0c286759e101",
  731. "reference": "63c6feca49bf4083f33bf250401c0c286759e101",
  732. "shasum": "",
  733. "mirrors": [
  734. {
  735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  736. "preferred": true
  737. }
  738. ]
  739. },
  740. "require": {
  741. "ext-json": "*",
  742. "ext-pcre": "*",
  743. "ext-simplexml": "*",
  744. "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
  745. "guzzlehttp/promises": "^1.0",
  746. "guzzlehttp/psr7": "^1.4.1",
  747. "mtdowling/jmespath.php": "^2.5",
  748. "php": ">=5.5"
  749. },
  750. "require-dev": {
  751. "andrewsville/php-token-reflection": "^1.4",
  752. "aws/aws-php-sns-message-validator": "~1.0",
  753. "behat/behat": "~3.0",
  754. "doctrine/cache": "~1.4",
  755. "ext-dom": "*",
  756. "ext-openssl": "*",
  757. "ext-pcntl": "*",
  758. "ext-sockets": "*",
  759. "nette/neon": "^2.3",
  760. "paragonie/random_compat": ">= 2",
  761. "phpunit/phpunit": "^4.8.35|^5.4.3",
  762. "psr/cache": "^1.0",
  763. "psr/simple-cache": "^1.0",
  764. "sebastian/comparator": "^1.2.3"
  765. },
  766. "suggest": {
  767. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  768. "doctrine/cache": "To use the DoctrineCacheAdapter",
  769. "ext-curl": "To send requests using cURL",
  770. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  771. "ext-sockets": "To use client-side monitoring"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "branch-alias": {
  776. "dev-master": "3.0-dev"
  777. }
  778. },
  779. "autoload": {
  780. "files": [
  781. "src/functions.php"
  782. ],
  783. "psr-4": {
  784. "Aws\\": "src/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "Apache-2.0"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Amazon Web Services",
  794. "homepage": "http://aws.amazon.com"
  795. }
  796. ],
  797. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  798. "homepage": "http://aws.amazon.com/sdkforphp",
  799. "keywords": [
  800. "amazon",
  801. "aws",
  802. "cloud",
  803. "dynamodb",
  804. "ec2",
  805. "glacier",
  806. "s3",
  807. "sdk"
  808. ],
  809. "support": {
  810. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  811. "issues": "https://github.com/aws/aws-sdk-php/issues",
  812. "source": "https://github.com/aws/aws-sdk-php/tree/3.173.19"
  813. },
  814. "time": "2021-03-01T19:15:59+00:00"
  815. },
  816. {
  817. "name": "crmeb/easypay",
  818. "version": "v1.0.1",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/crmeb/easypay.git",
  822. "reference": "e9eda5760ad640c8b2f8b27ce77d8bd492077613"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/crmeb/easypay/zipball/e9eda5760ad640c8b2f8b27ce77d8bd492077613",
  827. "reference": "e9eda5760ad640c8b2f8b27ce77d8bd492077613",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "ext-json": "*",
  832. "guzzlehttp/guzzle": "^7.0|^6.0",
  833. "php": ">=7.1",
  834. "psr/container": "^1.0|^2.0",
  835. "psr/log": "^1.0|^2.0|^3.0",
  836. "psr/simple-cache": "^1.0|^2.0|^3.0"
  837. },
  838. "require-dev": {
  839. "phpunit/phpunit": "8.5.*"
  840. },
  841. "type": "library",
  842. "autoload": {
  843. "psr-4": {
  844. "Crmeb\\Easypay\\": "src/"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "Apache-2.0"
  850. ],
  851. "authors": [
  852. {
  853. "name": "liaofei",
  854. "email": "136327134@qq.com"
  855. },
  856. {
  857. "name": "wuhaotian",
  858. "email": "442384644@qq.com"
  859. }
  860. ],
  861. "description": "easypay 包含银联商务、支付宝、微信等支付",
  862. "support": {
  863. "issues": "https://github.com/crmeb/easypay/issues",
  864. "source": "https://github.com/crmeb/easypay/tree/v1.0.1"
  865. },
  866. "time": "2026-01-26T10:29:07+00:00"
  867. },
  868. {
  869. "name": "danielstjules/stringy",
  870. "version": "3.1.0",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/danielstjules/Stringy.git",
  874. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  879. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  880. "shasum": "",
  881. "mirrors": [
  882. {
  883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  884. "preferred": true
  885. }
  886. ]
  887. },
  888. "require": {
  889. "php": ">=5.4.0",
  890. "symfony/polyfill-mbstring": "~1.1"
  891. },
  892. "require-dev": {
  893. "phpunit/phpunit": "~4.0"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Stringy\\": "src/"
  899. },
  900. "files": [
  901. "src/Create.php"
  902. ]
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "MIT"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Daniel St. Jules",
  911. "email": "danielst.jules@gmail.com",
  912. "homepage": "http://www.danielstjules.com"
  913. }
  914. ],
  915. "description": "A string manipulation library with multibyte support",
  916. "homepage": "https://github.com/danielstjules/Stringy",
  917. "keywords": [
  918. "UTF",
  919. "helpers",
  920. "manipulation",
  921. "methods",
  922. "multibyte",
  923. "string",
  924. "utf-8",
  925. "utility",
  926. "utils"
  927. ],
  928. "time": "2017-06-12T01:10:27+00:00"
  929. },
  930. {
  931. "name": "dh2y/think-qrcode",
  932. "version": "2.0",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/cinaofdai/think-qrcode.git",
  936. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  941. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  942. "shasum": "",
  943. "mirrors": [
  944. {
  945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  946. "preferred": true
  947. }
  948. ]
  949. },
  950. "require": {
  951. "php": ">=5.4.0"
  952. },
  953. "type": "library",
  954. "autoload": {
  955. "psr-4": {
  956. "dh2y\\qrcode\\": "src/"
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "dh2y",
  966. "email": "xiaodai54_long@163.com"
  967. }
  968. ],
  969. "description": "qrcode for thinkphp5",
  970. "homepage": "https://github.com/cinaofdai/think-qrcode",
  971. "time": "2019-07-10T02:57:29+00:00"
  972. },
  973. {
  974. "name": "doctrine/annotations",
  975. "version": "v1.2.7",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/doctrine/annotations.git",
  979. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  984. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "doctrine/lexer": "1.*",
  995. "php": ">=5.3.2"
  996. },
  997. "require-dev": {
  998. "doctrine/cache": "1.*",
  999. "phpunit/phpunit": "4.*"
  1000. },
  1001. "type": "library",
  1002. "extra": {
  1003. "branch-alias": {
  1004. "dev-master": "1.3.x-dev"
  1005. }
  1006. },
  1007. "autoload": {
  1008. "psr-0": {
  1009. "Doctrine\\Common\\Annotations\\": "lib/"
  1010. }
  1011. },
  1012. "notification-url": "https://packagist.org/downloads/",
  1013. "license": [
  1014. "MIT"
  1015. ],
  1016. "authors": [
  1017. {
  1018. "name": "Roman Borschel",
  1019. "email": "roman@code-factory.org"
  1020. },
  1021. {
  1022. "name": "Benjamin Eberlei",
  1023. "email": "kontakt@beberlei.de"
  1024. },
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Jonathan Wage",
  1031. "email": "jonwage@gmail.com"
  1032. },
  1033. {
  1034. "name": "Johannes Schmitt",
  1035. "email": "schmittjoh@gmail.com"
  1036. }
  1037. ],
  1038. "description": "Docblock Annotations Parser",
  1039. "homepage": "http://www.doctrine-project.org",
  1040. "keywords": [
  1041. "annotations",
  1042. "docblock",
  1043. "parser"
  1044. ],
  1045. "time": "2015-08-31T12:32:49+00:00"
  1046. },
  1047. {
  1048. "name": "doctrine/cache",
  1049. "version": "v1.4.4",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/doctrine/cache.git",
  1053. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  1058. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  1059. "shasum": "",
  1060. "mirrors": [
  1061. {
  1062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1063. "preferred": true
  1064. }
  1065. ]
  1066. },
  1067. "require": {
  1068. "php": ">=5.3.2"
  1069. },
  1070. "conflict": {
  1071. "doctrine/common": ">2.2,<2.4"
  1072. },
  1073. "require-dev": {
  1074. "phpunit/phpunit": ">=3.7",
  1075. "predis/predis": "~1.0",
  1076. "satooshi/php-coveralls": "~0.6"
  1077. },
  1078. "type": "library",
  1079. "extra": {
  1080. "branch-alias": {
  1081. "dev-master": "1.5.x-dev"
  1082. }
  1083. },
  1084. "autoload": {
  1085. "psr-0": {
  1086. "Doctrine\\Common\\Cache\\": "lib/"
  1087. }
  1088. },
  1089. "notification-url": "https://packagist.org/downloads/",
  1090. "license": [
  1091. "MIT"
  1092. ],
  1093. "authors": [
  1094. {
  1095. "name": "Roman Borschel",
  1096. "email": "roman@code-factory.org"
  1097. },
  1098. {
  1099. "name": "Benjamin Eberlei",
  1100. "email": "kontakt@beberlei.de"
  1101. },
  1102. {
  1103. "name": "Guilherme Blanco",
  1104. "email": "guilhermeblanco@gmail.com"
  1105. },
  1106. {
  1107. "name": "Jonathan Wage",
  1108. "email": "jonwage@gmail.com"
  1109. },
  1110. {
  1111. "name": "Johannes Schmitt",
  1112. "email": "schmittjoh@gmail.com"
  1113. }
  1114. ],
  1115. "description": "Caching library offering an object-oriented API for many cache backends",
  1116. "homepage": "http://www.doctrine-project.org",
  1117. "keywords": [
  1118. "cache",
  1119. "caching"
  1120. ],
  1121. "time": "2015-11-02T18:33:51+00:00"
  1122. },
  1123. {
  1124. "name": "doctrine/lexer",
  1125. "version": "1.2.1",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/doctrine/lexer.git",
  1129. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1134. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1135. "shasum": "",
  1136. "mirrors": [
  1137. {
  1138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1139. "preferred": true
  1140. }
  1141. ]
  1142. },
  1143. "require": {
  1144. "php": "^7.2 || ^8.0"
  1145. },
  1146. "require-dev": {
  1147. "doctrine/coding-standard": "^6.0",
  1148. "phpstan/phpstan": "^0.11.8",
  1149. "phpunit/phpunit": "^8.2"
  1150. },
  1151. "type": "library",
  1152. "extra": {
  1153. "branch-alias": {
  1154. "dev-master": "1.2.x-dev"
  1155. }
  1156. },
  1157. "autoload": {
  1158. "psr-4": {
  1159. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1160. }
  1161. },
  1162. "notification-url": "https://packagist.org/downloads/",
  1163. "license": [
  1164. "MIT"
  1165. ],
  1166. "authors": [
  1167. {
  1168. "name": "Guilherme Blanco",
  1169. "email": "guilhermeblanco@gmail.com"
  1170. },
  1171. {
  1172. "name": "Roman Borschel",
  1173. "email": "roman@code-factory.org"
  1174. },
  1175. {
  1176. "name": "Johannes Schmitt",
  1177. "email": "schmittjoh@gmail.com"
  1178. }
  1179. ],
  1180. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1181. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1182. "keywords": [
  1183. "annotations",
  1184. "docblock",
  1185. "lexer",
  1186. "parser",
  1187. "php"
  1188. ],
  1189. "time": "2020-05-25T17:44:05+00:00"
  1190. },
  1191. {
  1192. "name": "fastknife/ajcaptcha",
  1193. "version": "v1.1.5",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://gitee.com/fastknife/aj-captcha.git",
  1197. "reference": "9e8eb95c444d2ff4d78d1d1d4d5cb1d29c084609"
  1198. },
  1199. "require": {
  1200. "ext-gd": "*",
  1201. "ext-iconv": "*",
  1202. "ext-json": "*",
  1203. "ext-openssl": "*",
  1204. "intervention/image": "^2.5",
  1205. "php": ">=7.1"
  1206. },
  1207. "type": "library",
  1208. "autoload": {
  1209. "psr-4": {
  1210. "Fastknife\\": "src"
  1211. }
  1212. },
  1213. "notification-url": "https://packagist.org/downloads/",
  1214. "license": [
  1215. "GPL-3.0-only"
  1216. ],
  1217. "authors": [
  1218. {
  1219. "name": "bruce",
  1220. "email": "2777314125@qq.com"
  1221. }
  1222. ],
  1223. "description": "This is a behavior verification code PHP back-end implementation package",
  1224. "time": "2022-07-04T10:17:37+00:00"
  1225. },
  1226. {
  1227. "name": "firebase/php-jwt",
  1228. "version": "v5.0.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/firebase/php-jwt.git",
  1232. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1237. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1238. "shasum": "",
  1239. "mirrors": [
  1240. {
  1241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1242. "preferred": true
  1243. }
  1244. ]
  1245. },
  1246. "require": {
  1247. "php": ">=5.3.0"
  1248. },
  1249. "require-dev": {
  1250. "phpunit/phpunit": " 4.8.35"
  1251. },
  1252. "type": "library",
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Firebase\\JWT\\": "src"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "BSD-3-Clause"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Neuman Vong",
  1265. "email": "neuman+pear@twilio.com",
  1266. "role": "Developer"
  1267. },
  1268. {
  1269. "name": "Anant Narayanan",
  1270. "email": "anant@php.net",
  1271. "role": "Developer"
  1272. }
  1273. ],
  1274. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1275. "homepage": "https://github.com/firebase/php-jwt",
  1276. "time": "2017-06-27T22:17:23+00:00"
  1277. },
  1278. {
  1279. "name": "godruoyi/php-snowflake",
  1280. "version": "1.0.9",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/godruoyi/php-snowflake.git",
  1284. "reference": "4c73869e20ee4534bf867efa46dc294ba6578b73"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/godruoyi/php-snowflake/zipball/4c73869e20ee4534bf867efa46dc294ba6578b73",
  1289. "reference": "4c73869e20ee4534bf867efa46dc294ba6578b73",
  1290. "shasum": "",
  1291. "mirrors": [
  1292. {
  1293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1294. "preferred": true
  1295. }
  1296. ]
  1297. },
  1298. "require-dev": {
  1299. "phpunit/phpunit": "~7"
  1300. },
  1301. "type": "library",
  1302. "autoload": {
  1303. "psr-4": {
  1304. "Godruoyi\\Snowflake\\": "src"
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Godruoyi",
  1314. "email": "g@godruoyi.com"
  1315. }
  1316. ],
  1317. "description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
  1318. "homepage": "https://github.com/godruoyi/php-snowflake",
  1319. "keywords": [
  1320. "Unique ID",
  1321. "laravel snowflake",
  1322. "order id",
  1323. "php snowflake",
  1324. "php unique id",
  1325. "snowflake algorithm",
  1326. "unique order id"
  1327. ],
  1328. "time": "2020-05-25T06:13:54+00:00"
  1329. },
  1330. {
  1331. "name": "google/auth",
  1332. "version": "v1.20.1",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1336. "reference": "3a1a5c5b5a3006b3d05256d5df7066f37252112c"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/3a1a5c5b5a3006b3d05256d5df7066f37252112c",
  1341. "reference": "3a1a5c5b5a3006b3d05256d5df7066f37252112c",
  1342. "shasum": "",
  1343. "mirrors": [
  1344. {
  1345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1346. "preferred": true
  1347. }
  1348. ]
  1349. },
  1350. "require": {
  1351. "firebase/php-jwt": "~5.0",
  1352. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  1353. "guzzlehttp/psr7": "^1.7|^2.0",
  1354. "php": "^7.1||^8.0",
  1355. "psr/cache": "^1.0|^2.0|^3.0",
  1356. "psr/http-message": "^1.0"
  1357. },
  1358. "require-dev": {
  1359. "guzzlehttp/promises": "0.1.1|^1.3",
  1360. "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
  1361. "phpseclib/phpseclib": "^2.0.31",
  1362. "phpspec/prophecy-phpunit": "^1.1",
  1363. "phpunit/phpunit": "^7.5||^8.5",
  1364. "sebastian/comparator": ">=1.2.3",
  1365. "squizlabs/php_codesniffer": "^3.5"
  1366. },
  1367. "suggest": {
  1368. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1369. },
  1370. "type": "library",
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Google\\Auth\\": "src"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "Apache-2.0"
  1379. ],
  1380. "description": "Google Auth Library for PHP",
  1381. "homepage": "http://github.com/google/google-auth-library-php",
  1382. "keywords": [
  1383. "Authentication",
  1384. "google",
  1385. "oauth2"
  1386. ],
  1387. "support": {
  1388. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  1389. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1390. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.20.1"
  1391. },
  1392. "time": "2022-04-12T15:24:52+00:00"
  1393. },
  1394. {
  1395. "name": "google/common-protos",
  1396. "version": "v3.0.0",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/googleapis/common-protos-php.git",
  1400. "reference": "168393c1d19297fde8d5c875a540ba92c5aa970c"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/168393c1d19297fde8d5c875a540ba92c5aa970c",
  1405. "reference": "168393c1d19297fde8d5c875a540ba92c5aa970c",
  1406. "shasum": "",
  1407. "mirrors": [
  1408. {
  1409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1410. "preferred": true
  1411. }
  1412. ]
  1413. },
  1414. "require": {
  1415. "google/protobuf": "^3.6.1"
  1416. },
  1417. "require-dev": {
  1418. "phpunit/phpunit": "^4.8.36||^8.5",
  1419. "sami/sami": "*"
  1420. },
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Google\\": "src",
  1425. "GPBMetadata\\Google\\": "metadata"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "Apache-2.0"
  1431. ],
  1432. "description": "Google API Common Protos for PHP",
  1433. "homepage": "https://github.com/googleapis/common-protos-php",
  1434. "keywords": [
  1435. "google"
  1436. ],
  1437. "support": {
  1438. "issues": "https://github.com/googleapis/common-protos-php/issues",
  1439. "source": "https://github.com/googleapis/common-protos-php/tree/v3.0.0"
  1440. },
  1441. "time": "2022-07-29T20:50:18+00:00"
  1442. },
  1443. {
  1444. "name": "google/gax",
  1445. "version": "v1.17.0",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/googleapis/gax-php.git",
  1449. "reference": "bb8d95187dcfebe04a40d2de916951fa4942fc35"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/bb8d95187dcfebe04a40d2de916951fa4942fc35",
  1454. "reference": "bb8d95187dcfebe04a40d2de916951fa4942fc35",
  1455. "shasum": "",
  1456. "mirrors": [
  1457. {
  1458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1459. "preferred": true
  1460. }
  1461. ]
  1462. },
  1463. "require": {
  1464. "google/auth": "^1.18.0",
  1465. "google/common-protos": "^1.3.1||^2.0||^3.0",
  1466. "google/grpc-gcp": "^0.2",
  1467. "google/longrunning": "^0.2",
  1468. "google/protobuf": "^3.21.4",
  1469. "grpc/grpc": "^1.13",
  1470. "guzzlehttp/promises": "^1.3",
  1471. "guzzlehttp/psr7": "^1.7.0||^2",
  1472. "php": ">=7.0"
  1473. },
  1474. "conflict": {
  1475. "ext-protobuf": "<3.7.0"
  1476. },
  1477. "require-dev": {
  1478. "phpspec/prophecy": "^1.10",
  1479. "phpunit/phpunit": "^5.5||^8.5",
  1480. "squizlabs/php_codesniffer": "3.*",
  1481. "yoast/phpunit-polyfills": "^1.0"
  1482. },
  1483. "type": "library",
  1484. "autoload": {
  1485. "psr-4": {
  1486. "Google\\ApiCore\\": "src",
  1487. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "BSD-3-Clause"
  1493. ],
  1494. "description": "Google API Core for PHP",
  1495. "homepage": "https://github.com/googleapis/gax-php",
  1496. "keywords": [
  1497. "google"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/googleapis/gax-php/issues",
  1501. "source": "https://github.com/googleapis/gax-php/tree/v1.17.0"
  1502. },
  1503. "time": "2022-09-12T15:22:54+00:00"
  1504. },
  1505. {
  1506. "name": "google/grpc-gcp",
  1507. "version": "v0.2.0",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  1511. "reference": "2465c2273e11ada1e95155aa1e209f3b8f03c314"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/2465c2273e11ada1e95155aa1e209f3b8f03c314",
  1516. "reference": "2465c2273e11ada1e95155aa1e209f3b8f03c314",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "google/auth": "^1.3",
  1527. "google/protobuf": "^v3.3.0",
  1528. "grpc/grpc": "^v1.13.0",
  1529. "php": ">=5.5.0",
  1530. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  1531. },
  1532. "require-dev": {
  1533. "google/cloud-spanner": "^1.7",
  1534. "phpunit/phpunit": "4.8.36"
  1535. },
  1536. "type": "library",
  1537. "autoload": {
  1538. "psr-4": {
  1539. "Grpc\\Gcp\\": "src/"
  1540. },
  1541. "classmap": [
  1542. "src/generated/"
  1543. ]
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "Apache-2.0"
  1548. ],
  1549. "description": "gRPC GCP library for channel management",
  1550. "support": {
  1551. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  1552. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.0"
  1553. },
  1554. "time": "2021-09-27T22:57:18+00:00"
  1555. },
  1556. {
  1557. "name": "google/longrunning",
  1558. "version": "v0.2.0",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/googleapis/php-longrunning.git",
  1562. "reference": "5b7500eede9d6b18ef038bef0b5449cbf085e1d6"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/5b7500eede9d6b18ef038bef0b5449cbf085e1d6",
  1567. "reference": "5b7500eede9d6b18ef038bef0b5449cbf085e1d6",
  1568. "shasum": "",
  1569. "mirrors": [
  1570. {
  1571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1572. "preferred": true
  1573. }
  1574. ]
  1575. },
  1576. "require-dev": {
  1577. "google/gax": "^1.13.0",
  1578. "phpunit/phpunit": "^4.8|^5.0|^8.0"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "component": {
  1583. "id": "longrunning",
  1584. "path": "LongRunning",
  1585. "entry": null,
  1586. "target": "googleapis/php-longrunning"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Google\\LongRunning\\": "src/LongRunning",
  1592. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  1593. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  1594. }
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "Apache-2.0"
  1599. ],
  1600. "description": "Google LongRunning Client for PHP",
  1601. "support": {
  1602. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.0"
  1603. },
  1604. "time": "2022-08-05T00:41:21+00:00"
  1605. },
  1606. {
  1607. "name": "google/protobuf",
  1608. "version": "v3.21.8",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  1612. "reference": "6377c52338fd18634dddf6becfde94b8b16cd9f5"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/6377c52338fd18634dddf6becfde94b8b16cd9f5",
  1617. "reference": "6377c52338fd18634dddf6becfde94b8b16cd9f5",
  1618. "shasum": "",
  1619. "mirrors": [
  1620. {
  1621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1622. "preferred": true
  1623. }
  1624. ]
  1625. },
  1626. "require": {
  1627. "php": ">=7.0.0"
  1628. },
  1629. "require-dev": {
  1630. "phpunit/phpunit": ">=5.0.0"
  1631. },
  1632. "suggest": {
  1633. "ext-bcmath": "Need to support JSON deserialization"
  1634. },
  1635. "type": "library",
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Google\\Protobuf\\": "src/Google/Protobuf",
  1639. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  1640. }
  1641. },
  1642. "notification-url": "https://packagist.org/downloads/",
  1643. "license": [
  1644. "BSD-3-Clause"
  1645. ],
  1646. "description": "proto library for PHP",
  1647. "homepage": "https://developers.google.com/protocol-buffers/",
  1648. "keywords": [
  1649. "proto"
  1650. ],
  1651. "support": {
  1652. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.21.8"
  1653. },
  1654. "time": "2022-10-18T18:22:00+00:00"
  1655. },
  1656. {
  1657. "name": "grpc/grpc",
  1658. "version": "1.42.0",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/grpc/grpc-php.git",
  1662. "reference": "9fa44f104cb92e924d4da547323a97f3d8aca6d4"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/9fa44f104cb92e924d4da547323a97f3d8aca6d4",
  1667. "reference": "9fa44f104cb92e924d4da547323a97f3d8aca6d4",
  1668. "shasum": "",
  1669. "mirrors": [
  1670. {
  1671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1672. "preferred": true
  1673. }
  1674. ]
  1675. },
  1676. "require": {
  1677. "php": ">=7.0.0"
  1678. },
  1679. "require-dev": {
  1680. "google/auth": "^v1.3.0"
  1681. },
  1682. "suggest": {
  1683. "ext-protobuf": "For better performance, install the protobuf C extension.",
  1684. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  1685. },
  1686. "type": "library",
  1687. "autoload": {
  1688. "psr-4": {
  1689. "Grpc\\": "src/lib/"
  1690. }
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "Apache-2.0"
  1695. ],
  1696. "description": "gRPC library for PHP",
  1697. "homepage": "https://grpc.io",
  1698. "keywords": [
  1699. "rpc"
  1700. ],
  1701. "support": {
  1702. "source": "https://github.com/grpc/grpc-php/tree/v1.42.0"
  1703. },
  1704. "time": "2021-11-19T08:13:51+00:00"
  1705. },
  1706. {
  1707. "name": "guzzle/guzzle",
  1708. "version": "v3.9.3",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/guzzle/guzzle3.git",
  1712. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  1717. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  1718. "shasum": "",
  1719. "mirrors": [
  1720. {
  1721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1722. "preferred": true
  1723. }
  1724. ]
  1725. },
  1726. "require": {
  1727. "ext-curl": "*",
  1728. "php": ">=5.3.3",
  1729. "symfony/event-dispatcher": "~2.1"
  1730. },
  1731. "replace": {
  1732. "guzzle/batch": "self.version",
  1733. "guzzle/cache": "self.version",
  1734. "guzzle/common": "self.version",
  1735. "guzzle/http": "self.version",
  1736. "guzzle/inflection": "self.version",
  1737. "guzzle/iterator": "self.version",
  1738. "guzzle/log": "self.version",
  1739. "guzzle/parser": "self.version",
  1740. "guzzle/plugin": "self.version",
  1741. "guzzle/plugin-async": "self.version",
  1742. "guzzle/plugin-backoff": "self.version",
  1743. "guzzle/plugin-cache": "self.version",
  1744. "guzzle/plugin-cookie": "self.version",
  1745. "guzzle/plugin-curlauth": "self.version",
  1746. "guzzle/plugin-error-response": "self.version",
  1747. "guzzle/plugin-history": "self.version",
  1748. "guzzle/plugin-log": "self.version",
  1749. "guzzle/plugin-md5": "self.version",
  1750. "guzzle/plugin-mock": "self.version",
  1751. "guzzle/plugin-oauth": "self.version",
  1752. "guzzle/service": "self.version",
  1753. "guzzle/stream": "self.version"
  1754. },
  1755. "require-dev": {
  1756. "doctrine/cache": "~1.3",
  1757. "monolog/monolog": "~1.0",
  1758. "phpunit/phpunit": "3.7.*",
  1759. "psr/log": "~1.0",
  1760. "symfony/class-loader": "~2.1",
  1761. "zendframework/zend-cache": "2.*,<2.3",
  1762. "zendframework/zend-log": "2.*,<2.3"
  1763. },
  1764. "suggest": {
  1765. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  1766. },
  1767. "type": "library",
  1768. "extra": {
  1769. "branch-alias": {
  1770. "dev-master": "3.9-dev"
  1771. }
  1772. },
  1773. "autoload": {
  1774. "psr-0": {
  1775. "Guzzle": "src/",
  1776. "Guzzle\\Tests": "tests/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Michael Dowling",
  1786. "email": "mtdowling@gmail.com",
  1787. "homepage": "https://github.com/mtdowling"
  1788. },
  1789. {
  1790. "name": "Guzzle Community",
  1791. "homepage": "https://github.com/guzzle/guzzle/contributors"
  1792. }
  1793. ],
  1794. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  1795. "homepage": "http://guzzlephp.org/",
  1796. "keywords": [
  1797. "client",
  1798. "curl",
  1799. "framework",
  1800. "http",
  1801. "http client",
  1802. "rest",
  1803. "web service"
  1804. ],
  1805. "abandoned": "guzzlehttp/guzzle",
  1806. "time": "2015-03-18T18:23:50+00:00"
  1807. },
  1808. {
  1809. "name": "guzzlehttp/guzzle",
  1810. "version": "6.5.5",
  1811. "source": {
  1812. "type": "git",
  1813. "url": "https://github.com/guzzle/guzzle.git",
  1814. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1815. },
  1816. "dist": {
  1817. "type": "zip",
  1818. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1819. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1820. "shasum": "",
  1821. "mirrors": [
  1822. {
  1823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1824. "preferred": true
  1825. }
  1826. ]
  1827. },
  1828. "require": {
  1829. "ext-json": "*",
  1830. "guzzlehttp/promises": "^1.0",
  1831. "guzzlehttp/psr7": "^1.6.1",
  1832. "php": ">=5.5",
  1833. "symfony/polyfill-intl-idn": "^1.17.0"
  1834. },
  1835. "require-dev": {
  1836. "ext-curl": "*",
  1837. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1838. "psr/log": "^1.1"
  1839. },
  1840. "suggest": {
  1841. "psr/log": "Required for using the Log middleware"
  1842. },
  1843. "type": "library",
  1844. "extra": {
  1845. "branch-alias": {
  1846. "dev-master": "6.5-dev"
  1847. }
  1848. },
  1849. "autoload": {
  1850. "psr-4": {
  1851. "GuzzleHttp\\": "src/"
  1852. },
  1853. "files": [
  1854. "src/functions_include.php"
  1855. ]
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "MIT"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Michael Dowling",
  1864. "email": "mtdowling@gmail.com",
  1865. "homepage": "https://github.com/mtdowling"
  1866. }
  1867. ],
  1868. "description": "Guzzle is a PHP HTTP client library",
  1869. "homepage": "http://guzzlephp.org/",
  1870. "keywords": [
  1871. "client",
  1872. "curl",
  1873. "framework",
  1874. "http",
  1875. "http client",
  1876. "rest",
  1877. "web service"
  1878. ],
  1879. "time": "2020-06-16T21:01:06+00:00"
  1880. },
  1881. {
  1882. "name": "guzzlehttp/promises",
  1883. "version": "v1.3.1",
  1884. "source": {
  1885. "type": "git",
  1886. "url": "https://github.com/guzzle/promises.git",
  1887. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1888. },
  1889. "dist": {
  1890. "type": "zip",
  1891. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1892. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1893. "shasum": "",
  1894. "mirrors": [
  1895. {
  1896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1897. "preferred": true
  1898. }
  1899. ]
  1900. },
  1901. "require": {
  1902. "php": ">=5.5.0"
  1903. },
  1904. "require-dev": {
  1905. "phpunit/phpunit": "^4.0"
  1906. },
  1907. "type": "library",
  1908. "extra": {
  1909. "branch-alias": {
  1910. "dev-master": "1.4-dev"
  1911. }
  1912. },
  1913. "autoload": {
  1914. "psr-4": {
  1915. "GuzzleHttp\\Promise\\": "src/"
  1916. },
  1917. "files": [
  1918. "src/functions_include.php"
  1919. ]
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Michael Dowling",
  1928. "email": "mtdowling@gmail.com",
  1929. "homepage": "https://github.com/mtdowling"
  1930. }
  1931. ],
  1932. "description": "Guzzle promises library",
  1933. "keywords": [
  1934. "promise"
  1935. ],
  1936. "time": "2016-12-20T10:07:11+00:00"
  1937. },
  1938. {
  1939. "name": "guzzlehttp/psr7",
  1940. "version": "1.7.0",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/guzzle/psr7.git",
  1944. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1949. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1950. "shasum": "",
  1951. "mirrors": [
  1952. {
  1953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1954. "preferred": true
  1955. }
  1956. ]
  1957. },
  1958. "require": {
  1959. "php": ">=5.4.0",
  1960. "psr/http-message": "~1.0",
  1961. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1962. },
  1963. "provide": {
  1964. "psr/http-message-implementation": "1.0"
  1965. },
  1966. "require-dev": {
  1967. "ext-zlib": "*",
  1968. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1969. },
  1970. "suggest": {
  1971. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "1.7-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "GuzzleHttp\\Psr7\\": "src/"
  1982. },
  1983. "files": [
  1984. "src/functions_include.php"
  1985. ]
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Michael Dowling",
  1994. "email": "mtdowling@gmail.com",
  1995. "homepage": "https://github.com/mtdowling"
  1996. },
  1997. {
  1998. "name": "Tobias Schultze",
  1999. "homepage": "https://github.com/Tobion"
  2000. }
  2001. ],
  2002. "description": "PSR-7 message implementation that also provides common utility methods",
  2003. "keywords": [
  2004. "http",
  2005. "message",
  2006. "psr-7",
  2007. "request",
  2008. "response",
  2009. "stream",
  2010. "uri",
  2011. "url"
  2012. ],
  2013. "time": "2020-09-30T07:37:11+00:00"
  2014. },
  2015. {
  2016. "name": "intervention/image",
  2017. "version": "2.7.2",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/Intervention/image.git",
  2021. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2026. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2027. "shasum": "",
  2028. "mirrors": [
  2029. {
  2030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2031. "preferred": true
  2032. }
  2033. ]
  2034. },
  2035. "require": {
  2036. "ext-fileinfo": "*",
  2037. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2038. "php": ">=5.4.0"
  2039. },
  2040. "require-dev": {
  2041. "mockery/mockery": "~0.9.2",
  2042. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2043. },
  2044. "suggest": {
  2045. "ext-gd": "to use GD library based image processing.",
  2046. "ext-imagick": "to use Imagick based image processing.",
  2047. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "branch-alias": {
  2052. "dev-master": "2.4-dev"
  2053. },
  2054. "laravel": {
  2055. "providers": [
  2056. "Intervention\\Image\\ImageServiceProvider"
  2057. ],
  2058. "aliases": {
  2059. "Image": "Intervention\\Image\\Facades\\Image"
  2060. }
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Intervention\\Image\\": "src/Intervention/Image"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Oliver Vogel",
  2075. "email": "oliver@intervention.io",
  2076. "homepage": "https://intervention.io/"
  2077. }
  2078. ],
  2079. "description": "Image handling and manipulation library with support for Laravel integration",
  2080. "homepage": "http://image.intervention.io/",
  2081. "keywords": [
  2082. "gd",
  2083. "image",
  2084. "imagick",
  2085. "laravel",
  2086. "thumbnail",
  2087. "watermark"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/Intervention/image/issues",
  2091. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2092. },
  2093. "funding": [
  2094. {
  2095. "url": "https://paypal.me/interventionio",
  2096. "type": "custom"
  2097. },
  2098. {
  2099. "url": "https://github.com/Intervention",
  2100. "type": "github"
  2101. }
  2102. ],
  2103. "time": "2022-05-21T17:30:32+00:00"
  2104. },
  2105. {
  2106. "name": "league/flysystem",
  2107. "version": "2.5.0",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/thephpleague/flysystem.git",
  2111. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  2116. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  2117. "shasum": "",
  2118. "mirrors": [
  2119. {
  2120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2121. "preferred": true
  2122. }
  2123. ]
  2124. },
  2125. "require": {
  2126. "ext-json": "*",
  2127. "league/mime-type-detection": "^1.0.0",
  2128. "php": "^7.2 || ^8.0"
  2129. },
  2130. "conflict": {
  2131. "guzzlehttp/ringphp": "<1.1.1"
  2132. },
  2133. "require-dev": {
  2134. "async-aws/s3": "^1.5",
  2135. "async-aws/simple-s3": "^1.0",
  2136. "aws/aws-sdk-php": "^3.132.4",
  2137. "composer/semver": "^3.0",
  2138. "ext-fileinfo": "*",
  2139. "ext-ftp": "*",
  2140. "friendsofphp/php-cs-fixer": "^3.2",
  2141. "google/cloud-storage": "^1.23",
  2142. "phpseclib/phpseclib": "^2.0",
  2143. "phpstan/phpstan": "^0.12.26",
  2144. "phpunit/phpunit": "^8.5 || ^9.4",
  2145. "sabre/dav": "^4.1"
  2146. },
  2147. "type": "library",
  2148. "autoload": {
  2149. "psr-4": {
  2150. "League\\Flysystem\\": "src"
  2151. }
  2152. },
  2153. "notification-url": "https://packagist.org/downloads/",
  2154. "license": [
  2155. "MIT"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "Frank de Jonge",
  2160. "email": "info@frankdejonge.nl"
  2161. }
  2162. ],
  2163. "description": "File storage abstraction for PHP",
  2164. "keywords": [
  2165. "WebDAV",
  2166. "aws",
  2167. "cloud",
  2168. "file",
  2169. "files",
  2170. "filesystem",
  2171. "filesystems",
  2172. "ftp",
  2173. "s3",
  2174. "sftp",
  2175. "storage"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/thephpleague/flysystem/issues",
  2179. "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
  2180. },
  2181. "funding": [
  2182. {
  2183. "url": "https://ecologi.com/frankdejonge",
  2184. "type": "custom"
  2185. },
  2186. {
  2187. "url": "https://github.com/frankdejonge",
  2188. "type": "github"
  2189. },
  2190. {
  2191. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2192. "type": "tidelift"
  2193. }
  2194. ],
  2195. "time": "2022-09-17T21:02:32+00:00"
  2196. },
  2197. {
  2198. "name": "league/mime-type-detection",
  2199. "version": "1.11.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2203. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2208. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2209. "shasum": "",
  2210. "mirrors": [
  2211. {
  2212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2213. "preferred": true
  2214. }
  2215. ]
  2216. },
  2217. "require": {
  2218. "ext-fileinfo": "*",
  2219. "php": "^7.2 || ^8.0"
  2220. },
  2221. "require-dev": {
  2222. "friendsofphp/php-cs-fixer": "^3.2",
  2223. "phpstan/phpstan": "^0.12.68",
  2224. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2225. },
  2226. "type": "library",
  2227. "autoload": {
  2228. "psr-4": {
  2229. "League\\MimeTypeDetection\\": "src"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Frank de Jonge",
  2239. "email": "info@frankdejonge.nl"
  2240. }
  2241. ],
  2242. "description": "Mime-type detection for Flysystem",
  2243. "support": {
  2244. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2245. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2246. },
  2247. "funding": [
  2248. {
  2249. "url": "https://github.com/frankdejonge",
  2250. "type": "github"
  2251. },
  2252. {
  2253. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2254. "type": "tidelift"
  2255. }
  2256. ],
  2257. "time": "2022-04-17T13:12:02+00:00"
  2258. },
  2259. {
  2260. "name": "lizhichao/one-sm",
  2261. "version": "1.10",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/lizhichao/sm.git",
  2265. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2270. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2271. "shasum": "",
  2272. "mirrors": [
  2273. {
  2274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2275. "preferred": true
  2276. }
  2277. ]
  2278. },
  2279. "require": {
  2280. "php": ">=5.6"
  2281. },
  2282. "type": "library",
  2283. "autoload": {
  2284. "psr-4": {
  2285. "OneSm\\": "src/"
  2286. }
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "Apache-2.0"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "tanszhe",
  2295. "email": "1018595261@qq.com"
  2296. }
  2297. ],
  2298. "description": "国密sm3",
  2299. "keywords": [
  2300. "php",
  2301. "sm3"
  2302. ],
  2303. "support": {
  2304. "issues": "https://github.com/lizhichao/sm/issues",
  2305. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2306. },
  2307. "funding": [
  2308. {
  2309. "url": "https://www.vicsdf.com/img/w.jpg",
  2310. "type": "custom"
  2311. },
  2312. {
  2313. "url": "https://www.vicsdf.com/img/z.jpg",
  2314. "type": "custom"
  2315. }
  2316. ],
  2317. "time": "2021-05-26T06:19:22+00:00"
  2318. },
  2319. {
  2320. "name": "lizhichao/word",
  2321. "version": "v2.1",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/lizhichao/VicWord.git",
  2325. "reference": "f17172d45f505e7140da0bde2103defc13255326"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/lizhichao/VicWord/zipball/f17172d45f505e7140da0bde2103defc13255326",
  2330. "reference": "f17172d45f505e7140da0bde2103defc13255326",
  2331. "shasum": "",
  2332. "mirrors": [
  2333. {
  2334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2335. "preferred": true
  2336. }
  2337. ]
  2338. },
  2339. "require": {
  2340. "php": ">=5.6.0"
  2341. },
  2342. "type": "library",
  2343. "autoload": {
  2344. "psr-4": {
  2345. "Lizhichao\\Word\\": "Lib"
  2346. }
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "Apache-2.0"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "tanszhe",
  2355. "email": "1018595261@qq.com"
  2356. }
  2357. ],
  2358. "description": "This is a participle library",
  2359. "support": {
  2360. "issues": "https://github.com/lizhichao/VicWord/issues",
  2361. "source": "https://github.com/lizhichao/VicWord/tree/master"
  2362. },
  2363. "time": "2020-07-30T07:33:06+00:00"
  2364. },
  2365. {
  2366. "name": "maennchen/zipstream-php",
  2367. "version": "2.1.0",
  2368. "source": {
  2369. "type": "git",
  2370. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2371. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2372. },
  2373. "dist": {
  2374. "type": "zip",
  2375. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2376. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2377. "shasum": "",
  2378. "mirrors": [
  2379. {
  2380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2381. "preferred": true
  2382. }
  2383. ]
  2384. },
  2385. "require": {
  2386. "myclabs/php-enum": "^1.5",
  2387. "php": ">= 7.1",
  2388. "psr/http-message": "^1.0",
  2389. "symfony/polyfill-mbstring": "^1.0"
  2390. },
  2391. "require-dev": {
  2392. "ext-zip": "*",
  2393. "guzzlehttp/guzzle": ">= 6.3",
  2394. "mikey179/vfsstream": "^1.6",
  2395. "phpunit/phpunit": ">= 7.5"
  2396. },
  2397. "type": "library",
  2398. "autoload": {
  2399. "psr-4": {
  2400. "ZipStream\\": "src/"
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Paul Duncan",
  2410. "email": "pabs@pablotron.org"
  2411. },
  2412. {
  2413. "name": "Jonatan Männchen",
  2414. "email": "jonatan@maennchen.ch"
  2415. },
  2416. {
  2417. "name": "Jesse Donat",
  2418. "email": "donatj@gmail.com"
  2419. },
  2420. {
  2421. "name": "András Kolesár",
  2422. "email": "kolesar@kolesar.hu"
  2423. }
  2424. ],
  2425. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2426. "keywords": [
  2427. "stream",
  2428. "zip"
  2429. ],
  2430. "time": "2020-05-30T13:11:16+00:00"
  2431. },
  2432. {
  2433. "name": "markbaker/complex",
  2434. "version": "1.4.8",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2438. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/8eaa40cceec7bf0518187530b2e63871be661b72",
  2443. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72",
  2444. "shasum": "",
  2445. "mirrors": [
  2446. {
  2447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2448. "preferred": true
  2449. }
  2450. ]
  2451. },
  2452. "require": {
  2453. "php": "^5.6.0|^7.0.0"
  2454. },
  2455. "require-dev": {
  2456. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  2457. "phpcompatibility/php-compatibility": "^9.0",
  2458. "phpdocumentor/phpdocumentor": "2.*",
  2459. "phploc/phploc": "2.*",
  2460. "phpmd/phpmd": "2.*",
  2461. "phpunit/phpunit": "^4.8.35|^5.4.0",
  2462. "sebastian/phpcpd": "2.*",
  2463. "squizlabs/php_codesniffer": "^3.4.0"
  2464. },
  2465. "type": "library",
  2466. "autoload": {
  2467. "psr-4": {
  2468. "Complex\\": "classes/src/"
  2469. },
  2470. "files": [
  2471. "classes/src/functions/abs.php",
  2472. "classes/src/functions/acos.php",
  2473. "classes/src/functions/acosh.php",
  2474. "classes/src/functions/acot.php",
  2475. "classes/src/functions/acoth.php",
  2476. "classes/src/functions/acsc.php",
  2477. "classes/src/functions/acsch.php",
  2478. "classes/src/functions/argument.php",
  2479. "classes/src/functions/asec.php",
  2480. "classes/src/functions/asech.php",
  2481. "classes/src/functions/asin.php",
  2482. "classes/src/functions/asinh.php",
  2483. "classes/src/functions/atan.php",
  2484. "classes/src/functions/atanh.php",
  2485. "classes/src/functions/conjugate.php",
  2486. "classes/src/functions/cos.php",
  2487. "classes/src/functions/cosh.php",
  2488. "classes/src/functions/cot.php",
  2489. "classes/src/functions/coth.php",
  2490. "classes/src/functions/csc.php",
  2491. "classes/src/functions/csch.php",
  2492. "classes/src/functions/exp.php",
  2493. "classes/src/functions/inverse.php",
  2494. "classes/src/functions/ln.php",
  2495. "classes/src/functions/log2.php",
  2496. "classes/src/functions/log10.php",
  2497. "classes/src/functions/negative.php",
  2498. "classes/src/functions/pow.php",
  2499. "classes/src/functions/rho.php",
  2500. "classes/src/functions/sec.php",
  2501. "classes/src/functions/sech.php",
  2502. "classes/src/functions/sin.php",
  2503. "classes/src/functions/sinh.php",
  2504. "classes/src/functions/sqrt.php",
  2505. "classes/src/functions/tan.php",
  2506. "classes/src/functions/tanh.php",
  2507. "classes/src/functions/theta.php",
  2508. "classes/src/operations/add.php",
  2509. "classes/src/operations/subtract.php",
  2510. "classes/src/operations/multiply.php",
  2511. "classes/src/operations/divideby.php",
  2512. "classes/src/operations/divideinto.php"
  2513. ]
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Mark Baker",
  2522. "email": "mark@lange.demon.co.uk"
  2523. }
  2524. ],
  2525. "description": "PHP Class for working with complex numbers",
  2526. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2527. "keywords": [
  2528. "complex",
  2529. "mathematics"
  2530. ],
  2531. "time": "2020-03-11T20:15:49+00:00"
  2532. },
  2533. {
  2534. "name": "markbaker/matrix",
  2535. "version": "1.2.0",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2539. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2544. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2545. "shasum": "",
  2546. "mirrors": [
  2547. {
  2548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2549. "preferred": true
  2550. }
  2551. ]
  2552. },
  2553. "require": {
  2554. "php": "^5.6.0|^7.0.0"
  2555. },
  2556. "require-dev": {
  2557. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2558. "phpcompatibility/php-compatibility": "dev-master",
  2559. "phploc/phploc": "^4",
  2560. "phpmd/phpmd": "dev-master",
  2561. "phpunit/phpunit": "^5.7",
  2562. "sebastian/phpcpd": "^3.0",
  2563. "squizlabs/php_codesniffer": "^3.0@dev"
  2564. },
  2565. "type": "library",
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Matrix\\": "classes/src/"
  2569. },
  2570. "files": [
  2571. "classes/src/functions/adjoint.php",
  2572. "classes/src/functions/antidiagonal.php",
  2573. "classes/src/functions/cofactors.php",
  2574. "classes/src/functions/determinant.php",
  2575. "classes/src/functions/diagonal.php",
  2576. "classes/src/functions/identity.php",
  2577. "classes/src/functions/inverse.php",
  2578. "classes/src/functions/minors.php",
  2579. "classes/src/functions/trace.php",
  2580. "classes/src/functions/transpose.php",
  2581. "classes/src/operations/add.php",
  2582. "classes/src/operations/directsum.php",
  2583. "classes/src/operations/subtract.php",
  2584. "classes/src/operations/multiply.php",
  2585. "classes/src/operations/divideby.php",
  2586. "classes/src/operations/divideinto.php"
  2587. ]
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Mark Baker",
  2596. "email": "mark@lange.demon.co.uk"
  2597. }
  2598. ],
  2599. "description": "PHP Class for working with matrices",
  2600. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2601. "keywords": [
  2602. "mathematics",
  2603. "matrix",
  2604. "vector"
  2605. ],
  2606. "time": "2019-10-06T11:29:25+00:00"
  2607. },
  2608. {
  2609. "name": "monolog/monolog",
  2610. "version": "1.24.0",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/Seldaek/monolog.git",
  2614. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2619. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2620. "shasum": "",
  2621. "mirrors": [
  2622. {
  2623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2624. "preferred": true
  2625. }
  2626. ]
  2627. },
  2628. "require": {
  2629. "php": ">=5.3.0",
  2630. "psr/log": "~1.0"
  2631. },
  2632. "provide": {
  2633. "psr/log-implementation": "1.0.0"
  2634. },
  2635. "require-dev": {
  2636. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2637. "doctrine/couchdb": "~1.0@dev",
  2638. "graylog2/gelf-php": "~1.0",
  2639. "jakub-onderka/php-parallel-lint": "0.9",
  2640. "php-amqplib/php-amqplib": "~2.4",
  2641. "php-console/php-console": "^3.1.3",
  2642. "phpunit/phpunit": "~4.5",
  2643. "phpunit/phpunit-mock-objects": "2.3.0",
  2644. "ruflin/elastica": ">=0.90 <3.0",
  2645. "sentry/sentry": "^0.13",
  2646. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2647. },
  2648. "suggest": {
  2649. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2650. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2651. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2652. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2653. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2654. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2655. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2656. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2657. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2658. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2659. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2660. },
  2661. "type": "library",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "2.0.x-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-4": {
  2669. "Monolog\\": "src/Monolog"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Jordi Boggiano",
  2679. "email": "j.boggiano@seld.be",
  2680. "homepage": "http://seld.be"
  2681. }
  2682. ],
  2683. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2684. "homepage": "http://github.com/Seldaek/monolog",
  2685. "keywords": [
  2686. "log",
  2687. "logging",
  2688. "psr-3"
  2689. ],
  2690. "time": "2018-11-05T09:00:11+00:00"
  2691. },
  2692. {
  2693. "name": "mtdowling/jmespath.php",
  2694. "version": "2.5.0",
  2695. "source": {
  2696. "type": "git",
  2697. "url": "https://github.com/jmespath/jmespath.php.git",
  2698. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  2699. },
  2700. "dist": {
  2701. "type": "zip",
  2702. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  2703. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  2704. "shasum": "",
  2705. "mirrors": [
  2706. {
  2707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2708. "preferred": true
  2709. }
  2710. ]
  2711. },
  2712. "require": {
  2713. "php": ">=5.4.0",
  2714. "symfony/polyfill-mbstring": "^1.4"
  2715. },
  2716. "require-dev": {
  2717. "composer/xdebug-handler": "^1.2",
  2718. "phpunit/phpunit": "^4.8.36|^7.5.15"
  2719. },
  2720. "bin": [
  2721. "bin/jp.php"
  2722. ],
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-master": "2.5-dev"
  2727. }
  2728. },
  2729. "autoload": {
  2730. "psr-4": {
  2731. "JmesPath\\": "src/"
  2732. },
  2733. "files": [
  2734. "src/JmesPath.php"
  2735. ]
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Michael Dowling",
  2744. "email": "mtdowling@gmail.com",
  2745. "homepage": "https://github.com/mtdowling"
  2746. }
  2747. ],
  2748. "description": "Declaratively specify how to extract elements from a JSON document",
  2749. "keywords": [
  2750. "json",
  2751. "jsonpath"
  2752. ],
  2753. "time": "2019-12-30T18:03:34+00:00"
  2754. },
  2755. {
  2756. "name": "myclabs/php-enum",
  2757. "version": "1.7.6",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/myclabs/php-enum.git",
  2761. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2766. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2767. "shasum": "",
  2768. "mirrors": [
  2769. {
  2770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2771. "preferred": true
  2772. }
  2773. ]
  2774. },
  2775. "require": {
  2776. "ext-json": "*",
  2777. "php": ">=7.1"
  2778. },
  2779. "require-dev": {
  2780. "phpunit/phpunit": "^7",
  2781. "squizlabs/php_codesniffer": "1.*",
  2782. "vimeo/psalm": "^3.8"
  2783. },
  2784. "type": "library",
  2785. "autoload": {
  2786. "psr-4": {
  2787. "MyCLabs\\Enum\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "PHP Enum contributors",
  2797. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2798. }
  2799. ],
  2800. "description": "PHP Enum implementation",
  2801. "homepage": "http://github.com/myclabs/php-enum",
  2802. "keywords": [
  2803. "enum"
  2804. ],
  2805. "time": "2020-02-14T08:15:52+00:00"
  2806. },
  2807. {
  2808. "name": "nesbot/carbon",
  2809. "version": "2.20.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/briannesbitt/Carbon.git",
  2813. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bc671b896c276795fad8426b0aa24e8ade0f2498",
  2818. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498",
  2819. "shasum": "",
  2820. "mirrors": [
  2821. {
  2822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2823. "preferred": true
  2824. }
  2825. ]
  2826. },
  2827. "require": {
  2828. "ext-json": "*",
  2829. "php": "^7.1.8 || ^8.0",
  2830. "symfony/translation": "^3.4 || ^4.0"
  2831. },
  2832. "require-dev": {
  2833. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2834. "kylekatarnls/multi-tester": "^1.1",
  2835. "phpmd/phpmd": "^2.6",
  2836. "phpstan/phpstan": "^0.11",
  2837. "phpunit/phpunit": "^7.5 || ^8.0",
  2838. "squizlabs/php_codesniffer": "^3.4"
  2839. },
  2840. "type": "library",
  2841. "extra": {
  2842. "laravel": {
  2843. "providers": [
  2844. "Carbon\\Laravel\\ServiceProvider"
  2845. ]
  2846. }
  2847. },
  2848. "autoload": {
  2849. "psr-4": {
  2850. "Carbon\\": "src/Carbon/"
  2851. }
  2852. },
  2853. "notification-url": "https://packagist.org/downloads/",
  2854. "license": [
  2855. "MIT"
  2856. ],
  2857. "authors": [
  2858. {
  2859. "name": "Brian Nesbitt",
  2860. "email": "brian@nesbot.com",
  2861. "homepage": "http://nesbot.com"
  2862. }
  2863. ],
  2864. "description": "A simple API extension for DateTime.",
  2865. "homepage": "http://carbon.nesbot.com",
  2866. "keywords": [
  2867. "date",
  2868. "datetime",
  2869. "time"
  2870. ],
  2871. "time": "2019-06-25T10:00:57+00:00"
  2872. },
  2873. {
  2874. "name": "overtrue/socialite",
  2875. "version": "1.3.0",
  2876. "source": {
  2877. "type": "git",
  2878. "url": "https://github.com/overtrue/socialite.git",
  2879. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  2880. },
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  2884. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  2885. "shasum": "",
  2886. "mirrors": [
  2887. {
  2888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2889. "preferred": true
  2890. }
  2891. ]
  2892. },
  2893. "require": {
  2894. "guzzlehttp/guzzle": "~5.0|~6.0",
  2895. "php": ">=5.4.0",
  2896. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  2897. },
  2898. "require-dev": {
  2899. "mockery/mockery": "~0.9",
  2900. "phpunit/phpunit": "~4.0"
  2901. },
  2902. "type": "library",
  2903. "autoload": {
  2904. "psr-4": {
  2905. "Overtrue\\Socialite\\": "src/"
  2906. }
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "overtrue",
  2915. "email": "anzhengchao@gmail.com"
  2916. }
  2917. ],
  2918. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2919. "keywords": [
  2920. "login",
  2921. "oauth",
  2922. "qq",
  2923. "social",
  2924. "wechat",
  2925. "weibo"
  2926. ],
  2927. "time": "2017-08-04T06:28:22+00:00"
  2928. },
  2929. {
  2930. "name": "overtrue/wechat",
  2931. "version": "3.3.33",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/overtrue/wechat.git",
  2935. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/overtrue/wechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  2940. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  2941. "shasum": "",
  2942. "mirrors": [
  2943. {
  2944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2945. "preferred": true
  2946. }
  2947. ]
  2948. },
  2949. "require": {
  2950. "doctrine/cache": "1.4.*",
  2951. "ext-openssl": "*",
  2952. "guzzlehttp/guzzle": "~6.2",
  2953. "monolog/monolog": "^1.17",
  2954. "overtrue/socialite": "^1.0.25",
  2955. "php": ">=5.5.0",
  2956. "pimple/pimple": "~3.0",
  2957. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  2958. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  2959. },
  2960. "require-dev": {
  2961. "mockery/mockery": "^0.9.9",
  2962. "overtrue/phplint": "dev-master",
  2963. "phpunit/phpunit": "~4.0"
  2964. },
  2965. "type": "library",
  2966. "autoload": {
  2967. "psr-4": {
  2968. "EasyWeChat\\": "src/"
  2969. },
  2970. "files": [
  2971. "src/Payment/helpers.php"
  2972. ]
  2973. },
  2974. "notification-url": "https://packagist.org/downloads/",
  2975. "license": [
  2976. "MIT"
  2977. ],
  2978. "authors": [
  2979. {
  2980. "name": "overtrue",
  2981. "email": "anzhengchao@gmail.com"
  2982. }
  2983. ],
  2984. "description": "微信SDK",
  2985. "keywords": [
  2986. "sdk",
  2987. "wechat",
  2988. "weixin",
  2989. "weixin-sdk"
  2990. ],
  2991. "time": "2018-10-17T12:27:27+00:00"
  2992. },
  2993. {
  2994. "name": "paragonie/random_compat",
  2995. "version": "v9.99.99",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://github.com/paragonie/random_compat.git",
  2999. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3004. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3005. "shasum": "",
  3006. "mirrors": [
  3007. {
  3008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3009. "preferred": true
  3010. }
  3011. ]
  3012. },
  3013. "require": {
  3014. "php": "^7"
  3015. },
  3016. "require-dev": {
  3017. "phpunit/phpunit": "4.*|5.*",
  3018. "vimeo/psalm": "^1"
  3019. },
  3020. "suggest": {
  3021. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3022. },
  3023. "type": "library",
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Paragon Initiative Enterprises",
  3031. "email": "security@paragonie.com",
  3032. "homepage": "https://paragonie.com"
  3033. }
  3034. ],
  3035. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3036. "keywords": [
  3037. "csprng",
  3038. "polyfill",
  3039. "pseudorandom",
  3040. "random"
  3041. ],
  3042. "time": "2018-07-02T15:55:56+00:00"
  3043. },
  3044. {
  3045. "name": "phpoffice/phpspreadsheet",
  3046. "version": "1.13.0",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3050. "reference": "21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1",
  3055. "reference": "21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1",
  3056. "shasum": "",
  3057. "mirrors": [
  3058. {
  3059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3060. "preferred": true
  3061. }
  3062. ]
  3063. },
  3064. "require": {
  3065. "ext-ctype": "*",
  3066. "ext-dom": "*",
  3067. "ext-fileinfo": "*",
  3068. "ext-gd": "*",
  3069. "ext-iconv": "*",
  3070. "ext-libxml": "*",
  3071. "ext-mbstring": "*",
  3072. "ext-simplexml": "*",
  3073. "ext-xml": "*",
  3074. "ext-xmlreader": "*",
  3075. "ext-xmlwriter": "*",
  3076. "ext-zip": "*",
  3077. "ext-zlib": "*",
  3078. "maennchen/zipstream-php": "^2.0",
  3079. "markbaker/complex": "^1.4",
  3080. "markbaker/matrix": "^1.2",
  3081. "php": "^7.2",
  3082. "psr/simple-cache": "^1.0"
  3083. },
  3084. "require-dev": {
  3085. "dompdf/dompdf": "^0.8.5",
  3086. "friendsofphp/php-cs-fixer": "^2.16",
  3087. "jpgraph/jpgraph": "^4.0",
  3088. "mpdf/mpdf": "^8.0",
  3089. "phpcompatibility/php-compatibility": "^9.3",
  3090. "phpunit/phpunit": "^8.5",
  3091. "squizlabs/php_codesniffer": "^3.5",
  3092. "tecnickcom/tcpdf": "^6.3"
  3093. },
  3094. "suggest": {
  3095. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3096. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3097. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3098. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3099. },
  3100. "type": "library",
  3101. "autoload": {
  3102. "psr-4": {
  3103. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3104. }
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Maarten Balliauw",
  3113. "homepage": "https://blog.maartenballiauw.be"
  3114. },
  3115. {
  3116. "name": "Mark Baker",
  3117. "homepage": "https://markbakeruk.net"
  3118. },
  3119. {
  3120. "name": "Franck Lefevre",
  3121. "homepage": "https://rootslabs.net"
  3122. },
  3123. {
  3124. "name": "Erik Tilt"
  3125. },
  3126. {
  3127. "name": "Adrien Crivelli"
  3128. }
  3129. ],
  3130. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3131. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3132. "keywords": [
  3133. "OpenXML",
  3134. "excel",
  3135. "gnumeric",
  3136. "ods",
  3137. "php",
  3138. "spreadsheet",
  3139. "xls",
  3140. "xlsx"
  3141. ],
  3142. "time": "2020-05-31T13:49:28+00:00"
  3143. },
  3144. {
  3145. "name": "pimple/pimple",
  3146. "version": "v3.2.3",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://github.com/silexphp/Pimple.git",
  3150. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  3155. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  3156. "shasum": "",
  3157. "mirrors": [
  3158. {
  3159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3160. "preferred": true
  3161. }
  3162. ]
  3163. },
  3164. "require": {
  3165. "php": ">=5.3.0",
  3166. "psr/container": "^1.0"
  3167. },
  3168. "require-dev": {
  3169. "symfony/phpunit-bridge": "^3.2"
  3170. },
  3171. "type": "library",
  3172. "extra": {
  3173. "branch-alias": {
  3174. "dev-master": "3.2.x-dev"
  3175. }
  3176. },
  3177. "autoload": {
  3178. "psr-0": {
  3179. "Pimple": "src/"
  3180. }
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "MIT"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Fabien Potencier",
  3189. "email": "fabien@symfony.com"
  3190. }
  3191. ],
  3192. "description": "Pimple, a simple Dependency Injection Container",
  3193. "homepage": "http://pimple.sensiolabs.org",
  3194. "keywords": [
  3195. "container",
  3196. "dependency injection"
  3197. ],
  3198. "time": "2018-01-21T07:42:36+00:00"
  3199. },
  3200. {
  3201. "name": "psr/cache",
  3202. "version": "1.0.1",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/php-fig/cache.git",
  3206. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3211. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3212. "shasum": "",
  3213. "mirrors": [
  3214. {
  3215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3216. "preferred": true
  3217. }
  3218. ]
  3219. },
  3220. "require": {
  3221. "php": ">=5.3.0"
  3222. },
  3223. "type": "library",
  3224. "extra": {
  3225. "branch-alias": {
  3226. "dev-master": "1.0.x-dev"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-4": {
  3231. "Psr\\Cache\\": "src/"
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "PHP-FIG",
  3241. "homepage": "http://www.php-fig.org/"
  3242. }
  3243. ],
  3244. "description": "Common interface for caching libraries",
  3245. "keywords": [
  3246. "cache",
  3247. "psr",
  3248. "psr-6"
  3249. ],
  3250. "time": "2016-08-06T20:24:11+00:00"
  3251. },
  3252. {
  3253. "name": "psr/container",
  3254. "version": "1.0.0",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/php-fig/container.git",
  3258. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3263. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3264. "shasum": "",
  3265. "mirrors": [
  3266. {
  3267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3268. "preferred": true
  3269. }
  3270. ]
  3271. },
  3272. "require": {
  3273. "php": ">=5.3.0"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "branch-alias": {
  3278. "dev-master": "1.0.x-dev"
  3279. }
  3280. },
  3281. "autoload": {
  3282. "psr-4": {
  3283. "Psr\\Container\\": "src/"
  3284. }
  3285. },
  3286. "notification-url": "https://packagist.org/downloads/",
  3287. "license": [
  3288. "MIT"
  3289. ],
  3290. "authors": [
  3291. {
  3292. "name": "PHP-FIG",
  3293. "homepage": "http://www.php-fig.org/"
  3294. }
  3295. ],
  3296. "description": "Common Container Interface (PHP FIG PSR-11)",
  3297. "homepage": "https://github.com/php-fig/container",
  3298. "keywords": [
  3299. "PSR-11",
  3300. "container",
  3301. "container-interface",
  3302. "container-interop",
  3303. "psr"
  3304. ],
  3305. "time": "2017-02-14T16:28:37+00:00"
  3306. },
  3307. {
  3308. "name": "psr/http-message",
  3309. "version": "1.0.1",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/php-fig/http-message.git",
  3313. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3318. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3319. "shasum": "",
  3320. "mirrors": [
  3321. {
  3322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3323. "preferred": true
  3324. }
  3325. ]
  3326. },
  3327. "require": {
  3328. "php": ">=5.3.0"
  3329. },
  3330. "type": "library",
  3331. "extra": {
  3332. "branch-alias": {
  3333. "dev-master": "1.0.x-dev"
  3334. }
  3335. },
  3336. "autoload": {
  3337. "psr-4": {
  3338. "Psr\\Http\\Message\\": "src/"
  3339. }
  3340. },
  3341. "notification-url": "https://packagist.org/downloads/",
  3342. "license": [
  3343. "MIT"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "PHP-FIG",
  3348. "homepage": "http://www.php-fig.org/"
  3349. }
  3350. ],
  3351. "description": "Common interface for HTTP messages",
  3352. "homepage": "https://github.com/php-fig/http-message",
  3353. "keywords": [
  3354. "http",
  3355. "http-message",
  3356. "psr",
  3357. "psr-7",
  3358. "request",
  3359. "response"
  3360. ],
  3361. "time": "2016-08-06T14:39:51+00:00"
  3362. },
  3363. {
  3364. "name": "psr/log",
  3365. "version": "1.1.2",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/php-fig/log.git",
  3369. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  3374. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  3375. "shasum": "",
  3376. "mirrors": [
  3377. {
  3378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3379. "preferred": true
  3380. }
  3381. ]
  3382. },
  3383. "require": {
  3384. "php": ">=5.3.0"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "1.1.x-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "psr-4": {
  3394. "Psr\\Log\\": "Psr/Log/"
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "authors": [
  3402. {
  3403. "name": "PHP-FIG",
  3404. "homepage": "http://www.php-fig.org/"
  3405. }
  3406. ],
  3407. "description": "Common interface for logging libraries",
  3408. "homepage": "https://github.com/php-fig/log",
  3409. "keywords": [
  3410. "log",
  3411. "psr",
  3412. "psr-3"
  3413. ],
  3414. "time": "2019-11-01T11:05:21+00:00"
  3415. },
  3416. {
  3417. "name": "psr/simple-cache",
  3418. "version": "1.0.1",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/php-fig/simple-cache.git",
  3422. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3427. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3428. "shasum": "",
  3429. "mirrors": [
  3430. {
  3431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3432. "preferred": true
  3433. }
  3434. ]
  3435. },
  3436. "require": {
  3437. "php": ">=5.3.0"
  3438. },
  3439. "type": "library",
  3440. "extra": {
  3441. "branch-alias": {
  3442. "dev-master": "1.0.x-dev"
  3443. }
  3444. },
  3445. "autoload": {
  3446. "psr-4": {
  3447. "Psr\\SimpleCache\\": "src/"
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "PHP-FIG",
  3457. "homepage": "http://www.php-fig.org/"
  3458. }
  3459. ],
  3460. "description": "Common interfaces for simple caching",
  3461. "keywords": [
  3462. "cache",
  3463. "caching",
  3464. "psr",
  3465. "psr-16",
  3466. "simple-cache"
  3467. ],
  3468. "time": "2017-10-23T01:57:42+00:00"
  3469. },
  3470. {
  3471. "name": "qcloud/cos-sdk-v5",
  3472. "version": "v1.3.5",
  3473. "source": {
  3474. "type": "git",
  3475. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3476. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d"
  3477. },
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  3481. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  3482. "shasum": "",
  3483. "mirrors": [
  3484. {
  3485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3486. "preferred": true
  3487. }
  3488. ]
  3489. },
  3490. "require": {
  3491. "guzzle/guzzle": "~3.7",
  3492. "php": ">=5.3.0"
  3493. },
  3494. "type": "library",
  3495. "autoload": {
  3496. "psr-0": {
  3497. "Qcloud\\Cos\\": "src/"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "yaozongyou",
  3507. "email": "yaozongyou@vip.qq.com"
  3508. },
  3509. {
  3510. "name": "lewzylu",
  3511. "email": "327874225@qq.com"
  3512. }
  3513. ],
  3514. "description": "PHP SDK for QCloud COS",
  3515. "keywords": [
  3516. "cos",
  3517. "php",
  3518. "qcloud"
  3519. ],
  3520. "time": "2019-08-07T10:15:47+00:00"
  3521. },
  3522. {
  3523. "name": "qcloud_sts/qcloud-sts-sdk",
  3524. "version": "3.0.3",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/tencentyun/qcloud-cos-sts-php-sdk.git",
  3528. "reference": "d6b12a0bdebc025f039c958979714298d408bf92"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/tencentyun/qcloud-cos-sts-php-sdk/zipball/d6b12a0bdebc025f039c958979714298d408bf92",
  3533. "reference": "d6b12a0bdebc025f039c958979714298d408bf92",
  3534. "shasum": "",
  3535. "mirrors": [
  3536. {
  3537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3538. "preferred": true
  3539. }
  3540. ]
  3541. },
  3542. "require": {
  3543. "php": ">=5.3.0"
  3544. },
  3545. "type": "library",
  3546. "autoload": {
  3547. "psr-4": {
  3548. "QCloud\\COSSTS\\": "src"
  3549. }
  3550. },
  3551. "notification-url": "https://packagist.org/downloads/",
  3552. "license": [
  3553. "MIT"
  3554. ],
  3555. "authors": [
  3556. {
  3557. "name": "qcloudterminal",
  3558. "email": "qcloudterminal@gmail.com"
  3559. }
  3560. ],
  3561. "description": "PHP SDK for QCloud STS",
  3562. "homepage": "https://github.com/tencentyun/qcloud-cos-sts-sdk",
  3563. "keywords": [
  3564. "cos",
  3565. "php",
  3566. "qcloud",
  3567. "sts"
  3568. ],
  3569. "time": "2020-06-03T11:55:39+00:00"
  3570. },
  3571. {
  3572. "name": "qiniu/php-sdk",
  3573. "version": "v7.2.9",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://github.com/qiniu/php-sdk.git",
  3577. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  3582. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  3583. "shasum": "",
  3584. "mirrors": [
  3585. {
  3586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3587. "preferred": true
  3588. }
  3589. ]
  3590. },
  3591. "require": {
  3592. "php": ">=5.3.3"
  3593. },
  3594. "require-dev": {
  3595. "phpunit/phpunit": "~4.0",
  3596. "squizlabs/php_codesniffer": "~2.3"
  3597. },
  3598. "type": "library",
  3599. "autoload": {
  3600. "psr-4": {
  3601. "Qiniu\\": "src/Qiniu"
  3602. },
  3603. "files": [
  3604. "src/Qiniu/functions.php"
  3605. ]
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "Qiniu",
  3614. "email": "sdk@qiniu.com",
  3615. "homepage": "http://www.qiniu.com"
  3616. }
  3617. ],
  3618. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3619. "homepage": "http://developer.qiniu.com/",
  3620. "keywords": [
  3621. "cloud",
  3622. "qiniu",
  3623. "sdk",
  3624. "storage"
  3625. ],
  3626. "time": "2019-07-09T07:55:07+00:00"
  3627. },
  3628. {
  3629. "name": "ralouphie/getallheaders",
  3630. "version": "2.0.5",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/ralouphie/getallheaders.git",
  3634. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3639. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3640. "shasum": "",
  3641. "mirrors": [
  3642. {
  3643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3644. "preferred": true
  3645. }
  3646. ]
  3647. },
  3648. "require": {
  3649. "php": ">=5.3"
  3650. },
  3651. "require-dev": {
  3652. "phpunit/phpunit": "~3.7.0",
  3653. "satooshi/php-coveralls": ">=1.0"
  3654. },
  3655. "type": "library",
  3656. "autoload": {
  3657. "files": [
  3658. "src/getallheaders.php"
  3659. ]
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Ralph Khattar",
  3668. "email": "ralph.khattar@gmail.com"
  3669. }
  3670. ],
  3671. "description": "A polyfill for getallheaders.",
  3672. "time": "2016-02-11T07:05:27+00:00"
  3673. },
  3674. {
  3675. "name": "songshenzong/support",
  3676. "version": "2.0.5",
  3677. "source": {
  3678. "type": "git",
  3679. "url": "https://github.com/songshenzong/support.git",
  3680. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  3681. },
  3682. "dist": {
  3683. "type": "zip",
  3684. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3685. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3686. "shasum": "",
  3687. "mirrors": [
  3688. {
  3689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3690. "preferred": true
  3691. }
  3692. ]
  3693. },
  3694. "require": {
  3695. "danielstjules/stringy": "^3.1",
  3696. "ext-json": "*",
  3697. "ext-simplexml": "*",
  3698. "ext-xml": "*",
  3699. "php": ">=5.5"
  3700. },
  3701. "require-dev": {
  3702. "laravel/framework": "^5.8",
  3703. "phpunit/phpunit": "^4.8.35|^5.4.3"
  3704. },
  3705. "type": "library",
  3706. "extra": {
  3707. "laravel": {
  3708. "providers": [
  3709. "Songshenzong\\Support\\StringsServiceProvider"
  3710. ],
  3711. "aliases": {
  3712. "Strings": "Songshenzong\\Support\\StringsFacade"
  3713. }
  3714. }
  3715. },
  3716. "autoload": {
  3717. "psr-4": {
  3718. "Songshenzong\\Support\\": "src/"
  3719. },
  3720. "files": [
  3721. "src/StringsHelpers.php",
  3722. "src/BashEchoHelpers.php"
  3723. ]
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "MIT"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "Songshenzong",
  3732. "email": "i@songshenzong.com"
  3733. }
  3734. ],
  3735. "description": "The Songshenzong Support package.",
  3736. "homepage": "http://songshenzong.com",
  3737. "keywords": [
  3738. "laravel",
  3739. "support",
  3740. "tools",
  3741. "web"
  3742. ],
  3743. "time": "2019-08-29T01:59:12+00:00"
  3744. },
  3745. {
  3746. "name": "spatie/macroable",
  3747. "version": "1.0.0",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://github.com/spatie/macroable.git",
  3751. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://api.github.com/repos/spatie/macroable/zipball/74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  3756. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  3757. "shasum": "",
  3758. "mirrors": [
  3759. {
  3760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3761. "preferred": true
  3762. }
  3763. ]
  3764. },
  3765. "require": {
  3766. "php": "^7.0"
  3767. },
  3768. "require-dev": {
  3769. "phpunit/phpunit": "^6.3"
  3770. },
  3771. "type": "library",
  3772. "autoload": {
  3773. "psr-4": {
  3774. "Spatie\\Macroable\\": "src"
  3775. }
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Freek Van der Herten",
  3784. "email": "freek@spatie.be",
  3785. "homepage": "https://spatie.be",
  3786. "role": "Developer"
  3787. }
  3788. ],
  3789. "description": "A trait to dynamically add methods to a class",
  3790. "homepage": "https://github.com/spatie/macroable",
  3791. "keywords": [
  3792. "macroable",
  3793. "spatie"
  3794. ],
  3795. "time": "2017-09-18T09:51:20+00:00"
  3796. },
  3797. {
  3798. "name": "symfony/event-dispatcher",
  3799. "version": "v2.8.50",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/symfony/event-dispatcher.git",
  3803. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3808. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3809. "shasum": "",
  3810. "mirrors": [
  3811. {
  3812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3813. "preferred": true
  3814. }
  3815. ]
  3816. },
  3817. "require": {
  3818. "php": ">=5.3.9"
  3819. },
  3820. "require-dev": {
  3821. "psr/log": "~1.0",
  3822. "symfony/config": "^2.0.5|~3.0.0",
  3823. "symfony/dependency-injection": "~2.6|~3.0.0",
  3824. "symfony/expression-language": "~2.6|~3.0.0",
  3825. "symfony/stopwatch": "~2.3|~3.0.0"
  3826. },
  3827. "suggest": {
  3828. "symfony/dependency-injection": "",
  3829. "symfony/http-kernel": ""
  3830. },
  3831. "type": "library",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-master": "2.8-dev"
  3835. }
  3836. },
  3837. "autoload": {
  3838. "psr-4": {
  3839. "Symfony\\Component\\EventDispatcher\\": ""
  3840. },
  3841. "exclude-from-classmap": [
  3842. "/Tests/"
  3843. ]
  3844. },
  3845. "notification-url": "https://packagist.org/downloads/",
  3846. "license": [
  3847. "MIT"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "Fabien Potencier",
  3852. "email": "fabien@symfony.com"
  3853. },
  3854. {
  3855. "name": "Symfony Community",
  3856. "homepage": "https://symfony.com/contributors"
  3857. }
  3858. ],
  3859. "description": "Symfony EventDispatcher Component",
  3860. "homepage": "https://symfony.com",
  3861. "time": "2018-11-21T14:20:20+00:00"
  3862. },
  3863. {
  3864. "name": "symfony/http-foundation",
  3865. "version": "v3.4.28",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/symfony/http-foundation.git",
  3869. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  3874. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  3875. "shasum": "",
  3876. "mirrors": [
  3877. {
  3878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3879. "preferred": true
  3880. }
  3881. ]
  3882. },
  3883. "require": {
  3884. "php": "^5.5.9|>=7.0.8",
  3885. "symfony/polyfill-mbstring": "~1.1",
  3886. "symfony/polyfill-php70": "~1.6"
  3887. },
  3888. "require-dev": {
  3889. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3890. },
  3891. "type": "library",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-master": "3.4-dev"
  3895. }
  3896. },
  3897. "autoload": {
  3898. "psr-4": {
  3899. "Symfony\\Component\\HttpFoundation\\": ""
  3900. },
  3901. "exclude-from-classmap": [
  3902. "/Tests/"
  3903. ]
  3904. },
  3905. "notification-url": "https://packagist.org/downloads/",
  3906. "license": [
  3907. "MIT"
  3908. ],
  3909. "authors": [
  3910. {
  3911. "name": "Fabien Potencier",
  3912. "email": "fabien@symfony.com"
  3913. },
  3914. {
  3915. "name": "Symfony Community",
  3916. "homepage": "https://symfony.com/contributors"
  3917. }
  3918. ],
  3919. "description": "Symfony HttpFoundation Component",
  3920. "homepage": "https://symfony.com",
  3921. "time": "2019-05-27T05:50:24+00:00"
  3922. },
  3923. {
  3924. "name": "symfony/polyfill-intl-idn",
  3925. "version": "v1.18.1",
  3926. "source": {
  3927. "type": "git",
  3928. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3929. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  3930. },
  3931. "dist": {
  3932. "type": "zip",
  3933. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  3934. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  3935. "shasum": "",
  3936. "mirrors": [
  3937. {
  3938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3939. "preferred": true
  3940. }
  3941. ]
  3942. },
  3943. "require": {
  3944. "php": ">=5.3.3",
  3945. "symfony/polyfill-intl-normalizer": "^1.10",
  3946. "symfony/polyfill-php70": "^1.10",
  3947. "symfony/polyfill-php72": "^1.10"
  3948. },
  3949. "suggest": {
  3950. "ext-intl": "For best performance"
  3951. },
  3952. "type": "library",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-master": "1.18-dev"
  3956. },
  3957. "thanks": {
  3958. "name": "symfony/polyfill",
  3959. "url": "https://github.com/symfony/polyfill"
  3960. }
  3961. },
  3962. "autoload": {
  3963. "psr-4": {
  3964. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3965. },
  3966. "files": [
  3967. "bootstrap.php"
  3968. ]
  3969. },
  3970. "notification-url": "https://packagist.org/downloads/",
  3971. "license": [
  3972. "MIT"
  3973. ],
  3974. "authors": [
  3975. {
  3976. "name": "Laurent Bassin",
  3977. "email": "laurent@bassin.info"
  3978. },
  3979. {
  3980. "name": "Trevor Rowbotham",
  3981. "email": "trevor.rowbotham@pm.me"
  3982. },
  3983. {
  3984. "name": "Symfony Community",
  3985. "homepage": "https://symfony.com/contributors"
  3986. }
  3987. ],
  3988. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3989. "homepage": "https://symfony.com",
  3990. "keywords": [
  3991. "compatibility",
  3992. "idn",
  3993. "intl",
  3994. "polyfill",
  3995. "portable",
  3996. "shim"
  3997. ],
  3998. "time": "2020-08-04T06:02:08+00:00"
  3999. },
  4000. {
  4001. "name": "symfony/polyfill-intl-normalizer",
  4002. "version": "v1.18.1",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4006. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4011. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4012. "shasum": "",
  4013. "mirrors": [
  4014. {
  4015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4016. "preferred": true
  4017. }
  4018. ]
  4019. },
  4020. "require": {
  4021. "php": ">=5.3.3"
  4022. },
  4023. "suggest": {
  4024. "ext-intl": "For best performance"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "1.18-dev"
  4030. },
  4031. "thanks": {
  4032. "name": "symfony/polyfill",
  4033. "url": "https://github.com/symfony/polyfill"
  4034. }
  4035. },
  4036. "autoload": {
  4037. "psr-4": {
  4038. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4039. },
  4040. "files": [
  4041. "bootstrap.php"
  4042. ],
  4043. "classmap": [
  4044. "Resources/stubs"
  4045. ]
  4046. },
  4047. "notification-url": "https://packagist.org/downloads/",
  4048. "license": [
  4049. "MIT"
  4050. ],
  4051. "authors": [
  4052. {
  4053. "name": "Nicolas Grekas",
  4054. "email": "p@tchwork.com"
  4055. },
  4056. {
  4057. "name": "Symfony Community",
  4058. "homepage": "https://symfony.com/contributors"
  4059. }
  4060. ],
  4061. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4062. "homepage": "https://symfony.com",
  4063. "keywords": [
  4064. "compatibility",
  4065. "intl",
  4066. "normalizer",
  4067. "polyfill",
  4068. "portable",
  4069. "shim"
  4070. ],
  4071. "time": "2020-07-14T12:35:20+00:00"
  4072. },
  4073. {
  4074. "name": "symfony/polyfill-mbstring",
  4075. "version": "v1.11.0",
  4076. "source": {
  4077. "type": "git",
  4078. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4079. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4080. },
  4081. "dist": {
  4082. "type": "zip",
  4083. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  4084. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  4085. "shasum": "",
  4086. "mirrors": [
  4087. {
  4088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4089. "preferred": true
  4090. }
  4091. ]
  4092. },
  4093. "require": {
  4094. "php": ">=5.3.3"
  4095. },
  4096. "suggest": {
  4097. "ext-mbstring": "For best performance"
  4098. },
  4099. "type": "library",
  4100. "extra": {
  4101. "branch-alias": {
  4102. "dev-master": "1.11-dev"
  4103. }
  4104. },
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Symfony\\Polyfill\\Mbstring\\": ""
  4108. },
  4109. "files": [
  4110. "bootstrap.php"
  4111. ]
  4112. },
  4113. "notification-url": "https://packagist.org/downloads/",
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "Nicolas Grekas",
  4120. "email": "p@tchwork.com"
  4121. },
  4122. {
  4123. "name": "Symfony Community",
  4124. "homepage": "https://symfony.com/contributors"
  4125. }
  4126. ],
  4127. "description": "Symfony polyfill for the Mbstring extension",
  4128. "homepage": "https://symfony.com",
  4129. "keywords": [
  4130. "compatibility",
  4131. "mbstring",
  4132. "polyfill",
  4133. "portable",
  4134. "shim"
  4135. ],
  4136. "time": "2019-02-06T07:57:58+00:00"
  4137. },
  4138. {
  4139. "name": "symfony/polyfill-php70",
  4140. "version": "v1.11.0",
  4141. "source": {
  4142. "type": "git",
  4143. "url": "https://github.com/symfony/polyfill-php70.git",
  4144. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  4145. },
  4146. "dist": {
  4147. "type": "zip",
  4148. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  4149. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  4150. "shasum": "",
  4151. "mirrors": [
  4152. {
  4153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4154. "preferred": true
  4155. }
  4156. ]
  4157. },
  4158. "require": {
  4159. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4160. "php": ">=5.3.3"
  4161. },
  4162. "type": "library",
  4163. "extra": {
  4164. "branch-alias": {
  4165. "dev-master": "1.11-dev"
  4166. }
  4167. },
  4168. "autoload": {
  4169. "psr-4": {
  4170. "Symfony\\Polyfill\\Php70\\": ""
  4171. },
  4172. "files": [
  4173. "bootstrap.php"
  4174. ],
  4175. "classmap": [
  4176. "Resources/stubs"
  4177. ]
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Nicolas Grekas",
  4186. "email": "p@tchwork.com"
  4187. },
  4188. {
  4189. "name": "Symfony Community",
  4190. "homepage": "https://symfony.com/contributors"
  4191. }
  4192. ],
  4193. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4194. "homepage": "https://symfony.com",
  4195. "keywords": [
  4196. "compatibility",
  4197. "polyfill",
  4198. "portable",
  4199. "shim"
  4200. ],
  4201. "time": "2019-02-06T07:57:58+00:00"
  4202. },
  4203. {
  4204. "name": "symfony/polyfill-php72",
  4205. "version": "v1.11.0",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/symfony/polyfill-php72.git",
  4209. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4214. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4215. "shasum": "",
  4216. "mirrors": [
  4217. {
  4218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4219. "preferred": true
  4220. }
  4221. ]
  4222. },
  4223. "require": {
  4224. "php": ">=5.3.3"
  4225. },
  4226. "type": "library",
  4227. "extra": {
  4228. "branch-alias": {
  4229. "dev-master": "1.11-dev"
  4230. }
  4231. },
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Symfony\\Polyfill\\Php72\\": ""
  4235. },
  4236. "files": [
  4237. "bootstrap.php"
  4238. ]
  4239. },
  4240. "notification-url": "https://packagist.org/downloads/",
  4241. "license": [
  4242. "MIT"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Nicolas Grekas",
  4247. "email": "p@tchwork.com"
  4248. },
  4249. {
  4250. "name": "Symfony Community",
  4251. "homepage": "https://symfony.com/contributors"
  4252. }
  4253. ],
  4254. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4255. "homepage": "https://symfony.com",
  4256. "keywords": [
  4257. "compatibility",
  4258. "polyfill",
  4259. "portable",
  4260. "shim"
  4261. ],
  4262. "time": "2019-02-06T07:57:58+00:00"
  4263. },
  4264. {
  4265. "name": "symfony/process",
  4266. "version": "v4.3.2",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/symfony/process.git",
  4270. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c",
  4275. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c",
  4276. "shasum": "",
  4277. "mirrors": [
  4278. {
  4279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4280. "preferred": true
  4281. }
  4282. ]
  4283. },
  4284. "require": {
  4285. "php": "^7.1.3"
  4286. },
  4287. "type": "library",
  4288. "extra": {
  4289. "branch-alias": {
  4290. "dev-master": "4.3-dev"
  4291. }
  4292. },
  4293. "autoload": {
  4294. "psr-4": {
  4295. "Symfony\\Component\\Process\\": ""
  4296. },
  4297. "exclude-from-classmap": [
  4298. "/Tests/"
  4299. ]
  4300. },
  4301. "notification-url": "https://packagist.org/downloads/",
  4302. "license": [
  4303. "MIT"
  4304. ],
  4305. "authors": [
  4306. {
  4307. "name": "Fabien Potencier",
  4308. "email": "fabien@symfony.com"
  4309. },
  4310. {
  4311. "name": "Symfony Community",
  4312. "homepage": "https://symfony.com/contributors"
  4313. }
  4314. ],
  4315. "description": "Symfony Process Component",
  4316. "homepage": "https://symfony.com",
  4317. "time": "2019-05-30T16:10:05+00:00"
  4318. },
  4319. {
  4320. "name": "symfony/psr-http-message-bridge",
  4321. "version": "v1.2.0",
  4322. "source": {
  4323. "type": "git",
  4324. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4325. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4326. },
  4327. "dist": {
  4328. "type": "zip",
  4329. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4330. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4331. "shasum": "",
  4332. "mirrors": [
  4333. {
  4334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4335. "preferred": true
  4336. }
  4337. ]
  4338. },
  4339. "require": {
  4340. "php": "^7.1",
  4341. "psr/http-message": "^1.0",
  4342. "symfony/http-foundation": "^3.4 || ^4.0"
  4343. },
  4344. "require-dev": {
  4345. "nyholm/psr7": "^1.1",
  4346. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  4347. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4348. },
  4349. "suggest": {
  4350. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4351. },
  4352. "type": "symfony-bridge",
  4353. "extra": {
  4354. "branch-alias": {
  4355. "dev-master": "1.2-dev"
  4356. }
  4357. },
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4361. },
  4362. "exclude-from-classmap": [
  4363. "/Tests/"
  4364. ]
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "MIT"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Symfony Community",
  4373. "homepage": "http://symfony.com/contributors"
  4374. },
  4375. {
  4376. "name": "Fabien Potencier",
  4377. "email": "fabien@symfony.com"
  4378. }
  4379. ],
  4380. "description": "PSR HTTP message bridge",
  4381. "homepage": "http://symfony.com",
  4382. "keywords": [
  4383. "http",
  4384. "http-message",
  4385. "psr-17",
  4386. "psr-7"
  4387. ],
  4388. "time": "2019-03-11T18:22:33+00:00"
  4389. },
  4390. {
  4391. "name": "symfony/translation",
  4392. "version": "v4.3.2",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/symfony/translation.git",
  4396. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0",
  4401. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0",
  4402. "shasum": "",
  4403. "mirrors": [
  4404. {
  4405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4406. "preferred": true
  4407. }
  4408. ]
  4409. },
  4410. "require": {
  4411. "php": "^7.1.3",
  4412. "symfony/polyfill-mbstring": "~1.0",
  4413. "symfony/translation-contracts": "^1.1.2"
  4414. },
  4415. "conflict": {
  4416. "symfony/config": "<3.4",
  4417. "symfony/dependency-injection": "<3.4",
  4418. "symfony/yaml": "<3.4"
  4419. },
  4420. "provide": {
  4421. "symfony/translation-implementation": "1.0"
  4422. },
  4423. "require-dev": {
  4424. "psr/log": "~1.0",
  4425. "symfony/config": "~3.4|~4.0",
  4426. "symfony/console": "~3.4|~4.0",
  4427. "symfony/dependency-injection": "~3.4|~4.0",
  4428. "symfony/finder": "~2.8|~3.0|~4.0",
  4429. "symfony/http-kernel": "~3.4|~4.0",
  4430. "symfony/intl": "~3.4|~4.0",
  4431. "symfony/service-contracts": "^1.1.2",
  4432. "symfony/var-dumper": "~3.4|~4.0",
  4433. "symfony/yaml": "~3.4|~4.0"
  4434. },
  4435. "suggest": {
  4436. "psr/log-implementation": "To use logging capability in translator",
  4437. "symfony/config": "",
  4438. "symfony/yaml": ""
  4439. },
  4440. "type": "library",
  4441. "extra": {
  4442. "branch-alias": {
  4443. "dev-master": "4.3-dev"
  4444. }
  4445. },
  4446. "autoload": {
  4447. "psr-4": {
  4448. "Symfony\\Component\\Translation\\": ""
  4449. },
  4450. "exclude-from-classmap": [
  4451. "/Tests/"
  4452. ]
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Fabien Potencier",
  4461. "email": "fabien@symfony.com"
  4462. },
  4463. {
  4464. "name": "Symfony Community",
  4465. "homepage": "https://symfony.com/contributors"
  4466. }
  4467. ],
  4468. "description": "Symfony Translation Component",
  4469. "homepage": "https://symfony.com",
  4470. "time": "2019-06-13T11:03:18+00:00"
  4471. },
  4472. {
  4473. "name": "symfony/translation-contracts",
  4474. "version": "v1.1.5",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/symfony/translation-contracts.git",
  4478. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  4483. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  4484. "shasum": "",
  4485. "mirrors": [
  4486. {
  4487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4488. "preferred": true
  4489. }
  4490. ]
  4491. },
  4492. "require": {
  4493. "php": "^7.1.3"
  4494. },
  4495. "suggest": {
  4496. "symfony/translation-implementation": ""
  4497. },
  4498. "type": "library",
  4499. "extra": {
  4500. "branch-alias": {
  4501. "dev-master": "1.1-dev"
  4502. }
  4503. },
  4504. "autoload": {
  4505. "psr-4": {
  4506. "Symfony\\Contracts\\Translation\\": ""
  4507. }
  4508. },
  4509. "notification-url": "https://packagist.org/downloads/",
  4510. "license": [
  4511. "MIT"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Nicolas Grekas",
  4516. "email": "p@tchwork.com"
  4517. },
  4518. {
  4519. "name": "Symfony Community",
  4520. "homepage": "https://symfony.com/contributors"
  4521. }
  4522. ],
  4523. "description": "Generic abstractions related to translation",
  4524. "homepage": "https://symfony.com",
  4525. "keywords": [
  4526. "abstractions",
  4527. "contracts",
  4528. "decoupling",
  4529. "interfaces",
  4530. "interoperability",
  4531. "standards"
  4532. ],
  4533. "time": "2019-06-13T11:15:36+00:00"
  4534. },
  4535. {
  4536. "name": "symfony/var-dumper",
  4537. "version": "v4.3.1",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/symfony/var-dumper.git",
  4541. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b",
  4546. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b",
  4547. "shasum": "",
  4548. "mirrors": [
  4549. {
  4550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4551. "preferred": true
  4552. }
  4553. ]
  4554. },
  4555. "require": {
  4556. "php": "^7.1.3",
  4557. "symfony/polyfill-mbstring": "~1.0",
  4558. "symfony/polyfill-php72": "~1.5"
  4559. },
  4560. "conflict": {
  4561. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4562. "symfony/console": "<3.4"
  4563. },
  4564. "require-dev": {
  4565. "ext-iconv": "*",
  4566. "symfony/console": "~3.4|~4.0",
  4567. "symfony/process": "~3.4|~4.0",
  4568. "twig/twig": "~1.34|~2.4"
  4569. },
  4570. "suggest": {
  4571. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4572. "ext-intl": "To show region name in time zone dump",
  4573. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4574. },
  4575. "bin": [
  4576. "Resources/bin/var-dump-server"
  4577. ],
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-master": "4.3-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "files": [
  4586. "Resources/functions/dump.php"
  4587. ],
  4588. "psr-4": {
  4589. "Symfony\\Component\\VarDumper\\": ""
  4590. },
  4591. "exclude-from-classmap": [
  4592. "/Tests/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Nicolas Grekas",
  4602. "email": "p@tchwork.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4610. "homepage": "https://symfony.com",
  4611. "keywords": [
  4612. "debug",
  4613. "dump"
  4614. ],
  4615. "time": "2019-06-05T02:08:12+00:00"
  4616. },
  4617. {
  4618. "name": "topthink/framework",
  4619. "version": "v6.1.2",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/top-think/framework.git",
  4623. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/top-think/framework/zipball/67235be5b919aaaf1de5aed9839f65d8e766aca3",
  4628. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3",
  4629. "shasum": "",
  4630. "mirrors": [
  4631. {
  4632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4633. "preferred": true
  4634. }
  4635. ]
  4636. },
  4637. "require": {
  4638. "ext-json": "*",
  4639. "ext-mbstring": "*",
  4640. "php": ">=7.2.5",
  4641. "psr/container": "~1.0",
  4642. "psr/http-message": "^1.0",
  4643. "psr/log": "~1.0",
  4644. "psr/simple-cache": "^1.0",
  4645. "topthink/think-helper": "^3.1.1",
  4646. "topthink/think-orm": "^2.0|^3.0"
  4647. },
  4648. "require-dev": {
  4649. "guzzlehttp/psr7": "^2.1.0",
  4650. "mikey179/vfsstream": "^1.6",
  4651. "mockery/mockery": "^1.2",
  4652. "phpunit/phpunit": "^7.0"
  4653. },
  4654. "type": "library",
  4655. "autoload": {
  4656. "files": [],
  4657. "psr-4": {
  4658. "think\\": "src/think/"
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "Apache-2.0"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "liu21st",
  4668. "email": "liu21st@gmail.com"
  4669. },
  4670. {
  4671. "name": "yunwuxin",
  4672. "email": "448901948@qq.com"
  4673. }
  4674. ],
  4675. "description": "The ThinkPHP Framework.",
  4676. "homepage": "http://thinkphp.cn/",
  4677. "keywords": [
  4678. "framework",
  4679. "orm",
  4680. "thinkphp"
  4681. ],
  4682. "support": {
  4683. "issues": "https://github.com/top-think/framework/issues",
  4684. "source": "https://github.com/top-think/framework/tree/v6.1.2"
  4685. },
  4686. "time": "2023-02-08T02:24:01+00:00"
  4687. },
  4688. {
  4689. "name": "topthink/think-captcha",
  4690. "version": "v3.0.1",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/top-think/think-captcha.git",
  4694. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/9fc0c627d773f6a54a8dd142ebf358f746557a48",
  4699. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48",
  4700. "shasum": "",
  4701. "mirrors": [
  4702. {
  4703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4704. "preferred": true
  4705. }
  4706. ]
  4707. },
  4708. "require": {
  4709. "topthink/framework": "^6.0.0"
  4710. },
  4711. "type": "library",
  4712. "extra": {
  4713. "think": {
  4714. "services": [
  4715. "think\\captcha\\CaptchaService"
  4716. ]
  4717. }
  4718. },
  4719. "autoload": {
  4720. "psr-4": {
  4721. "think\\captcha\\": "src/"
  4722. },
  4723. "files": [
  4724. "src/helper.php"
  4725. ]
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "Apache-2.0"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "yunwuxin",
  4734. "email": "448901948@qq.com"
  4735. }
  4736. ],
  4737. "description": "captcha package for thinkphp",
  4738. "time": "2019-06-06T07:16:01+00:00"
  4739. },
  4740. {
  4741. "name": "topthink/think-factory",
  4742. "version": "v1.0.1",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/top-think/think-factory.git",
  4746. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4751. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4752. "shasum": "",
  4753. "mirrors": [
  4754. {
  4755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4756. "preferred": true
  4757. }
  4758. ]
  4759. },
  4760. "require": {
  4761. "topthink/framework": "^6.0.0",
  4762. "topthink/think-helper": "^3.0.0"
  4763. },
  4764. "type": "library",
  4765. "autoload": {
  4766. "psr-4": {
  4767. "think\\": "src"
  4768. }
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "Apache-2.0"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "yunwuxin",
  4777. "email": "448901948@qq.com"
  4778. }
  4779. ],
  4780. "abandoned": true,
  4781. "time": "2019-04-15T06:55:28+00:00"
  4782. },
  4783. {
  4784. "name": "topthink/think-filesystem",
  4785. "version": "v2.0.2",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/top-think/think-filesystem.git",
  4789. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  4794. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  4795. "shasum": "",
  4796. "mirrors": [
  4797. {
  4798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4799. "preferred": true
  4800. }
  4801. ]
  4802. },
  4803. "require": {
  4804. "league/flysystem": "^2.0",
  4805. "topthink/framework": "^6.1|^8.0"
  4806. },
  4807. "require-dev": {
  4808. "mikey179/vfsstream": "^1.6",
  4809. "mockery/mockery": "^1.2",
  4810. "phpunit/phpunit": "^8.0"
  4811. },
  4812. "type": "library",
  4813. "autoload": {
  4814. "psr-4": {
  4815. "think\\": "src"
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "Apache-2.0"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "yunwuxin",
  4825. "email": "448901948@qq.com"
  4826. }
  4827. ],
  4828. "description": "The ThinkPHP6.1 Filesystem Package",
  4829. "support": {
  4830. "issues": "https://github.com/top-think/think-filesystem/issues",
  4831. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2"
  4832. },
  4833. "time": "2023-02-08T01:23:42+00:00"
  4834. },
  4835. {
  4836. "name": "topthink/think-helper",
  4837. "version": "v3.1.3",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/top-think/think-helper.git",
  4841. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  4846. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  4847. "shasum": "",
  4848. "mirrors": [
  4849. {
  4850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4851. "preferred": true
  4852. }
  4853. ]
  4854. },
  4855. "require": {
  4856. "php": ">=7.1.0"
  4857. },
  4858. "type": "library",
  4859. "autoload": {
  4860. "psr-4": {
  4861. "think\\": "src"
  4862. },
  4863. "files": [
  4864. "src/helper.php"
  4865. ]
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "Apache-2.0"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "yunwuxin",
  4874. "email": "448901948@qq.com"
  4875. }
  4876. ],
  4877. "description": "The ThinkPHP6 Helper Package",
  4878. "time": "2019-09-30T02:36:48+00:00"
  4879. },
  4880. {
  4881. "name": "topthink/think-image",
  4882. "version": "v1.0.7",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/top-think/think-image.git",
  4886. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  4891. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  4892. "shasum": "",
  4893. "mirrors": [
  4894. {
  4895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4896. "preferred": true
  4897. }
  4898. ]
  4899. },
  4900. "require": {
  4901. "ext-gd": "*"
  4902. },
  4903. "require-dev": {
  4904. "phpunit/phpunit": "4.8.*",
  4905. "topthink/framework": "^5.0"
  4906. },
  4907. "type": "library",
  4908. "autoload": {
  4909. "psr-4": {
  4910. "think\\": "src"
  4911. }
  4912. },
  4913. "notification-url": "https://packagist.org/downloads/",
  4914. "license": [
  4915. "Apache-2.0"
  4916. ],
  4917. "authors": [
  4918. {
  4919. "name": "yunwuxin",
  4920. "email": "448901948@qq.com"
  4921. }
  4922. ],
  4923. "description": "The ThinkPHP5 Image Package",
  4924. "time": "2016-09-29T06:05:43+00:00"
  4925. },
  4926. {
  4927. "name": "topthink/think-migration",
  4928. "version": "v3.0.4",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/top-think/think-migration.git",
  4932. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/top-think/think-migration/zipball/c5880669b277762d5ff935e551bc0d5c71de6811",
  4937. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811",
  4938. "shasum": "",
  4939. "mirrors": [
  4940. {
  4941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4942. "preferred": true
  4943. }
  4944. ]
  4945. },
  4946. "require": {
  4947. "topthink/framework": "^6.0",
  4948. "topthink/think-helper": "^3.0.3"
  4949. },
  4950. "require-dev": {
  4951. "fzaninotto/faker": "^1.8"
  4952. },
  4953. "suggest": {
  4954. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  4955. },
  4956. "type": "library",
  4957. "extra": {
  4958. "think": {
  4959. "services": [
  4960. "think\\migration\\Service"
  4961. ]
  4962. }
  4963. },
  4964. "autoload": {
  4965. "psr-4": {
  4966. "Phinx\\": "phinx/src/Phinx",
  4967. "think\\migration\\": "src"
  4968. }
  4969. },
  4970. "notification-url": "https://packagist.org/downloads/",
  4971. "license": [
  4972. "Apache-2.0"
  4973. ],
  4974. "authors": [
  4975. {
  4976. "name": "yunwuxin",
  4977. "email": "448901948@qq.com"
  4978. }
  4979. ],
  4980. "support": {
  4981. "issues": "https://github.com/top-think/think-migration/issues",
  4982. "source": "https://github.com/top-think/think-migration/tree/v3.0.4"
  4983. },
  4984. "time": "2022-10-26T07:57:54+00:00"
  4985. },
  4986. {
  4987. "name": "topthink/think-multi-app",
  4988. "version": "v1.0.14",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/top-think/think-multi-app.git",
  4992. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4997. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4998. "shasum": "",
  4999. "mirrors": [
  5000. {
  5001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5002. "preferred": true
  5003. }
  5004. ]
  5005. },
  5006. "require": {
  5007. "php": ">=7.1.0",
  5008. "topthink/framework": "^6.0.0"
  5009. },
  5010. "type": "library",
  5011. "extra": {
  5012. "think": {
  5013. "services": [
  5014. "think\\app\\Service"
  5015. ]
  5016. }
  5017. },
  5018. "autoload": {
  5019. "psr-4": {
  5020. "think\\app\\": "src"
  5021. }
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "Apache-2.0"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "liu21st",
  5030. "email": "liu21st@gmail.com"
  5031. }
  5032. ],
  5033. "description": "thinkphp6 multi app support",
  5034. "time": "2020-07-12T13:50:37+00:00"
  5035. },
  5036. {
  5037. "name": "topthink/think-orm",
  5038. "version": "v2.0.33",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/top-think/think-orm.git",
  5042. "reference": "35ca511a1e4d671b39f7afb4c887703c16ef6957"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/top-think/think-orm/zipball/35ca511a1e4d671b39f7afb4c887703c16ef6957",
  5047. "reference": "35ca511a1e4d671b39f7afb4c887703c16ef6957",
  5048. "shasum": "",
  5049. "mirrors": [
  5050. {
  5051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5052. "preferred": true
  5053. }
  5054. ]
  5055. },
  5056. "require": {
  5057. "ext-json": "*",
  5058. "php": ">=7.1.0",
  5059. "psr/log": "~1.0",
  5060. "psr/simple-cache": "^1.0",
  5061. "topthink/think-helper": "^3.1"
  5062. },
  5063. "type": "library",
  5064. "autoload": {
  5065. "psr-4": {
  5066. "think\\": "src"
  5067. },
  5068. "files": []
  5069. },
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "Apache-2.0"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "liu21st",
  5077. "email": "liu21st@gmail.com"
  5078. }
  5079. ],
  5080. "description": "think orm",
  5081. "keywords": [
  5082. "database",
  5083. "orm"
  5084. ],
  5085. "time": "2020-06-22T14:57:28+00:00"
  5086. },
  5087. {
  5088. "name": "topthink/think-queue",
  5089. "version": "v3.0.2",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/top-think/think-queue.git",
  5093. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/top-think/think-queue/zipball/c34b983abce9427fca7e30ac983b75041f436ad0",
  5098. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0",
  5099. "shasum": "",
  5100. "mirrors": [
  5101. {
  5102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5103. "preferred": true
  5104. }
  5105. ]
  5106. },
  5107. "require": {
  5108. "nesbot/carbon": "^2.16",
  5109. "symfony/process": "^4.2",
  5110. "topthink/framework": "^6.0.0",
  5111. "topthink/think-factory": "^1.0.0",
  5112. "topthink/think-helper": "^3.0.4"
  5113. },
  5114. "require-dev": {
  5115. "mockery/mockery": "^1.2",
  5116. "phpunit/phpunit": "^6.2",
  5117. "topthink/think-migration": "^3.0.0"
  5118. },
  5119. "type": "library",
  5120. "extra": {
  5121. "think": {
  5122. "services": [
  5123. "think\\queue\\Service"
  5124. ],
  5125. "config": {
  5126. "queue": "src/config.php"
  5127. }
  5128. }
  5129. },
  5130. "autoload": {
  5131. "psr-4": {
  5132. "think\\": "src"
  5133. },
  5134. "files": [
  5135. "src/common.php"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "Apache-2.0"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "yunwuxin",
  5145. "email": "448901948@qq.com"
  5146. }
  5147. ],
  5148. "description": "The ThinkPHP5 Queue Package",
  5149. "time": "2019-06-06T10:41:07+00:00"
  5150. },
  5151. {
  5152. "name": "topthink/think-template",
  5153. "version": "v2.0.7",
  5154. "source": {
  5155. "type": "git",
  5156. "url": "https://github.com/top-think/think-template.git",
  5157. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  5158. },
  5159. "dist": {
  5160. "type": "zip",
  5161. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  5162. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  5163. "shasum": "",
  5164. "mirrors": [
  5165. {
  5166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5167. "preferred": true
  5168. }
  5169. ]
  5170. },
  5171. "require": {
  5172. "php": ">=7.1.0",
  5173. "psr/simple-cache": "^1.0"
  5174. },
  5175. "type": "library",
  5176. "autoload": {
  5177. "psr-4": {
  5178. "think\\": "src"
  5179. }
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "Apache-2.0"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "liu21st",
  5188. "email": "liu21st@gmail.com"
  5189. }
  5190. ],
  5191. "description": "the php template engine",
  5192. "time": "2019-09-20T15:31:04+00:00"
  5193. },
  5194. {
  5195. "name": "topthink/think-view",
  5196. "version": "v1.0.13",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/top-think/think-view.git",
  5200. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  5205. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  5206. "shasum": "",
  5207. "mirrors": [
  5208. {
  5209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5210. "preferred": true
  5211. }
  5212. ]
  5213. },
  5214. "require": {
  5215. "php": ">=7.1.0",
  5216. "topthink/think-template": "^2.0"
  5217. },
  5218. "type": "library",
  5219. "autoload": {
  5220. "psr-4": {
  5221. "think\\view\\driver\\": "src"
  5222. }
  5223. },
  5224. "notification-url": "https://packagist.org/downloads/",
  5225. "license": [
  5226. "Apache-2.0"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "liu21st",
  5231. "email": "liu21st@gmail.com"
  5232. }
  5233. ],
  5234. "description": "thinkphp template driver",
  5235. "time": "2019-10-07T12:23:10+00:00"
  5236. },
  5237. {
  5238. "name": "volcengine/volc-sdk-php",
  5239. "version": "v1.0.54",
  5240. "source": {
  5241. "type": "git",
  5242. "url": "https://github.com/volcengine/volc-sdk-php.git",
  5243. "reference": "a8f818e60faab207c794d9bad0cf161ceb0a3c4b"
  5244. },
  5245. "dist": {
  5246. "type": "zip",
  5247. "url": "https://api.github.com/repos/volcengine/volc-sdk-php/zipball/a8f818e60faab207c794d9bad0cf161ceb0a3c4b",
  5248. "reference": "a8f818e60faab207c794d9bad0cf161ceb0a3c4b",
  5249. "shasum": "",
  5250. "mirrors": [
  5251. {
  5252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5253. "preferred": true
  5254. }
  5255. ]
  5256. },
  5257. "require": {
  5258. "ext-json": "*",
  5259. "ext-openssl": "*",
  5260. "google/gax": "*",
  5261. "google/protobuf": "*",
  5262. "guzzlehttp/guzzle": "*",
  5263. "php": ">=7.0"
  5264. },
  5265. "type": "library",
  5266. "autoload": {
  5267. "psr-4": {
  5268. "Test\\": "tests/",
  5269. "Volc\\": "src/"
  5270. }
  5271. },
  5272. "notification-url": "https://packagist.org/downloads/",
  5273. "license": [
  5274. "MIT"
  5275. ],
  5276. "authors": [
  5277. {
  5278. "name": "bytedance"
  5279. }
  5280. ],
  5281. "support": {
  5282. "issues": "https://github.com/volcengine/volc-sdk-php/issues",
  5283. "source": "https://github.com/volcengine/volc-sdk-php/tree/v1.0.54"
  5284. },
  5285. "time": "2022-11-11T07:42:29+00:00"
  5286. },
  5287. {
  5288. "name": "workerman/channel",
  5289. "version": "v1.0.5",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/walkor/Channel.git",
  5293. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/walkor/Channel/zipball/0836a9a413c6e8425ee36307d95e2e49cc380f50",
  5298. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50",
  5299. "shasum": "",
  5300. "mirrors": [
  5301. {
  5302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5303. "preferred": true
  5304. }
  5305. ]
  5306. },
  5307. "require": {
  5308. "workerman/workerman": ">=3.3.0"
  5309. },
  5310. "type": "library",
  5311. "autoload": {
  5312. "psr-4": {
  5313. "Channel\\": "./src"
  5314. }
  5315. },
  5316. "notification-url": "https://packagist.org/downloads/",
  5317. "license": [
  5318. "MIT"
  5319. ],
  5320. "homepage": "http://www.workerman.net",
  5321. "time": "2018-07-02T02:42:37+00:00"
  5322. },
  5323. {
  5324. "name": "workerman/crontab",
  5325. "version": "v1.0.2",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/walkor/crontab.git",
  5329. "reference": "28106241415049ee340a8a7cd9b640165240a2fa"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/walkor/crontab/zipball/28106241415049ee340a8a7cd9b640165240a2fa",
  5334. "reference": "28106241415049ee340a8a7cd9b640165240a2fa",
  5335. "shasum": "",
  5336. "mirrors": [
  5337. {
  5338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5339. "preferred": true
  5340. }
  5341. ]
  5342. },
  5343. "require": {
  5344. "php": ">=7.0",
  5345. "workerman/workerman": ">=3.5.0"
  5346. },
  5347. "type": "library",
  5348. "autoload": {
  5349. "psr-4": {
  5350. "Workerman\\Crontab\\": "./src"
  5351. }
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "license": [
  5355. "MIT"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "walkor",
  5360. "email": "walkor@workerman.net",
  5361. "homepage": "http://www.workerman.net",
  5362. "role": "Developer"
  5363. }
  5364. ],
  5365. "description": "A crontab written in PHP based on workerman",
  5366. "homepage": "http://www.workerman.net",
  5367. "keywords": [
  5368. "crontab"
  5369. ],
  5370. "support": {
  5371. "email": "walkor@workerman.net",
  5372. "forum": "http://wenda.workerman.net/",
  5373. "issues": "https://github.com/walkor/workerman/issues",
  5374. "source": "https://github.com/walkor/crontab",
  5375. "wiki": "http://doc.workerman.net/"
  5376. },
  5377. "time": "2021-10-06T14:18:14+00:00"
  5378. },
  5379. {
  5380. "name": "workerman/workerman",
  5381. "version": "v3.5.19",
  5382. "source": {
  5383. "type": "git",
  5384. "url": "https://github.com/walkor/Workerman.git",
  5385. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367"
  5386. },
  5387. "dist": {
  5388. "type": "zip",
  5389. "url": "https://api.github.com/repos/walkor/Workerman/zipball/4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  5390. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  5391. "shasum": "",
  5392. "mirrors": [
  5393. {
  5394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5395. "preferred": true
  5396. }
  5397. ]
  5398. },
  5399. "require": {
  5400. "php": ">=5.3"
  5401. },
  5402. "suggest": {
  5403. "ext-event": "For better performance. "
  5404. },
  5405. "type": "library",
  5406. "autoload": {
  5407. "psr-4": {
  5408. "Workerman\\": "./"
  5409. }
  5410. },
  5411. "notification-url": "https://packagist.org/downloads/",
  5412. "license": [
  5413. "MIT"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "walkor",
  5418. "email": "walkor@workerman.net",
  5419. "homepage": "http://www.workerman.net",
  5420. "role": "Developer"
  5421. }
  5422. ],
  5423. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  5424. "homepage": "http://www.workerman.net",
  5425. "keywords": [
  5426. "asynchronous",
  5427. "event-loop"
  5428. ],
  5429. "time": "2019-04-05T10:35:31+00:00"
  5430. },
  5431. {
  5432. "name": "xaboy/form-builder",
  5433. "version": "2.0.17",
  5434. "source": {
  5435. "type": "git",
  5436. "url": "https://github.com/xaboy/form-builder.git",
  5437. "reference": "fc211560f2483ad61f1735293f62dc3202ce096a"
  5438. },
  5439. "dist": {
  5440. "type": "zip",
  5441. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/fc211560f2483ad61f1735293f62dc3202ce096a",
  5442. "reference": "fc211560f2483ad61f1735293f62dc3202ce096a",
  5443. "shasum": "",
  5444. "mirrors": [
  5445. {
  5446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5447. "preferred": true
  5448. }
  5449. ]
  5450. },
  5451. "require": {
  5452. "doctrine/annotations": "1.2.7",
  5453. "ext-json": "*",
  5454. "php": ">=5.4.0",
  5455. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0|~4.0"
  5456. },
  5457. "type": "library",
  5458. "autoload": {
  5459. "psr-4": {
  5460. "FormBuilder\\": "./src/"
  5461. }
  5462. },
  5463. "notification-url": "https://packagist.org/downloads/",
  5464. "license": [
  5465. "MIT"
  5466. ],
  5467. "authors": [
  5468. {
  5469. "name": "xaboy",
  5470. "email": "xaboy2005@qq.com"
  5471. }
  5472. ],
  5473. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  5474. "homepage": "https://github.com/xaboy/form-builder",
  5475. "keywords": [
  5476. "dynamic-form",
  5477. "element-ui",
  5478. "form",
  5479. "form-create",
  5480. "form-generator",
  5481. "iview"
  5482. ],
  5483. "time": "2020-05-31T05:00:08+00:00"
  5484. },
  5485. {
  5486. "name": "xin/container",
  5487. "version": "2.0.1",
  5488. "source": {
  5489. "type": "git",
  5490. "url": "https://gitee.com/liuxiaojinla/php-container",
  5491. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  5492. },
  5493. "require": {
  5494. "ext-ctype": "*",
  5495. "ext-iconv": "*",
  5496. "ext-json": "*",
  5497. "ext-libxml": "*",
  5498. "ext-mbstring": "*",
  5499. "ext-openssl": "*",
  5500. "ext-simplexml": "*",
  5501. "psr/container": "^1.0",
  5502. "xin/helper": "^1.0"
  5503. },
  5504. "type": "library",
  5505. "autoload": {
  5506. "psr-4": {
  5507. "xin\\container\\": "src/"
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "Apache-2.0"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "晋",
  5517. "email": "657306123@qq.com"
  5518. }
  5519. ],
  5520. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  5521. "time": "2019-10-21T03:51:25+00:00"
  5522. },
  5523. {
  5524. "name": "xin/helper",
  5525. "version": "1.0.0",
  5526. "source": {
  5527. "type": "git",
  5528. "url": "https://gitee.com/liuxiaojinla/php-helper",
  5529. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  5530. },
  5531. "require": {
  5532. "ext-ctype": "*",
  5533. "ext-iconv": "*",
  5534. "ext-json": "*",
  5535. "ext-libxml": "*",
  5536. "ext-mbstring": "*",
  5537. "ext-openssl": "*",
  5538. "ext-simplexml": "*"
  5539. },
  5540. "type": "library",
  5541. "autoload": {
  5542. "psr-4": {
  5543. "xin\\helper\\": "src/"
  5544. }
  5545. },
  5546. "notification-url": "https://packagist.org/downloads/",
  5547. "license": [
  5548. "Apache-2.0"
  5549. ],
  5550. "authors": [
  5551. {
  5552. "name": "晋",
  5553. "email": "1540175452@qq.com"
  5554. }
  5555. ],
  5556. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  5557. "time": "2019-06-22T08:28:23+00:00"
  5558. }
  5559. ],
  5560. "packages-dev": [],
  5561. "aliases": [],
  5562. "minimum-stability": "dev",
  5563. "stability-flags": [],
  5564. "prefer-stable": true,
  5565. "prefer-lowest": false,
  5566. "platform": {
  5567. "php": ">=7.1.0",
  5568. "ext-json": "*",
  5569. "ext-curl": "*",
  5570. "ext-bcmath": "*",
  5571. "ext-mbstring": "*",
  5572. "ext-zip": "*",
  5573. "ext-simplexml": "*"
  5574. },
  5575. "platform-dev": [],
  5576. "plugin-api-version": "2.3.0"
  5577. }