composer.lock 335 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366
  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": "65f990ff29d6d47b18c027293e71bce8",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  20. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.0|^8.0",
  31. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  32. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^6|^7|^8|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.0-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "time": "2021-03-11T06:42:03+00:00"
  66. },
  67. {
  68. "name": "barryvdh/laravel-ide-helper",
  69. "version": "v2.8.2",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  73. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  78. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  79. "shasum": "",
  80. "mirrors": [
  81. {
  82. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  83. "preferred": true
  84. }
  85. ]
  86. },
  87. "require": {
  88. "barryvdh/reflection-docblock": "^2.0.6",
  89. "composer/composer": "^1.6 || ^2",
  90. "doctrine/dbal": "~2.3",
  91. "ext-json": "*",
  92. "illuminate/console": "^6 || ^7 || ^8",
  93. "illuminate/filesystem": "^6 || ^7 || ^8",
  94. "illuminate/support": "^6 || ^7 || ^8",
  95. "php": ">=7.2",
  96. "phpdocumentor/type-resolver": "^1.1.0"
  97. },
  98. "require-dev": {
  99. "ext-pdo_sqlite": "*",
  100. "friendsofphp/php-cs-fixer": "^2",
  101. "illuminate/config": "^6 || ^7 || ^8",
  102. "illuminate/view": "^6 || ^7 || ^8",
  103. "mockery/mockery": "^1.3.3",
  104. "orchestra/testbench": "^4 || ^5 || ^6",
  105. "phpunit/phpunit": "^8.5 || ^9",
  106. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  107. "vimeo/psalm": "^3.12"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "branch-alias": {
  112. "dev-master": "2.8-dev"
  113. },
  114. "laravel": {
  115. "providers": [
  116. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  117. ]
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "Barryvdh\\LaravelIdeHelper\\": "src"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Barry vd. Heuvel",
  132. "email": "barryvdh@gmail.com"
  133. }
  134. ],
  135. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  136. "keywords": [
  137. "autocomplete",
  138. "codeintel",
  139. "helper",
  140. "ide",
  141. "laravel",
  142. "netbeans",
  143. "phpdoc",
  144. "phpstorm",
  145. "sublime"
  146. ],
  147. "time": "2020-12-06T08:55:05+00:00"
  148. },
  149. {
  150. "name": "barryvdh/reflection-docblock",
  151. "version": "v2.0.6",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  155. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  160. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  161. "shasum": "",
  162. "mirrors": [
  163. {
  164. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  165. "preferred": true
  166. }
  167. ]
  168. },
  169. "require": {
  170. "php": ">=5.3.3"
  171. },
  172. "require-dev": {
  173. "phpunit/phpunit": "~4.0,<4.5"
  174. },
  175. "suggest": {
  176. "dflydev/markdown": "~1.0",
  177. "erusev/parsedown": "~1.0"
  178. },
  179. "type": "library",
  180. "extra": {
  181. "branch-alias": {
  182. "dev-master": "2.0.x-dev"
  183. }
  184. },
  185. "autoload": {
  186. "psr-0": {
  187. "Barryvdh": [
  188. "src/"
  189. ]
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Mike van Riel",
  199. "email": "mike.vanriel@naenius.com"
  200. }
  201. ],
  202. "time": "2018-12-13T10:34:14+00:00"
  203. },
  204. {
  205. "name": "biiiiiigmonster/hasin",
  206. "version": "v1.3.0",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/biiiiiigmonster/hasin.git",
  210. "reference": "f59a5bc62c1ee9bc1ede87e69ce8409f25cee0a7"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/biiiiiigmonster/hasin/zipball/f59a5bc62c1ee9bc1ede87e69ce8409f25cee0a7",
  215. "reference": "f59a5bc62c1ee9bc1ede87e69ce8409f25cee0a7",
  216. "shasum": "",
  217. "mirrors": [
  218. {
  219. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  220. "preferred": true
  221. }
  222. ]
  223. },
  224. "require": {
  225. "laravel/framework": ">=5.8",
  226. "php": ">=7.1"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "laravel": {
  231. "providers": [
  232. "BiiiiiigMonster\\Hasin\\HasinServiceProvider"
  233. ]
  234. }
  235. },
  236. "autoload": {
  237. "psr-4": {
  238. "BiiiiiigMonster\\Hasin\\": "src/"
  239. }
  240. },
  241. "notification-url": "https://packagist.org/downloads/",
  242. "license": [
  243. "MIT"
  244. ],
  245. "authors": [
  246. {
  247. "name": "moyou",
  248. "email": "603707288@qq.com"
  249. }
  250. ],
  251. "description": "Laravel framework relation has in implement",
  252. "keywords": [
  253. "laravel",
  254. "orm",
  255. "relation",
  256. "whereHas"
  257. ],
  258. "time": "2021-02-27T06:56:59+00:00"
  259. },
  260. {
  261. "name": "composer/ca-bundle",
  262. "version": "1.2.9",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/composer/ca-bundle.git",
  266. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  271. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  272. "shasum": "",
  273. "mirrors": [
  274. {
  275. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  276. "preferred": true
  277. }
  278. ]
  279. },
  280. "require": {
  281. "ext-openssl": "*",
  282. "ext-pcre": "*",
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^0.12.55",
  287. "psr/log": "^1.0",
  288. "symfony/phpunit-bridge": "^4.2 || ^5",
  289. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  290. },
  291. "type": "library",
  292. "extra": {
  293. "branch-alias": {
  294. "dev-main": "1.x-dev"
  295. }
  296. },
  297. "autoload": {
  298. "psr-4": {
  299. "Composer\\CaBundle\\": "src"
  300. }
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "MIT"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Jordi Boggiano",
  309. "email": "j.boggiano@seld.be",
  310. "homepage": "http://seld.be"
  311. }
  312. ],
  313. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  314. "keywords": [
  315. "cabundle",
  316. "cacert",
  317. "certificate",
  318. "ssl",
  319. "tls"
  320. ],
  321. "time": "2021-01-12T12:10:35+00:00"
  322. },
  323. {
  324. "name": "composer/composer",
  325. "version": "2.0.12",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/composer/composer.git",
  329. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/composer/composer/zipball/6c12ce263da71641903e399c3ce8ecb08fd375fb",
  334. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb",
  335. "shasum": "",
  336. "mirrors": [
  337. {
  338. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  339. "preferred": true
  340. }
  341. ]
  342. },
  343. "require": {
  344. "composer/ca-bundle": "^1.0",
  345. "composer/semver": "^3.0",
  346. "composer/spdx-licenses": "^1.2",
  347. "composer/xdebug-handler": "^1.1",
  348. "justinrainbow/json-schema": "^5.2.10",
  349. "php": "^5.3.2 || ^7.0 || ^8.0",
  350. "psr/log": "^1.0",
  351. "react/promise": "^1.2 || ^2.7",
  352. "seld/jsonlint": "^1.4",
  353. "seld/phar-utils": "^1.0",
  354. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  355. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  356. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  357. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  358. },
  359. "require-dev": {
  360. "phpspec/prophecy": "^1.10",
  361. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  362. },
  363. "suggest": {
  364. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  365. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  366. "ext-zlib": "Allow gzip compression of HTTP requests"
  367. },
  368. "bin": [
  369. "bin/composer"
  370. ],
  371. "type": "library",
  372. "extra": {
  373. "branch-alias": {
  374. "dev-master": "2.0-dev"
  375. }
  376. },
  377. "autoload": {
  378. "psr-4": {
  379. "Composer\\": "src/Composer"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Nils Adermann",
  389. "email": "naderman@naderman.de",
  390. "homepage": "https://www.naderman.de"
  391. },
  392. {
  393. "name": "Jordi Boggiano",
  394. "email": "j.boggiano@seld.be",
  395. "homepage": "https://seld.be"
  396. }
  397. ],
  398. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  399. "homepage": "https://getcomposer.org/",
  400. "keywords": [
  401. "autoload",
  402. "dependency",
  403. "package"
  404. ],
  405. "time": "2021-04-01T08:14:59+00:00"
  406. },
  407. {
  408. "name": "composer/semver",
  409. "version": "3.2.4",
  410. "source": {
  411. "type": "git",
  412. "url": "https://github.com/composer/semver.git",
  413. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  414. },
  415. "dist": {
  416. "type": "zip",
  417. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  418. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  419. "shasum": "",
  420. "mirrors": [
  421. {
  422. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  423. "preferred": true
  424. }
  425. ]
  426. },
  427. "require": {
  428. "php": "^5.3.2 || ^7.0 || ^8.0"
  429. },
  430. "require-dev": {
  431. "phpstan/phpstan": "^0.12.54",
  432. "symfony/phpunit-bridge": "^4.2 || ^5"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-main": "3.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Composer\\Semver\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Nils Adermann",
  452. "email": "naderman@naderman.de",
  453. "homepage": "http://www.naderman.de"
  454. },
  455. {
  456. "name": "Jordi Boggiano",
  457. "email": "j.boggiano@seld.be",
  458. "homepage": "http://seld.be"
  459. },
  460. {
  461. "name": "Rob Bast",
  462. "email": "rob.bast@gmail.com",
  463. "homepage": "http://robbast.nl"
  464. }
  465. ],
  466. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  467. "keywords": [
  468. "semantic",
  469. "semver",
  470. "validation",
  471. "versioning"
  472. ],
  473. "time": "2020-11-13T08:59:24+00:00"
  474. },
  475. {
  476. "name": "composer/spdx-licenses",
  477. "version": "1.5.5",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/composer/spdx-licenses.git",
  481. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  486. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  487. "shasum": "",
  488. "mirrors": [
  489. {
  490. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  491. "preferred": true
  492. }
  493. ]
  494. },
  495. "require": {
  496. "php": "^5.3.2 || ^7.0 || ^8.0"
  497. },
  498. "require-dev": {
  499. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  500. },
  501. "type": "library",
  502. "extra": {
  503. "branch-alias": {
  504. "dev-main": "1.x-dev"
  505. }
  506. },
  507. "autoload": {
  508. "psr-4": {
  509. "Composer\\Spdx\\": "src"
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "MIT"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Nils Adermann",
  519. "email": "naderman@naderman.de",
  520. "homepage": "http://www.naderman.de"
  521. },
  522. {
  523. "name": "Jordi Boggiano",
  524. "email": "j.boggiano@seld.be",
  525. "homepage": "http://seld.be"
  526. },
  527. {
  528. "name": "Rob Bast",
  529. "email": "rob.bast@gmail.com",
  530. "homepage": "http://robbast.nl"
  531. }
  532. ],
  533. "description": "SPDX licenses list and validation library.",
  534. "keywords": [
  535. "license",
  536. "spdx",
  537. "validator"
  538. ],
  539. "time": "2020-12-03T16:04:16+00:00"
  540. },
  541. {
  542. "name": "composer/xdebug-handler",
  543. "version": "1.4.6",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/composer/xdebug-handler.git",
  547. "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
  552. "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
  553. "shasum": "",
  554. "mirrors": [
  555. {
  556. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  557. "preferred": true
  558. }
  559. ]
  560. },
  561. "require": {
  562. "php": "^5.3.2 || ^7.0 || ^8.0",
  563. "psr/log": "^1.0"
  564. },
  565. "require-dev": {
  566. "phpstan/phpstan": "^0.12.55",
  567. "symfony/phpunit-bridge": "^4.2 || ^5"
  568. },
  569. "type": "library",
  570. "autoload": {
  571. "psr-4": {
  572. "Composer\\XdebugHandler\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "John Stevenson",
  582. "email": "john-stevenson@blueyonder.co.uk"
  583. }
  584. ],
  585. "description": "Restarts a process without Xdebug.",
  586. "keywords": [
  587. "Xdebug",
  588. "performance"
  589. ],
  590. "time": "2021-03-25T17:01:18+00:00"
  591. },
  592. {
  593. "name": "dcat/laravel-wherehasin",
  594. "version": "0.8.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/jqhph/laravel-wherehasin.git",
  598. "reference": "4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/jqhph/laravel-wherehasin/zipball/4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce",
  603. "reference": "4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce",
  604. "shasum": "",
  605. "mirrors": [
  606. {
  607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  608. "preferred": true
  609. }
  610. ]
  611. },
  612. "require": {
  613. "php": ">=7.0"
  614. },
  615. "require-dev": {
  616. "fzaninotto/faker": "^1.4",
  617. "laravel/laravel": ">=5.5",
  618. "mockery/mockery": "^1.0",
  619. "phpunit/phpunit": "^7.5|~9"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "laravel": {
  624. "providers": [
  625. "Dcat\\Laravel\\Database\\WhereHasInServiceProvider"
  626. ]
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Dcat\\Laravel\\Database\\": "src/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "jqh",
  641. "email": "841324345@qq.com"
  642. }
  643. ],
  644. "description": "Laravel ORM whereHasIn",
  645. "homepage": "https://github.com/jqhph/dcat-admin",
  646. "keywords": [
  647. "laravel",
  648. "orm",
  649. "relation",
  650. "whereHas"
  651. ],
  652. "time": "2021-07-29T07:10:31+00:00"
  653. },
  654. {
  655. "name": "dingo/api",
  656. "version": "v2.4.7",
  657. "source": {
  658. "type": "git",
  659. "url": "https://github.com/dingo/api.git",
  660. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  661. },
  662. "dist": {
  663. "type": "zip",
  664. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  665. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  666. "shasum": "",
  667. "mirrors": [
  668. {
  669. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  670. "preferred": true
  671. }
  672. ]
  673. },
  674. "require": {
  675. "dingo/blueprint": "^0.3",
  676. "illuminate/routing": "^5.5 || ^6.0",
  677. "illuminate/support": "^5.5 || ^6.0",
  678. "league/fractal": "^0.17",
  679. "php": "^7.1"
  680. },
  681. "require-dev": {
  682. "friendsofphp/php-cs-fixer": "~2",
  683. "illuminate/auth": "^5.5 || ^6.0",
  684. "illuminate/cache": "^5.5 || ^6.0",
  685. "illuminate/console": "^5.5 || ^6.0",
  686. "illuminate/database": "^5.5 || ^6.0",
  687. "illuminate/events": "^5.5 || ^6.0",
  688. "illuminate/filesystem": "^5.5 || ^6.0",
  689. "illuminate/log": "^5.5 || ^6.0",
  690. "illuminate/pagination": "^5.5 || ^6.0",
  691. "laravel/lumen-framework": "^5.5 || ^6.0",
  692. "mockery/mockery": "~1.0",
  693. "phpdocumentor/reflection-docblock": "3.3.2",
  694. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  695. "squizlabs/php_codesniffer": "~2.0",
  696. "tymon/jwt-auth": "1.0.*"
  697. },
  698. "suggest": {
  699. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  700. },
  701. "type": "library",
  702. "extra": {
  703. "branch-alias": {
  704. "dev-master": "2.0-dev"
  705. },
  706. "laravel": {
  707. "providers": [
  708. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  709. ],
  710. "aliases": {
  711. "API": "Dingo\\Api\\Facade\\API"
  712. }
  713. }
  714. },
  715. "autoload": {
  716. "psr-4": {
  717. "Dingo\\Api\\": "src/"
  718. },
  719. "files": [
  720. "src/helpers.php"
  721. ]
  722. },
  723. "notification-url": "https://packagist.org/downloads/",
  724. "license": [
  725. "BSD-3-Clause"
  726. ],
  727. "authors": [
  728. {
  729. "name": "Jason Lewis",
  730. "email": "jason.lewis1991@gmail.com"
  731. }
  732. ],
  733. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  734. "keywords": [
  735. "api",
  736. "dingo",
  737. "laravel",
  738. "restful"
  739. ],
  740. "time": "2020-03-19T01:36:11+00:00"
  741. },
  742. {
  743. "name": "dingo/blueprint",
  744. "version": "v0.3.1",
  745. "source": {
  746. "type": "git",
  747. "url": "https://github.com/dingo/blueprint.git",
  748. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  749. },
  750. "dist": {
  751. "type": "zip",
  752. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  753. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  754. "shasum": "",
  755. "mirrors": [
  756. {
  757. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  758. "preferred": true
  759. }
  760. ]
  761. },
  762. "require": {
  763. "doctrine/annotations": "~1.2",
  764. "illuminate/filesystem": "^5.5 || ^6.0",
  765. "illuminate/support": "^5.5 || ^6.0",
  766. "php": "^7.1",
  767. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  768. },
  769. "require-dev": {
  770. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  771. "squizlabs/php_codesniffer": "~2.0"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "branch-alias": {
  776. "dev-master": "0.2-dev"
  777. }
  778. },
  779. "autoload": {
  780. "psr-4": {
  781. "Dingo\\Blueprint\\": "src"
  782. }
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "BSD-3-Clause"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Jason Lewis",
  791. "email": "jason.lewis1991@gmail.com"
  792. }
  793. ],
  794. "description": "API Blueprint documentation generator.",
  795. "keywords": [
  796. "api",
  797. "blueprint",
  798. "dingo",
  799. "docs",
  800. "laravel"
  801. ],
  802. "time": "2019-10-07T10:14:17+00:00"
  803. },
  804. {
  805. "name": "dnoegel/php-xdg-base-dir",
  806. "version": "v0.1.1",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  810. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  815. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  816. "shasum": "",
  817. "mirrors": [
  818. {
  819. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  820. "preferred": true
  821. }
  822. ]
  823. },
  824. "require": {
  825. "php": ">=5.3.2"
  826. },
  827. "require-dev": {
  828. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  829. },
  830. "type": "library",
  831. "autoload": {
  832. "psr-4": {
  833. "XdgBaseDir\\": "src/"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "description": "implementation of xdg base directory specification for php",
  841. "time": "2019-12-04T15:06:13+00:00"
  842. },
  843. {
  844. "name": "doctrine/annotations",
  845. "version": "1.12.1",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/doctrine/annotations.git",
  849. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  854. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  855. "shasum": "",
  856. "mirrors": [
  857. {
  858. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  859. "preferred": true
  860. }
  861. ]
  862. },
  863. "require": {
  864. "doctrine/lexer": "1.*",
  865. "ext-tokenizer": "*",
  866. "php": "^7.1 || ^8.0"
  867. },
  868. "require-dev": {
  869. "doctrine/cache": "1.*",
  870. "doctrine/coding-standard": "^6.0 || ^8.1",
  871. "phpstan/phpstan": "^0.12.20",
  872. "phpunit/phpunit": "^7.5 || ^9.1.5"
  873. },
  874. "type": "library",
  875. "autoload": {
  876. "psr-4": {
  877. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  878. }
  879. },
  880. "notification-url": "https://packagist.org/downloads/",
  881. "license": [
  882. "MIT"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Guilherme Blanco",
  887. "email": "guilhermeblanco@gmail.com"
  888. },
  889. {
  890. "name": "Roman Borschel",
  891. "email": "roman@code-factory.org"
  892. },
  893. {
  894. "name": "Benjamin Eberlei",
  895. "email": "kontakt@beberlei.de"
  896. },
  897. {
  898. "name": "Jonathan Wage",
  899. "email": "jonwage@gmail.com"
  900. },
  901. {
  902. "name": "Johannes Schmitt",
  903. "email": "schmittjoh@gmail.com"
  904. }
  905. ],
  906. "description": "Docblock Annotations Parser",
  907. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  908. "keywords": [
  909. "annotations",
  910. "docblock",
  911. "parser"
  912. ],
  913. "time": "2021-02-21T21:00:45+00:00"
  914. },
  915. {
  916. "name": "doctrine/cache",
  917. "version": "1.10.2",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/doctrine/cache.git",
  921. "reference": "13e3381b25847283a91948d04640543941309727"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  926. "reference": "13e3381b25847283a91948d04640543941309727",
  927. "shasum": "",
  928. "mirrors": [
  929. {
  930. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  931. "preferred": true
  932. }
  933. ]
  934. },
  935. "require": {
  936. "php": "~7.1 || ^8.0"
  937. },
  938. "conflict": {
  939. "doctrine/common": ">2.2,<2.4"
  940. },
  941. "require-dev": {
  942. "alcaeus/mongo-php-adapter": "^1.1",
  943. "doctrine/coding-standard": "^6.0",
  944. "mongodb/mongodb": "^1.1",
  945. "phpunit/phpunit": "^7.0",
  946. "predis/predis": "~1.0"
  947. },
  948. "suggest": {
  949. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  950. },
  951. "type": "library",
  952. "extra": {
  953. "branch-alias": {
  954. "dev-master": "1.9.x-dev"
  955. }
  956. },
  957. "autoload": {
  958. "psr-4": {
  959. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  960. }
  961. },
  962. "notification-url": "https://packagist.org/downloads/",
  963. "license": [
  964. "MIT"
  965. ],
  966. "authors": [
  967. {
  968. "name": "Guilherme Blanco",
  969. "email": "guilhermeblanco@gmail.com"
  970. },
  971. {
  972. "name": "Roman Borschel",
  973. "email": "roman@code-factory.org"
  974. },
  975. {
  976. "name": "Benjamin Eberlei",
  977. "email": "kontakt@beberlei.de"
  978. },
  979. {
  980. "name": "Jonathan Wage",
  981. "email": "jonwage@gmail.com"
  982. },
  983. {
  984. "name": "Johannes Schmitt",
  985. "email": "schmittjoh@gmail.com"
  986. }
  987. ],
  988. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  989. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  990. "keywords": [
  991. "abstraction",
  992. "apcu",
  993. "cache",
  994. "caching",
  995. "couchdb",
  996. "memcached",
  997. "php",
  998. "redis",
  999. "xcache"
  1000. ],
  1001. "time": "2020-07-07T18:54:01+00:00"
  1002. },
  1003. {
  1004. "name": "doctrine/dbal",
  1005. "version": "2.13.0",
  1006. "source": {
  1007. "type": "git",
  1008. "url": "https://github.com/doctrine/dbal.git",
  1009. "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796"
  1010. },
  1011. "dist": {
  1012. "type": "zip",
  1013. "url": "https://api.github.com/repos/doctrine/dbal/zipball/67d56d3203b33db29834e6b2fcdbfdc50535d796",
  1014. "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796",
  1015. "shasum": "",
  1016. "mirrors": [
  1017. {
  1018. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1019. "preferred": true
  1020. }
  1021. ]
  1022. },
  1023. "require": {
  1024. "doctrine/cache": "^1.0",
  1025. "doctrine/deprecations": "^0.5.3",
  1026. "doctrine/event-manager": "^1.0",
  1027. "ext-pdo": "*",
  1028. "php": "^7.1 || ^8"
  1029. },
  1030. "require-dev": {
  1031. "doctrine/coding-standard": "8.2.0",
  1032. "jetbrains/phpstorm-stubs": "2020.2",
  1033. "phpstan/phpstan": "0.12.81",
  1034. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  1035. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1036. "vimeo/psalm": "4.6.4"
  1037. },
  1038. "suggest": {
  1039. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1040. },
  1041. "bin": [
  1042. "bin/doctrine-dbal"
  1043. ],
  1044. "type": "library",
  1045. "autoload": {
  1046. "psr-4": {
  1047. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1048. }
  1049. },
  1050. "notification-url": "https://packagist.org/downloads/",
  1051. "license": [
  1052. "MIT"
  1053. ],
  1054. "authors": [
  1055. {
  1056. "name": "Guilherme Blanco",
  1057. "email": "guilhermeblanco@gmail.com"
  1058. },
  1059. {
  1060. "name": "Roman Borschel",
  1061. "email": "roman@code-factory.org"
  1062. },
  1063. {
  1064. "name": "Benjamin Eberlei",
  1065. "email": "kontakt@beberlei.de"
  1066. },
  1067. {
  1068. "name": "Jonathan Wage",
  1069. "email": "jonwage@gmail.com"
  1070. }
  1071. ],
  1072. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1073. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1074. "keywords": [
  1075. "abstraction",
  1076. "database",
  1077. "db2",
  1078. "dbal",
  1079. "mariadb",
  1080. "mssql",
  1081. "mysql",
  1082. "oci8",
  1083. "oracle",
  1084. "pdo",
  1085. "pgsql",
  1086. "postgresql",
  1087. "queryobject",
  1088. "sasql",
  1089. "sql",
  1090. "sqlanywhere",
  1091. "sqlite",
  1092. "sqlserver",
  1093. "sqlsrv"
  1094. ],
  1095. "time": "2021-03-28T18:10:53+00:00"
  1096. },
  1097. {
  1098. "name": "doctrine/deprecations",
  1099. "version": "v0.5.3",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/deprecations.git",
  1103. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  1108. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  1109. "shasum": "",
  1110. "mirrors": [
  1111. {
  1112. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1113. "preferred": true
  1114. }
  1115. ]
  1116. },
  1117. "require": {
  1118. "php": "^7.1|^8.0"
  1119. },
  1120. "require-dev": {
  1121. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  1122. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  1123. "psr/log": "^1.0"
  1124. },
  1125. "suggest": {
  1126. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1127. },
  1128. "type": "library",
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1139. "homepage": "https://www.doctrine-project.org/",
  1140. "time": "2021-03-21T12:59:47+00:00"
  1141. },
  1142. {
  1143. "name": "doctrine/event-manager",
  1144. "version": "1.1.1",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/doctrine/event-manager.git",
  1148. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1153. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1154. "shasum": "",
  1155. "mirrors": [
  1156. {
  1157. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1158. "preferred": true
  1159. }
  1160. ]
  1161. },
  1162. "require": {
  1163. "php": "^7.1 || ^8.0"
  1164. },
  1165. "conflict": {
  1166. "doctrine/common": "<2.9@dev"
  1167. },
  1168. "require-dev": {
  1169. "doctrine/coding-standard": "^6.0",
  1170. "phpunit/phpunit": "^7.0"
  1171. },
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "1.0.x-dev"
  1176. }
  1177. },
  1178. "autoload": {
  1179. "psr-4": {
  1180. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "Guilherme Blanco",
  1190. "email": "guilhermeblanco@gmail.com"
  1191. },
  1192. {
  1193. "name": "Roman Borschel",
  1194. "email": "roman@code-factory.org"
  1195. },
  1196. {
  1197. "name": "Benjamin Eberlei",
  1198. "email": "kontakt@beberlei.de"
  1199. },
  1200. {
  1201. "name": "Jonathan Wage",
  1202. "email": "jonwage@gmail.com"
  1203. },
  1204. {
  1205. "name": "Johannes Schmitt",
  1206. "email": "schmittjoh@gmail.com"
  1207. },
  1208. {
  1209. "name": "Marco Pivetta",
  1210. "email": "ocramius@gmail.com"
  1211. }
  1212. ],
  1213. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1214. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1215. "keywords": [
  1216. "event",
  1217. "event dispatcher",
  1218. "event manager",
  1219. "event system",
  1220. "events"
  1221. ],
  1222. "time": "2020-05-29T18:28:51+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/inflector",
  1226. "version": "2.0.3",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/inflector.git",
  1230. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1235. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "php": "^7.2 || ^8.0"
  1246. },
  1247. "require-dev": {
  1248. "doctrine/coding-standard": "^7.0",
  1249. "phpstan/phpstan": "^0.11",
  1250. "phpstan/phpstan-phpunit": "^0.11",
  1251. "phpstan/phpstan-strict-rules": "^0.11",
  1252. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1253. },
  1254. "type": "library",
  1255. "extra": {
  1256. "branch-alias": {
  1257. "dev-master": "2.0.x-dev"
  1258. }
  1259. },
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Guilherme Blanco",
  1272. "email": "guilhermeblanco@gmail.com"
  1273. },
  1274. {
  1275. "name": "Roman Borschel",
  1276. "email": "roman@code-factory.org"
  1277. },
  1278. {
  1279. "name": "Benjamin Eberlei",
  1280. "email": "kontakt@beberlei.de"
  1281. },
  1282. {
  1283. "name": "Jonathan Wage",
  1284. "email": "jonwage@gmail.com"
  1285. },
  1286. {
  1287. "name": "Johannes Schmitt",
  1288. "email": "schmittjoh@gmail.com"
  1289. }
  1290. ],
  1291. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1292. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1293. "keywords": [
  1294. "inflection",
  1295. "inflector",
  1296. "lowercase",
  1297. "manipulation",
  1298. "php",
  1299. "plural",
  1300. "singular",
  1301. "strings",
  1302. "uppercase",
  1303. "words"
  1304. ],
  1305. "time": "2020-05-29T15:13:26+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/lexer",
  1309. "version": "1.2.1",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/lexer.git",
  1313. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1318. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "php": "^7.2 || ^8.0"
  1329. },
  1330. "require-dev": {
  1331. "doctrine/coding-standard": "^6.0",
  1332. "phpstan/phpstan": "^0.11.8",
  1333. "phpunit/phpunit": "^8.2"
  1334. },
  1335. "type": "library",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "1.2.x-dev"
  1339. }
  1340. },
  1341. "autoload": {
  1342. "psr-4": {
  1343. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1344. }
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Guilherme Blanco",
  1353. "email": "guilhermeblanco@gmail.com"
  1354. },
  1355. {
  1356. "name": "Roman Borschel",
  1357. "email": "roman@code-factory.org"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1365. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1366. "keywords": [
  1367. "annotations",
  1368. "docblock",
  1369. "lexer",
  1370. "parser",
  1371. "php"
  1372. ],
  1373. "time": "2020-05-25T17:44:05+00:00"
  1374. },
  1375. {
  1376. "name": "dragonmantank/cron-expression",
  1377. "version": "v2.3.1",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/dragonmantank/cron-expression.git",
  1381. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1386. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1387. "shasum": "",
  1388. "mirrors": [
  1389. {
  1390. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1391. "preferred": true
  1392. }
  1393. ]
  1394. },
  1395. "require": {
  1396. "php": "^7.0|^8.0"
  1397. },
  1398. "require-dev": {
  1399. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1400. },
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "2.3-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "psr-4": {
  1409. "Cron\\": "src/Cron/"
  1410. }
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Michael Dowling",
  1419. "email": "mtdowling@gmail.com",
  1420. "homepage": "https://github.com/mtdowling"
  1421. },
  1422. {
  1423. "name": "Chris Tankersley",
  1424. "email": "chris@ctankersley.com",
  1425. "homepage": "https://github.com/dragonmantank"
  1426. }
  1427. ],
  1428. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1429. "keywords": [
  1430. "cron",
  1431. "schedule"
  1432. ],
  1433. "time": "2020-10-13T00:52:37+00:00"
  1434. },
  1435. {
  1436. "name": "easywechat-composer/easywechat-composer",
  1437. "version": "1.4.0",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1441. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1446. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1447. "shasum": "",
  1448. "mirrors": [
  1449. {
  1450. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1451. "preferred": true
  1452. }
  1453. ]
  1454. },
  1455. "require": {
  1456. "composer-plugin-api": "^1.0 || ^2.0",
  1457. "php": ">=7.0"
  1458. },
  1459. "require-dev": {
  1460. "composer/composer": "^1.0 || ^2.0",
  1461. "phpunit/phpunit": "^6.5 || ^7.0"
  1462. },
  1463. "type": "composer-plugin",
  1464. "extra": {
  1465. "class": "EasyWeChatComposer\\Plugin"
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "EasyWeChatComposer\\": "src/"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "张铭阳",
  1479. "email": "mingyoungcheung@gmail.com"
  1480. }
  1481. ],
  1482. "description": "The composer plugin for EasyWeChat",
  1483. "time": "2020-07-23T11:06:47+00:00"
  1484. },
  1485. {
  1486. "name": "egulias/email-validator",
  1487. "version": "2.1.25",
  1488. "source": {
  1489. "type": "git",
  1490. "url": "https://github.com/egulias/EmailValidator.git",
  1491. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1492. },
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1496. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1497. "shasum": "",
  1498. "mirrors": [
  1499. {
  1500. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1501. "preferred": true
  1502. }
  1503. ]
  1504. },
  1505. "require": {
  1506. "doctrine/lexer": "^1.0.1",
  1507. "php": ">=5.5",
  1508. "symfony/polyfill-intl-idn": "^1.10"
  1509. },
  1510. "require-dev": {
  1511. "dominicsayers/isemail": "^3.0.7",
  1512. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1513. "satooshi/php-coveralls": "^1.0.1"
  1514. },
  1515. "suggest": {
  1516. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1517. },
  1518. "type": "library",
  1519. "extra": {
  1520. "branch-alias": {
  1521. "dev-master": "2.1.x-dev"
  1522. }
  1523. },
  1524. "autoload": {
  1525. "psr-4": {
  1526. "Egulias\\EmailValidator\\": "src"
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "authors": [
  1534. {
  1535. "name": "Eduardo Gulias Davis"
  1536. }
  1537. ],
  1538. "description": "A library for validating emails against several RFCs",
  1539. "homepage": "https://github.com/egulias/EmailValidator",
  1540. "keywords": [
  1541. "email",
  1542. "emailvalidation",
  1543. "emailvalidator",
  1544. "validation",
  1545. "validator"
  1546. ],
  1547. "time": "2020-12-29T14:50:06+00:00"
  1548. },
  1549. {
  1550. "name": "ezyang/htmlpurifier",
  1551. "version": "v4.13.0",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/ezyang/htmlpurifier.git",
  1555. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1560. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1561. "shasum": "",
  1562. "mirrors": [
  1563. {
  1564. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1565. "preferred": true
  1566. }
  1567. ]
  1568. },
  1569. "require": {
  1570. "php": ">=5.2"
  1571. },
  1572. "require-dev": {
  1573. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-0": {
  1578. "HTMLPurifier": "library/"
  1579. },
  1580. "files": [
  1581. "library/HTMLPurifier.composer.php"
  1582. ],
  1583. "exclude-from-classmap": [
  1584. "/library/HTMLPurifier/Language/"
  1585. ]
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "LGPL-2.1-or-later"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Edward Z. Yang",
  1594. "email": "admin@htmlpurifier.org",
  1595. "homepage": "http://ezyang.com"
  1596. }
  1597. ],
  1598. "description": "Standards compliant HTML filter written in PHP",
  1599. "homepage": "http://htmlpurifier.org/",
  1600. "keywords": [
  1601. "html"
  1602. ],
  1603. "time": "2020-06-29T00:56:53+00:00"
  1604. },
  1605. {
  1606. "name": "fideloper/proxy",
  1607. "version": "4.4.1",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/fideloper/TrustedProxy.git",
  1611. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1616. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1617. "shasum": "",
  1618. "mirrors": [
  1619. {
  1620. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1621. "preferred": true
  1622. }
  1623. ]
  1624. },
  1625. "require": {
  1626. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1627. "php": ">=5.4.0"
  1628. },
  1629. "require-dev": {
  1630. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1631. "mockery/mockery": "^1.0",
  1632. "phpunit/phpunit": "^6.0"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "laravel": {
  1637. "providers": [
  1638. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1639. ]
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "Fideloper\\Proxy\\": "src/"
  1645. }
  1646. },
  1647. "notification-url": "https://packagist.org/downloads/",
  1648. "license": [
  1649. "MIT"
  1650. ],
  1651. "authors": [
  1652. {
  1653. "name": "Chris Fidao",
  1654. "email": "fideloper@gmail.com"
  1655. }
  1656. ],
  1657. "description": "Set trusted proxies for Laravel",
  1658. "keywords": [
  1659. "load balancing",
  1660. "proxy",
  1661. "trusted proxy"
  1662. ],
  1663. "time": "2020-10-22T13:48:01+00:00"
  1664. },
  1665. {
  1666. "name": "fruitcake/laravel-cors",
  1667. "version": "v2.0.4",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/fruitcake/laravel-cors.git",
  1671. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1676. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1677. "shasum": "",
  1678. "mirrors": [
  1679. {
  1680. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1681. "preferred": true
  1682. }
  1683. ]
  1684. },
  1685. "require": {
  1686. "asm89/stack-cors": "^2.0.1",
  1687. "illuminate/contracts": "^6|^7|^8|^9",
  1688. "illuminate/support": "^6|^7|^8|^9",
  1689. "php": ">=7.2",
  1690. "symfony/http-foundation": "^4|^5",
  1691. "symfony/http-kernel": "^4.3.4|^5"
  1692. },
  1693. "require-dev": {
  1694. "laravel/framework": "^6|^7|^8",
  1695. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1696. "phpunit/phpunit": "^6|^7|^8|^9",
  1697. "squizlabs/php_codesniffer": "^3.5"
  1698. },
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "2.0-dev"
  1703. },
  1704. "laravel": {
  1705. "providers": [
  1706. "Fruitcake\\Cors\\CorsServiceProvider"
  1707. ]
  1708. }
  1709. },
  1710. "autoload": {
  1711. "psr-4": {
  1712. "Fruitcake\\Cors\\": "src/"
  1713. }
  1714. },
  1715. "notification-url": "https://packagist.org/downloads/",
  1716. "license": [
  1717. "MIT"
  1718. ],
  1719. "authors": [
  1720. {
  1721. "name": "Fruitcake",
  1722. "homepage": "https://fruitcake.nl"
  1723. },
  1724. {
  1725. "name": "Barry vd. Heuvel",
  1726. "email": "barryvdh@gmail.com"
  1727. }
  1728. ],
  1729. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1730. "keywords": [
  1731. "api",
  1732. "cors",
  1733. "crossdomain",
  1734. "laravel"
  1735. ],
  1736. "time": "2021-04-26T11:24:25+00:00"
  1737. },
  1738. {
  1739. "name": "guzzlehttp/guzzle",
  1740. "version": "6.5.5",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/guzzle/guzzle.git",
  1744. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1749. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1750. "shasum": "",
  1751. "mirrors": [
  1752. {
  1753. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1754. "preferred": true
  1755. }
  1756. ]
  1757. },
  1758. "require": {
  1759. "ext-json": "*",
  1760. "guzzlehttp/promises": "^1.0",
  1761. "guzzlehttp/psr7": "^1.6.1",
  1762. "php": ">=5.5",
  1763. "symfony/polyfill-intl-idn": "^1.17.0"
  1764. },
  1765. "require-dev": {
  1766. "ext-curl": "*",
  1767. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1768. "psr/log": "^1.1"
  1769. },
  1770. "suggest": {
  1771. "psr/log": "Required for using the Log middleware"
  1772. },
  1773. "type": "library",
  1774. "extra": {
  1775. "branch-alias": {
  1776. "dev-master": "6.5-dev"
  1777. }
  1778. },
  1779. "autoload": {
  1780. "psr-4": {
  1781. "GuzzleHttp\\": "src/"
  1782. },
  1783. "files": [
  1784. "src/functions_include.php"
  1785. ]
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Michael Dowling",
  1794. "email": "mtdowling@gmail.com",
  1795. "homepage": "https://github.com/mtdowling"
  1796. }
  1797. ],
  1798. "description": "Guzzle is a PHP HTTP client library",
  1799. "homepage": "http://guzzlephp.org/",
  1800. "keywords": [
  1801. "client",
  1802. "curl",
  1803. "framework",
  1804. "http",
  1805. "http client",
  1806. "rest",
  1807. "web service"
  1808. ],
  1809. "time": "2020-06-16T21:01:06+00:00"
  1810. },
  1811. {
  1812. "name": "guzzlehttp/promises",
  1813. "version": "1.4.1",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/guzzle/promises.git",
  1817. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1822. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1823. "shasum": "",
  1824. "mirrors": [
  1825. {
  1826. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1827. "preferred": true
  1828. }
  1829. ]
  1830. },
  1831. "require": {
  1832. "php": ">=5.5"
  1833. },
  1834. "require-dev": {
  1835. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-master": "1.4-dev"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "psr-4": {
  1845. "GuzzleHttp\\Promise\\": "src/"
  1846. },
  1847. "files": [
  1848. "src/functions_include.php"
  1849. ]
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "MIT"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Michael Dowling",
  1858. "email": "mtdowling@gmail.com",
  1859. "homepage": "https://github.com/mtdowling"
  1860. }
  1861. ],
  1862. "description": "Guzzle promises library",
  1863. "keywords": [
  1864. "promise"
  1865. ],
  1866. "time": "2021-03-07T09:25:29+00:00"
  1867. },
  1868. {
  1869. "name": "guzzlehttp/psr7",
  1870. "version": "1.8.1",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/guzzle/psr7.git",
  1874. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1",
  1879. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1",
  1880. "shasum": "",
  1881. "mirrors": [
  1882. {
  1883. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1884. "preferred": true
  1885. }
  1886. ]
  1887. },
  1888. "require": {
  1889. "php": ">=5.4.0",
  1890. "psr/http-message": "~1.0",
  1891. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1892. },
  1893. "provide": {
  1894. "psr/http-message-implementation": "1.0"
  1895. },
  1896. "require-dev": {
  1897. "ext-zlib": "*",
  1898. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1899. },
  1900. "suggest": {
  1901. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1902. },
  1903. "type": "library",
  1904. "extra": {
  1905. "branch-alias": {
  1906. "dev-master": "1.7-dev"
  1907. }
  1908. },
  1909. "autoload": {
  1910. "psr-4": {
  1911. "GuzzleHttp\\Psr7\\": "src/"
  1912. },
  1913. "files": [
  1914. "src/functions_include.php"
  1915. ]
  1916. },
  1917. "notification-url": "https://packagist.org/downloads/",
  1918. "license": [
  1919. "MIT"
  1920. ],
  1921. "authors": [
  1922. {
  1923. "name": "Michael Dowling",
  1924. "email": "mtdowling@gmail.com",
  1925. "homepage": "https://github.com/mtdowling"
  1926. },
  1927. {
  1928. "name": "Tobias Schultze",
  1929. "homepage": "https://github.com/Tobion"
  1930. }
  1931. ],
  1932. "description": "PSR-7 message implementation that also provides common utility methods",
  1933. "keywords": [
  1934. "http",
  1935. "message",
  1936. "psr-7",
  1937. "request",
  1938. "response",
  1939. "stream",
  1940. "uri",
  1941. "url"
  1942. ],
  1943. "time": "2021-03-21T16:25:00+00:00"
  1944. },
  1945. {
  1946. "name": "justinrainbow/json-schema",
  1947. "version": "5.2.10",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/justinrainbow/json-schema.git",
  1951. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  1956. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  1957. "shasum": "",
  1958. "mirrors": [
  1959. {
  1960. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1961. "preferred": true
  1962. }
  1963. ]
  1964. },
  1965. "require": {
  1966. "php": ">=5.3.3"
  1967. },
  1968. "require-dev": {
  1969. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  1970. "json-schema/json-schema-test-suite": "1.2.0",
  1971. "phpunit/phpunit": "^4.8.35"
  1972. },
  1973. "bin": [
  1974. "bin/validate-json"
  1975. ],
  1976. "type": "library",
  1977. "extra": {
  1978. "branch-alias": {
  1979. "dev-master": "5.0.x-dev"
  1980. }
  1981. },
  1982. "autoload": {
  1983. "psr-4": {
  1984. "JsonSchema\\": "src/JsonSchema/"
  1985. }
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Bruno Prieto Reis",
  1994. "email": "bruno.p.reis@gmail.com"
  1995. },
  1996. {
  1997. "name": "Justin Rainbow",
  1998. "email": "justin.rainbow@gmail.com"
  1999. },
  2000. {
  2001. "name": "Igor Wiedler",
  2002. "email": "igor@wiedler.ch"
  2003. },
  2004. {
  2005. "name": "Robert Schönthal",
  2006. "email": "seroscho@googlemail.com"
  2007. }
  2008. ],
  2009. "description": "A library to validate a json schema.",
  2010. "homepage": "https://github.com/justinrainbow/json-schema",
  2011. "keywords": [
  2012. "json",
  2013. "schema"
  2014. ],
  2015. "time": "2020-05-27T16:41:55+00:00"
  2016. },
  2017. {
  2018. "name": "laravel/framework",
  2019. "version": "v6.20.22",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/laravel/framework.git",
  2023. "reference": "f4d2beff6f1793909e1db4f2204800183b4f1719"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/laravel/framework/zipball/f4d2beff6f1793909e1db4f2204800183b4f1719",
  2028. "reference": "f4d2beff6f1793909e1db4f2204800183b4f1719",
  2029. "shasum": "",
  2030. "mirrors": [
  2031. {
  2032. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2033. "preferred": true
  2034. }
  2035. ]
  2036. },
  2037. "require": {
  2038. "doctrine/inflector": "^1.4|^2.0",
  2039. "dragonmantank/cron-expression": "^2.3.1",
  2040. "egulias/email-validator": "^2.1.10",
  2041. "ext-json": "*",
  2042. "ext-mbstring": "*",
  2043. "ext-openssl": "*",
  2044. "league/commonmark": "^1.3",
  2045. "league/flysystem": "^1.1",
  2046. "monolog/monolog": "^1.12|^2.0",
  2047. "nesbot/carbon": "^2.31",
  2048. "opis/closure": "^3.6",
  2049. "php": "^7.2.5|^8.0",
  2050. "psr/container": "^1.0",
  2051. "psr/simple-cache": "^1.0",
  2052. "ramsey/uuid": "^3.7",
  2053. "swiftmailer/swiftmailer": "^6.0",
  2054. "symfony/console": "^4.3.4",
  2055. "symfony/debug": "^4.3.4",
  2056. "symfony/finder": "^4.3.4",
  2057. "symfony/http-foundation": "^4.3.4",
  2058. "symfony/http-kernel": "^4.3.4",
  2059. "symfony/polyfill-php73": "^1.17",
  2060. "symfony/process": "^4.3.4",
  2061. "symfony/routing": "^4.3.4",
  2062. "symfony/var-dumper": "^4.3.4",
  2063. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  2064. "vlucas/phpdotenv": "^3.3"
  2065. },
  2066. "conflict": {
  2067. "tightenco/collect": "<5.5.33"
  2068. },
  2069. "replace": {
  2070. "illuminate/auth": "self.version",
  2071. "illuminate/broadcasting": "self.version",
  2072. "illuminate/bus": "self.version",
  2073. "illuminate/cache": "self.version",
  2074. "illuminate/config": "self.version",
  2075. "illuminate/console": "self.version",
  2076. "illuminate/container": "self.version",
  2077. "illuminate/contracts": "self.version",
  2078. "illuminate/cookie": "self.version",
  2079. "illuminate/database": "self.version",
  2080. "illuminate/encryption": "self.version",
  2081. "illuminate/events": "self.version",
  2082. "illuminate/filesystem": "self.version",
  2083. "illuminate/hashing": "self.version",
  2084. "illuminate/http": "self.version",
  2085. "illuminate/log": "self.version",
  2086. "illuminate/mail": "self.version",
  2087. "illuminate/notifications": "self.version",
  2088. "illuminate/pagination": "self.version",
  2089. "illuminate/pipeline": "self.version",
  2090. "illuminate/queue": "self.version",
  2091. "illuminate/redis": "self.version",
  2092. "illuminate/routing": "self.version",
  2093. "illuminate/session": "self.version",
  2094. "illuminate/support": "self.version",
  2095. "illuminate/translation": "self.version",
  2096. "illuminate/validation": "self.version",
  2097. "illuminate/view": "self.version"
  2098. },
  2099. "require-dev": {
  2100. "aws/aws-sdk-php": "^3.155",
  2101. "doctrine/dbal": "^2.6",
  2102. "filp/whoops": "^2.8",
  2103. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2104. "league/flysystem-cached-adapter": "^1.0",
  2105. "mockery/mockery": "~1.3.3|^1.4.2",
  2106. "moontoast/math": "^1.1",
  2107. "orchestra/testbench-core": "^4.8",
  2108. "pda/pheanstalk": "^4.0",
  2109. "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3",
  2110. "predis/predis": "^1.1.1",
  2111. "symfony/cache": "^4.3.4"
  2112. },
  2113. "suggest": {
  2114. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2115. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2116. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2117. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2118. "ext-memcached": "Required to use the memcache cache driver.",
  2119. "ext-pcntl": "Required to use all features of the queue worker.",
  2120. "ext-posix": "Required to use all features of the queue worker.",
  2121. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2122. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2123. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2124. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2125. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2126. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2127. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2128. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2129. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2130. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2131. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2132. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2133. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2134. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2135. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  2136. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  2137. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2138. },
  2139. "type": "library",
  2140. "extra": {
  2141. "branch-alias": {
  2142. "dev-master": "6.x-dev"
  2143. }
  2144. },
  2145. "autoload": {
  2146. "files": [
  2147. "src/Illuminate/Foundation/helpers.php",
  2148. "src/Illuminate/Support/helpers.php"
  2149. ],
  2150. "psr-4": {
  2151. "Illuminate\\": "src/Illuminate/"
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "Taylor Otwell",
  2161. "email": "taylor@laravel.com"
  2162. }
  2163. ],
  2164. "description": "The Laravel Framework.",
  2165. "homepage": "https://laravel.com",
  2166. "keywords": [
  2167. "framework",
  2168. "laravel"
  2169. ],
  2170. "time": "2021-03-30T21:33:47+00:00"
  2171. },
  2172. {
  2173. "name": "laravel/tinker",
  2174. "version": "v1.0.10",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/laravel/tinker.git",
  2178. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2183. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2184. "shasum": "",
  2185. "mirrors": [
  2186. {
  2187. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2188. "preferred": true
  2189. }
  2190. ]
  2191. },
  2192. "require": {
  2193. "illuminate/console": "~5.1|^6.0",
  2194. "illuminate/contracts": "~5.1|^6.0",
  2195. "illuminate/support": "~5.1|^6.0",
  2196. "php": ">=5.5.9",
  2197. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2198. "symfony/var-dumper": "~3.0|~4.0"
  2199. },
  2200. "require-dev": {
  2201. "phpunit/phpunit": "~4.0|~5.0"
  2202. },
  2203. "suggest": {
  2204. "illuminate/database": "The Illuminate Database package (~5.1)."
  2205. },
  2206. "type": "library",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-master": "1.0-dev"
  2210. },
  2211. "laravel": {
  2212. "providers": [
  2213. "Laravel\\Tinker\\TinkerServiceProvider"
  2214. ]
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Laravel\\Tinker\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Taylor Otwell",
  2229. "email": "taylor@laravel.com"
  2230. }
  2231. ],
  2232. "description": "Powerful REPL for the Laravel framework.",
  2233. "keywords": [
  2234. "REPL",
  2235. "Tinker",
  2236. "laravel",
  2237. "psysh"
  2238. ],
  2239. "time": "2019-08-07T15:10:45+00:00"
  2240. },
  2241. {
  2242. "name": "lcobucci/jwt",
  2243. "version": "3.3.3",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/lcobucci/jwt.git",
  2247. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2252. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2253. "shasum": "",
  2254. "mirrors": [
  2255. {
  2256. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2257. "preferred": true
  2258. }
  2259. ]
  2260. },
  2261. "require": {
  2262. "ext-mbstring": "*",
  2263. "ext-openssl": "*",
  2264. "php": "^5.6 || ^7.0"
  2265. },
  2266. "require-dev": {
  2267. "mikey179/vfsstream": "~1.5",
  2268. "phpmd/phpmd": "~2.2",
  2269. "phpunit/php-invoker": "~1.1",
  2270. "phpunit/phpunit": "^5.7 || ^7.3",
  2271. "squizlabs/php_codesniffer": "~2.3"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "3.1-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Lcobucci\\JWT\\": "src"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "BSD-3-Clause"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Luís Otávio Cobucci Oblonczyk",
  2291. "email": "lcobucci@gmail.com",
  2292. "role": "Developer"
  2293. }
  2294. ],
  2295. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2296. "keywords": [
  2297. "JWS",
  2298. "jwt"
  2299. ],
  2300. "time": "2020-08-20T13:22:28+00:00"
  2301. },
  2302. {
  2303. "name": "league/commonmark",
  2304. "version": "1.5.8",
  2305. "source": {
  2306. "type": "git",
  2307. "url": "https://github.com/thephpleague/commonmark.git",
  2308. "reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf"
  2309. },
  2310. "dist": {
  2311. "type": "zip",
  2312. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
  2313. "reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
  2314. "shasum": "",
  2315. "mirrors": [
  2316. {
  2317. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2318. "preferred": true
  2319. }
  2320. ]
  2321. },
  2322. "require": {
  2323. "ext-mbstring": "*",
  2324. "php": "^7.1 || ^8.0"
  2325. },
  2326. "conflict": {
  2327. "scrutinizer/ocular": "1.7.*"
  2328. },
  2329. "require-dev": {
  2330. "cebe/markdown": "~1.0",
  2331. "commonmark/commonmark.js": "0.29.2",
  2332. "erusev/parsedown": "~1.0",
  2333. "ext-json": "*",
  2334. "github/gfm": "0.29.0",
  2335. "michelf/php-markdown": "~1.4",
  2336. "mikehaertl/php-shellcommand": "^1.4",
  2337. "phpstan/phpstan": "^0.12",
  2338. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2339. "scrutinizer/ocular": "^1.5",
  2340. "symfony/finder": "^4.2"
  2341. },
  2342. "bin": [
  2343. "bin/commonmark"
  2344. ],
  2345. "type": "library",
  2346. "autoload": {
  2347. "psr-4": {
  2348. "League\\CommonMark\\": "src"
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "BSD-3-Clause"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Colin O'Dell",
  2358. "email": "colinodell@gmail.com",
  2359. "homepage": "https://www.colinodell.com",
  2360. "role": "Lead Developer"
  2361. }
  2362. ],
  2363. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2364. "homepage": "https://commonmark.thephpleague.com",
  2365. "keywords": [
  2366. "commonmark",
  2367. "flavored",
  2368. "gfm",
  2369. "github",
  2370. "github-flavored",
  2371. "markdown",
  2372. "md",
  2373. "parser"
  2374. ],
  2375. "time": "2021-03-28T18:51:39+00:00"
  2376. },
  2377. {
  2378. "name": "league/flysystem",
  2379. "version": "1.1.3",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/thephpleague/flysystem.git",
  2383. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2388. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2389. "shasum": "",
  2390. "mirrors": [
  2391. {
  2392. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2393. "preferred": true
  2394. }
  2395. ]
  2396. },
  2397. "require": {
  2398. "ext-fileinfo": "*",
  2399. "league/mime-type-detection": "^1.3",
  2400. "php": "^7.2.5 || ^8.0"
  2401. },
  2402. "conflict": {
  2403. "league/flysystem-sftp": "<1.0.6"
  2404. },
  2405. "require-dev": {
  2406. "phpspec/prophecy": "^1.11.1",
  2407. "phpunit/phpunit": "^8.5.8"
  2408. },
  2409. "suggest": {
  2410. "ext-fileinfo": "Required for MimeType",
  2411. "ext-ftp": "Allows you to use FTP server storage",
  2412. "ext-openssl": "Allows you to use FTPS server storage",
  2413. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2414. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2415. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2416. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2417. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2418. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2419. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2420. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2421. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2422. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2423. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2424. },
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "1.1-dev"
  2429. }
  2430. },
  2431. "autoload": {
  2432. "psr-4": {
  2433. "League\\Flysystem\\": "src/"
  2434. }
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "MIT"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "Frank de Jonge",
  2443. "email": "info@frenky.net"
  2444. }
  2445. ],
  2446. "description": "Filesystem abstraction: Many filesystems, one API.",
  2447. "keywords": [
  2448. "Cloud Files",
  2449. "WebDAV",
  2450. "abstraction",
  2451. "aws",
  2452. "cloud",
  2453. "copy.com",
  2454. "dropbox",
  2455. "file systems",
  2456. "files",
  2457. "filesystem",
  2458. "filesystems",
  2459. "ftp",
  2460. "rackspace",
  2461. "remote",
  2462. "s3",
  2463. "sftp",
  2464. "storage"
  2465. ],
  2466. "time": "2020-08-23T07:39:11+00:00"
  2467. },
  2468. {
  2469. "name": "league/fractal",
  2470. "version": "0.17.0",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/thephpleague/fractal.git",
  2474. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2479. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2480. "shasum": "",
  2481. "mirrors": [
  2482. {
  2483. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2484. "preferred": true
  2485. }
  2486. ]
  2487. },
  2488. "require": {
  2489. "php": ">=5.4"
  2490. },
  2491. "require-dev": {
  2492. "doctrine/orm": "^2.5",
  2493. "illuminate/contracts": "~5.0",
  2494. "mockery/mockery": "~0.9",
  2495. "pagerfanta/pagerfanta": "~1.0.0",
  2496. "phpunit/phpunit": "~4.0",
  2497. "squizlabs/php_codesniffer": "~1.5",
  2498. "zendframework/zend-paginator": "~2.3"
  2499. },
  2500. "suggest": {
  2501. "illuminate/pagination": "The Illuminate Pagination component.",
  2502. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2503. "zendframework/zend-paginator": "Zend Framework Paginator"
  2504. },
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "0.13-dev"
  2509. }
  2510. },
  2511. "autoload": {
  2512. "psr-4": {
  2513. "League\\Fractal\\": "src"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "authors": [
  2521. {
  2522. "name": "Phil Sturgeon",
  2523. "email": "me@philsturgeon.uk",
  2524. "homepage": "http://philsturgeon.uk/",
  2525. "role": "Developer"
  2526. }
  2527. ],
  2528. "description": "Handle the output of complex data structures ready for API output.",
  2529. "homepage": "http://fractal.thephpleague.com/",
  2530. "keywords": [
  2531. "api",
  2532. "json",
  2533. "league",
  2534. "rest"
  2535. ],
  2536. "time": "2017-06-12T11:04:56+00:00"
  2537. },
  2538. {
  2539. "name": "league/mime-type-detection",
  2540. "version": "1.7.0",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2544. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2549. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2550. "shasum": "",
  2551. "mirrors": [
  2552. {
  2553. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2554. "preferred": true
  2555. }
  2556. ]
  2557. },
  2558. "require": {
  2559. "ext-fileinfo": "*",
  2560. "php": "^7.2 || ^8.0"
  2561. },
  2562. "require-dev": {
  2563. "friendsofphp/php-cs-fixer": "^2.18",
  2564. "phpstan/phpstan": "^0.12.68",
  2565. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2566. },
  2567. "type": "library",
  2568. "autoload": {
  2569. "psr-4": {
  2570. "League\\MimeTypeDetection\\": "src"
  2571. }
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Frank de Jonge",
  2580. "email": "info@frankdejonge.nl"
  2581. }
  2582. ],
  2583. "description": "Mime-type detection for Flysystem",
  2584. "time": "2021-01-18T20:58:21+00:00"
  2585. },
  2586. {
  2587. "name": "maatwebsite/excel",
  2588. "version": "3.1.29",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2592. "reference": "1e567e6e19a04fd65b5876d5bc92f4015f09fab4"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/1e567e6e19a04fd65b5876d5bc92f4015f09fab4",
  2597. "reference": "1e567e6e19a04fd65b5876d5bc92f4015f09fab4",
  2598. "shasum": "",
  2599. "mirrors": [
  2600. {
  2601. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2602. "preferred": true
  2603. }
  2604. ]
  2605. },
  2606. "require": {
  2607. "ext-json": "*",
  2608. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2609. "php": "^7.0|^8.0",
  2610. "phpoffice/phpspreadsheet": "1.16.*"
  2611. },
  2612. "require-dev": {
  2613. "orchestra/testbench": "^6.0",
  2614. "predis/predis": "^1.1"
  2615. },
  2616. "type": "library",
  2617. "extra": {
  2618. "laravel": {
  2619. "providers": [
  2620. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2621. ],
  2622. "aliases": {
  2623. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2624. }
  2625. }
  2626. },
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Maatwebsite\\Excel\\": "src/"
  2630. }
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Patrick Brouwers",
  2639. "email": "patrick@maatwebsite.nl"
  2640. }
  2641. ],
  2642. "description": "Supercharged Excel exports and imports in Laravel",
  2643. "keywords": [
  2644. "PHPExcel",
  2645. "batch",
  2646. "csv",
  2647. "excel",
  2648. "export",
  2649. "import",
  2650. "laravel",
  2651. "php",
  2652. "phpspreadsheet"
  2653. ],
  2654. "time": "2021-03-16T11:56:39+00:00"
  2655. },
  2656. {
  2657. "name": "maennchen/zipstream-php",
  2658. "version": "2.1.0",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2662. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2667. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2668. "shasum": "",
  2669. "mirrors": [
  2670. {
  2671. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2672. "preferred": true
  2673. }
  2674. ]
  2675. },
  2676. "require": {
  2677. "myclabs/php-enum": "^1.5",
  2678. "php": ">= 7.1",
  2679. "psr/http-message": "^1.0",
  2680. "symfony/polyfill-mbstring": "^1.0"
  2681. },
  2682. "require-dev": {
  2683. "ext-zip": "*",
  2684. "guzzlehttp/guzzle": ">= 6.3",
  2685. "mikey179/vfsstream": "^1.6",
  2686. "phpunit/phpunit": ">= 7.5"
  2687. },
  2688. "type": "library",
  2689. "autoload": {
  2690. "psr-4": {
  2691. "ZipStream\\": "src/"
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "MIT"
  2697. ],
  2698. "authors": [
  2699. {
  2700. "name": "Paul Duncan",
  2701. "email": "pabs@pablotron.org"
  2702. },
  2703. {
  2704. "name": "Jonatan Männchen",
  2705. "email": "jonatan@maennchen.ch"
  2706. },
  2707. {
  2708. "name": "Jesse Donat",
  2709. "email": "donatj@gmail.com"
  2710. },
  2711. {
  2712. "name": "András Kolesár",
  2713. "email": "kolesar@kolesar.hu"
  2714. }
  2715. ],
  2716. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2717. "keywords": [
  2718. "stream",
  2719. "zip"
  2720. ],
  2721. "time": "2020-05-30T13:11:16+00:00"
  2722. },
  2723. {
  2724. "name": "markbaker/complex",
  2725. "version": "2.0.0",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2729. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2734. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "php": "^7.2 || ^8.0"
  2745. },
  2746. "require-dev": {
  2747. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2748. "phpcompatibility/php-compatibility": "^9.0",
  2749. "phpdocumentor/phpdocumentor": "2.*",
  2750. "phploc/phploc": "^4.0",
  2751. "phpmd/phpmd": "2.*",
  2752. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2753. "sebastian/phpcpd": "^4.0",
  2754. "squizlabs/php_codesniffer": "^3.4"
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "Complex\\": "classes/src/"
  2760. },
  2761. "files": [
  2762. "classes/src/functions/abs.php",
  2763. "classes/src/functions/acos.php",
  2764. "classes/src/functions/acosh.php",
  2765. "classes/src/functions/acot.php",
  2766. "classes/src/functions/acoth.php",
  2767. "classes/src/functions/acsc.php",
  2768. "classes/src/functions/acsch.php",
  2769. "classes/src/functions/argument.php",
  2770. "classes/src/functions/asec.php",
  2771. "classes/src/functions/asech.php",
  2772. "classes/src/functions/asin.php",
  2773. "classes/src/functions/asinh.php",
  2774. "classes/src/functions/atan.php",
  2775. "classes/src/functions/atanh.php",
  2776. "classes/src/functions/conjugate.php",
  2777. "classes/src/functions/cos.php",
  2778. "classes/src/functions/cosh.php",
  2779. "classes/src/functions/cot.php",
  2780. "classes/src/functions/coth.php",
  2781. "classes/src/functions/csc.php",
  2782. "classes/src/functions/csch.php",
  2783. "classes/src/functions/exp.php",
  2784. "classes/src/functions/inverse.php",
  2785. "classes/src/functions/ln.php",
  2786. "classes/src/functions/log2.php",
  2787. "classes/src/functions/log10.php",
  2788. "classes/src/functions/negative.php",
  2789. "classes/src/functions/pow.php",
  2790. "classes/src/functions/rho.php",
  2791. "classes/src/functions/sec.php",
  2792. "classes/src/functions/sech.php",
  2793. "classes/src/functions/sin.php",
  2794. "classes/src/functions/sinh.php",
  2795. "classes/src/functions/sqrt.php",
  2796. "classes/src/functions/tan.php",
  2797. "classes/src/functions/tanh.php",
  2798. "classes/src/functions/theta.php",
  2799. "classes/src/operations/add.php",
  2800. "classes/src/operations/subtract.php",
  2801. "classes/src/operations/multiply.php",
  2802. "classes/src/operations/divideby.php",
  2803. "classes/src/operations/divideinto.php"
  2804. ]
  2805. },
  2806. "notification-url": "https://packagist.org/downloads/",
  2807. "license": [
  2808. "MIT"
  2809. ],
  2810. "authors": [
  2811. {
  2812. "name": "Mark Baker",
  2813. "email": "mark@lange.demon.co.uk"
  2814. }
  2815. ],
  2816. "description": "PHP Class for working with complex numbers",
  2817. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2818. "keywords": [
  2819. "complex",
  2820. "mathematics"
  2821. ],
  2822. "time": "2020-08-26T10:42:07+00:00"
  2823. },
  2824. {
  2825. "name": "markbaker/matrix",
  2826. "version": "2.1.2",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2830. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2835. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2836. "shasum": "",
  2837. "mirrors": [
  2838. {
  2839. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2840. "preferred": true
  2841. }
  2842. ]
  2843. },
  2844. "require": {
  2845. "php": "^7.1 || ^8.0"
  2846. },
  2847. "require-dev": {
  2848. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2849. "phpcompatibility/php-compatibility": "^9.0",
  2850. "phpdocumentor/phpdocumentor": "2.*",
  2851. "phploc/phploc": "^4.0",
  2852. "phpmd/phpmd": "2.*",
  2853. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2854. "sebastian/phpcpd": "^4.0",
  2855. "squizlabs/php_codesniffer": "^3.4"
  2856. },
  2857. "type": "library",
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Matrix\\": "classes/src/"
  2861. },
  2862. "files": [
  2863. "classes/src/Functions/adjoint.php",
  2864. "classes/src/Functions/antidiagonal.php",
  2865. "classes/src/Functions/cofactors.php",
  2866. "classes/src/Functions/determinant.php",
  2867. "classes/src/Functions/diagonal.php",
  2868. "classes/src/Functions/identity.php",
  2869. "classes/src/Functions/inverse.php",
  2870. "classes/src/Functions/minors.php",
  2871. "classes/src/Functions/trace.php",
  2872. "classes/src/Functions/transpose.php",
  2873. "classes/src/Operations/add.php",
  2874. "classes/src/Operations/directsum.php",
  2875. "classes/src/Operations/subtract.php",
  2876. "classes/src/Operations/multiply.php",
  2877. "classes/src/Operations/divideby.php",
  2878. "classes/src/Operations/divideinto.php"
  2879. ]
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Mark Baker",
  2888. "email": "mark@demon-angel.eu"
  2889. }
  2890. ],
  2891. "description": "PHP Class for working with matrices",
  2892. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2893. "keywords": [
  2894. "mathematics",
  2895. "matrix",
  2896. "vector"
  2897. ],
  2898. "time": "2021-01-23T16:37:31+00:00"
  2899. },
  2900. {
  2901. "name": "monolog/monolog",
  2902. "version": "2.2.0",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/Seldaek/monolog.git",
  2906. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2911. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2912. "shasum": "",
  2913. "mirrors": [
  2914. {
  2915. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2916. "preferred": true
  2917. }
  2918. ]
  2919. },
  2920. "require": {
  2921. "php": ">=7.2",
  2922. "psr/log": "^1.0.1"
  2923. },
  2924. "provide": {
  2925. "psr/log-implementation": "1.0.0"
  2926. },
  2927. "require-dev": {
  2928. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2929. "doctrine/couchdb": "~1.0@dev",
  2930. "elasticsearch/elasticsearch": "^7",
  2931. "graylog2/gelf-php": "^1.4.2",
  2932. "mongodb/mongodb": "^1.8",
  2933. "php-amqplib/php-amqplib": "~2.4",
  2934. "php-console/php-console": "^3.1.3",
  2935. "phpspec/prophecy": "^1.6.1",
  2936. "phpstan/phpstan": "^0.12.59",
  2937. "phpunit/phpunit": "^8.5",
  2938. "predis/predis": "^1.1",
  2939. "rollbar/rollbar": "^1.3",
  2940. "ruflin/elastica": ">=0.90 <7.0.1",
  2941. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2942. },
  2943. "suggest": {
  2944. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2945. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2946. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2947. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2948. "ext-mbstring": "Allow to work properly with unicode symbols",
  2949. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2950. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2951. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2952. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2953. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2954. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2955. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2956. },
  2957. "type": "library",
  2958. "extra": {
  2959. "branch-alias": {
  2960. "dev-main": "2.x-dev"
  2961. }
  2962. },
  2963. "autoload": {
  2964. "psr-4": {
  2965. "Monolog\\": "src/Monolog"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Jordi Boggiano",
  2975. "email": "j.boggiano@seld.be",
  2976. "homepage": "https://seld.be"
  2977. }
  2978. ],
  2979. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2980. "homepage": "https://github.com/Seldaek/monolog",
  2981. "keywords": [
  2982. "log",
  2983. "logging",
  2984. "psr-3"
  2985. ],
  2986. "time": "2020-12-14T13:15:25+00:00"
  2987. },
  2988. {
  2989. "name": "myclabs/php-enum",
  2990. "version": "1.8.0",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/myclabs/php-enum.git",
  2994. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  2999. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3000. "shasum": "",
  3001. "mirrors": [
  3002. {
  3003. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3004. "preferred": true
  3005. }
  3006. ]
  3007. },
  3008. "require": {
  3009. "ext-json": "*",
  3010. "php": "^7.3 || ^8.0"
  3011. },
  3012. "require-dev": {
  3013. "phpunit/phpunit": "^9.5",
  3014. "squizlabs/php_codesniffer": "1.*",
  3015. "vimeo/psalm": "^4.5.1"
  3016. },
  3017. "type": "library",
  3018. "autoload": {
  3019. "psr-4": {
  3020. "MyCLabs\\Enum\\": "src/"
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "PHP Enum contributors",
  3030. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3031. }
  3032. ],
  3033. "description": "PHP Enum implementation",
  3034. "homepage": "http://github.com/myclabs/php-enum",
  3035. "keywords": [
  3036. "enum"
  3037. ],
  3038. "time": "2021-02-15T16:11:48+00:00"
  3039. },
  3040. {
  3041. "name": "namshi/jose",
  3042. "version": "7.2.3",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/namshi/jose.git",
  3046. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3051. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3052. "shasum": "",
  3053. "mirrors": [
  3054. {
  3055. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3056. "preferred": true
  3057. }
  3058. ]
  3059. },
  3060. "require": {
  3061. "ext-date": "*",
  3062. "ext-hash": "*",
  3063. "ext-json": "*",
  3064. "ext-pcre": "*",
  3065. "ext-spl": "*",
  3066. "php": ">=5.5",
  3067. "symfony/polyfill-php56": "^1.0"
  3068. },
  3069. "require-dev": {
  3070. "phpseclib/phpseclib": "^2.0",
  3071. "phpunit/phpunit": "^4.5|^5.0",
  3072. "satooshi/php-coveralls": "^1.0"
  3073. },
  3074. "suggest": {
  3075. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3076. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3077. },
  3078. "type": "library",
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Alessandro Nadalin",
  3091. "email": "alessandro.nadalin@gmail.com"
  3092. },
  3093. {
  3094. "name": "Alessandro Cinelli (cirpo)",
  3095. "email": "alessandro.cinelli@gmail.com"
  3096. }
  3097. ],
  3098. "description": "JSON Object Signing and Encryption library for PHP.",
  3099. "keywords": [
  3100. "JSON Web Signature",
  3101. "JSON Web Token",
  3102. "JWS",
  3103. "json",
  3104. "jwt",
  3105. "token"
  3106. ],
  3107. "time": "2016-12-05T07:27:31+00:00"
  3108. },
  3109. {
  3110. "name": "nesbot/carbon",
  3111. "version": "2.46.0",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://github.com/briannesbitt/Carbon.git",
  3115. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3120. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3121. "shasum": "",
  3122. "mirrors": [
  3123. {
  3124. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3125. "preferred": true
  3126. }
  3127. ]
  3128. },
  3129. "require": {
  3130. "ext-json": "*",
  3131. "php": "^7.1.8 || ^8.0",
  3132. "symfony/polyfill-mbstring": "^1.0",
  3133. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3134. },
  3135. "require-dev": {
  3136. "doctrine/orm": "^2.7",
  3137. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3138. "kylekatarnls/multi-tester": "^2.0",
  3139. "phpmd/phpmd": "^2.9",
  3140. "phpstan/extension-installer": "^1.0",
  3141. "phpstan/phpstan": "^0.12.54",
  3142. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3143. "squizlabs/php_codesniffer": "^3.4"
  3144. },
  3145. "bin": [
  3146. "bin/carbon"
  3147. ],
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "2.x-dev",
  3152. "dev-3.x": "3.x-dev"
  3153. },
  3154. "laravel": {
  3155. "providers": [
  3156. "Carbon\\Laravel\\ServiceProvider"
  3157. ]
  3158. },
  3159. "phpstan": {
  3160. "includes": [
  3161. "extension.neon"
  3162. ]
  3163. }
  3164. },
  3165. "autoload": {
  3166. "psr-4": {
  3167. "Carbon\\": "src/Carbon/"
  3168. }
  3169. },
  3170. "notification-url": "https://packagist.org/downloads/",
  3171. "license": [
  3172. "MIT"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "Brian Nesbitt",
  3177. "email": "brian@nesbot.com",
  3178. "homepage": "http://nesbot.com"
  3179. },
  3180. {
  3181. "name": "kylekatarnls",
  3182. "homepage": "http://github.com/kylekatarnls"
  3183. }
  3184. ],
  3185. "description": "An API extension for DateTime that supports 281 different languages.",
  3186. "homepage": "http://carbon.nesbot.com",
  3187. "keywords": [
  3188. "date",
  3189. "datetime",
  3190. "time"
  3191. ],
  3192. "time": "2021-02-24T17:30:44+00:00"
  3193. },
  3194. {
  3195. "name": "nikic/php-parser",
  3196. "version": "v4.10.4",
  3197. "source": {
  3198. "type": "git",
  3199. "url": "https://github.com/nikic/PHP-Parser.git",
  3200. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3201. },
  3202. "dist": {
  3203. "type": "zip",
  3204. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3205. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3206. "shasum": "",
  3207. "mirrors": [
  3208. {
  3209. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3210. "preferred": true
  3211. }
  3212. ]
  3213. },
  3214. "require": {
  3215. "ext-tokenizer": "*",
  3216. "php": ">=7.0"
  3217. },
  3218. "require-dev": {
  3219. "ircmaxell/php-yacc": "^0.0.7",
  3220. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3221. },
  3222. "bin": [
  3223. "bin/php-parse"
  3224. ],
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "4.9-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "PhpParser\\": "lib/PhpParser"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "BSD-3-Clause"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "Nikita Popov"
  3243. }
  3244. ],
  3245. "description": "A PHP parser written in PHP",
  3246. "keywords": [
  3247. "parser",
  3248. "php"
  3249. ],
  3250. "time": "2020-12-20T10:01:03+00:00"
  3251. },
  3252. {
  3253. "name": "opis/closure",
  3254. "version": "3.6.1",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/opis/closure.git",
  3258. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3263. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3264. "shasum": "",
  3265. "mirrors": [
  3266. {
  3267. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3268. "preferred": true
  3269. }
  3270. ]
  3271. },
  3272. "require": {
  3273. "php": "^5.4 || ^7.0 || ^8.0"
  3274. },
  3275. "require-dev": {
  3276. "jeremeamia/superclosure": "^2.0",
  3277. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "3.6.x-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Opis\\Closure\\": "src/"
  3288. },
  3289. "files": [
  3290. "functions.php"
  3291. ]
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "Marius Sarca",
  3300. "email": "marius.sarca@gmail.com"
  3301. },
  3302. {
  3303. "name": "Sorin Sarca",
  3304. "email": "sarca_sorin@hotmail.com"
  3305. }
  3306. ],
  3307. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3308. "homepage": "https://opis.io/closure",
  3309. "keywords": [
  3310. "anonymous functions",
  3311. "closure",
  3312. "function",
  3313. "serializable",
  3314. "serialization",
  3315. "serialize"
  3316. ],
  3317. "time": "2020-11-07T02:01:34+00:00"
  3318. },
  3319. {
  3320. "name": "overtrue/easy-sms",
  3321. "version": "1.3.2",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/overtrue/easy-sms.git",
  3325. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  3330. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  3331. "shasum": "",
  3332. "mirrors": [
  3333. {
  3334. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3335. "preferred": true
  3336. }
  3337. ]
  3338. },
  3339. "require": {
  3340. "ext-json": "*",
  3341. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3342. "php": ">=5.6"
  3343. },
  3344. "require-dev": {
  3345. "mockery/mockery": "1.3.1",
  3346. "phpunit/phpunit": "^5.7 || ^7.5"
  3347. },
  3348. "type": "library",
  3349. "autoload": {
  3350. "psr-4": {
  3351. "Overtrue\\EasySms\\": "src"
  3352. }
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "MIT"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "overtrue",
  3361. "email": "i@overtrue.me"
  3362. }
  3363. ],
  3364. "description": "The easiest way to send short message.",
  3365. "time": "2021-01-22T06:52:59+00:00"
  3366. },
  3367. {
  3368. "name": "overtrue/flysystem-qiniu",
  3369. "version": "1.0.5",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/overtrue/flysystem-qiniu.git",
  3373. "reference": "642731719ecba8826e095e2395e379c2a4910c80"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/overtrue/flysystem-qiniu/zipball/642731719ecba8826e095e2395e379c2a4910c80",
  3378. "reference": "642731719ecba8826e095e2395e379c2a4910c80",
  3379. "shasum": "",
  3380. "mirrors": [
  3381. {
  3382. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3383. "preferred": true
  3384. }
  3385. ]
  3386. },
  3387. "require": {
  3388. "league/flysystem": "^1.0",
  3389. "php": ">=5.5.9",
  3390. "qiniu/php-sdk": "^7.2"
  3391. },
  3392. "require-dev": {
  3393. "mockery/mockery": "1.3.1",
  3394. "php": ">=5.6.0",
  3395. "phpunit/phpunit": "~8.0"
  3396. },
  3397. "type": "library",
  3398. "autoload": {
  3399. "psr-4": {
  3400. "Overtrue\\Flysystem\\Qiniu\\": "src"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "overtrue",
  3410. "email": "i@overtrue.me"
  3411. }
  3412. ],
  3413. "description": "Flysystem adapter for the Qiniu storage.",
  3414. "time": "2020-02-21T10:46:56+00:00"
  3415. },
  3416. {
  3417. "name": "overtrue/laravel-filesystem-qiniu",
  3418. "version": "1.0.2",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/overtrue/laravel-filesystem-qiniu.git",
  3422. "reference": "73e8346de9e892f9e42f17f781e1878e981b75d6"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/overtrue/laravel-filesystem-qiniu/zipball/73e8346de9e892f9e42f17f781e1878e981b75d6",
  3427. "reference": "73e8346de9e892f9e42f17f781e1878e981b75d6",
  3428. "shasum": "",
  3429. "mirrors": [
  3430. {
  3431. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3432. "preferred": true
  3433. }
  3434. ]
  3435. },
  3436. "require": {
  3437. "league/flysystem": "^1.0",
  3438. "overtrue/flysystem-qiniu": "^1.0.2",
  3439. "php": ">=5.5.9"
  3440. },
  3441. "type": "library",
  3442. "extra": {
  3443. "laravel": {
  3444. "providers": [
  3445. "Overtrue\\LaravelFilesystem\\Qiniu\\QiniuStorageServiceProvider"
  3446. ]
  3447. }
  3448. },
  3449. "autoload": {
  3450. "psr-4": {
  3451. "Overtrue\\LaravelFilesystem\\Qiniu\\": "src"
  3452. }
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "overtrue",
  3461. "email": "i@overtrue.me"
  3462. }
  3463. ],
  3464. "description": "A Qiniu storage filesystem for Laravel.",
  3465. "time": "2018-12-06T04:06:18+00:00"
  3466. },
  3467. {
  3468. "name": "overtrue/laravel-wechat",
  3469. "version": "5.1.0",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/overtrue/laravel-wechat.git",
  3473. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3478. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3479. "shasum": "",
  3480. "mirrors": [
  3481. {
  3482. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3483. "preferred": true
  3484. }
  3485. ]
  3486. },
  3487. "require": {
  3488. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  3489. "overtrue/wechat": "^4.0"
  3490. },
  3491. "require-dev": {
  3492. "friendsofphp/php-cs-fixer": "^2.16",
  3493. "laravel/framework": "^8.5"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "laravel": {
  3498. "providers": [
  3499. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3500. ],
  3501. "aliases": {
  3502. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  3503. }
  3504. }
  3505. },
  3506. "autoload": {
  3507. "psr-4": {
  3508. "Overtrue\\LaravelWeChat\\": "src/"
  3509. }
  3510. },
  3511. "notification-url": "https://packagist.org/downloads/",
  3512. "license": [
  3513. "MIT"
  3514. ],
  3515. "authors": [
  3516. {
  3517. "name": "overtrue",
  3518. "email": "anzhengchao@gmail.com"
  3519. }
  3520. ],
  3521. "description": "微信 SDK for Laravel",
  3522. "keywords": [
  3523. "laravel",
  3524. "sdk",
  3525. "wechat",
  3526. "weixin"
  3527. ],
  3528. "time": "2020-09-27T08:32:30+00:00"
  3529. },
  3530. {
  3531. "name": "overtrue/pinyin",
  3532. "version": "4.0.7",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/overtrue/pinyin.git",
  3536. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3541. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3542. "shasum": "",
  3543. "mirrors": [
  3544. {
  3545. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3546. "preferred": true
  3547. }
  3548. ]
  3549. },
  3550. "require": {
  3551. "php": ">=7.1"
  3552. },
  3553. "require-dev": {
  3554. "brainmaestro/composer-git-hooks": "^2.7",
  3555. "friendsofphp/php-cs-fixer": "^2.16",
  3556. "phpunit/phpunit": "~8.0"
  3557. },
  3558. "type": "library",
  3559. "extra": {
  3560. "hooks": {
  3561. "pre-commit": [
  3562. "composer test",
  3563. "composer fix-style"
  3564. ],
  3565. "pre-push": [
  3566. "composer test",
  3567. "composer check-style"
  3568. ]
  3569. }
  3570. },
  3571. "autoload": {
  3572. "psr-4": {
  3573. "Overtrue\\Pinyin\\": "src/"
  3574. },
  3575. "files": [
  3576. "src/const.php"
  3577. ]
  3578. },
  3579. "notification-url": "https://packagist.org/downloads/",
  3580. "license": [
  3581. "MIT"
  3582. ],
  3583. "authors": [
  3584. {
  3585. "name": "overtrue",
  3586. "email": "anzhengchao@gmail.com",
  3587. "homepage": "http://github.com/overtrue"
  3588. }
  3589. ],
  3590. "description": "Chinese to pinyin translator.",
  3591. "homepage": "https://github.com/overtrue/pinyin",
  3592. "keywords": [
  3593. "Chinese",
  3594. "Pinyin",
  3595. "cn2pinyin"
  3596. ],
  3597. "time": "2021-04-16T11:13:48+00:00"
  3598. },
  3599. {
  3600. "name": "overtrue/socialite",
  3601. "version": "2.0.23",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/overtrue/socialite.git",
  3605. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0bc60597b589592243f074a4d9016aabd2e9cfb2",
  3610. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2",
  3611. "shasum": "",
  3612. "mirrors": [
  3613. {
  3614. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3615. "preferred": true
  3616. }
  3617. ]
  3618. },
  3619. "require": {
  3620. "ext-json": "*",
  3621. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  3622. "php": ">=5.6",
  3623. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  3624. },
  3625. "require-dev": {
  3626. "mockery/mockery": "~1.2",
  3627. "phpunit/phpunit": "~6"
  3628. },
  3629. "type": "library",
  3630. "autoload": {
  3631. "psr-4": {
  3632. "Overtrue\\Socialite\\": "src/"
  3633. }
  3634. },
  3635. "notification-url": "https://packagist.org/downloads/",
  3636. "license": [
  3637. "MIT"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "overtrue",
  3642. "email": "anzhengchao@gmail.com"
  3643. }
  3644. ],
  3645. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  3646. "keywords": [
  3647. "login",
  3648. "oauth",
  3649. "qq",
  3650. "social",
  3651. "wechat",
  3652. "weibo"
  3653. ],
  3654. "time": "2020-12-14T03:30:08+00:00"
  3655. },
  3656. {
  3657. "name": "overtrue/wechat",
  3658. "version": "4.4.0",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://github.com/w7corp/easywechat.git",
  3662. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/20bdd3fe8056ee9297692caf53bd131be8079ee6",
  3667. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6",
  3668. "shasum": "",
  3669. "mirrors": [
  3670. {
  3671. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3672. "preferred": true
  3673. }
  3674. ]
  3675. },
  3676. "require": {
  3677. "easywechat-composer/easywechat-composer": "^1.1",
  3678. "ext-fileinfo": "*",
  3679. "ext-openssl": "*",
  3680. "ext-simplexml": "*",
  3681. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3682. "monolog/monolog": "^1.22 || ^2.0",
  3683. "overtrue/socialite": "~2.0",
  3684. "php": ">=7.2",
  3685. "pimple/pimple": "^3.0",
  3686. "psr/simple-cache": "^1.0",
  3687. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  3688. "symfony/event-dispatcher": "^4.3 || ^5.0",
  3689. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  3690. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3691. },
  3692. "require-dev": {
  3693. "friendsofphp/php-cs-fixer": "^2.15",
  3694. "mikey179/vfsstream": "^1.6",
  3695. "mockery/mockery": "^1.2.3",
  3696. "phpstan/phpstan": "^0.12.0",
  3697. "phpunit/phpunit": "^7.5"
  3698. },
  3699. "type": "library",
  3700. "autoload": {
  3701. "psr-4": {
  3702. "EasyWeChat\\": "src/"
  3703. },
  3704. "files": [
  3705. "src/Kernel/Support/Helpers.php",
  3706. "src/Kernel/Helpers.php"
  3707. ]
  3708. },
  3709. "notification-url": "https://packagist.org/downloads/",
  3710. "license": [
  3711. "MIT"
  3712. ],
  3713. "authors": [
  3714. {
  3715. "name": "overtrue",
  3716. "email": "anzhengchao@gmail.com"
  3717. }
  3718. ],
  3719. "description": "微信SDK",
  3720. "keywords": [
  3721. "easywechat",
  3722. "sdk",
  3723. "wechat",
  3724. "weixin",
  3725. "weixin-sdk"
  3726. ],
  3727. "time": "2020-12-30T06:39:40+00:00"
  3728. },
  3729. {
  3730. "name": "paragonie/random_compat",
  3731. "version": "v9.99.99",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/paragonie/random_compat.git",
  3735. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3740. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3741. "shasum": "",
  3742. "mirrors": [
  3743. {
  3744. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3745. "preferred": true
  3746. }
  3747. ]
  3748. },
  3749. "require": {
  3750. "php": "^7"
  3751. },
  3752. "require-dev": {
  3753. "phpunit/phpunit": "4.*|5.*",
  3754. "vimeo/psalm": "^1"
  3755. },
  3756. "suggest": {
  3757. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3758. },
  3759. "type": "library",
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Paragon Initiative Enterprises",
  3767. "email": "security@paragonie.com",
  3768. "homepage": "https://paragonie.com"
  3769. }
  3770. ],
  3771. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3772. "keywords": [
  3773. "csprng",
  3774. "polyfill",
  3775. "pseudorandom",
  3776. "random"
  3777. ],
  3778. "time": "2018-07-02T15:55:56+00:00"
  3779. },
  3780. {
  3781. "name": "php-parallel-lint/php-console-color",
  3782. "version": "v0.3",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  3786. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  3791. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  3792. "shasum": "",
  3793. "mirrors": [
  3794. {
  3795. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3796. "preferred": true
  3797. }
  3798. ]
  3799. },
  3800. "require": {
  3801. "php": ">=5.4.0"
  3802. },
  3803. "replace": {
  3804. "jakub-onderka/php-console-color": "*"
  3805. },
  3806. "require-dev": {
  3807. "php-parallel-lint/php-code-style": "1.0",
  3808. "php-parallel-lint/php-parallel-lint": "1.0",
  3809. "php-parallel-lint/php-var-dump-check": "0.*",
  3810. "phpunit/phpunit": "~4.3",
  3811. "squizlabs/php_codesniffer": "1.*"
  3812. },
  3813. "type": "library",
  3814. "autoload": {
  3815. "psr-4": {
  3816. "JakubOnderka\\PhpConsoleColor\\": "src/"
  3817. }
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "BSD-2-Clause"
  3822. ],
  3823. "authors": [
  3824. {
  3825. "name": "Jakub Onderka",
  3826. "email": "jakub.onderka@gmail.com"
  3827. }
  3828. ],
  3829. "time": "2020-05-14T05:47:14+00:00"
  3830. },
  3831. {
  3832. "name": "php-parallel-lint/php-console-highlighter",
  3833. "version": "v0.5",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  3837. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  3842. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  3843. "shasum": "",
  3844. "mirrors": [
  3845. {
  3846. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3847. "preferred": true
  3848. }
  3849. ]
  3850. },
  3851. "require": {
  3852. "ext-tokenizer": "*",
  3853. "php": ">=5.4.0",
  3854. "php-parallel-lint/php-console-color": "~0.2"
  3855. },
  3856. "replace": {
  3857. "jakub-onderka/php-console-highlighter": "*"
  3858. },
  3859. "require-dev": {
  3860. "php-parallel-lint/php-code-style": "~1.0",
  3861. "php-parallel-lint/php-parallel-lint": "~1.0",
  3862. "php-parallel-lint/php-var-dump-check": "~0.1",
  3863. "phpunit/phpunit": "~4.0",
  3864. "squizlabs/php_codesniffer": "~1.5"
  3865. },
  3866. "type": "library",
  3867. "autoload": {
  3868. "psr-4": {
  3869. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  3870. }
  3871. },
  3872. "notification-url": "https://packagist.org/downloads/",
  3873. "license": [
  3874. "MIT"
  3875. ],
  3876. "authors": [
  3877. {
  3878. "name": "Jakub Onderka",
  3879. "email": "acci@acci.cz",
  3880. "homepage": "http://www.acci.cz/"
  3881. }
  3882. ],
  3883. "description": "Highlight PHP code in terminal",
  3884. "time": "2020-05-13T07:37:49+00:00"
  3885. },
  3886. {
  3887. "name": "phpdocumentor/reflection-common",
  3888. "version": "2.2.0",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3892. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3897. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3898. "shasum": "",
  3899. "mirrors": [
  3900. {
  3901. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3902. "preferred": true
  3903. }
  3904. ]
  3905. },
  3906. "require": {
  3907. "php": "^7.2 || ^8.0"
  3908. },
  3909. "type": "library",
  3910. "extra": {
  3911. "branch-alias": {
  3912. "dev-2.x": "2.x-dev"
  3913. }
  3914. },
  3915. "autoload": {
  3916. "psr-4": {
  3917. "phpDocumentor\\Reflection\\": "src/"
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "authors": [
  3925. {
  3926. "name": "Jaap van Otterdijk",
  3927. "email": "opensource@ijaap.nl"
  3928. }
  3929. ],
  3930. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3931. "homepage": "http://www.phpdoc.org",
  3932. "keywords": [
  3933. "FQSEN",
  3934. "phpDocumentor",
  3935. "phpdoc",
  3936. "reflection",
  3937. "static analysis"
  3938. ],
  3939. "time": "2020-06-27T09:03:43+00:00"
  3940. },
  3941. {
  3942. "name": "phpdocumentor/reflection-docblock",
  3943. "version": "4.3.4",
  3944. "source": {
  3945. "type": "git",
  3946. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3947. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  3948. },
  3949. "dist": {
  3950. "type": "zip",
  3951. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3952. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3953. "shasum": "",
  3954. "mirrors": [
  3955. {
  3956. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3957. "preferred": true
  3958. }
  3959. ]
  3960. },
  3961. "require": {
  3962. "php": "^7.0",
  3963. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  3964. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  3965. "webmozart/assert": "^1.0"
  3966. },
  3967. "require-dev": {
  3968. "doctrine/instantiator": "^1.0.5",
  3969. "mockery/mockery": "^1.0",
  3970. "phpdocumentor/type-resolver": "0.4.*",
  3971. "phpunit/phpunit": "^6.4"
  3972. },
  3973. "type": "library",
  3974. "extra": {
  3975. "branch-alias": {
  3976. "dev-master": "4.x-dev"
  3977. }
  3978. },
  3979. "autoload": {
  3980. "psr-4": {
  3981. "phpDocumentor\\Reflection\\": [
  3982. "src/"
  3983. ]
  3984. }
  3985. },
  3986. "notification-url": "https://packagist.org/downloads/",
  3987. "license": [
  3988. "MIT"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "Mike van Riel",
  3993. "email": "me@mikevanriel.com"
  3994. }
  3995. ],
  3996. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3997. "time": "2019-12-28T18:55:12+00:00"
  3998. },
  3999. {
  4000. "name": "phpdocumentor/type-resolver",
  4001. "version": "1.4.0",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4005. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4010. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4011. "shasum": "",
  4012. "mirrors": [
  4013. {
  4014. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4015. "preferred": true
  4016. }
  4017. ]
  4018. },
  4019. "require": {
  4020. "php": "^7.2 || ^8.0",
  4021. "phpdocumentor/reflection-common": "^2.0"
  4022. },
  4023. "require-dev": {
  4024. "ext-tokenizer": "*"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-1.x": "1.x-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "phpDocumentor\\Reflection\\": "src"
  4035. }
  4036. },
  4037. "notification-url": "https://packagist.org/downloads/",
  4038. "license": [
  4039. "MIT"
  4040. ],
  4041. "authors": [
  4042. {
  4043. "name": "Mike van Riel",
  4044. "email": "me@mikevanriel.com"
  4045. }
  4046. ],
  4047. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4048. "time": "2020-09-17T18:55:26+00:00"
  4049. },
  4050. {
  4051. "name": "phpoffice/phpspreadsheet",
  4052. "version": "1.16.0",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4056. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  4061. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  4062. "shasum": "",
  4063. "mirrors": [
  4064. {
  4065. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4066. "preferred": true
  4067. }
  4068. ]
  4069. },
  4070. "require": {
  4071. "ext-ctype": "*",
  4072. "ext-dom": "*",
  4073. "ext-fileinfo": "*",
  4074. "ext-gd": "*",
  4075. "ext-iconv": "*",
  4076. "ext-libxml": "*",
  4077. "ext-mbstring": "*",
  4078. "ext-simplexml": "*",
  4079. "ext-xml": "*",
  4080. "ext-xmlreader": "*",
  4081. "ext-xmlwriter": "*",
  4082. "ext-zip": "*",
  4083. "ext-zlib": "*",
  4084. "ezyang/htmlpurifier": "^4.13",
  4085. "maennchen/zipstream-php": "^2.1",
  4086. "markbaker/complex": "^1.5||^2.0",
  4087. "markbaker/matrix": "^1.2||^2.0",
  4088. "php": "^7.2||^8.0",
  4089. "psr/http-client": "^1.0",
  4090. "psr/http-factory": "^1.0",
  4091. "psr/simple-cache": "^1.0"
  4092. },
  4093. "require-dev": {
  4094. "dompdf/dompdf": "^0.8.5",
  4095. "friendsofphp/php-cs-fixer": "^2.16",
  4096. "jpgraph/jpgraph": "^4.0",
  4097. "mpdf/mpdf": "^8.0",
  4098. "phpcompatibility/php-compatibility": "^9.3",
  4099. "phpunit/phpunit": "^8.5||^9.3",
  4100. "squizlabs/php_codesniffer": "^3.5",
  4101. "tecnickcom/tcpdf": "^6.3"
  4102. },
  4103. "suggest": {
  4104. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  4105. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4106. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4107. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  4108. },
  4109. "type": "library",
  4110. "autoload": {
  4111. "psr-4": {
  4112. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4113. }
  4114. },
  4115. "notification-url": "https://packagist.org/downloads/",
  4116. "license": [
  4117. "MIT"
  4118. ],
  4119. "authors": [
  4120. {
  4121. "name": "Maarten Balliauw",
  4122. "homepage": "https://blog.maartenballiauw.be"
  4123. },
  4124. {
  4125. "name": "Mark Baker",
  4126. "homepage": "https://markbakeruk.net"
  4127. },
  4128. {
  4129. "name": "Franck Lefevre",
  4130. "homepage": "https://rootslabs.net"
  4131. },
  4132. {
  4133. "name": "Erik Tilt"
  4134. },
  4135. {
  4136. "name": "Adrien Crivelli"
  4137. }
  4138. ],
  4139. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4140. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4141. "keywords": [
  4142. "OpenXML",
  4143. "excel",
  4144. "gnumeric",
  4145. "ods",
  4146. "php",
  4147. "spreadsheet",
  4148. "xls",
  4149. "xlsx"
  4150. ],
  4151. "time": "2020-12-31T18:03:49+00:00"
  4152. },
  4153. {
  4154. "name": "phpoption/phpoption",
  4155. "version": "1.7.5",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/schmittjoh/php-option.git",
  4159. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4164. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4165. "shasum": "",
  4166. "mirrors": [
  4167. {
  4168. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4169. "preferred": true
  4170. }
  4171. ]
  4172. },
  4173. "require": {
  4174. "php": "^5.5.9 || ^7.0 || ^8.0"
  4175. },
  4176. "require-dev": {
  4177. "bamarni/composer-bin-plugin": "^1.4.1",
  4178. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "branch-alias": {
  4183. "dev-master": "1.7-dev"
  4184. }
  4185. },
  4186. "autoload": {
  4187. "psr-4": {
  4188. "PhpOption\\": "src/PhpOption/"
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "Apache-2.0"
  4194. ],
  4195. "authors": [
  4196. {
  4197. "name": "Johannes M. Schmitt",
  4198. "email": "schmittjoh@gmail.com"
  4199. },
  4200. {
  4201. "name": "Graham Campbell",
  4202. "email": "graham@alt-three.com"
  4203. }
  4204. ],
  4205. "description": "Option Type for PHP",
  4206. "keywords": [
  4207. "language",
  4208. "option",
  4209. "php",
  4210. "type"
  4211. ],
  4212. "time": "2020-07-20T17:29:33+00:00"
  4213. },
  4214. {
  4215. "name": "pimple/pimple",
  4216. "version": "v3.4.0",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/silexphp/Pimple.git",
  4220. "reference": "86406047271859ffc13424a048541f4531f53601"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  4225. "reference": "86406047271859ffc13424a048541f4531f53601",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "php": ">=7.2.5",
  4236. "psr/container": "^1.1"
  4237. },
  4238. "require-dev": {
  4239. "symfony/phpunit-bridge": "^5.0"
  4240. },
  4241. "type": "library",
  4242. "extra": {
  4243. "branch-alias": {
  4244. "dev-master": "3.4.x-dev"
  4245. }
  4246. },
  4247. "autoload": {
  4248. "psr-0": {
  4249. "Pimple": "src/"
  4250. }
  4251. },
  4252. "notification-url": "https://packagist.org/downloads/",
  4253. "license": [
  4254. "MIT"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "Fabien Potencier",
  4259. "email": "fabien@symfony.com"
  4260. }
  4261. ],
  4262. "description": "Pimple, a simple Dependency Injection Container",
  4263. "homepage": "https://pimple.symfony.com",
  4264. "keywords": [
  4265. "container",
  4266. "dependency injection"
  4267. ],
  4268. "time": "2021-03-06T08:28:00+00:00"
  4269. },
  4270. {
  4271. "name": "psr/cache",
  4272. "version": "1.0.1",
  4273. "source": {
  4274. "type": "git",
  4275. "url": "https://github.com/php-fig/cache.git",
  4276. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4277. },
  4278. "dist": {
  4279. "type": "zip",
  4280. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4281. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4282. "shasum": "",
  4283. "mirrors": [
  4284. {
  4285. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4286. "preferred": true
  4287. }
  4288. ]
  4289. },
  4290. "require": {
  4291. "php": ">=5.3.0"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-master": "1.0.x-dev"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "psr-4": {
  4301. "Psr\\Cache\\": "src/"
  4302. }
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "PHP-FIG",
  4311. "homepage": "http://www.php-fig.org/"
  4312. }
  4313. ],
  4314. "description": "Common interface for caching libraries",
  4315. "keywords": [
  4316. "cache",
  4317. "psr",
  4318. "psr-6"
  4319. ],
  4320. "time": "2016-08-06T20:24:11+00:00"
  4321. },
  4322. {
  4323. "name": "psr/container",
  4324. "version": "1.1.1",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/php-fig/container.git",
  4328. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4333. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4334. "shasum": "",
  4335. "mirrors": [
  4336. {
  4337. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4338. "preferred": true
  4339. }
  4340. ]
  4341. },
  4342. "require": {
  4343. "php": ">=7.2.0"
  4344. },
  4345. "type": "library",
  4346. "autoload": {
  4347. "psr-4": {
  4348. "Psr\\Container\\": "src/"
  4349. }
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "authors": [
  4356. {
  4357. "name": "PHP-FIG",
  4358. "homepage": "https://www.php-fig.org/"
  4359. }
  4360. ],
  4361. "description": "Common Container Interface (PHP FIG PSR-11)",
  4362. "homepage": "https://github.com/php-fig/container",
  4363. "keywords": [
  4364. "PSR-11",
  4365. "container",
  4366. "container-interface",
  4367. "container-interop",
  4368. "psr"
  4369. ],
  4370. "time": "2021-03-05T17:36:06+00:00"
  4371. },
  4372. {
  4373. "name": "psr/http-client",
  4374. "version": "1.0.1",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/php-fig/http-client.git",
  4378. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4383. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4384. "shasum": "",
  4385. "mirrors": [
  4386. {
  4387. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4388. "preferred": true
  4389. }
  4390. ]
  4391. },
  4392. "require": {
  4393. "php": "^7.0 || ^8.0",
  4394. "psr/http-message": "^1.0"
  4395. },
  4396. "type": "library",
  4397. "extra": {
  4398. "branch-alias": {
  4399. "dev-master": "1.0.x-dev"
  4400. }
  4401. },
  4402. "autoload": {
  4403. "psr-4": {
  4404. "Psr\\Http\\Client\\": "src/"
  4405. }
  4406. },
  4407. "notification-url": "https://packagist.org/downloads/",
  4408. "license": [
  4409. "MIT"
  4410. ],
  4411. "authors": [
  4412. {
  4413. "name": "PHP-FIG",
  4414. "homepage": "http://www.php-fig.org/"
  4415. }
  4416. ],
  4417. "description": "Common interface for HTTP clients",
  4418. "homepage": "https://github.com/php-fig/http-client",
  4419. "keywords": [
  4420. "http",
  4421. "http-client",
  4422. "psr",
  4423. "psr-18"
  4424. ],
  4425. "time": "2020-06-29T06:28:15+00:00"
  4426. },
  4427. {
  4428. "name": "psr/http-factory",
  4429. "version": "1.0.1",
  4430. "source": {
  4431. "type": "git",
  4432. "url": "https://github.com/php-fig/http-factory.git",
  4433. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4434. },
  4435. "dist": {
  4436. "type": "zip",
  4437. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4438. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4439. "shasum": "",
  4440. "mirrors": [
  4441. {
  4442. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4443. "preferred": true
  4444. }
  4445. ]
  4446. },
  4447. "require": {
  4448. "php": ">=7.0.0",
  4449. "psr/http-message": "^1.0"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "branch-alias": {
  4454. "dev-master": "1.0.x-dev"
  4455. }
  4456. },
  4457. "autoload": {
  4458. "psr-4": {
  4459. "Psr\\Http\\Message\\": "src/"
  4460. }
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "PHP-FIG",
  4469. "homepage": "http://www.php-fig.org/"
  4470. }
  4471. ],
  4472. "description": "Common interfaces for PSR-7 HTTP message factories",
  4473. "keywords": [
  4474. "factory",
  4475. "http",
  4476. "message",
  4477. "psr",
  4478. "psr-17",
  4479. "psr-7",
  4480. "request",
  4481. "response"
  4482. ],
  4483. "time": "2019-04-30T12:38:16+00:00"
  4484. },
  4485. {
  4486. "name": "psr/http-message",
  4487. "version": "1.0.1",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/php-fig/http-message.git",
  4491. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4496. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4497. "shasum": "",
  4498. "mirrors": [
  4499. {
  4500. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4501. "preferred": true
  4502. }
  4503. ]
  4504. },
  4505. "require": {
  4506. "php": ">=5.3.0"
  4507. },
  4508. "type": "library",
  4509. "extra": {
  4510. "branch-alias": {
  4511. "dev-master": "1.0.x-dev"
  4512. }
  4513. },
  4514. "autoload": {
  4515. "psr-4": {
  4516. "Psr\\Http\\Message\\": "src/"
  4517. }
  4518. },
  4519. "notification-url": "https://packagist.org/downloads/",
  4520. "license": [
  4521. "MIT"
  4522. ],
  4523. "authors": [
  4524. {
  4525. "name": "PHP-FIG",
  4526. "homepage": "http://www.php-fig.org/"
  4527. }
  4528. ],
  4529. "description": "Common interface for HTTP messages",
  4530. "homepage": "https://github.com/php-fig/http-message",
  4531. "keywords": [
  4532. "http",
  4533. "http-message",
  4534. "psr",
  4535. "psr-7",
  4536. "request",
  4537. "response"
  4538. ],
  4539. "time": "2016-08-06T14:39:51+00:00"
  4540. },
  4541. {
  4542. "name": "psr/log",
  4543. "version": "1.1.4",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/php-fig/log.git",
  4547. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4552. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4553. "shasum": "",
  4554. "mirrors": [
  4555. {
  4556. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4557. "preferred": true
  4558. }
  4559. ]
  4560. },
  4561. "require": {
  4562. "php": ">=5.3.0"
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "branch-alias": {
  4567. "dev-master": "1.1.x-dev"
  4568. }
  4569. },
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Psr\\Log\\": "Psr/Log/"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "PHP-FIG",
  4582. "homepage": "https://www.php-fig.org/"
  4583. }
  4584. ],
  4585. "description": "Common interface for logging libraries",
  4586. "homepage": "https://github.com/php-fig/log",
  4587. "keywords": [
  4588. "log",
  4589. "psr",
  4590. "psr-3"
  4591. ],
  4592. "time": "2021-05-03T11:20:27+00:00"
  4593. },
  4594. {
  4595. "name": "psr/simple-cache",
  4596. "version": "1.0.1",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/php-fig/simple-cache.git",
  4600. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4605. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4606. "shasum": "",
  4607. "mirrors": [
  4608. {
  4609. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4610. "preferred": true
  4611. }
  4612. ]
  4613. },
  4614. "require": {
  4615. "php": ">=5.3.0"
  4616. },
  4617. "type": "library",
  4618. "extra": {
  4619. "branch-alias": {
  4620. "dev-master": "1.0.x-dev"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "psr-4": {
  4625. "Psr\\SimpleCache\\": "src/"
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "PHP-FIG",
  4635. "homepage": "http://www.php-fig.org/"
  4636. }
  4637. ],
  4638. "description": "Common interfaces for simple caching",
  4639. "keywords": [
  4640. "cache",
  4641. "caching",
  4642. "psr",
  4643. "psr-16",
  4644. "simple-cache"
  4645. ],
  4646. "time": "2017-10-23T01:57:42+00:00"
  4647. },
  4648. {
  4649. "name": "psy/psysh",
  4650. "version": "v0.9.12",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/bobthecow/psysh.git",
  4654. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  4659. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  4660. "shasum": "",
  4661. "mirrors": [
  4662. {
  4663. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4664. "preferred": true
  4665. }
  4666. ]
  4667. },
  4668. "require": {
  4669. "dnoegel/php-xdg-base-dir": "0.1.*",
  4670. "ext-json": "*",
  4671. "ext-tokenizer": "*",
  4672. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4673. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  4674. "php": ">=5.4.0",
  4675. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  4676. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  4677. },
  4678. "require-dev": {
  4679. "bamarni/composer-bin-plugin": "^1.2",
  4680. "hoa/console": "~2.15|~3.16",
  4681. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  4682. },
  4683. "suggest": {
  4684. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4685. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4686. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4687. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4688. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4689. },
  4690. "bin": [
  4691. "bin/psysh"
  4692. ],
  4693. "type": "library",
  4694. "extra": {
  4695. "branch-alias": {
  4696. "dev-develop": "0.9.x-dev"
  4697. }
  4698. },
  4699. "autoload": {
  4700. "files": [
  4701. "src/functions.php"
  4702. ],
  4703. "psr-4": {
  4704. "Psy\\": "src/"
  4705. }
  4706. },
  4707. "notification-url": "https://packagist.org/downloads/",
  4708. "license": [
  4709. "MIT"
  4710. ],
  4711. "authors": [
  4712. {
  4713. "name": "Justin Hileman",
  4714. "email": "justin@justinhileman.info",
  4715. "homepage": "http://justinhileman.com"
  4716. }
  4717. ],
  4718. "description": "An interactive shell for modern PHP.",
  4719. "homepage": "http://psysh.org",
  4720. "keywords": [
  4721. "REPL",
  4722. "console",
  4723. "interactive",
  4724. "shell"
  4725. ],
  4726. "time": "2019-12-06T14:19:43+00:00"
  4727. },
  4728. {
  4729. "name": "qiniu/php-sdk",
  4730. "version": "v7.3.0",
  4731. "source": {
  4732. "type": "git",
  4733. "url": "https://github.com/qiniu/php-sdk.git",
  4734. "reference": "0a461e13b09545b23df361843c6a65fdd3a26426"
  4735. },
  4736. "dist": {
  4737. "type": "zip",
  4738. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/0a461e13b09545b23df361843c6a65fdd3a26426",
  4739. "reference": "0a461e13b09545b23df361843c6a65fdd3a26426",
  4740. "shasum": "",
  4741. "mirrors": [
  4742. {
  4743. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4744. "preferred": true
  4745. }
  4746. ]
  4747. },
  4748. "require": {
  4749. "php": ">=5.3.3"
  4750. },
  4751. "require-dev": {
  4752. "phpunit/phpunit": "~4.0",
  4753. "squizlabs/php_codesniffer": "~2.3"
  4754. },
  4755. "type": "library",
  4756. "autoload": {
  4757. "psr-4": {
  4758. "Qiniu\\": "src/Qiniu"
  4759. },
  4760. "files": [
  4761. "src/Qiniu/functions.php"
  4762. ]
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Qiniu",
  4771. "email": "sdk@qiniu.com",
  4772. "homepage": "http://www.qiniu.com"
  4773. }
  4774. ],
  4775. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4776. "homepage": "http://developer.qiniu.com/",
  4777. "keywords": [
  4778. "cloud",
  4779. "qiniu",
  4780. "sdk",
  4781. "storage"
  4782. ],
  4783. "time": "2020-09-24T07:31:29+00:00"
  4784. },
  4785. {
  4786. "name": "ralouphie/getallheaders",
  4787. "version": "3.0.3",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://github.com/ralouphie/getallheaders.git",
  4791. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4796. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4797. "shasum": "",
  4798. "mirrors": [
  4799. {
  4800. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4801. "preferred": true
  4802. }
  4803. ]
  4804. },
  4805. "require": {
  4806. "php": ">=5.6"
  4807. },
  4808. "require-dev": {
  4809. "php-coveralls/php-coveralls": "^2.1",
  4810. "phpunit/phpunit": "^5 || ^6.5"
  4811. },
  4812. "type": "library",
  4813. "autoload": {
  4814. "files": [
  4815. "src/getallheaders.php"
  4816. ]
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Ralph Khattar",
  4825. "email": "ralph.khattar@gmail.com"
  4826. }
  4827. ],
  4828. "description": "A polyfill for getallheaders.",
  4829. "time": "2019-03-08T08:55:37+00:00"
  4830. },
  4831. {
  4832. "name": "ramsey/uuid",
  4833. "version": "3.9.3",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/ramsey/uuid.git",
  4837. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  4842. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  4843. "shasum": "",
  4844. "mirrors": [
  4845. {
  4846. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4847. "preferred": true
  4848. }
  4849. ]
  4850. },
  4851. "require": {
  4852. "ext-json": "*",
  4853. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  4854. "php": "^5.4 | ^7 | ^8",
  4855. "symfony/polyfill-ctype": "^1.8"
  4856. },
  4857. "replace": {
  4858. "rhumsaa/uuid": "self.version"
  4859. },
  4860. "require-dev": {
  4861. "codeception/aspect-mock": "^1 | ^2",
  4862. "doctrine/annotations": "^1.2",
  4863. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  4864. "jakub-onderka/php-parallel-lint": "^1",
  4865. "mockery/mockery": "^0.9.11 | ^1",
  4866. "moontoast/math": "^1.1",
  4867. "paragonie/random-lib": "^2",
  4868. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  4869. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  4870. "squizlabs/php_codesniffer": "^3.5"
  4871. },
  4872. "suggest": {
  4873. "ext-ctype": "Provides support for PHP Ctype functions",
  4874. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4875. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  4876. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4877. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4878. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4879. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4880. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4881. },
  4882. "type": "library",
  4883. "extra": {
  4884. "branch-alias": {
  4885. "dev-master": "3.x-dev"
  4886. }
  4887. },
  4888. "autoload": {
  4889. "psr-4": {
  4890. "Ramsey\\Uuid\\": "src/"
  4891. },
  4892. "files": [
  4893. "src/functions.php"
  4894. ]
  4895. },
  4896. "notification-url": "https://packagist.org/downloads/",
  4897. "license": [
  4898. "MIT"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Ben Ramsey",
  4903. "email": "ben@benramsey.com",
  4904. "homepage": "https://benramsey.com"
  4905. },
  4906. {
  4907. "name": "Marijn Huizendveld",
  4908. "email": "marijn.huizendveld@gmail.com"
  4909. },
  4910. {
  4911. "name": "Thibaud Fabre",
  4912. "email": "thibaud@aztech.io"
  4913. }
  4914. ],
  4915. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4916. "homepage": "https://github.com/ramsey/uuid",
  4917. "keywords": [
  4918. "guid",
  4919. "identifier",
  4920. "uuid"
  4921. ],
  4922. "time": "2020-02-21T04:36:14+00:00"
  4923. },
  4924. {
  4925. "name": "react/promise",
  4926. "version": "v2.8.0",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/reactphp/promise.git",
  4930. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  4935. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  4936. "shasum": "",
  4937. "mirrors": [
  4938. {
  4939. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4940. "preferred": true
  4941. }
  4942. ]
  4943. },
  4944. "require": {
  4945. "php": ">=5.4.0"
  4946. },
  4947. "require-dev": {
  4948. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  4949. },
  4950. "type": "library",
  4951. "autoload": {
  4952. "psr-4": {
  4953. "React\\Promise\\": "src/"
  4954. },
  4955. "files": [
  4956. "src/functions_include.php"
  4957. ]
  4958. },
  4959. "notification-url": "https://packagist.org/downloads/",
  4960. "license": [
  4961. "MIT"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Jan Sorgalla",
  4966. "email": "jsorgalla@gmail.com"
  4967. }
  4968. ],
  4969. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4970. "keywords": [
  4971. "promise",
  4972. "promises"
  4973. ],
  4974. "time": "2020-05-12T15:16:56+00:00"
  4975. },
  4976. {
  4977. "name": "seld/jsonlint",
  4978. "version": "1.8.3",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/Seldaek/jsonlint.git",
  4982. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  4987. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  4988. "shasum": "",
  4989. "mirrors": [
  4990. {
  4991. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4992. "preferred": true
  4993. }
  4994. ]
  4995. },
  4996. "require": {
  4997. "php": "^5.3 || ^7.0 || ^8.0"
  4998. },
  4999. "require-dev": {
  5000. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5001. },
  5002. "bin": [
  5003. "bin/jsonlint"
  5004. ],
  5005. "type": "library",
  5006. "autoload": {
  5007. "psr-4": {
  5008. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Jordi Boggiano",
  5018. "email": "j.boggiano@seld.be",
  5019. "homepage": "http://seld.be"
  5020. }
  5021. ],
  5022. "description": "JSON Linter",
  5023. "keywords": [
  5024. "json",
  5025. "linter",
  5026. "parser",
  5027. "validator"
  5028. ],
  5029. "time": "2020-11-11T09:19:24+00:00"
  5030. },
  5031. {
  5032. "name": "seld/phar-utils",
  5033. "version": "1.1.1",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://github.com/Seldaek/phar-utils.git",
  5037. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5042. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5043. "shasum": "",
  5044. "mirrors": [
  5045. {
  5046. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5047. "preferred": true
  5048. }
  5049. ]
  5050. },
  5051. "require": {
  5052. "php": ">=5.3"
  5053. },
  5054. "type": "library",
  5055. "extra": {
  5056. "branch-alias": {
  5057. "dev-master": "1.x-dev"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "psr-4": {
  5062. "Seld\\PharUtils\\": "src/"
  5063. }
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "MIT"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "Jordi Boggiano",
  5072. "email": "j.boggiano@seld.be"
  5073. }
  5074. ],
  5075. "description": "PHAR file format utilities, for when PHP phars you up",
  5076. "keywords": [
  5077. "phar"
  5078. ],
  5079. "time": "2020-07-07T18:42:57+00:00"
  5080. },
  5081. {
  5082. "name": "swiftmailer/swiftmailer",
  5083. "version": "v6.2.7",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5087. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  5092. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  5093. "shasum": "",
  5094. "mirrors": [
  5095. {
  5096. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5097. "preferred": true
  5098. }
  5099. ]
  5100. },
  5101. "require": {
  5102. "egulias/email-validator": "^2.0|^3.1",
  5103. "php": ">=7.0.0",
  5104. "symfony/polyfill-iconv": "^1.0",
  5105. "symfony/polyfill-intl-idn": "^1.10",
  5106. "symfony/polyfill-mbstring": "^1.0"
  5107. },
  5108. "require-dev": {
  5109. "mockery/mockery": "^1.0",
  5110. "symfony/phpunit-bridge": "^4.4|^5.0"
  5111. },
  5112. "suggest": {
  5113. "ext-intl": "Needed to support internationalized email addresses"
  5114. },
  5115. "type": "library",
  5116. "extra": {
  5117. "branch-alias": {
  5118. "dev-master": "6.2-dev"
  5119. }
  5120. },
  5121. "autoload": {
  5122. "files": [
  5123. "lib/swift_required.php"
  5124. ]
  5125. },
  5126. "notification-url": "https://packagist.org/downloads/",
  5127. "license": [
  5128. "MIT"
  5129. ],
  5130. "authors": [
  5131. {
  5132. "name": "Chris Corbyn"
  5133. },
  5134. {
  5135. "name": "Fabien Potencier",
  5136. "email": "fabien@symfony.com"
  5137. }
  5138. ],
  5139. "description": "Swiftmailer, free feature-rich PHP mailer",
  5140. "homepage": "https://swiftmailer.symfony.com",
  5141. "keywords": [
  5142. "email",
  5143. "mail",
  5144. "mailer"
  5145. ],
  5146. "time": "2021-03-09T12:30:35+00:00"
  5147. },
  5148. {
  5149. "name": "symfony/cache",
  5150. "version": "v5.2.6",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://github.com/symfony/cache.git",
  5154. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://api.github.com/repos/symfony/cache/zipball/093d69bb10c959553c8beb828b8d4ea250a247dd",
  5159. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd",
  5160. "shasum": "",
  5161. "mirrors": [
  5162. {
  5163. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5164. "preferred": true
  5165. }
  5166. ]
  5167. },
  5168. "require": {
  5169. "php": ">=7.2.5",
  5170. "psr/cache": "^1.0|^2.0",
  5171. "psr/log": "^1.1",
  5172. "symfony/cache-contracts": "^1.1.7|^2",
  5173. "symfony/polyfill-php80": "^1.15",
  5174. "symfony/service-contracts": "^1.1|^2",
  5175. "symfony/var-exporter": "^4.4|^5.0"
  5176. },
  5177. "conflict": {
  5178. "doctrine/dbal": "<2.10",
  5179. "symfony/dependency-injection": "<4.4",
  5180. "symfony/http-kernel": "<4.4",
  5181. "symfony/var-dumper": "<4.4"
  5182. },
  5183. "provide": {
  5184. "psr/cache-implementation": "1.0|2.0",
  5185. "psr/simple-cache-implementation": "1.0",
  5186. "symfony/cache-implementation": "1.0|2.0"
  5187. },
  5188. "require-dev": {
  5189. "cache/integration-tests": "dev-master",
  5190. "doctrine/cache": "^1.6",
  5191. "doctrine/dbal": "^2.10|^3.0",
  5192. "predis/predis": "^1.1",
  5193. "psr/simple-cache": "^1.0",
  5194. "symfony/config": "^4.4|^5.0",
  5195. "symfony/dependency-injection": "^4.4|^5.0",
  5196. "symfony/filesystem": "^4.4|^5.0",
  5197. "symfony/http-kernel": "^4.4|^5.0",
  5198. "symfony/messenger": "^4.4|^5.0",
  5199. "symfony/var-dumper": "^4.4|^5.0"
  5200. },
  5201. "type": "library",
  5202. "autoload": {
  5203. "psr-4": {
  5204. "Symfony\\Component\\Cache\\": ""
  5205. },
  5206. "exclude-from-classmap": [
  5207. "/Tests/"
  5208. ]
  5209. },
  5210. "notification-url": "https://packagist.org/downloads/",
  5211. "license": [
  5212. "MIT"
  5213. ],
  5214. "authors": [
  5215. {
  5216. "name": "Nicolas Grekas",
  5217. "email": "p@tchwork.com"
  5218. },
  5219. {
  5220. "name": "Symfony Community",
  5221. "homepage": "https://symfony.com/contributors"
  5222. }
  5223. ],
  5224. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5225. "homepage": "https://symfony.com",
  5226. "keywords": [
  5227. "caching",
  5228. "psr6"
  5229. ],
  5230. "time": "2021-03-16T09:10:13+00:00"
  5231. },
  5232. {
  5233. "name": "symfony/cache-contracts",
  5234. "version": "v2.2.0",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/symfony/cache-contracts.git",
  5238. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  5243. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  5244. "shasum": "",
  5245. "mirrors": [
  5246. {
  5247. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5248. "preferred": true
  5249. }
  5250. ]
  5251. },
  5252. "require": {
  5253. "php": ">=7.2.5",
  5254. "psr/cache": "^1.0"
  5255. },
  5256. "suggest": {
  5257. "symfony/cache-implementation": ""
  5258. },
  5259. "type": "library",
  5260. "extra": {
  5261. "branch-alias": {
  5262. "dev-master": "2.2-dev"
  5263. },
  5264. "thanks": {
  5265. "name": "symfony/contracts",
  5266. "url": "https://github.com/symfony/contracts"
  5267. }
  5268. },
  5269. "autoload": {
  5270. "psr-4": {
  5271. "Symfony\\Contracts\\Cache\\": ""
  5272. }
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Nicolas Grekas",
  5281. "email": "p@tchwork.com"
  5282. },
  5283. {
  5284. "name": "Symfony Community",
  5285. "homepage": "https://symfony.com/contributors"
  5286. }
  5287. ],
  5288. "description": "Generic abstractions related to caching",
  5289. "homepage": "https://symfony.com",
  5290. "keywords": [
  5291. "abstractions",
  5292. "contracts",
  5293. "decoupling",
  5294. "interfaces",
  5295. "interoperability",
  5296. "standards"
  5297. ],
  5298. "time": "2020-09-07T11:33:47+00:00"
  5299. },
  5300. {
  5301. "name": "symfony/console",
  5302. "version": "v4.4.21",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/symfony/console.git",
  5306. "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/symfony/console/zipball/1ba4560dbbb9fcf5ae28b61f71f49c678086cf23",
  5311. "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23",
  5312. "shasum": "",
  5313. "mirrors": [
  5314. {
  5315. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5316. "preferred": true
  5317. }
  5318. ]
  5319. },
  5320. "require": {
  5321. "php": ">=7.1.3",
  5322. "symfony/polyfill-mbstring": "~1.0",
  5323. "symfony/polyfill-php73": "^1.8",
  5324. "symfony/polyfill-php80": "^1.15",
  5325. "symfony/service-contracts": "^1.1|^2"
  5326. },
  5327. "conflict": {
  5328. "symfony/dependency-injection": "<3.4",
  5329. "symfony/event-dispatcher": "<4.3|>=5",
  5330. "symfony/lock": "<4.4",
  5331. "symfony/process": "<3.3"
  5332. },
  5333. "provide": {
  5334. "psr/log-implementation": "1.0"
  5335. },
  5336. "require-dev": {
  5337. "psr/log": "~1.0",
  5338. "symfony/config": "^3.4|^4.0|^5.0",
  5339. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5340. "symfony/event-dispatcher": "^4.3",
  5341. "symfony/lock": "^4.4|^5.0",
  5342. "symfony/process": "^3.4|^4.0|^5.0",
  5343. "symfony/var-dumper": "^4.3|^5.0"
  5344. },
  5345. "suggest": {
  5346. "psr/log": "For using the console logger",
  5347. "symfony/event-dispatcher": "",
  5348. "symfony/lock": "",
  5349. "symfony/process": ""
  5350. },
  5351. "type": "library",
  5352. "autoload": {
  5353. "psr-4": {
  5354. "Symfony\\Component\\Console\\": ""
  5355. },
  5356. "exclude-from-classmap": [
  5357. "/Tests/"
  5358. ]
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Fabien Potencier",
  5367. "email": "fabien@symfony.com"
  5368. },
  5369. {
  5370. "name": "Symfony Community",
  5371. "homepage": "https://symfony.com/contributors"
  5372. }
  5373. ],
  5374. "description": "Eases the creation of beautiful and testable command line interfaces",
  5375. "homepage": "https://symfony.com",
  5376. "time": "2021-03-26T09:23:24+00:00"
  5377. },
  5378. {
  5379. "name": "symfony/css-selector",
  5380. "version": "v5.2.4",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/symfony/css-selector.git",
  5384. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  5389. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  5390. "shasum": "",
  5391. "mirrors": [
  5392. {
  5393. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5394. "preferred": true
  5395. }
  5396. ]
  5397. },
  5398. "require": {
  5399. "php": ">=7.2.5"
  5400. },
  5401. "type": "library",
  5402. "autoload": {
  5403. "psr-4": {
  5404. "Symfony\\Component\\CssSelector\\": ""
  5405. },
  5406. "exclude-from-classmap": [
  5407. "/Tests/"
  5408. ]
  5409. },
  5410. "notification-url": "https://packagist.org/downloads/",
  5411. "license": [
  5412. "MIT"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "Fabien Potencier",
  5417. "email": "fabien@symfony.com"
  5418. },
  5419. {
  5420. "name": "Jean-François Simon",
  5421. "email": "jeanfrancois.simon@sensiolabs.com"
  5422. },
  5423. {
  5424. "name": "Symfony Community",
  5425. "homepage": "https://symfony.com/contributors"
  5426. }
  5427. ],
  5428. "description": "Converts CSS selectors to XPath expressions",
  5429. "homepage": "https://symfony.com",
  5430. "time": "2021-01-27T10:01:46+00:00"
  5431. },
  5432. {
  5433. "name": "symfony/debug",
  5434. "version": "v4.4.22",
  5435. "source": {
  5436. "type": "git",
  5437. "url": "https://github.com/symfony/debug.git",
  5438. "reference": "45b2136377cca5f10af858968d6079a482bca473"
  5439. },
  5440. "dist": {
  5441. "type": "zip",
  5442. "url": "https://api.github.com/repos/symfony/debug/zipball/45b2136377cca5f10af858968d6079a482bca473",
  5443. "reference": "45b2136377cca5f10af858968d6079a482bca473",
  5444. "shasum": "",
  5445. "mirrors": [
  5446. {
  5447. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5448. "preferred": true
  5449. }
  5450. ]
  5451. },
  5452. "require": {
  5453. "php": ">=7.1.3",
  5454. "psr/log": "~1.0",
  5455. "symfony/polyfill-php80": "^1.15"
  5456. },
  5457. "conflict": {
  5458. "symfony/http-kernel": "<3.4"
  5459. },
  5460. "require-dev": {
  5461. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5462. },
  5463. "type": "library",
  5464. "autoload": {
  5465. "psr-4": {
  5466. "Symfony\\Component\\Debug\\": ""
  5467. },
  5468. "exclude-from-classmap": [
  5469. "/Tests/"
  5470. ]
  5471. },
  5472. "notification-url": "https://packagist.org/downloads/",
  5473. "license": [
  5474. "MIT"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "Fabien Potencier",
  5479. "email": "fabien@symfony.com"
  5480. },
  5481. {
  5482. "name": "Symfony Community",
  5483. "homepage": "https://symfony.com/contributors"
  5484. }
  5485. ],
  5486. "description": "Provides tools to ease debugging PHP code",
  5487. "homepage": "https://symfony.com",
  5488. "time": "2021-04-02T07:50:12+00:00"
  5489. },
  5490. {
  5491. "name": "symfony/deprecation-contracts",
  5492. "version": "v2.4.0",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/symfony/deprecation-contracts.git",
  5496. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5501. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5502. "shasum": "",
  5503. "mirrors": [
  5504. {
  5505. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5506. "preferred": true
  5507. }
  5508. ]
  5509. },
  5510. "require": {
  5511. "php": ">=7.1"
  5512. },
  5513. "type": "library",
  5514. "extra": {
  5515. "branch-alias": {
  5516. "dev-main": "2.4-dev"
  5517. },
  5518. "thanks": {
  5519. "name": "symfony/contracts",
  5520. "url": "https://github.com/symfony/contracts"
  5521. }
  5522. },
  5523. "autoload": {
  5524. "files": [
  5525. "function.php"
  5526. ]
  5527. },
  5528. "notification-url": "https://packagist.org/downloads/",
  5529. "license": [
  5530. "MIT"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Nicolas Grekas",
  5535. "email": "p@tchwork.com"
  5536. },
  5537. {
  5538. "name": "Symfony Community",
  5539. "homepage": "https://symfony.com/contributors"
  5540. }
  5541. ],
  5542. "description": "A generic function and convention to trigger deprecation notices",
  5543. "homepage": "https://symfony.com",
  5544. "time": "2021-03-23T23:28:01+00:00"
  5545. },
  5546. {
  5547. "name": "symfony/error-handler",
  5548. "version": "v4.4.23",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/symfony/error-handler.git",
  5552. "reference": "21d75bfbdfdd3581a7f97080deb98926987f14a7"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/symfony/error-handler/zipball/21d75bfbdfdd3581a7f97080deb98926987f14a7",
  5557. "reference": "21d75bfbdfdd3581a7f97080deb98926987f14a7",
  5558. "shasum": "",
  5559. "mirrors": [
  5560. {
  5561. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5562. "preferred": true
  5563. }
  5564. ]
  5565. },
  5566. "require": {
  5567. "php": ">=7.1.3",
  5568. "psr/log": "~1.0",
  5569. "symfony/debug": "^4.4.5",
  5570. "symfony/polyfill-php80": "^1.15",
  5571. "symfony/var-dumper": "^4.4|^5.0"
  5572. },
  5573. "require-dev": {
  5574. "symfony/http-kernel": "^4.4|^5.0",
  5575. "symfony/serializer": "^4.4|^5.0"
  5576. },
  5577. "type": "library",
  5578. "autoload": {
  5579. "psr-4": {
  5580. "Symfony\\Component\\ErrorHandler\\": ""
  5581. },
  5582. "exclude-from-classmap": [
  5583. "/Tests/"
  5584. ]
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "MIT"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Fabien Potencier",
  5593. "email": "fabien@symfony.com"
  5594. },
  5595. {
  5596. "name": "Symfony Community",
  5597. "homepage": "https://symfony.com/contributors"
  5598. }
  5599. ],
  5600. "description": "Provides tools to manage errors and ease debugging PHP code",
  5601. "homepage": "https://symfony.com",
  5602. "time": "2021-05-02T20:47:26+00:00"
  5603. },
  5604. {
  5605. "name": "symfony/event-dispatcher",
  5606. "version": "v4.4.20",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/symfony/event-dispatcher.git",
  5610. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  5615. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  5616. "shasum": "",
  5617. "mirrors": [
  5618. {
  5619. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5620. "preferred": true
  5621. }
  5622. ]
  5623. },
  5624. "require": {
  5625. "php": ">=7.1.3",
  5626. "symfony/event-dispatcher-contracts": "^1.1"
  5627. },
  5628. "conflict": {
  5629. "symfony/dependency-injection": "<3.4"
  5630. },
  5631. "provide": {
  5632. "psr/event-dispatcher-implementation": "1.0",
  5633. "symfony/event-dispatcher-implementation": "1.1"
  5634. },
  5635. "require-dev": {
  5636. "psr/log": "~1.0",
  5637. "symfony/config": "^3.4|^4.0|^5.0",
  5638. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5639. "symfony/error-handler": "~3.4|~4.4",
  5640. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5641. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5642. "symfony/service-contracts": "^1.1|^2",
  5643. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5644. },
  5645. "suggest": {
  5646. "symfony/dependency-injection": "",
  5647. "symfony/http-kernel": ""
  5648. },
  5649. "type": "library",
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Symfony\\Component\\EventDispatcher\\": ""
  5653. },
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Fabien Potencier",
  5665. "email": "fabien@symfony.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5673. "homepage": "https://symfony.com",
  5674. "time": "2021-01-27T09:09:26+00:00"
  5675. },
  5676. {
  5677. "name": "symfony/event-dispatcher-contracts",
  5678. "version": "v1.1.9",
  5679. "source": {
  5680. "type": "git",
  5681. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5682. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  5683. },
  5684. "dist": {
  5685. "type": "zip",
  5686. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5687. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5688. "shasum": "",
  5689. "mirrors": [
  5690. {
  5691. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5692. "preferred": true
  5693. }
  5694. ]
  5695. },
  5696. "require": {
  5697. "php": ">=7.1.3"
  5698. },
  5699. "suggest": {
  5700. "psr/event-dispatcher": "",
  5701. "symfony/event-dispatcher-implementation": ""
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "1.1-dev"
  5707. },
  5708. "thanks": {
  5709. "name": "symfony/contracts",
  5710. "url": "https://github.com/symfony/contracts"
  5711. }
  5712. },
  5713. "autoload": {
  5714. "psr-4": {
  5715. "Symfony\\Contracts\\EventDispatcher\\": ""
  5716. }
  5717. },
  5718. "notification-url": "https://packagist.org/downloads/",
  5719. "license": [
  5720. "MIT"
  5721. ],
  5722. "authors": [
  5723. {
  5724. "name": "Nicolas Grekas",
  5725. "email": "p@tchwork.com"
  5726. },
  5727. {
  5728. "name": "Symfony Community",
  5729. "homepage": "https://symfony.com/contributors"
  5730. }
  5731. ],
  5732. "description": "Generic abstractions related to dispatching event",
  5733. "homepage": "https://symfony.com",
  5734. "keywords": [
  5735. "abstractions",
  5736. "contracts",
  5737. "decoupling",
  5738. "interfaces",
  5739. "interoperability",
  5740. "standards"
  5741. ],
  5742. "time": "2020-07-06T13:19:58+00:00"
  5743. },
  5744. {
  5745. "name": "symfony/filesystem",
  5746. "version": "v5.2.6",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/symfony/filesystem.git",
  5750. "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
  5755. "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
  5756. "shasum": "",
  5757. "mirrors": [
  5758. {
  5759. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5760. "preferred": true
  5761. }
  5762. ]
  5763. },
  5764. "require": {
  5765. "php": ">=7.2.5",
  5766. "symfony/polyfill-ctype": "~1.8"
  5767. },
  5768. "type": "library",
  5769. "autoload": {
  5770. "psr-4": {
  5771. "Symfony\\Component\\Filesystem\\": ""
  5772. },
  5773. "exclude-from-classmap": [
  5774. "/Tests/"
  5775. ]
  5776. },
  5777. "notification-url": "https://packagist.org/downloads/",
  5778. "license": [
  5779. "MIT"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "Fabien Potencier",
  5784. "email": "fabien@symfony.com"
  5785. },
  5786. {
  5787. "name": "Symfony Community",
  5788. "homepage": "https://symfony.com/contributors"
  5789. }
  5790. ],
  5791. "description": "Provides basic utilities for the filesystem",
  5792. "homepage": "https://symfony.com",
  5793. "time": "2021-03-28T14:30:26+00:00"
  5794. },
  5795. {
  5796. "name": "symfony/finder",
  5797. "version": "v4.4.20",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/symfony/finder.git",
  5801. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  5806. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  5807. "shasum": "",
  5808. "mirrors": [
  5809. {
  5810. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5811. "preferred": true
  5812. }
  5813. ]
  5814. },
  5815. "require": {
  5816. "php": ">=7.1.3"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Symfony\\Component\\Finder\\": ""
  5822. },
  5823. "exclude-from-classmap": [
  5824. "/Tests/"
  5825. ]
  5826. },
  5827. "notification-url": "https://packagist.org/downloads/",
  5828. "license": [
  5829. "MIT"
  5830. ],
  5831. "authors": [
  5832. {
  5833. "name": "Fabien Potencier",
  5834. "email": "fabien@symfony.com"
  5835. },
  5836. {
  5837. "name": "Symfony Community",
  5838. "homepage": "https://symfony.com/contributors"
  5839. }
  5840. ],
  5841. "description": "Finds files and directories via an intuitive fluent interface",
  5842. "homepage": "https://symfony.com",
  5843. "time": "2021-02-12T10:48:09+00:00"
  5844. },
  5845. {
  5846. "name": "symfony/http-client-contracts",
  5847. "version": "v2.4.0",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://github.com/symfony/http-client-contracts.git",
  5851. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5856. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5857. "shasum": "",
  5858. "mirrors": [
  5859. {
  5860. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5861. "preferred": true
  5862. }
  5863. ]
  5864. },
  5865. "require": {
  5866. "php": ">=7.2.5"
  5867. },
  5868. "suggest": {
  5869. "symfony/http-client-implementation": ""
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "branch-alias": {
  5874. "dev-main": "2.4-dev"
  5875. },
  5876. "thanks": {
  5877. "name": "symfony/contracts",
  5878. "url": "https://github.com/symfony/contracts"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Symfony\\Contracts\\HttpClient\\": ""
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Nicolas Grekas",
  5893. "email": "p@tchwork.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Generic abstractions related to HTTP clients",
  5901. "homepage": "https://symfony.com",
  5902. "keywords": [
  5903. "abstractions",
  5904. "contracts",
  5905. "decoupling",
  5906. "interfaces",
  5907. "interoperability",
  5908. "standards"
  5909. ],
  5910. "time": "2021-04-11T23:07:08+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/http-foundation",
  5914. "version": "v4.4.23",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/http-foundation.git",
  5918. "reference": "2ffb43bd6c589a274ee1e93a5fd6b7ef1577b9c5"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2ffb43bd6c589a274ee1e93a5fd6b7ef1577b9c5",
  5923. "reference": "2ffb43bd6c589a274ee1e93a5fd6b7ef1577b9c5",
  5924. "shasum": "",
  5925. "mirrors": [
  5926. {
  5927. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5928. "preferred": true
  5929. }
  5930. ]
  5931. },
  5932. "require": {
  5933. "php": ">=7.1.3",
  5934. "symfony/mime": "^4.3|^5.0",
  5935. "symfony/polyfill-mbstring": "~1.1",
  5936. "symfony/polyfill-php80": "^1.15"
  5937. },
  5938. "require-dev": {
  5939. "predis/predis": "~1.0",
  5940. "symfony/expression-language": "^3.4|^4.0|^5.0"
  5941. },
  5942. "type": "library",
  5943. "autoload": {
  5944. "psr-4": {
  5945. "Symfony\\Component\\HttpFoundation\\": ""
  5946. },
  5947. "exclude-from-classmap": [
  5948. "/Tests/"
  5949. ]
  5950. },
  5951. "notification-url": "https://packagist.org/downloads/",
  5952. "license": [
  5953. "MIT"
  5954. ],
  5955. "authors": [
  5956. {
  5957. "name": "Fabien Potencier",
  5958. "email": "fabien@symfony.com"
  5959. },
  5960. {
  5961. "name": "Symfony Community",
  5962. "homepage": "https://symfony.com/contributors"
  5963. }
  5964. ],
  5965. "description": "Defines an object-oriented layer for the HTTP specification",
  5966. "homepage": "https://symfony.com",
  5967. "time": "2021-05-05T07:40:41+00:00"
  5968. },
  5969. {
  5970. "name": "symfony/http-kernel",
  5971. "version": "v4.4.23",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://github.com/symfony/http-kernel.git",
  5975. "reference": "95bb42312503a212f4467529bac8735f01226ff9"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/95bb42312503a212f4467529bac8735f01226ff9",
  5980. "reference": "95bb42312503a212f4467529bac8735f01226ff9",
  5981. "shasum": "",
  5982. "mirrors": [
  5983. {
  5984. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5985. "preferred": true
  5986. }
  5987. ]
  5988. },
  5989. "require": {
  5990. "php": ">=7.1.3",
  5991. "psr/log": "~1.0",
  5992. "symfony/error-handler": "^4.4",
  5993. "symfony/event-dispatcher": "^4.4",
  5994. "symfony/http-client-contracts": "^1.1|^2",
  5995. "symfony/http-foundation": "^4.4|^5.0",
  5996. "symfony/polyfill-ctype": "^1.8",
  5997. "symfony/polyfill-php73": "^1.9",
  5998. "symfony/polyfill-php80": "^1.15"
  5999. },
  6000. "conflict": {
  6001. "symfony/browser-kit": "<4.3",
  6002. "symfony/config": "<3.4",
  6003. "symfony/console": ">=5",
  6004. "symfony/dependency-injection": "<4.3",
  6005. "symfony/translation": "<4.2",
  6006. "twig/twig": "<1.43|<2.13,>=2"
  6007. },
  6008. "provide": {
  6009. "psr/log-implementation": "1.0"
  6010. },
  6011. "require-dev": {
  6012. "psr/cache": "^1.0|^2.0|^3.0",
  6013. "symfony/browser-kit": "^4.3|^5.0",
  6014. "symfony/config": "^3.4|^4.0|^5.0",
  6015. "symfony/console": "^3.4|^4.0",
  6016. "symfony/css-selector": "^3.4|^4.0|^5.0",
  6017. "symfony/dependency-injection": "^4.3|^5.0",
  6018. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  6019. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6020. "symfony/finder": "^3.4|^4.0|^5.0",
  6021. "symfony/process": "^3.4|^4.0|^5.0",
  6022. "symfony/routing": "^3.4|^4.0|^5.0",
  6023. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  6024. "symfony/templating": "^3.4|^4.0|^5.0",
  6025. "symfony/translation": "^4.2|^5.0",
  6026. "symfony/translation-contracts": "^1.1|^2",
  6027. "twig/twig": "^1.43|^2.13|^3.0.4"
  6028. },
  6029. "suggest": {
  6030. "symfony/browser-kit": "",
  6031. "symfony/config": "",
  6032. "symfony/console": "",
  6033. "symfony/dependency-injection": ""
  6034. },
  6035. "type": "library",
  6036. "autoload": {
  6037. "psr-4": {
  6038. "Symfony\\Component\\HttpKernel\\": ""
  6039. },
  6040. "exclude-from-classmap": [
  6041. "/Tests/"
  6042. ]
  6043. },
  6044. "notification-url": "https://packagist.org/downloads/",
  6045. "license": [
  6046. "MIT"
  6047. ],
  6048. "authors": [
  6049. {
  6050. "name": "Fabien Potencier",
  6051. "email": "fabien@symfony.com"
  6052. },
  6053. {
  6054. "name": "Symfony Community",
  6055. "homepage": "https://symfony.com/contributors"
  6056. }
  6057. ],
  6058. "description": "Provides a structured process for converting a Request into a Response",
  6059. "homepage": "https://symfony.com",
  6060. "time": "2021-05-12T13:13:32+00:00"
  6061. },
  6062. {
  6063. "name": "symfony/mime",
  6064. "version": "v5.2.7",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/symfony/mime.git",
  6068. "reference": "7af452bf51c46f18da00feb32e1ad36db9426515"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/symfony/mime/zipball/7af452bf51c46f18da00feb32e1ad36db9426515",
  6073. "reference": "7af452bf51c46f18da00feb32e1ad36db9426515",
  6074. "shasum": "",
  6075. "mirrors": [
  6076. {
  6077. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6078. "preferred": true
  6079. }
  6080. ]
  6081. },
  6082. "require": {
  6083. "php": ">=7.2.5",
  6084. "symfony/deprecation-contracts": "^2.1",
  6085. "symfony/polyfill-intl-idn": "^1.10",
  6086. "symfony/polyfill-mbstring": "^1.0",
  6087. "symfony/polyfill-php80": "^1.15"
  6088. },
  6089. "conflict": {
  6090. "egulias/email-validator": "~3.0.0",
  6091. "phpdocumentor/reflection-docblock": "<3.2.2",
  6092. "phpdocumentor/type-resolver": "<1.4.0",
  6093. "symfony/mailer": "<4.4"
  6094. },
  6095. "require-dev": {
  6096. "egulias/email-validator": "^2.1.10|^3.1",
  6097. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6098. "symfony/dependency-injection": "^4.4|^5.0",
  6099. "symfony/property-access": "^4.4|^5.1",
  6100. "symfony/property-info": "^4.4|^5.1",
  6101. "symfony/serializer": "^5.2"
  6102. },
  6103. "type": "library",
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Symfony\\Component\\Mime\\": ""
  6107. },
  6108. "exclude-from-classmap": [
  6109. "/Tests/"
  6110. ]
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Fabien Potencier",
  6119. "email": "fabien@symfony.com"
  6120. },
  6121. {
  6122. "name": "Symfony Community",
  6123. "homepage": "https://symfony.com/contributors"
  6124. }
  6125. ],
  6126. "description": "Allows manipulating MIME messages",
  6127. "homepage": "https://symfony.com",
  6128. "keywords": [
  6129. "mime",
  6130. "mime-type"
  6131. ],
  6132. "time": "2021-04-29T20:47:09+00:00"
  6133. },
  6134. {
  6135. "name": "symfony/polyfill-ctype",
  6136. "version": "v1.22.1",
  6137. "source": {
  6138. "type": "git",
  6139. "url": "https://github.com/symfony/polyfill-ctype.git",
  6140. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  6141. },
  6142. "dist": {
  6143. "type": "zip",
  6144. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  6145. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  6146. "shasum": "",
  6147. "mirrors": [
  6148. {
  6149. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6150. "preferred": true
  6151. }
  6152. ]
  6153. },
  6154. "require": {
  6155. "php": ">=7.1"
  6156. },
  6157. "suggest": {
  6158. "ext-ctype": "For best performance"
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "branch-alias": {
  6163. "dev-main": "1.22-dev"
  6164. },
  6165. "thanks": {
  6166. "name": "symfony/polyfill",
  6167. "url": "https://github.com/symfony/polyfill"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "psr-4": {
  6172. "Symfony\\Polyfill\\Ctype\\": ""
  6173. },
  6174. "files": [
  6175. "bootstrap.php"
  6176. ]
  6177. },
  6178. "notification-url": "https://packagist.org/downloads/",
  6179. "license": [
  6180. "MIT"
  6181. ],
  6182. "authors": [
  6183. {
  6184. "name": "Gert de Pagter",
  6185. "email": "BackEndTea@gmail.com"
  6186. },
  6187. {
  6188. "name": "Symfony Community",
  6189. "homepage": "https://symfony.com/contributors"
  6190. }
  6191. ],
  6192. "description": "Symfony polyfill for ctype functions",
  6193. "homepage": "https://symfony.com",
  6194. "keywords": [
  6195. "compatibility",
  6196. "ctype",
  6197. "polyfill",
  6198. "portable"
  6199. ],
  6200. "time": "2021-01-07T16:49:33+00:00"
  6201. },
  6202. {
  6203. "name": "symfony/polyfill-iconv",
  6204. "version": "v1.22.1",
  6205. "source": {
  6206. "type": "git",
  6207. "url": "https://github.com/symfony/polyfill-iconv.git",
  6208. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  6209. },
  6210. "dist": {
  6211. "type": "zip",
  6212. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  6213. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  6214. "shasum": "",
  6215. "mirrors": [
  6216. {
  6217. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6218. "preferred": true
  6219. }
  6220. ]
  6221. },
  6222. "require": {
  6223. "php": ">=7.1"
  6224. },
  6225. "suggest": {
  6226. "ext-iconv": "For best performance"
  6227. },
  6228. "type": "library",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-main": "1.22-dev"
  6232. },
  6233. "thanks": {
  6234. "name": "symfony/polyfill",
  6235. "url": "https://github.com/symfony/polyfill"
  6236. }
  6237. },
  6238. "autoload": {
  6239. "psr-4": {
  6240. "Symfony\\Polyfill\\Iconv\\": ""
  6241. },
  6242. "files": [
  6243. "bootstrap.php"
  6244. ]
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Nicolas Grekas",
  6253. "email": "p@tchwork.com"
  6254. },
  6255. {
  6256. "name": "Symfony Community",
  6257. "homepage": "https://symfony.com/contributors"
  6258. }
  6259. ],
  6260. "description": "Symfony polyfill for the Iconv extension",
  6261. "homepage": "https://symfony.com",
  6262. "keywords": [
  6263. "compatibility",
  6264. "iconv",
  6265. "polyfill",
  6266. "portable",
  6267. "shim"
  6268. ],
  6269. "time": "2021-01-22T09:19:47+00:00"
  6270. },
  6271. {
  6272. "name": "symfony/polyfill-intl-idn",
  6273. "version": "v1.22.1",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6277. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6282. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6283. "shasum": "",
  6284. "mirrors": [
  6285. {
  6286. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6287. "preferred": true
  6288. }
  6289. ]
  6290. },
  6291. "require": {
  6292. "php": ">=7.1",
  6293. "symfony/polyfill-intl-normalizer": "^1.10",
  6294. "symfony/polyfill-php72": "^1.10"
  6295. },
  6296. "suggest": {
  6297. "ext-intl": "For best performance"
  6298. },
  6299. "type": "library",
  6300. "extra": {
  6301. "branch-alias": {
  6302. "dev-main": "1.22-dev"
  6303. },
  6304. "thanks": {
  6305. "name": "symfony/polyfill",
  6306. "url": "https://github.com/symfony/polyfill"
  6307. }
  6308. },
  6309. "autoload": {
  6310. "psr-4": {
  6311. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6312. },
  6313. "files": [
  6314. "bootstrap.php"
  6315. ]
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Laurent Bassin",
  6324. "email": "laurent@bassin.info"
  6325. },
  6326. {
  6327. "name": "Trevor Rowbotham",
  6328. "email": "trevor.rowbotham@pm.me"
  6329. },
  6330. {
  6331. "name": "Symfony Community",
  6332. "homepage": "https://symfony.com/contributors"
  6333. }
  6334. ],
  6335. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6336. "homepage": "https://symfony.com",
  6337. "keywords": [
  6338. "compatibility",
  6339. "idn",
  6340. "intl",
  6341. "polyfill",
  6342. "portable",
  6343. "shim"
  6344. ],
  6345. "time": "2021-01-22T09:19:47+00:00"
  6346. },
  6347. {
  6348. "name": "symfony/polyfill-intl-normalizer",
  6349. "version": "v1.22.1",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6353. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6358. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6359. "shasum": "",
  6360. "mirrors": [
  6361. {
  6362. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6363. "preferred": true
  6364. }
  6365. ]
  6366. },
  6367. "require": {
  6368. "php": ">=7.1"
  6369. },
  6370. "suggest": {
  6371. "ext-intl": "For best performance"
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "branch-alias": {
  6376. "dev-main": "1.22-dev"
  6377. },
  6378. "thanks": {
  6379. "name": "symfony/polyfill",
  6380. "url": "https://github.com/symfony/polyfill"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6386. },
  6387. "files": [
  6388. "bootstrap.php"
  6389. ],
  6390. "classmap": [
  6391. "Resources/stubs"
  6392. ]
  6393. },
  6394. "notification-url": "https://packagist.org/downloads/",
  6395. "license": [
  6396. "MIT"
  6397. ],
  6398. "authors": [
  6399. {
  6400. "name": "Nicolas Grekas",
  6401. "email": "p@tchwork.com"
  6402. },
  6403. {
  6404. "name": "Symfony Community",
  6405. "homepage": "https://symfony.com/contributors"
  6406. }
  6407. ],
  6408. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6409. "homepage": "https://symfony.com",
  6410. "keywords": [
  6411. "compatibility",
  6412. "intl",
  6413. "normalizer",
  6414. "polyfill",
  6415. "portable",
  6416. "shim"
  6417. ],
  6418. "time": "2021-01-22T09:19:47+00:00"
  6419. },
  6420. {
  6421. "name": "symfony/polyfill-mbstring",
  6422. "version": "v1.22.1",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6426. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6431. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6432. "shasum": "",
  6433. "mirrors": [
  6434. {
  6435. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6436. "preferred": true
  6437. }
  6438. ]
  6439. },
  6440. "require": {
  6441. "php": ">=7.1"
  6442. },
  6443. "suggest": {
  6444. "ext-mbstring": "For best performance"
  6445. },
  6446. "type": "library",
  6447. "extra": {
  6448. "branch-alias": {
  6449. "dev-main": "1.22-dev"
  6450. },
  6451. "thanks": {
  6452. "name": "symfony/polyfill",
  6453. "url": "https://github.com/symfony/polyfill"
  6454. }
  6455. },
  6456. "autoload": {
  6457. "psr-4": {
  6458. "Symfony\\Polyfill\\Mbstring\\": ""
  6459. },
  6460. "files": [
  6461. "bootstrap.php"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Nicolas Grekas",
  6471. "email": "p@tchwork.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Symfony polyfill for the Mbstring extension",
  6479. "homepage": "https://symfony.com",
  6480. "keywords": [
  6481. "compatibility",
  6482. "mbstring",
  6483. "polyfill",
  6484. "portable",
  6485. "shim"
  6486. ],
  6487. "time": "2021-01-22T09:19:47+00:00"
  6488. },
  6489. {
  6490. "name": "symfony/polyfill-php56",
  6491. "version": "v1.20.0",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/symfony/polyfill-php56.git",
  6495. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6500. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6501. "shasum": "",
  6502. "mirrors": [
  6503. {
  6504. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6505. "preferred": true
  6506. }
  6507. ]
  6508. },
  6509. "require": {
  6510. "php": ">=7.1"
  6511. },
  6512. "type": "metapackage",
  6513. "extra": {
  6514. "branch-alias": {
  6515. "dev-main": "1.20-dev"
  6516. },
  6517. "thanks": {
  6518. "name": "symfony/polyfill",
  6519. "url": "https://github.com/symfony/polyfill"
  6520. }
  6521. },
  6522. "notification-url": "https://packagist.org/downloads/",
  6523. "license": [
  6524. "MIT"
  6525. ],
  6526. "authors": [
  6527. {
  6528. "name": "Nicolas Grekas",
  6529. "email": "p@tchwork.com"
  6530. },
  6531. {
  6532. "name": "Symfony Community",
  6533. "homepage": "https://symfony.com/contributors"
  6534. }
  6535. ],
  6536. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6537. "homepage": "https://symfony.com",
  6538. "keywords": [
  6539. "compatibility",
  6540. "polyfill",
  6541. "portable",
  6542. "shim"
  6543. ],
  6544. "time": "2020-10-23T14:02:19+00:00"
  6545. },
  6546. {
  6547. "name": "symfony/polyfill-php72",
  6548. "version": "v1.22.1",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/symfony/polyfill-php72.git",
  6552. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6557. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6558. "shasum": "",
  6559. "mirrors": [
  6560. {
  6561. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6562. "preferred": true
  6563. }
  6564. ]
  6565. },
  6566. "require": {
  6567. "php": ">=7.1"
  6568. },
  6569. "type": "library",
  6570. "extra": {
  6571. "branch-alias": {
  6572. "dev-main": "1.22-dev"
  6573. },
  6574. "thanks": {
  6575. "name": "symfony/polyfill",
  6576. "url": "https://github.com/symfony/polyfill"
  6577. }
  6578. },
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Symfony\\Polyfill\\Php72\\": ""
  6582. },
  6583. "files": [
  6584. "bootstrap.php"
  6585. ]
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Nicolas Grekas",
  6594. "email": "p@tchwork.com"
  6595. },
  6596. {
  6597. "name": "Symfony Community",
  6598. "homepage": "https://symfony.com/contributors"
  6599. }
  6600. ],
  6601. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6602. "homepage": "https://symfony.com",
  6603. "keywords": [
  6604. "compatibility",
  6605. "polyfill",
  6606. "portable",
  6607. "shim"
  6608. ],
  6609. "time": "2021-01-07T16:49:33+00:00"
  6610. },
  6611. {
  6612. "name": "symfony/polyfill-php73",
  6613. "version": "v1.22.1",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/symfony/polyfill-php73.git",
  6617. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6622. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6623. "shasum": "",
  6624. "mirrors": [
  6625. {
  6626. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6627. "preferred": true
  6628. }
  6629. ]
  6630. },
  6631. "require": {
  6632. "php": ">=7.1"
  6633. },
  6634. "type": "library",
  6635. "extra": {
  6636. "branch-alias": {
  6637. "dev-main": "1.22-dev"
  6638. },
  6639. "thanks": {
  6640. "name": "symfony/polyfill",
  6641. "url": "https://github.com/symfony/polyfill"
  6642. }
  6643. },
  6644. "autoload": {
  6645. "psr-4": {
  6646. "Symfony\\Polyfill\\Php73\\": ""
  6647. },
  6648. "files": [
  6649. "bootstrap.php"
  6650. ],
  6651. "classmap": [
  6652. "Resources/stubs"
  6653. ]
  6654. },
  6655. "notification-url": "https://packagist.org/downloads/",
  6656. "license": [
  6657. "MIT"
  6658. ],
  6659. "authors": [
  6660. {
  6661. "name": "Nicolas Grekas",
  6662. "email": "p@tchwork.com"
  6663. },
  6664. {
  6665. "name": "Symfony Community",
  6666. "homepage": "https://symfony.com/contributors"
  6667. }
  6668. ],
  6669. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6670. "homepage": "https://symfony.com",
  6671. "keywords": [
  6672. "compatibility",
  6673. "polyfill",
  6674. "portable",
  6675. "shim"
  6676. ],
  6677. "time": "2021-01-07T16:49:33+00:00"
  6678. },
  6679. {
  6680. "name": "symfony/polyfill-php80",
  6681. "version": "v1.22.1",
  6682. "source": {
  6683. "type": "git",
  6684. "url": "https://github.com/symfony/polyfill-php80.git",
  6685. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6686. },
  6687. "dist": {
  6688. "type": "zip",
  6689. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6690. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6691. "shasum": "",
  6692. "mirrors": [
  6693. {
  6694. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6695. "preferred": true
  6696. }
  6697. ]
  6698. },
  6699. "require": {
  6700. "php": ">=7.1"
  6701. },
  6702. "type": "library",
  6703. "extra": {
  6704. "branch-alias": {
  6705. "dev-main": "1.22-dev"
  6706. },
  6707. "thanks": {
  6708. "name": "symfony/polyfill",
  6709. "url": "https://github.com/symfony/polyfill"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "psr-4": {
  6714. "Symfony\\Polyfill\\Php80\\": ""
  6715. },
  6716. "files": [
  6717. "bootstrap.php"
  6718. ],
  6719. "classmap": [
  6720. "Resources/stubs"
  6721. ]
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Ion Bazan",
  6730. "email": "ion.bazan@gmail.com"
  6731. },
  6732. {
  6733. "name": "Nicolas Grekas",
  6734. "email": "p@tchwork.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6742. "homepage": "https://symfony.com",
  6743. "keywords": [
  6744. "compatibility",
  6745. "polyfill",
  6746. "portable",
  6747. "shim"
  6748. ],
  6749. "time": "2021-01-07T16:49:33+00:00"
  6750. },
  6751. {
  6752. "name": "symfony/process",
  6753. "version": "v4.4.20",
  6754. "source": {
  6755. "type": "git",
  6756. "url": "https://github.com/symfony/process.git",
  6757. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  6758. },
  6759. "dist": {
  6760. "type": "zip",
  6761. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  6762. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  6763. "shasum": "",
  6764. "mirrors": [
  6765. {
  6766. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6767. "preferred": true
  6768. }
  6769. ]
  6770. },
  6771. "require": {
  6772. "php": ">=7.1.3"
  6773. },
  6774. "type": "library",
  6775. "autoload": {
  6776. "psr-4": {
  6777. "Symfony\\Component\\Process\\": ""
  6778. },
  6779. "exclude-from-classmap": [
  6780. "/Tests/"
  6781. ]
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "MIT"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Fabien Potencier",
  6790. "email": "fabien@symfony.com"
  6791. },
  6792. {
  6793. "name": "Symfony Community",
  6794. "homepage": "https://symfony.com/contributors"
  6795. }
  6796. ],
  6797. "description": "Executes commands in sub-processes",
  6798. "homepage": "https://symfony.com",
  6799. "time": "2021-01-27T09:09:26+00:00"
  6800. },
  6801. {
  6802. "name": "symfony/psr-http-message-bridge",
  6803. "version": "v2.1.0",
  6804. "source": {
  6805. "type": "git",
  6806. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6807. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  6808. },
  6809. "dist": {
  6810. "type": "zip",
  6811. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  6812. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  6813. "shasum": "",
  6814. "mirrors": [
  6815. {
  6816. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6817. "preferred": true
  6818. }
  6819. ]
  6820. },
  6821. "require": {
  6822. "php": ">=7.1",
  6823. "psr/http-message": "^1.0",
  6824. "symfony/http-foundation": "^4.4 || ^5.0"
  6825. },
  6826. "require-dev": {
  6827. "nyholm/psr7": "^1.1",
  6828. "psr/log": "^1.1",
  6829. "symfony/browser-kit": "^4.4 || ^5.0",
  6830. "symfony/config": "^4.4 || ^5.0",
  6831. "symfony/event-dispatcher": "^4.4 || ^5.0",
  6832. "symfony/framework-bundle": "^4.4 || ^5.0",
  6833. "symfony/http-kernel": "^4.4 || ^5.0",
  6834. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  6835. },
  6836. "suggest": {
  6837. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6838. },
  6839. "type": "symfony-bridge",
  6840. "extra": {
  6841. "branch-alias": {
  6842. "dev-main": "2.1-dev"
  6843. }
  6844. },
  6845. "autoload": {
  6846. "psr-4": {
  6847. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6848. },
  6849. "exclude-from-classmap": [
  6850. "/Tests/"
  6851. ]
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "MIT"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Fabien Potencier",
  6860. "email": "fabien@symfony.com"
  6861. },
  6862. {
  6863. "name": "Symfony Community",
  6864. "homepage": "http://symfony.com/contributors"
  6865. }
  6866. ],
  6867. "description": "PSR HTTP message bridge",
  6868. "homepage": "http://symfony.com",
  6869. "keywords": [
  6870. "http",
  6871. "http-message",
  6872. "psr-17",
  6873. "psr-7"
  6874. ],
  6875. "time": "2021-02-17T10:35:25+00:00"
  6876. },
  6877. {
  6878. "name": "symfony/routing",
  6879. "version": "v4.4.20",
  6880. "source": {
  6881. "type": "git",
  6882. "url": "https://github.com/symfony/routing.git",
  6883. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df"
  6884. },
  6885. "dist": {
  6886. "type": "zip",
  6887. "url": "https://api.github.com/repos/symfony/routing/zipball/69919991c845b34626664ddc9b3aef9d09d2a5df",
  6888. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df",
  6889. "shasum": "",
  6890. "mirrors": [
  6891. {
  6892. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6893. "preferred": true
  6894. }
  6895. ]
  6896. },
  6897. "require": {
  6898. "php": ">=7.1.3"
  6899. },
  6900. "conflict": {
  6901. "symfony/config": "<4.2",
  6902. "symfony/dependency-injection": "<3.4",
  6903. "symfony/yaml": "<3.4"
  6904. },
  6905. "require-dev": {
  6906. "doctrine/annotations": "^1.10.4",
  6907. "psr/log": "~1.0",
  6908. "symfony/config": "^4.2|^5.0",
  6909. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6910. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6911. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  6912. "symfony/yaml": "^3.4|^4.0|^5.0"
  6913. },
  6914. "suggest": {
  6915. "doctrine/annotations": "For using the annotation loader",
  6916. "symfony/config": "For using the all-in-one router or any loader",
  6917. "symfony/expression-language": "For using expression matching",
  6918. "symfony/http-foundation": "For using a Symfony Request object",
  6919. "symfony/yaml": "For using the YAML loader"
  6920. },
  6921. "type": "library",
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Symfony\\Component\\Routing\\": ""
  6925. },
  6926. "exclude-from-classmap": [
  6927. "/Tests/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Fabien Potencier",
  6937. "email": "fabien@symfony.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Maps an HTTP request to a set of configuration variables",
  6945. "homepage": "https://symfony.com",
  6946. "keywords": [
  6947. "router",
  6948. "routing",
  6949. "uri",
  6950. "url"
  6951. ],
  6952. "time": "2021-02-22T15:37:04+00:00"
  6953. },
  6954. {
  6955. "name": "symfony/service-contracts",
  6956. "version": "v2.2.0",
  6957. "source": {
  6958. "type": "git",
  6959. "url": "https://github.com/symfony/service-contracts.git",
  6960. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6961. },
  6962. "dist": {
  6963. "type": "zip",
  6964. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6965. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6966. "shasum": "",
  6967. "mirrors": [
  6968. {
  6969. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6970. "preferred": true
  6971. }
  6972. ]
  6973. },
  6974. "require": {
  6975. "php": ">=7.2.5",
  6976. "psr/container": "^1.0"
  6977. },
  6978. "suggest": {
  6979. "symfony/service-implementation": ""
  6980. },
  6981. "type": "library",
  6982. "extra": {
  6983. "branch-alias": {
  6984. "dev-master": "2.2-dev"
  6985. },
  6986. "thanks": {
  6987. "name": "symfony/contracts",
  6988. "url": "https://github.com/symfony/contracts"
  6989. }
  6990. },
  6991. "autoload": {
  6992. "psr-4": {
  6993. "Symfony\\Contracts\\Service\\": ""
  6994. }
  6995. },
  6996. "notification-url": "https://packagist.org/downloads/",
  6997. "license": [
  6998. "MIT"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Nicolas Grekas",
  7003. "email": "p@tchwork.com"
  7004. },
  7005. {
  7006. "name": "Symfony Community",
  7007. "homepage": "https://symfony.com/contributors"
  7008. }
  7009. ],
  7010. "description": "Generic abstractions related to writing services",
  7011. "homepage": "https://symfony.com",
  7012. "keywords": [
  7013. "abstractions",
  7014. "contracts",
  7015. "decoupling",
  7016. "interfaces",
  7017. "interoperability",
  7018. "standards"
  7019. ],
  7020. "time": "2020-09-07T11:33:47+00:00"
  7021. },
  7022. {
  7023. "name": "symfony/translation",
  7024. "version": "v4.4.21",
  7025. "source": {
  7026. "type": "git",
  7027. "url": "https://github.com/symfony/translation.git",
  7028. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14"
  7029. },
  7030. "dist": {
  7031. "type": "zip",
  7032. "url": "https://api.github.com/repos/symfony/translation/zipball/eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7033. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7034. "shasum": "",
  7035. "mirrors": [
  7036. {
  7037. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7038. "preferred": true
  7039. }
  7040. ]
  7041. },
  7042. "require": {
  7043. "php": ">=7.1.3",
  7044. "symfony/polyfill-mbstring": "~1.0",
  7045. "symfony/translation-contracts": "^1.1.6|^2"
  7046. },
  7047. "conflict": {
  7048. "symfony/config": "<3.4",
  7049. "symfony/dependency-injection": "<3.4",
  7050. "symfony/http-kernel": "<4.4",
  7051. "symfony/yaml": "<3.4"
  7052. },
  7053. "provide": {
  7054. "symfony/translation-implementation": "1.0|2.0"
  7055. },
  7056. "require-dev": {
  7057. "psr/log": "~1.0",
  7058. "symfony/config": "^3.4|^4.0|^5.0",
  7059. "symfony/console": "^3.4|^4.0|^5.0",
  7060. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7061. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  7062. "symfony/http-kernel": "^4.4",
  7063. "symfony/intl": "^3.4|^4.0|^5.0",
  7064. "symfony/service-contracts": "^1.1.2|^2",
  7065. "symfony/yaml": "^3.4|^4.0|^5.0"
  7066. },
  7067. "suggest": {
  7068. "psr/log-implementation": "To use logging capability in translator",
  7069. "symfony/config": "",
  7070. "symfony/yaml": ""
  7071. },
  7072. "type": "library",
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Symfony\\Component\\Translation\\": ""
  7076. },
  7077. "exclude-from-classmap": [
  7078. "/Tests/"
  7079. ]
  7080. },
  7081. "notification-url": "https://packagist.org/downloads/",
  7082. "license": [
  7083. "MIT"
  7084. ],
  7085. "authors": [
  7086. {
  7087. "name": "Fabien Potencier",
  7088. "email": "fabien@symfony.com"
  7089. },
  7090. {
  7091. "name": "Symfony Community",
  7092. "homepage": "https://symfony.com/contributors"
  7093. }
  7094. ],
  7095. "description": "Provides tools to internationalize your application",
  7096. "homepage": "https://symfony.com",
  7097. "time": "2021-03-23T16:25:01+00:00"
  7098. },
  7099. {
  7100. "name": "symfony/translation-contracts",
  7101. "version": "v2.3.0",
  7102. "source": {
  7103. "type": "git",
  7104. "url": "https://github.com/symfony/translation-contracts.git",
  7105. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7106. },
  7107. "dist": {
  7108. "type": "zip",
  7109. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7110. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7111. "shasum": "",
  7112. "mirrors": [
  7113. {
  7114. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7115. "preferred": true
  7116. }
  7117. ]
  7118. },
  7119. "require": {
  7120. "php": ">=7.2.5"
  7121. },
  7122. "suggest": {
  7123. "symfony/translation-implementation": ""
  7124. },
  7125. "type": "library",
  7126. "extra": {
  7127. "branch-alias": {
  7128. "dev-master": "2.3-dev"
  7129. },
  7130. "thanks": {
  7131. "name": "symfony/contracts",
  7132. "url": "https://github.com/symfony/contracts"
  7133. }
  7134. },
  7135. "autoload": {
  7136. "psr-4": {
  7137. "Symfony\\Contracts\\Translation\\": ""
  7138. }
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Nicolas Grekas",
  7147. "email": "p@tchwork.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Generic abstractions related to translation",
  7155. "homepage": "https://symfony.com",
  7156. "keywords": [
  7157. "abstractions",
  7158. "contracts",
  7159. "decoupling",
  7160. "interfaces",
  7161. "interoperability",
  7162. "standards"
  7163. ],
  7164. "time": "2020-09-28T13:05:58+00:00"
  7165. },
  7166. {
  7167. "name": "symfony/var-dumper",
  7168. "version": "v4.4.22",
  7169. "source": {
  7170. "type": "git",
  7171. "url": "https://github.com/symfony/var-dumper.git",
  7172. "reference": "c194bcedde6295f3ec3e9eba1f5d484ea97c41a7"
  7173. },
  7174. "dist": {
  7175. "type": "zip",
  7176. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c194bcedde6295f3ec3e9eba1f5d484ea97c41a7",
  7177. "reference": "c194bcedde6295f3ec3e9eba1f5d484ea97c41a7",
  7178. "shasum": "",
  7179. "mirrors": [
  7180. {
  7181. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7182. "preferred": true
  7183. }
  7184. ]
  7185. },
  7186. "require": {
  7187. "php": ">=7.1.3",
  7188. "symfony/polyfill-mbstring": "~1.0",
  7189. "symfony/polyfill-php72": "~1.5",
  7190. "symfony/polyfill-php80": "^1.15"
  7191. },
  7192. "conflict": {
  7193. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7194. "symfony/console": "<3.4"
  7195. },
  7196. "require-dev": {
  7197. "ext-iconv": "*",
  7198. "symfony/console": "^3.4|^4.0|^5.0",
  7199. "symfony/process": "^4.4|^5.0",
  7200. "twig/twig": "^1.43|^2.13|^3.0.4"
  7201. },
  7202. "suggest": {
  7203. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7204. "ext-intl": "To show region name in time zone dump",
  7205. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7206. },
  7207. "bin": [
  7208. "Resources/bin/var-dump-server"
  7209. ],
  7210. "type": "library",
  7211. "autoload": {
  7212. "files": [
  7213. "Resources/functions/dump.php"
  7214. ],
  7215. "psr-4": {
  7216. "Symfony\\Component\\VarDumper\\": ""
  7217. },
  7218. "exclude-from-classmap": [
  7219. "/Tests/"
  7220. ]
  7221. },
  7222. "notification-url": "https://packagist.org/downloads/",
  7223. "license": [
  7224. "MIT"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Nicolas Grekas",
  7229. "email": "p@tchwork.com"
  7230. },
  7231. {
  7232. "name": "Symfony Community",
  7233. "homepage": "https://symfony.com/contributors"
  7234. }
  7235. ],
  7236. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7237. "homepage": "https://symfony.com",
  7238. "keywords": [
  7239. "debug",
  7240. "dump"
  7241. ],
  7242. "time": "2021-04-19T13:36:17+00:00"
  7243. },
  7244. {
  7245. "name": "symfony/var-exporter",
  7246. "version": "v5.2.4",
  7247. "source": {
  7248. "type": "git",
  7249. "url": "https://github.com/symfony/var-exporter.git",
  7250. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  7251. },
  7252. "dist": {
  7253. "type": "zip",
  7254. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  7255. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  7256. "shasum": "",
  7257. "mirrors": [
  7258. {
  7259. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7260. "preferred": true
  7261. }
  7262. ]
  7263. },
  7264. "require": {
  7265. "php": ">=7.2.5",
  7266. "symfony/polyfill-php80": "^1.15"
  7267. },
  7268. "require-dev": {
  7269. "symfony/var-dumper": "^4.4.9|^5.0.9"
  7270. },
  7271. "type": "library",
  7272. "autoload": {
  7273. "psr-4": {
  7274. "Symfony\\Component\\VarExporter\\": ""
  7275. },
  7276. "exclude-from-classmap": [
  7277. "/Tests/"
  7278. ]
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "MIT"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Nicolas Grekas",
  7287. "email": "p@tchwork.com"
  7288. },
  7289. {
  7290. "name": "Symfony Community",
  7291. "homepage": "https://symfony.com/contributors"
  7292. }
  7293. ],
  7294. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7295. "homepage": "https://symfony.com",
  7296. "keywords": [
  7297. "clone",
  7298. "construct",
  7299. "export",
  7300. "hydrate",
  7301. "instantiate",
  7302. "serialize"
  7303. ],
  7304. "time": "2021-01-27T10:01:46+00:00"
  7305. },
  7306. {
  7307. "name": "tijsverkoyen/css-to-inline-styles",
  7308. "version": "2.2.3",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7312. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7317. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7318. "shasum": "",
  7319. "mirrors": [
  7320. {
  7321. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7322. "preferred": true
  7323. }
  7324. ]
  7325. },
  7326. "require": {
  7327. "ext-dom": "*",
  7328. "ext-libxml": "*",
  7329. "php": "^5.5 || ^7.0 || ^8.0",
  7330. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7331. },
  7332. "require-dev": {
  7333. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7334. },
  7335. "type": "library",
  7336. "extra": {
  7337. "branch-alias": {
  7338. "dev-master": "2.2.x-dev"
  7339. }
  7340. },
  7341. "autoload": {
  7342. "psr-4": {
  7343. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7344. }
  7345. },
  7346. "notification-url": "https://packagist.org/downloads/",
  7347. "license": [
  7348. "BSD-3-Clause"
  7349. ],
  7350. "authors": [
  7351. {
  7352. "name": "Tijs Verkoyen",
  7353. "email": "css_to_inline_styles@verkoyen.eu",
  7354. "role": "Developer"
  7355. }
  7356. ],
  7357. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7358. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7359. "time": "2020-07-13T06:12:54+00:00"
  7360. },
  7361. {
  7362. "name": "tymon/jwt-auth",
  7363. "version": "1.0.2",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7367. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7372. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7373. "shasum": "",
  7374. "mirrors": [
  7375. {
  7376. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7377. "preferred": true
  7378. }
  7379. ]
  7380. },
  7381. "require": {
  7382. "illuminate/auth": "^5.2|^6|^7|^8",
  7383. "illuminate/contracts": "^5.2|^6|^7|^8",
  7384. "illuminate/http": "^5.2|^6|^7|^8",
  7385. "illuminate/support": "^5.2|^6|^7|^8",
  7386. "lcobucci/jwt": "<3.4",
  7387. "namshi/jose": "^7.0",
  7388. "nesbot/carbon": "^1.0|^2.0",
  7389. "php": "^5.5.9|^7.0"
  7390. },
  7391. "require-dev": {
  7392. "illuminate/console": "^5.2|^6|^7|^8",
  7393. "illuminate/database": "^5.2|^6|^7|^8",
  7394. "illuminate/routing": "^5.2|^6|^7|^8",
  7395. "mockery/mockery": ">=0.9.9",
  7396. "phpunit/phpunit": "~4.8|~6.0"
  7397. },
  7398. "type": "library",
  7399. "extra": {
  7400. "branch-alias": {
  7401. "dev-develop": "1.0-dev"
  7402. },
  7403. "laravel": {
  7404. "aliases": {
  7405. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7406. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7407. },
  7408. "providers": [
  7409. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7410. ]
  7411. }
  7412. },
  7413. "autoload": {
  7414. "psr-4": {
  7415. "Tymon\\JWTAuth\\": "src/"
  7416. }
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "MIT"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Sean Tymon",
  7425. "email": "tymon148@gmail.com",
  7426. "homepage": "https://tymon.xyz",
  7427. "role": "Developer"
  7428. }
  7429. ],
  7430. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7431. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7432. "keywords": [
  7433. "Authentication",
  7434. "JSON Web Token",
  7435. "auth",
  7436. "jwt",
  7437. "laravel"
  7438. ],
  7439. "time": "2020-11-27T12:32:42+00:00"
  7440. },
  7441. {
  7442. "name": "vlucas/phpdotenv",
  7443. "version": "v3.6.8",
  7444. "source": {
  7445. "type": "git",
  7446. "url": "https://github.com/vlucas/phpdotenv.git",
  7447. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8"
  7448. },
  7449. "dist": {
  7450. "type": "zip",
  7451. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5e679f7616db829358341e2d5cccbd18773bdab8",
  7452. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8",
  7453. "shasum": "",
  7454. "mirrors": [
  7455. {
  7456. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7457. "preferred": true
  7458. }
  7459. ]
  7460. },
  7461. "require": {
  7462. "php": "^5.4 || ^7.0 || ^8.0",
  7463. "phpoption/phpoption": "^1.5.2",
  7464. "symfony/polyfill-ctype": "^1.17"
  7465. },
  7466. "require-dev": {
  7467. "ext-filter": "*",
  7468. "ext-pcre": "*",
  7469. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7470. },
  7471. "suggest": {
  7472. "ext-filter": "Required to use the boolean validator.",
  7473. "ext-pcre": "Required to use most of the library."
  7474. },
  7475. "type": "library",
  7476. "extra": {
  7477. "branch-alias": {
  7478. "dev-master": "3.6-dev"
  7479. }
  7480. },
  7481. "autoload": {
  7482. "psr-4": {
  7483. "Dotenv\\": "src/"
  7484. }
  7485. },
  7486. "notification-url": "https://packagist.org/downloads/",
  7487. "license": [
  7488. "BSD-3-Clause"
  7489. ],
  7490. "authors": [
  7491. {
  7492. "name": "Graham Campbell",
  7493. "email": "graham@alt-three.com",
  7494. "homepage": "https://gjcampbell.co.uk/"
  7495. },
  7496. {
  7497. "name": "Vance Lucas",
  7498. "email": "vance@vancelucas.com",
  7499. "homepage": "https://vancelucas.com/"
  7500. }
  7501. ],
  7502. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7503. "keywords": [
  7504. "dotenv",
  7505. "env",
  7506. "environment"
  7507. ],
  7508. "time": "2021-01-20T14:39:46+00:00"
  7509. },
  7510. {
  7511. "name": "webmozart/assert",
  7512. "version": "1.10.0",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/webmozarts/assert.git",
  7516. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7521. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7522. "shasum": "",
  7523. "mirrors": [
  7524. {
  7525. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7526. "preferred": true
  7527. }
  7528. ]
  7529. },
  7530. "require": {
  7531. "php": "^7.2 || ^8.0",
  7532. "symfony/polyfill-ctype": "^1.8"
  7533. },
  7534. "conflict": {
  7535. "phpstan/phpstan": "<0.12.20",
  7536. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7537. },
  7538. "require-dev": {
  7539. "phpunit/phpunit": "^8.5.13"
  7540. },
  7541. "type": "library",
  7542. "extra": {
  7543. "branch-alias": {
  7544. "dev-master": "1.10-dev"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Webmozart\\Assert\\": "src/"
  7550. }
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "Bernhard Schussek",
  7559. "email": "bschussek@gmail.com"
  7560. }
  7561. ],
  7562. "description": "Assertions to validate method input/output with nice error messages.",
  7563. "keywords": [
  7564. "assert",
  7565. "check",
  7566. "validate"
  7567. ],
  7568. "time": "2021-03-09T10:59:23+00:00"
  7569. },
  7570. {
  7571. "name": "zgldh/qiniu-laravel-storage",
  7572. "version": "v0.10.4",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/zgldh/qiniu-laravel-storage.git",
  7576. "reference": "9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/zgldh/qiniu-laravel-storage/zipball/9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d",
  7581. "reference": "9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d",
  7582. "shasum": "",
  7583. "mirrors": [
  7584. {
  7585. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7586. "preferred": true
  7587. }
  7588. ]
  7589. },
  7590. "require": {
  7591. "league/flysystem": "^1.0",
  7592. "php": ">=5.3.3",
  7593. "qiniu/php-sdk": "^7.2"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "laravel": {
  7598. "providers": [
  7599. "zgldh\\QiniuStorage\\QiniuFilesystemServiceProvider"
  7600. ]
  7601. }
  7602. },
  7603. "autoload": {
  7604. "psr-4": {
  7605. "zgldh\\QiniuStorage\\": "src/"
  7606. }
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "zgldh",
  7615. "email": "zgldh@hotmail.com",
  7616. "role": "Original Developer"
  7617. },
  7618. {
  7619. "name": "abcsun",
  7620. "email": "chenglongsun_nj@163.com",
  7621. "homepage": "http://github.com/abcsun",
  7622. "role": "Developer"
  7623. }
  7624. ],
  7625. "description": "Qiniu Resource (Cloud) Storage SDK for Laravel 5",
  7626. "keywords": [
  7627. "cloud",
  7628. "laravel",
  7629. "qiniu",
  7630. "sdk",
  7631. "storage"
  7632. ],
  7633. "time": "2020-12-16T06:17:04+00:00"
  7634. }
  7635. ],
  7636. "packages-dev": [
  7637. {
  7638. "name": "doctrine/instantiator",
  7639. "version": "1.4.0",
  7640. "source": {
  7641. "type": "git",
  7642. "url": "https://github.com/doctrine/instantiator.git",
  7643. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7644. },
  7645. "dist": {
  7646. "type": "zip",
  7647. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7648. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7649. "shasum": "",
  7650. "mirrors": [
  7651. {
  7652. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7653. "preferred": true
  7654. }
  7655. ]
  7656. },
  7657. "require": {
  7658. "php": "^7.1 || ^8.0"
  7659. },
  7660. "require-dev": {
  7661. "doctrine/coding-standard": "^8.0",
  7662. "ext-pdo": "*",
  7663. "ext-phar": "*",
  7664. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7665. "phpstan/phpstan": "^0.12",
  7666. "phpstan/phpstan-phpunit": "^0.12",
  7667. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7668. },
  7669. "type": "library",
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7673. }
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "MIT"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "Marco Pivetta",
  7682. "email": "ocramius@gmail.com",
  7683. "homepage": "https://ocramius.github.io/"
  7684. }
  7685. ],
  7686. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7687. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7688. "keywords": [
  7689. "constructor",
  7690. "instantiate"
  7691. ],
  7692. "time": "2020-11-10T18:47:58+00:00"
  7693. },
  7694. {
  7695. "name": "filp/whoops",
  7696. "version": "2.12.0",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/filp/whoops.git",
  7700. "reference": "d501fd2658d55491a2295ff600ae5978eaad7403"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/filp/whoops/zipball/d501fd2658d55491a2295ff600ae5978eaad7403",
  7705. "reference": "d501fd2658d55491a2295ff600ae5978eaad7403",
  7706. "shasum": "",
  7707. "mirrors": [
  7708. {
  7709. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7710. "preferred": true
  7711. }
  7712. ]
  7713. },
  7714. "require": {
  7715. "php": "^5.5.9 || ^7.0 || ^8.0",
  7716. "psr/log": "^1.0.1"
  7717. },
  7718. "require-dev": {
  7719. "mockery/mockery": "^0.9 || ^1.0",
  7720. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7721. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7722. },
  7723. "suggest": {
  7724. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7725. "whoops/soap": "Formats errors as SOAP responses"
  7726. },
  7727. "type": "library",
  7728. "extra": {
  7729. "branch-alias": {
  7730. "dev-master": "2.7-dev"
  7731. }
  7732. },
  7733. "autoload": {
  7734. "psr-4": {
  7735. "Whoops\\": "src/Whoops/"
  7736. }
  7737. },
  7738. "notification-url": "https://packagist.org/downloads/",
  7739. "license": [
  7740. "MIT"
  7741. ],
  7742. "authors": [
  7743. {
  7744. "name": "Filipe Dobreira",
  7745. "homepage": "https://github.com/filp",
  7746. "role": "Developer"
  7747. }
  7748. ],
  7749. "description": "php error handling for cool kids",
  7750. "homepage": "https://filp.github.io/whoops/",
  7751. "keywords": [
  7752. "error",
  7753. "exception",
  7754. "handling",
  7755. "library",
  7756. "throwable",
  7757. "whoops"
  7758. ],
  7759. "time": "2021-03-30T12:00:00+00:00"
  7760. },
  7761. {
  7762. "name": "fzaninotto/faker",
  7763. "version": "v1.9.2",
  7764. "source": {
  7765. "type": "git",
  7766. "url": "https://github.com/fzaninotto/Faker.git",
  7767. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  7768. },
  7769. "dist": {
  7770. "type": "zip",
  7771. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7772. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7773. "shasum": "",
  7774. "mirrors": [
  7775. {
  7776. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7777. "preferred": true
  7778. }
  7779. ]
  7780. },
  7781. "require": {
  7782. "php": "^5.3.3 || ^7.0"
  7783. },
  7784. "require-dev": {
  7785. "ext-intl": "*",
  7786. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7787. "squizlabs/php_codesniffer": "^2.9.2"
  7788. },
  7789. "type": "library",
  7790. "extra": {
  7791. "branch-alias": {
  7792. "dev-master": "1.9-dev"
  7793. }
  7794. },
  7795. "autoload": {
  7796. "psr-4": {
  7797. "Faker\\": "src/Faker/"
  7798. }
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "François Zaninotto"
  7807. }
  7808. ],
  7809. "description": "Faker is a PHP library that generates fake data for you.",
  7810. "keywords": [
  7811. "data",
  7812. "faker",
  7813. "fixtures"
  7814. ],
  7815. "abandoned": true,
  7816. "time": "2020-12-11T09:56:16+00:00"
  7817. },
  7818. {
  7819. "name": "hamcrest/hamcrest-php",
  7820. "version": "v2.0.1",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7824. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7829. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7830. "shasum": "",
  7831. "mirrors": [
  7832. {
  7833. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7834. "preferred": true
  7835. }
  7836. ]
  7837. },
  7838. "require": {
  7839. "php": "^5.3|^7.0|^8.0"
  7840. },
  7841. "replace": {
  7842. "cordoval/hamcrest-php": "*",
  7843. "davedevelopment/hamcrest-php": "*",
  7844. "kodova/hamcrest-php": "*"
  7845. },
  7846. "require-dev": {
  7847. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7848. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7849. },
  7850. "type": "library",
  7851. "extra": {
  7852. "branch-alias": {
  7853. "dev-master": "2.1-dev"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "classmap": [
  7858. "hamcrest"
  7859. ]
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "BSD-3-Clause"
  7864. ],
  7865. "description": "This is the PHP port of Hamcrest Matchers",
  7866. "keywords": [
  7867. "test"
  7868. ],
  7869. "time": "2020-07-09T08:09:16+00:00"
  7870. },
  7871. {
  7872. "name": "mockery/mockery",
  7873. "version": "1.4.3",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/mockery/mockery.git",
  7877. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  7882. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  7883. "shasum": "",
  7884. "mirrors": [
  7885. {
  7886. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7887. "preferred": true
  7888. }
  7889. ]
  7890. },
  7891. "require": {
  7892. "hamcrest/hamcrest-php": "^2.0.1",
  7893. "lib-pcre": ">=7.0",
  7894. "php": "^7.3 || ^8.0"
  7895. },
  7896. "conflict": {
  7897. "phpunit/phpunit": "<8.0"
  7898. },
  7899. "require-dev": {
  7900. "phpunit/phpunit": "^8.5 || ^9.3"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "1.4.x-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "psr-0": {
  7910. "Mockery": "library/"
  7911. }
  7912. },
  7913. "notification-url": "https://packagist.org/downloads/",
  7914. "license": [
  7915. "BSD-3-Clause"
  7916. ],
  7917. "authors": [
  7918. {
  7919. "name": "Pádraic Brady",
  7920. "email": "padraic.brady@gmail.com",
  7921. "homepage": "http://blog.astrumfutura.com"
  7922. },
  7923. {
  7924. "name": "Dave Marshall",
  7925. "email": "dave.marshall@atstsolutions.co.uk",
  7926. "homepage": "http://davedevelopment.co.uk"
  7927. }
  7928. ],
  7929. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7930. "homepage": "https://github.com/mockery/mockery",
  7931. "keywords": [
  7932. "BDD",
  7933. "TDD",
  7934. "library",
  7935. "mock",
  7936. "mock objects",
  7937. "mockery",
  7938. "stub",
  7939. "test",
  7940. "test double",
  7941. "testing"
  7942. ],
  7943. "time": "2021-02-24T09:51:49+00:00"
  7944. },
  7945. {
  7946. "name": "myclabs/deep-copy",
  7947. "version": "1.10.2",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/myclabs/DeepCopy.git",
  7951. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7956. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7957. "shasum": "",
  7958. "mirrors": [
  7959. {
  7960. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7961. "preferred": true
  7962. }
  7963. ]
  7964. },
  7965. "require": {
  7966. "php": "^7.1 || ^8.0"
  7967. },
  7968. "replace": {
  7969. "myclabs/deep-copy": "self.version"
  7970. },
  7971. "require-dev": {
  7972. "doctrine/collections": "^1.0",
  7973. "doctrine/common": "^2.6",
  7974. "phpunit/phpunit": "^7.1"
  7975. },
  7976. "type": "library",
  7977. "autoload": {
  7978. "psr-4": {
  7979. "DeepCopy\\": "src/DeepCopy/"
  7980. },
  7981. "files": [
  7982. "src/DeepCopy/deep_copy.php"
  7983. ]
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "description": "Create deep copies (clones) of your objects",
  7990. "keywords": [
  7991. "clone",
  7992. "copy",
  7993. "duplicate",
  7994. "object",
  7995. "object graph"
  7996. ],
  7997. "time": "2020-11-13T09:40:50+00:00"
  7998. },
  7999. {
  8000. "name": "nunomaduro/collision",
  8001. "version": "v3.2.0",
  8002. "source": {
  8003. "type": "git",
  8004. "url": "https://github.com/nunomaduro/collision.git",
  8005. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d"
  8006. },
  8007. "dist": {
  8008. "type": "zip",
  8009. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  8010. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  8011. "shasum": "",
  8012. "mirrors": [
  8013. {
  8014. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8015. "preferred": true
  8016. }
  8017. ]
  8018. },
  8019. "require": {
  8020. "filp/whoops": "^2.1.4",
  8021. "php": "^7.2.5 || ^8.0",
  8022. "php-parallel-lint/php-console-highlighter": "0.5.*",
  8023. "symfony/console": "~2.8|~3.3|~4.0"
  8024. },
  8025. "require-dev": {
  8026. "laravel/framework": "^6.0",
  8027. "phpunit/phpunit": "^8.0 || ^9.0"
  8028. },
  8029. "type": "library",
  8030. "extra": {
  8031. "laravel": {
  8032. "providers": [
  8033. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8034. ]
  8035. }
  8036. },
  8037. "autoload": {
  8038. "psr-4": {
  8039. "NunoMaduro\\Collision\\": "src/"
  8040. }
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Nuno Maduro",
  8049. "email": "enunomaduro@gmail.com"
  8050. }
  8051. ],
  8052. "description": "Cli error handling for console/command-line PHP applications.",
  8053. "keywords": [
  8054. "artisan",
  8055. "cli",
  8056. "command-line",
  8057. "console",
  8058. "error",
  8059. "handling",
  8060. "laravel",
  8061. "laravel-zero",
  8062. "php",
  8063. "symfony"
  8064. ],
  8065. "time": "2021-02-11T09:01:42+00:00"
  8066. },
  8067. {
  8068. "name": "phar-io/manifest",
  8069. "version": "2.0.1",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/phar-io/manifest.git",
  8073. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8078. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "ext-dom": "*",
  8089. "ext-phar": "*",
  8090. "ext-xmlwriter": "*",
  8091. "phar-io/version": "^3.0.1",
  8092. "php": "^7.2 || ^8.0"
  8093. },
  8094. "type": "library",
  8095. "extra": {
  8096. "branch-alias": {
  8097. "dev-master": "2.0.x-dev"
  8098. }
  8099. },
  8100. "autoload": {
  8101. "classmap": [
  8102. "src/"
  8103. ]
  8104. },
  8105. "notification-url": "https://packagist.org/downloads/",
  8106. "license": [
  8107. "BSD-3-Clause"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "Arne Blankerts",
  8112. "email": "arne@blankerts.de",
  8113. "role": "Developer"
  8114. },
  8115. {
  8116. "name": "Sebastian Heuer",
  8117. "email": "sebastian@phpeople.de",
  8118. "role": "Developer"
  8119. },
  8120. {
  8121. "name": "Sebastian Bergmann",
  8122. "email": "sebastian@phpunit.de",
  8123. "role": "Developer"
  8124. }
  8125. ],
  8126. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8127. "time": "2020-06-27T14:33:11+00:00"
  8128. },
  8129. {
  8130. "name": "phar-io/version",
  8131. "version": "3.1.0",
  8132. "source": {
  8133. "type": "git",
  8134. "url": "https://github.com/phar-io/version.git",
  8135. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8136. },
  8137. "dist": {
  8138. "type": "zip",
  8139. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8140. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8141. "shasum": "",
  8142. "mirrors": [
  8143. {
  8144. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8145. "preferred": true
  8146. }
  8147. ]
  8148. },
  8149. "require": {
  8150. "php": "^7.2 || ^8.0"
  8151. },
  8152. "type": "library",
  8153. "autoload": {
  8154. "classmap": [
  8155. "src/"
  8156. ]
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "BSD-3-Clause"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Arne Blankerts",
  8165. "email": "arne@blankerts.de",
  8166. "role": "Developer"
  8167. },
  8168. {
  8169. "name": "Sebastian Heuer",
  8170. "email": "sebastian@phpeople.de",
  8171. "role": "Developer"
  8172. },
  8173. {
  8174. "name": "Sebastian Bergmann",
  8175. "email": "sebastian@phpunit.de",
  8176. "role": "Developer"
  8177. }
  8178. ],
  8179. "description": "Library for handling version information and constraints",
  8180. "time": "2021-02-23T14:00:09+00:00"
  8181. },
  8182. {
  8183. "name": "phpspec/prophecy",
  8184. "version": "v1.10.3",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/phpspec/prophecy.git",
  8188. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  8193. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  8194. "shasum": "",
  8195. "mirrors": [
  8196. {
  8197. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8198. "preferred": true
  8199. }
  8200. ]
  8201. },
  8202. "require": {
  8203. "doctrine/instantiator": "^1.0.2",
  8204. "php": "^5.3|^7.0",
  8205. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  8206. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  8207. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  8208. },
  8209. "require-dev": {
  8210. "phpspec/phpspec": "^2.5 || ^3.2",
  8211. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  8212. },
  8213. "type": "library",
  8214. "extra": {
  8215. "branch-alias": {
  8216. "dev-master": "1.10.x-dev"
  8217. }
  8218. },
  8219. "autoload": {
  8220. "psr-4": {
  8221. "Prophecy\\": "src/Prophecy"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "MIT"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Konstantin Kudryashov",
  8231. "email": "ever.zet@gmail.com",
  8232. "homepage": "http://everzet.com"
  8233. },
  8234. {
  8235. "name": "Marcello Duarte",
  8236. "email": "marcello.duarte@gmail.com"
  8237. }
  8238. ],
  8239. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8240. "homepage": "https://github.com/phpspec/prophecy",
  8241. "keywords": [
  8242. "Double",
  8243. "Dummy",
  8244. "fake",
  8245. "mock",
  8246. "spy",
  8247. "stub"
  8248. ],
  8249. "time": "2020-03-05T15:02:03+00:00"
  8250. },
  8251. {
  8252. "name": "phpunit/php-code-coverage",
  8253. "version": "7.0.14",
  8254. "source": {
  8255. "type": "git",
  8256. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8257. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8258. },
  8259. "dist": {
  8260. "type": "zip",
  8261. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8262. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8263. "shasum": "",
  8264. "mirrors": [
  8265. {
  8266. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8267. "preferred": true
  8268. }
  8269. ]
  8270. },
  8271. "require": {
  8272. "ext-dom": "*",
  8273. "ext-xmlwriter": "*",
  8274. "php": ">=7.2",
  8275. "phpunit/php-file-iterator": "^2.0.2",
  8276. "phpunit/php-text-template": "^1.2.1",
  8277. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8278. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8279. "sebastian/environment": "^4.2.2",
  8280. "sebastian/version": "^2.0.1",
  8281. "theseer/tokenizer": "^1.1.3"
  8282. },
  8283. "require-dev": {
  8284. "phpunit/phpunit": "^8.2.2"
  8285. },
  8286. "suggest": {
  8287. "ext-xdebug": "^2.7.2"
  8288. },
  8289. "type": "library",
  8290. "extra": {
  8291. "branch-alias": {
  8292. "dev-master": "7.0-dev"
  8293. }
  8294. },
  8295. "autoload": {
  8296. "classmap": [
  8297. "src/"
  8298. ]
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "BSD-3-Clause"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "Sebastian Bergmann",
  8307. "email": "sebastian@phpunit.de",
  8308. "role": "lead"
  8309. }
  8310. ],
  8311. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8312. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8313. "keywords": [
  8314. "coverage",
  8315. "testing",
  8316. "xunit"
  8317. ],
  8318. "time": "2020-12-02T13:39:03+00:00"
  8319. },
  8320. {
  8321. "name": "phpunit/php-file-iterator",
  8322. "version": "2.0.3",
  8323. "source": {
  8324. "type": "git",
  8325. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8326. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8327. },
  8328. "dist": {
  8329. "type": "zip",
  8330. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8331. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8332. "shasum": "",
  8333. "mirrors": [
  8334. {
  8335. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8336. "preferred": true
  8337. }
  8338. ]
  8339. },
  8340. "require": {
  8341. "php": ">=7.1"
  8342. },
  8343. "require-dev": {
  8344. "phpunit/phpunit": "^8.5"
  8345. },
  8346. "type": "library",
  8347. "extra": {
  8348. "branch-alias": {
  8349. "dev-master": "2.0.x-dev"
  8350. }
  8351. },
  8352. "autoload": {
  8353. "classmap": [
  8354. "src/"
  8355. ]
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "BSD-3-Clause"
  8360. ],
  8361. "authors": [
  8362. {
  8363. "name": "Sebastian Bergmann",
  8364. "email": "sebastian@phpunit.de",
  8365. "role": "lead"
  8366. }
  8367. ],
  8368. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8369. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8370. "keywords": [
  8371. "filesystem",
  8372. "iterator"
  8373. ],
  8374. "time": "2020-11-30T08:25:21+00:00"
  8375. },
  8376. {
  8377. "name": "phpunit/php-text-template",
  8378. "version": "1.2.1",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8382. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8387. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8388. "shasum": "",
  8389. "mirrors": [
  8390. {
  8391. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8392. "preferred": true
  8393. }
  8394. ]
  8395. },
  8396. "require": {
  8397. "php": ">=5.3.3"
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "classmap": [
  8402. "src/"
  8403. ]
  8404. },
  8405. "notification-url": "https://packagist.org/downloads/",
  8406. "license": [
  8407. "BSD-3-Clause"
  8408. ],
  8409. "authors": [
  8410. {
  8411. "name": "Sebastian Bergmann",
  8412. "email": "sebastian@phpunit.de",
  8413. "role": "lead"
  8414. }
  8415. ],
  8416. "description": "Simple template engine.",
  8417. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8418. "keywords": [
  8419. "template"
  8420. ],
  8421. "time": "2015-06-21T13:50:34+00:00"
  8422. },
  8423. {
  8424. "name": "phpunit/php-timer",
  8425. "version": "2.1.3",
  8426. "source": {
  8427. "type": "git",
  8428. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8429. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8430. },
  8431. "dist": {
  8432. "type": "zip",
  8433. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8434. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8435. "shasum": "",
  8436. "mirrors": [
  8437. {
  8438. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8439. "preferred": true
  8440. }
  8441. ]
  8442. },
  8443. "require": {
  8444. "php": ">=7.1"
  8445. },
  8446. "require-dev": {
  8447. "phpunit/phpunit": "^8.5"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "branch-alias": {
  8452. "dev-master": "2.1-dev"
  8453. }
  8454. },
  8455. "autoload": {
  8456. "classmap": [
  8457. "src/"
  8458. ]
  8459. },
  8460. "notification-url": "https://packagist.org/downloads/",
  8461. "license": [
  8462. "BSD-3-Clause"
  8463. ],
  8464. "authors": [
  8465. {
  8466. "name": "Sebastian Bergmann",
  8467. "email": "sebastian@phpunit.de",
  8468. "role": "lead"
  8469. }
  8470. ],
  8471. "description": "Utility class for timing",
  8472. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8473. "keywords": [
  8474. "timer"
  8475. ],
  8476. "time": "2020-11-30T08:20:02+00:00"
  8477. },
  8478. {
  8479. "name": "phpunit/php-token-stream",
  8480. "version": "4.0.4",
  8481. "source": {
  8482. "type": "git",
  8483. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8484. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  8485. },
  8486. "dist": {
  8487. "type": "zip",
  8488. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8489. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8490. "shasum": "",
  8491. "mirrors": [
  8492. {
  8493. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8494. "preferred": true
  8495. }
  8496. ]
  8497. },
  8498. "require": {
  8499. "ext-tokenizer": "*",
  8500. "php": "^7.3 || ^8.0"
  8501. },
  8502. "require-dev": {
  8503. "phpunit/phpunit": "^9.0"
  8504. },
  8505. "type": "library",
  8506. "extra": {
  8507. "branch-alias": {
  8508. "dev-master": "4.0-dev"
  8509. }
  8510. },
  8511. "autoload": {
  8512. "classmap": [
  8513. "src/"
  8514. ]
  8515. },
  8516. "notification-url": "https://packagist.org/downloads/",
  8517. "license": [
  8518. "BSD-3-Clause"
  8519. ],
  8520. "authors": [
  8521. {
  8522. "name": "Sebastian Bergmann",
  8523. "email": "sebastian@phpunit.de"
  8524. }
  8525. ],
  8526. "description": "Wrapper around PHP's tokenizer extension.",
  8527. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8528. "keywords": [
  8529. "tokenizer"
  8530. ],
  8531. "abandoned": true,
  8532. "time": "2020-08-04T08:28:15+00:00"
  8533. },
  8534. {
  8535. "name": "phpunit/phpunit",
  8536. "version": "8.5.15",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8540. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  8545. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  8546. "shasum": "",
  8547. "mirrors": [
  8548. {
  8549. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8550. "preferred": true
  8551. }
  8552. ]
  8553. },
  8554. "require": {
  8555. "doctrine/instantiator": "^1.3.1",
  8556. "ext-dom": "*",
  8557. "ext-json": "*",
  8558. "ext-libxml": "*",
  8559. "ext-mbstring": "*",
  8560. "ext-xml": "*",
  8561. "ext-xmlwriter": "*",
  8562. "myclabs/deep-copy": "^1.10.0",
  8563. "phar-io/manifest": "^2.0.1",
  8564. "phar-io/version": "^3.0.2",
  8565. "php": ">=7.2",
  8566. "phpspec/prophecy": "^1.10.3",
  8567. "phpunit/php-code-coverage": "^7.0.12",
  8568. "phpunit/php-file-iterator": "^2.0.2",
  8569. "phpunit/php-text-template": "^1.2.1",
  8570. "phpunit/php-timer": "^2.1.2",
  8571. "sebastian/comparator": "^3.0.2",
  8572. "sebastian/diff": "^3.0.2",
  8573. "sebastian/environment": "^4.2.3",
  8574. "sebastian/exporter": "^3.1.2",
  8575. "sebastian/global-state": "^3.0.0",
  8576. "sebastian/object-enumerator": "^3.0.3",
  8577. "sebastian/resource-operations": "^2.0.1",
  8578. "sebastian/type": "^1.1.3",
  8579. "sebastian/version": "^2.0.1"
  8580. },
  8581. "require-dev": {
  8582. "ext-pdo": "*"
  8583. },
  8584. "suggest": {
  8585. "ext-soap": "*",
  8586. "ext-xdebug": "*",
  8587. "phpunit/php-invoker": "^2.0.0"
  8588. },
  8589. "bin": [
  8590. "phpunit"
  8591. ],
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "8.5-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Sebastian Bergmann",
  8610. "email": "sebastian@phpunit.de",
  8611. "role": "lead"
  8612. }
  8613. ],
  8614. "description": "The PHP Unit Testing framework.",
  8615. "homepage": "https://phpunit.de/",
  8616. "keywords": [
  8617. "phpunit",
  8618. "testing",
  8619. "xunit"
  8620. ],
  8621. "time": "2021-03-17T07:27:54+00:00"
  8622. },
  8623. {
  8624. "name": "sebastian/code-unit-reverse-lookup",
  8625. "version": "1.0.2",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8629. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8634. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8635. "shasum": "",
  8636. "mirrors": [
  8637. {
  8638. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8639. "preferred": true
  8640. }
  8641. ]
  8642. },
  8643. "require": {
  8644. "php": ">=5.6"
  8645. },
  8646. "require-dev": {
  8647. "phpunit/phpunit": "^8.5"
  8648. },
  8649. "type": "library",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-master": "1.0.x-dev"
  8653. }
  8654. },
  8655. "autoload": {
  8656. "classmap": [
  8657. "src/"
  8658. ]
  8659. },
  8660. "notification-url": "https://packagist.org/downloads/",
  8661. "license": [
  8662. "BSD-3-Clause"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Sebastian Bergmann",
  8667. "email": "sebastian@phpunit.de"
  8668. }
  8669. ],
  8670. "description": "Looks up which function or method a line of code belongs to",
  8671. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8672. "time": "2020-11-30T08:15:22+00:00"
  8673. },
  8674. {
  8675. "name": "sebastian/comparator",
  8676. "version": "3.0.3",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/sebastianbergmann/comparator.git",
  8680. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  8685. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  8686. "shasum": "",
  8687. "mirrors": [
  8688. {
  8689. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8690. "preferred": true
  8691. }
  8692. ]
  8693. },
  8694. "require": {
  8695. "php": ">=7.1",
  8696. "sebastian/diff": "^3.0",
  8697. "sebastian/exporter": "^3.1"
  8698. },
  8699. "require-dev": {
  8700. "phpunit/phpunit": "^8.5"
  8701. },
  8702. "type": "library",
  8703. "extra": {
  8704. "branch-alias": {
  8705. "dev-master": "3.0-dev"
  8706. }
  8707. },
  8708. "autoload": {
  8709. "classmap": [
  8710. "src/"
  8711. ]
  8712. },
  8713. "notification-url": "https://packagist.org/downloads/",
  8714. "license": [
  8715. "BSD-3-Clause"
  8716. ],
  8717. "authors": [
  8718. {
  8719. "name": "Sebastian Bergmann",
  8720. "email": "sebastian@phpunit.de"
  8721. },
  8722. {
  8723. "name": "Jeff Welch",
  8724. "email": "whatthejeff@gmail.com"
  8725. },
  8726. {
  8727. "name": "Volker Dusch",
  8728. "email": "github@wallbash.com"
  8729. },
  8730. {
  8731. "name": "Bernhard Schussek",
  8732. "email": "bschussek@2bepublished.at"
  8733. }
  8734. ],
  8735. "description": "Provides the functionality to compare PHP values for equality",
  8736. "homepage": "https://github.com/sebastianbergmann/comparator",
  8737. "keywords": [
  8738. "comparator",
  8739. "compare",
  8740. "equality"
  8741. ],
  8742. "time": "2020-11-30T08:04:30+00:00"
  8743. },
  8744. {
  8745. "name": "sebastian/diff",
  8746. "version": "3.0.3",
  8747. "source": {
  8748. "type": "git",
  8749. "url": "https://github.com/sebastianbergmann/diff.git",
  8750. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  8751. },
  8752. "dist": {
  8753. "type": "zip",
  8754. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8755. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8756. "shasum": "",
  8757. "mirrors": [
  8758. {
  8759. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8760. "preferred": true
  8761. }
  8762. ]
  8763. },
  8764. "require": {
  8765. "php": ">=7.1"
  8766. },
  8767. "require-dev": {
  8768. "phpunit/phpunit": "^7.5 || ^8.0",
  8769. "symfony/process": "^2 || ^3.3 || ^4"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "3.0-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "classmap": [
  8779. "src/"
  8780. ]
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "BSD-3-Clause"
  8785. ],
  8786. "authors": [
  8787. {
  8788. "name": "Sebastian Bergmann",
  8789. "email": "sebastian@phpunit.de"
  8790. },
  8791. {
  8792. "name": "Kore Nordmann",
  8793. "email": "mail@kore-nordmann.de"
  8794. }
  8795. ],
  8796. "description": "Diff implementation",
  8797. "homepage": "https://github.com/sebastianbergmann/diff",
  8798. "keywords": [
  8799. "diff",
  8800. "udiff",
  8801. "unidiff",
  8802. "unified diff"
  8803. ],
  8804. "time": "2020-11-30T07:59:04+00:00"
  8805. },
  8806. {
  8807. "name": "sebastian/environment",
  8808. "version": "4.2.4",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/sebastianbergmann/environment.git",
  8812. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8817. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8818. "shasum": "",
  8819. "mirrors": [
  8820. {
  8821. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8822. "preferred": true
  8823. }
  8824. ]
  8825. },
  8826. "require": {
  8827. "php": ">=7.1"
  8828. },
  8829. "require-dev": {
  8830. "phpunit/phpunit": "^7.5"
  8831. },
  8832. "suggest": {
  8833. "ext-posix": "*"
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "branch-alias": {
  8838. "dev-master": "4.2-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "classmap": [
  8843. "src/"
  8844. ]
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "BSD-3-Clause"
  8849. ],
  8850. "authors": [
  8851. {
  8852. "name": "Sebastian Bergmann",
  8853. "email": "sebastian@phpunit.de"
  8854. }
  8855. ],
  8856. "description": "Provides functionality to handle HHVM/PHP environments",
  8857. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8858. "keywords": [
  8859. "Xdebug",
  8860. "environment",
  8861. "hhvm"
  8862. ],
  8863. "time": "2020-11-30T07:53:42+00:00"
  8864. },
  8865. {
  8866. "name": "sebastian/exporter",
  8867. "version": "3.1.3",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/sebastianbergmann/exporter.git",
  8871. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  8876. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  8877. "shasum": "",
  8878. "mirrors": [
  8879. {
  8880. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8881. "preferred": true
  8882. }
  8883. ]
  8884. },
  8885. "require": {
  8886. "php": ">=7.0",
  8887. "sebastian/recursion-context": "^3.0"
  8888. },
  8889. "require-dev": {
  8890. "ext-mbstring": "*",
  8891. "phpunit/phpunit": "^6.0"
  8892. },
  8893. "type": "library",
  8894. "extra": {
  8895. "branch-alias": {
  8896. "dev-master": "3.1.x-dev"
  8897. }
  8898. },
  8899. "autoload": {
  8900. "classmap": [
  8901. "src/"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "BSD-3-Clause"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Sebastian Bergmann",
  8911. "email": "sebastian@phpunit.de"
  8912. },
  8913. {
  8914. "name": "Jeff Welch",
  8915. "email": "whatthejeff@gmail.com"
  8916. },
  8917. {
  8918. "name": "Volker Dusch",
  8919. "email": "github@wallbash.com"
  8920. },
  8921. {
  8922. "name": "Adam Harvey",
  8923. "email": "aharvey@php.net"
  8924. },
  8925. {
  8926. "name": "Bernhard Schussek",
  8927. "email": "bschussek@gmail.com"
  8928. }
  8929. ],
  8930. "description": "Provides the functionality to export PHP variables for visualization",
  8931. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8932. "keywords": [
  8933. "export",
  8934. "exporter"
  8935. ],
  8936. "time": "2020-11-30T07:47:53+00:00"
  8937. },
  8938. {
  8939. "name": "sebastian/global-state",
  8940. "version": "3.0.1",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/sebastianbergmann/global-state.git",
  8944. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  8949. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  8950. "shasum": "",
  8951. "mirrors": [
  8952. {
  8953. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8954. "preferred": true
  8955. }
  8956. ]
  8957. },
  8958. "require": {
  8959. "php": ">=7.2",
  8960. "sebastian/object-reflector": "^1.1.1",
  8961. "sebastian/recursion-context": "^3.0"
  8962. },
  8963. "require-dev": {
  8964. "ext-dom": "*",
  8965. "phpunit/phpunit": "^8.0"
  8966. },
  8967. "suggest": {
  8968. "ext-uopz": "*"
  8969. },
  8970. "type": "library",
  8971. "extra": {
  8972. "branch-alias": {
  8973. "dev-master": "3.0-dev"
  8974. }
  8975. },
  8976. "autoload": {
  8977. "classmap": [
  8978. "src/"
  8979. ]
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "BSD-3-Clause"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Sebastian Bergmann",
  8988. "email": "sebastian@phpunit.de"
  8989. }
  8990. ],
  8991. "description": "Snapshotting of global state",
  8992. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8993. "keywords": [
  8994. "global state"
  8995. ],
  8996. "time": "2020-11-30T07:43:24+00:00"
  8997. },
  8998. {
  8999. "name": "sebastian/object-enumerator",
  9000. "version": "3.0.4",
  9001. "source": {
  9002. "type": "git",
  9003. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9004. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9005. },
  9006. "dist": {
  9007. "type": "zip",
  9008. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9009. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9010. "shasum": "",
  9011. "mirrors": [
  9012. {
  9013. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9014. "preferred": true
  9015. }
  9016. ]
  9017. },
  9018. "require": {
  9019. "php": ">=7.0",
  9020. "sebastian/object-reflector": "^1.1.1",
  9021. "sebastian/recursion-context": "^3.0"
  9022. },
  9023. "require-dev": {
  9024. "phpunit/phpunit": "^6.0"
  9025. },
  9026. "type": "library",
  9027. "extra": {
  9028. "branch-alias": {
  9029. "dev-master": "3.0.x-dev"
  9030. }
  9031. },
  9032. "autoload": {
  9033. "classmap": [
  9034. "src/"
  9035. ]
  9036. },
  9037. "notification-url": "https://packagist.org/downloads/",
  9038. "license": [
  9039. "BSD-3-Clause"
  9040. ],
  9041. "authors": [
  9042. {
  9043. "name": "Sebastian Bergmann",
  9044. "email": "sebastian@phpunit.de"
  9045. }
  9046. ],
  9047. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9048. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9049. "time": "2020-11-30T07:40:27+00:00"
  9050. },
  9051. {
  9052. "name": "sebastian/object-reflector",
  9053. "version": "1.1.2",
  9054. "source": {
  9055. "type": "git",
  9056. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9057. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9058. },
  9059. "dist": {
  9060. "type": "zip",
  9061. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9062. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9063. "shasum": "",
  9064. "mirrors": [
  9065. {
  9066. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9067. "preferred": true
  9068. }
  9069. ]
  9070. },
  9071. "require": {
  9072. "php": ">=7.0"
  9073. },
  9074. "require-dev": {
  9075. "phpunit/phpunit": "^6.0"
  9076. },
  9077. "type": "library",
  9078. "extra": {
  9079. "branch-alias": {
  9080. "dev-master": "1.1-dev"
  9081. }
  9082. },
  9083. "autoload": {
  9084. "classmap": [
  9085. "src/"
  9086. ]
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "license": [
  9090. "BSD-3-Clause"
  9091. ],
  9092. "authors": [
  9093. {
  9094. "name": "Sebastian Bergmann",
  9095. "email": "sebastian@phpunit.de"
  9096. }
  9097. ],
  9098. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9099. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9100. "time": "2020-11-30T07:37:18+00:00"
  9101. },
  9102. {
  9103. "name": "sebastian/recursion-context",
  9104. "version": "3.0.1",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9108. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9113. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9114. "shasum": "",
  9115. "mirrors": [
  9116. {
  9117. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9118. "preferred": true
  9119. }
  9120. ]
  9121. },
  9122. "require": {
  9123. "php": ">=7.0"
  9124. },
  9125. "require-dev": {
  9126. "phpunit/phpunit": "^6.0"
  9127. },
  9128. "type": "library",
  9129. "extra": {
  9130. "branch-alias": {
  9131. "dev-master": "3.0.x-dev"
  9132. }
  9133. },
  9134. "autoload": {
  9135. "classmap": [
  9136. "src/"
  9137. ]
  9138. },
  9139. "notification-url": "https://packagist.org/downloads/",
  9140. "license": [
  9141. "BSD-3-Clause"
  9142. ],
  9143. "authors": [
  9144. {
  9145. "name": "Sebastian Bergmann",
  9146. "email": "sebastian@phpunit.de"
  9147. },
  9148. {
  9149. "name": "Jeff Welch",
  9150. "email": "whatthejeff@gmail.com"
  9151. },
  9152. {
  9153. "name": "Adam Harvey",
  9154. "email": "aharvey@php.net"
  9155. }
  9156. ],
  9157. "description": "Provides functionality to recursively process PHP variables",
  9158. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9159. "time": "2020-11-30T07:34:24+00:00"
  9160. },
  9161. {
  9162. "name": "sebastian/resource-operations",
  9163. "version": "2.0.2",
  9164. "source": {
  9165. "type": "git",
  9166. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9167. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9168. },
  9169. "dist": {
  9170. "type": "zip",
  9171. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9172. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9173. "shasum": "",
  9174. "mirrors": [
  9175. {
  9176. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9177. "preferred": true
  9178. }
  9179. ]
  9180. },
  9181. "require": {
  9182. "php": ">=7.1"
  9183. },
  9184. "type": "library",
  9185. "extra": {
  9186. "branch-alias": {
  9187. "dev-master": "2.0-dev"
  9188. }
  9189. },
  9190. "autoload": {
  9191. "classmap": [
  9192. "src/"
  9193. ]
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "BSD-3-Clause"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Sebastian Bergmann",
  9202. "email": "sebastian@phpunit.de"
  9203. }
  9204. ],
  9205. "description": "Provides a list of PHP built-in functions that operate on resources",
  9206. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9207. "time": "2020-11-30T07:30:19+00:00"
  9208. },
  9209. {
  9210. "name": "sebastian/type",
  9211. "version": "1.1.4",
  9212. "source": {
  9213. "type": "git",
  9214. "url": "https://github.com/sebastianbergmann/type.git",
  9215. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9216. },
  9217. "dist": {
  9218. "type": "zip",
  9219. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9220. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9221. "shasum": "",
  9222. "mirrors": [
  9223. {
  9224. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9225. "preferred": true
  9226. }
  9227. ]
  9228. },
  9229. "require": {
  9230. "php": ">=7.2"
  9231. },
  9232. "require-dev": {
  9233. "phpunit/phpunit": "^8.2"
  9234. },
  9235. "type": "library",
  9236. "extra": {
  9237. "branch-alias": {
  9238. "dev-master": "1.1-dev"
  9239. }
  9240. },
  9241. "autoload": {
  9242. "classmap": [
  9243. "src/"
  9244. ]
  9245. },
  9246. "notification-url": "https://packagist.org/downloads/",
  9247. "license": [
  9248. "BSD-3-Clause"
  9249. ],
  9250. "authors": [
  9251. {
  9252. "name": "Sebastian Bergmann",
  9253. "email": "sebastian@phpunit.de",
  9254. "role": "lead"
  9255. }
  9256. ],
  9257. "description": "Collection of value objects that represent the types of the PHP type system",
  9258. "homepage": "https://github.com/sebastianbergmann/type",
  9259. "time": "2020-11-30T07:25:11+00:00"
  9260. },
  9261. {
  9262. "name": "sebastian/version",
  9263. "version": "2.0.1",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/sebastianbergmann/version.git",
  9267. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9272. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9273. "shasum": "",
  9274. "mirrors": [
  9275. {
  9276. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9277. "preferred": true
  9278. }
  9279. ]
  9280. },
  9281. "require": {
  9282. "php": ">=5.6"
  9283. },
  9284. "type": "library",
  9285. "extra": {
  9286. "branch-alias": {
  9287. "dev-master": "2.0.x-dev"
  9288. }
  9289. },
  9290. "autoload": {
  9291. "classmap": [
  9292. "src/"
  9293. ]
  9294. },
  9295. "notification-url": "https://packagist.org/downloads/",
  9296. "license": [
  9297. "BSD-3-Clause"
  9298. ],
  9299. "authors": [
  9300. {
  9301. "name": "Sebastian Bergmann",
  9302. "email": "sebastian@phpunit.de",
  9303. "role": "lead"
  9304. }
  9305. ],
  9306. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9307. "homepage": "https://github.com/sebastianbergmann/version",
  9308. "time": "2016-10-03T07:35:21+00:00"
  9309. },
  9310. {
  9311. "name": "theseer/tokenizer",
  9312. "version": "1.2.0",
  9313. "source": {
  9314. "type": "git",
  9315. "url": "https://github.com/theseer/tokenizer.git",
  9316. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9317. },
  9318. "dist": {
  9319. "type": "zip",
  9320. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9321. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9322. "shasum": "",
  9323. "mirrors": [
  9324. {
  9325. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9326. "preferred": true
  9327. }
  9328. ]
  9329. },
  9330. "require": {
  9331. "ext-dom": "*",
  9332. "ext-tokenizer": "*",
  9333. "ext-xmlwriter": "*",
  9334. "php": "^7.2 || ^8.0"
  9335. },
  9336. "type": "library",
  9337. "autoload": {
  9338. "classmap": [
  9339. "src/"
  9340. ]
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Arne Blankerts",
  9349. "email": "arne@blankerts.de",
  9350. "role": "Developer"
  9351. }
  9352. ],
  9353. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9354. "time": "2020-07-12T23:59:07+00:00"
  9355. }
  9356. ],
  9357. "aliases": [],
  9358. "minimum-stability": "dev",
  9359. "stability-flags": [],
  9360. "prefer-stable": true,
  9361. "prefer-lowest": false,
  9362. "platform": {
  9363. "php": "^7.2"
  9364. },
  9365. "platform-dev": []
  9366. }