composer.lock 210 KB

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