composer.lock 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893
  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": "fac753ae2702317b354e7eb283f28cbc",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "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. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  68. },
  69. "time": "2020-10-29T16:03:21+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.8.17",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  82. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "php": "^7.1|^8.0"
  94. },
  95. "require-dev": {
  96. "php-coveralls/php-coveralls": "^2.2",
  97. "phpunit/phpunit": "^7.5.15|^8.5",
  98. "vimeo/psalm": "^3.5"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Brick\\Math\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "description": "Arbitrary-precision arithmetic library",
  111. "keywords": [
  112. "Arbitrary-precision",
  113. "BigInteger",
  114. "BigRational",
  115. "arithmetic",
  116. "bigdecimal",
  117. "bignum",
  118. "brick",
  119. "math"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/brick/math/issues",
  123. "source": "https://github.com/brick/math/tree/v0.8"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  128. "type": "tidelift"
  129. }
  130. ],
  131. "time": "2020-08-18T23:41:20+00:00"
  132. },
  133. {
  134. "name": "dnoegel/php-xdg-base-dir",
  135. "version": "v0.1.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  139. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  144. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  145. "shasum": "",
  146. "mirrors": [
  147. {
  148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  149. "preferred": true
  150. }
  151. ]
  152. },
  153. "require": {
  154. "php": ">=5.3.2"
  155. },
  156. "require-dev": {
  157. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  158. },
  159. "type": "library",
  160. "autoload": {
  161. "psr-4": {
  162. "XdgBaseDir\\": "src/"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "description": "implementation of xdg base directory specification for php",
  170. "support": {
  171. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  172. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  173. },
  174. "time": "2019-12-04T15:06:13+00:00"
  175. },
  176. {
  177. "name": "doctrine/inflector",
  178. "version": "2.0.3",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/doctrine/inflector.git",
  182. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  187. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  188. "shasum": "",
  189. "mirrors": [
  190. {
  191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  192. "preferred": true
  193. }
  194. ]
  195. },
  196. "require": {
  197. "php": "^7.2 || ^8.0"
  198. },
  199. "require-dev": {
  200. "doctrine/coding-standard": "^7.0",
  201. "phpstan/phpstan": "^0.11",
  202. "phpstan/phpstan-phpunit": "^0.11",
  203. "phpstan/phpstan-strict-rules": "^0.11",
  204. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  205. },
  206. "type": "library",
  207. "extra": {
  208. "branch-alias": {
  209. "dev-master": "2.0.x-dev"
  210. }
  211. },
  212. "autoload": {
  213. "psr-4": {
  214. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  215. }
  216. },
  217. "notification-url": "https://packagist.org/downloads/",
  218. "license": [
  219. "MIT"
  220. ],
  221. "authors": [
  222. {
  223. "name": "Guilherme Blanco",
  224. "email": "guilhermeblanco@gmail.com"
  225. },
  226. {
  227. "name": "Roman Borschel",
  228. "email": "roman@code-factory.org"
  229. },
  230. {
  231. "name": "Benjamin Eberlei",
  232. "email": "kontakt@beberlei.de"
  233. },
  234. {
  235. "name": "Jonathan Wage",
  236. "email": "jonwage@gmail.com"
  237. },
  238. {
  239. "name": "Johannes Schmitt",
  240. "email": "schmittjoh@gmail.com"
  241. }
  242. ],
  243. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  244. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  245. "keywords": [
  246. "inflection",
  247. "inflector",
  248. "lowercase",
  249. "manipulation",
  250. "php",
  251. "plural",
  252. "singular",
  253. "strings",
  254. "uppercase",
  255. "words"
  256. ],
  257. "support": {
  258. "issues": "https://github.com/doctrine/inflector/issues",
  259. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  260. },
  261. "funding": [
  262. {
  263. "url": "https://www.doctrine-project.org/sponsorship.html",
  264. "type": "custom"
  265. },
  266. {
  267. "url": "https://www.patreon.com/phpdoctrine",
  268. "type": "patreon"
  269. },
  270. {
  271. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  272. "type": "tidelift"
  273. }
  274. ],
  275. "time": "2020-05-29T15:13:26+00:00"
  276. },
  277. {
  278. "name": "doctrine/lexer",
  279. "version": "1.2.1",
  280. "source": {
  281. "type": "git",
  282. "url": "https://github.com/doctrine/lexer.git",
  283. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  284. },
  285. "dist": {
  286. "type": "zip",
  287. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  288. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  289. "shasum": "",
  290. "mirrors": [
  291. {
  292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  293. "preferred": true
  294. }
  295. ]
  296. },
  297. "require": {
  298. "php": "^7.2 || ^8.0"
  299. },
  300. "require-dev": {
  301. "doctrine/coding-standard": "^6.0",
  302. "phpstan/phpstan": "^0.11.8",
  303. "phpunit/phpunit": "^8.2"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.2.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Johannes Schmitt",
  331. "email": "schmittjoh@gmail.com"
  332. }
  333. ],
  334. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  335. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  336. "keywords": [
  337. "annotations",
  338. "docblock",
  339. "lexer",
  340. "parser",
  341. "php"
  342. ],
  343. "support": {
  344. "issues": "https://github.com/doctrine/lexer/issues",
  345. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  346. },
  347. "funding": [
  348. {
  349. "url": "https://www.doctrine-project.org/sponsorship.html",
  350. "type": "custom"
  351. },
  352. {
  353. "url": "https://www.patreon.com/phpdoctrine",
  354. "type": "patreon"
  355. },
  356. {
  357. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  358. "type": "tidelift"
  359. }
  360. ],
  361. "time": "2020-05-25T17:44:05+00:00"
  362. },
  363. {
  364. "name": "dragonmantank/cron-expression",
  365. "version": "v3.1.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/dragonmantank/cron-expression.git",
  369. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  374. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  375. "shasum": "",
  376. "mirrors": [
  377. {
  378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  379. "preferred": true
  380. }
  381. ]
  382. },
  383. "require": {
  384. "php": "^7.2|^8.0",
  385. "webmozart/assert": "^1.7.0"
  386. },
  387. "replace": {
  388. "mtdowling/cron-expression": "^1.0"
  389. },
  390. "require-dev": {
  391. "phpstan/extension-installer": "^1.0",
  392. "phpstan/phpstan": "^0.12",
  393. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  394. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  395. },
  396. "type": "library",
  397. "autoload": {
  398. "psr-4": {
  399. "Cron\\": "src/Cron/"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Chris Tankersley",
  409. "email": "chris@ctankersley.com",
  410. "homepage": "https://github.com/dragonmantank"
  411. }
  412. ],
  413. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  414. "keywords": [
  415. "cron",
  416. "schedule"
  417. ],
  418. "support": {
  419. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  420. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  421. },
  422. "funding": [
  423. {
  424. "url": "https://github.com/dragonmantank",
  425. "type": "github"
  426. }
  427. ],
  428. "time": "2020-11-24T19:55:57+00:00"
  429. },
  430. {
  431. "name": "egulias/email-validator",
  432. "version": "2.1.24",
  433. "source": {
  434. "type": "git",
  435. "url": "https://github.com/egulias/EmailValidator.git",
  436. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  437. },
  438. "dist": {
  439. "type": "zip",
  440. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  441. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  442. "shasum": "",
  443. "mirrors": [
  444. {
  445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  446. "preferred": true
  447. }
  448. ]
  449. },
  450. "require": {
  451. "doctrine/lexer": "^1.0.1",
  452. "php": ">=5.5",
  453. "symfony/polyfill-intl-idn": "^1.10"
  454. },
  455. "require-dev": {
  456. "dominicsayers/isemail": "^3.0.7",
  457. "phpunit/phpunit": "^4.8.36|^7.5.15",
  458. "satooshi/php-coveralls": "^1.0.1"
  459. },
  460. "suggest": {
  461. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  462. },
  463. "type": "library",
  464. "extra": {
  465. "branch-alias": {
  466. "dev-master": "2.1.x-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Egulias\\EmailValidator\\": "src"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Eduardo Gulias Davis"
  481. }
  482. ],
  483. "description": "A library for validating emails against several RFCs",
  484. "homepage": "https://github.com/egulias/EmailValidator",
  485. "keywords": [
  486. "email",
  487. "emailvalidation",
  488. "emailvalidator",
  489. "validation",
  490. "validator"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/egulias/EmailValidator/issues",
  494. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  495. },
  496. "funding": [
  497. {
  498. "url": "https://github.com/egulias",
  499. "type": "github"
  500. }
  501. ],
  502. "time": "2020-11-14T15:56:27+00:00"
  503. },
  504. {
  505. "name": "fideloper/proxy",
  506. "version": "4.4.1",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/fideloper/TrustedProxy.git",
  510. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  515. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  516. "shasum": "",
  517. "mirrors": [
  518. {
  519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  520. "preferred": true
  521. }
  522. ]
  523. },
  524. "require": {
  525. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  526. "php": ">=5.4.0"
  527. },
  528. "require-dev": {
  529. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  530. "mockery/mockery": "^1.0",
  531. "phpunit/phpunit": "^6.0"
  532. },
  533. "type": "library",
  534. "extra": {
  535. "laravel": {
  536. "providers": [
  537. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  538. ]
  539. }
  540. },
  541. "autoload": {
  542. "psr-4": {
  543. "Fideloper\\Proxy\\": "src/"
  544. }
  545. },
  546. "notification-url": "https://packagist.org/downloads/",
  547. "license": [
  548. "MIT"
  549. ],
  550. "authors": [
  551. {
  552. "name": "Chris Fidao",
  553. "email": "fideloper@gmail.com"
  554. }
  555. ],
  556. "description": "Set trusted proxies for Laravel",
  557. "keywords": [
  558. "load balancing",
  559. "proxy",
  560. "trusted proxy"
  561. ],
  562. "support": {
  563. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  564. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  565. },
  566. "time": "2020-10-22T13:48:01+00:00"
  567. },
  568. {
  569. "name": "fruitcake/laravel-cors",
  570. "version": "v2.0.3",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/fruitcake/laravel-cors.git",
  574. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  579. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "asm89/stack-cors": "^2.0.1",
  590. "illuminate/contracts": "^6|^7|^8|^9",
  591. "illuminate/support": "^6|^7|^8|^9",
  592. "php": ">=7.2",
  593. "symfony/http-foundation": "^4|^5",
  594. "symfony/http-kernel": "^4.3.4|^5"
  595. },
  596. "require-dev": {
  597. "laravel/framework": "^6|^7|^8",
  598. "orchestra/testbench-dusk": "^4|^5|^6",
  599. "phpunit/phpunit": "^6|^7|^8",
  600. "squizlabs/php_codesniffer": "^3.5"
  601. },
  602. "type": "library",
  603. "extra": {
  604. "branch-alias": {
  605. "dev-master": "2.0-dev"
  606. },
  607. "laravel": {
  608. "providers": [
  609. "Fruitcake\\Cors\\CorsServiceProvider"
  610. ]
  611. }
  612. },
  613. "autoload": {
  614. "psr-4": {
  615. "Fruitcake\\Cors\\": "src/"
  616. }
  617. },
  618. "notification-url": "https://packagist.org/downloads/",
  619. "license": [
  620. "MIT"
  621. ],
  622. "authors": [
  623. {
  624. "name": "Fruitcake",
  625. "homepage": "https://fruitcake.nl"
  626. },
  627. {
  628. "name": "Barry vd. Heuvel",
  629. "email": "barryvdh@gmail.com"
  630. }
  631. ],
  632. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  633. "keywords": [
  634. "api",
  635. "cors",
  636. "crossdomain",
  637. "laravel"
  638. ],
  639. "support": {
  640. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  641. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  642. },
  643. "funding": [
  644. {
  645. "url": "https://github.com/barryvdh",
  646. "type": "github"
  647. }
  648. ],
  649. "time": "2020-10-22T13:57:20+00:00"
  650. },
  651. {
  652. "name": "graham-campbell/result-type",
  653. "version": "v1.0.1",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  657. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  662. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  663. "shasum": "",
  664. "mirrors": [
  665. {
  666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  667. "preferred": true
  668. }
  669. ]
  670. },
  671. "require": {
  672. "php": "^7.0|^8.0",
  673. "phpoption/phpoption": "^1.7.3"
  674. },
  675. "require-dev": {
  676. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  677. },
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.0-dev"
  682. }
  683. },
  684. "autoload": {
  685. "psr-4": {
  686. "GrahamCampbell\\ResultType\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Graham Campbell",
  696. "email": "graham@alt-three.com"
  697. }
  698. ],
  699. "description": "An Implementation Of The Result Type",
  700. "keywords": [
  701. "Graham Campbell",
  702. "GrahamCampbell",
  703. "Result Type",
  704. "Result-Type",
  705. "result"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  709. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://github.com/GrahamCampbell",
  714. "type": "github"
  715. },
  716. {
  717. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  718. "type": "tidelift"
  719. }
  720. ],
  721. "time": "2020-04-13T13:17:36+00:00"
  722. },
  723. {
  724. "name": "guzzlehttp/guzzle",
  725. "version": "7.2.0",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/guzzle/guzzle.git",
  729. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  734. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  735. "shasum": "",
  736. "mirrors": [
  737. {
  738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  739. "preferred": true
  740. }
  741. ]
  742. },
  743. "require": {
  744. "ext-json": "*",
  745. "guzzlehttp/promises": "^1.4",
  746. "guzzlehttp/psr7": "^1.7",
  747. "php": "^7.2.5 || ^8.0",
  748. "psr/http-client": "^1.0"
  749. },
  750. "provide": {
  751. "psr/http-client-implementation": "1.0"
  752. },
  753. "require-dev": {
  754. "ext-curl": "*",
  755. "php-http/client-integration-tests": "^3.0",
  756. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  757. "psr/log": "^1.1"
  758. },
  759. "suggest": {
  760. "ext-curl": "Required for CURL handler support",
  761. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  762. "psr/log": "Required for using the Log middleware"
  763. },
  764. "type": "library",
  765. "extra": {
  766. "branch-alias": {
  767. "dev-master": "7.1-dev"
  768. }
  769. },
  770. "autoload": {
  771. "psr-4": {
  772. "GuzzleHttp\\": "src/"
  773. },
  774. "files": [
  775. "src/functions_include.php"
  776. ]
  777. },
  778. "notification-url": "https://packagist.org/downloads/",
  779. "license": [
  780. "MIT"
  781. ],
  782. "authors": [
  783. {
  784. "name": "Michael Dowling",
  785. "email": "mtdowling@gmail.com",
  786. "homepage": "https://github.com/mtdowling"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://sagikazarmark.hu"
  792. }
  793. ],
  794. "description": "Guzzle is a PHP HTTP client library",
  795. "homepage": "http://guzzlephp.org/",
  796. "keywords": [
  797. "client",
  798. "curl",
  799. "framework",
  800. "http",
  801. "http client",
  802. "psr-18",
  803. "psr-7",
  804. "rest",
  805. "web service"
  806. ],
  807. "support": {
  808. "issues": "https://github.com/guzzle/guzzle/issues",
  809. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  810. },
  811. "funding": [
  812. {
  813. "url": "https://github.com/GrahamCampbell",
  814. "type": "github"
  815. },
  816. {
  817. "url": "https://github.com/Nyholm",
  818. "type": "github"
  819. },
  820. {
  821. "url": "https://github.com/alexeyshockov",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/gmponos",
  826. "type": "github"
  827. }
  828. ],
  829. "time": "2020-10-10T11:47:56+00:00"
  830. },
  831. {
  832. "name": "guzzlehttp/promises",
  833. "version": "1.4.0",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/guzzle/promises.git",
  837. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  842. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  843. "shasum": "",
  844. "mirrors": [
  845. {
  846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  847. "preferred": true
  848. }
  849. ]
  850. },
  851. "require": {
  852. "php": ">=5.5"
  853. },
  854. "require-dev": {
  855. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  856. },
  857. "type": "library",
  858. "extra": {
  859. "branch-alias": {
  860. "dev-master": "1.4-dev"
  861. }
  862. },
  863. "autoload": {
  864. "psr-4": {
  865. "GuzzleHttp\\Promise\\": "src/"
  866. },
  867. "files": [
  868. "src/functions_include.php"
  869. ]
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "MIT"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Michael Dowling",
  878. "email": "mtdowling@gmail.com",
  879. "homepage": "https://github.com/mtdowling"
  880. }
  881. ],
  882. "description": "Guzzle promises library",
  883. "keywords": [
  884. "promise"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/guzzle/promises/issues",
  888. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  889. },
  890. "time": "2020-09-30T07:37:28+00:00"
  891. },
  892. {
  893. "name": "guzzlehttp/psr7",
  894. "version": "1.7.0",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/guzzle/psr7.git",
  898. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  903. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  904. "shasum": "",
  905. "mirrors": [
  906. {
  907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  908. "preferred": true
  909. }
  910. ]
  911. },
  912. "require": {
  913. "php": ">=5.4.0",
  914. "psr/http-message": "~1.0",
  915. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  916. },
  917. "provide": {
  918. "psr/http-message-implementation": "1.0"
  919. },
  920. "require-dev": {
  921. "ext-zlib": "*",
  922. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  923. },
  924. "suggest": {
  925. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  926. },
  927. "type": "library",
  928. "extra": {
  929. "branch-alias": {
  930. "dev-master": "1.7-dev"
  931. }
  932. },
  933. "autoload": {
  934. "psr-4": {
  935. "GuzzleHttp\\Psr7\\": "src/"
  936. },
  937. "files": [
  938. "src/functions_include.php"
  939. ]
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Michael Dowling",
  948. "email": "mtdowling@gmail.com",
  949. "homepage": "https://github.com/mtdowling"
  950. },
  951. {
  952. "name": "Tobias Schultze",
  953. "homepage": "https://github.com/Tobion"
  954. }
  955. ],
  956. "description": "PSR-7 message implementation that also provides common utility methods",
  957. "keywords": [
  958. "http",
  959. "message",
  960. "psr-7",
  961. "request",
  962. "response",
  963. "stream",
  964. "uri",
  965. "url"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/guzzle/psr7/issues",
  969. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  970. },
  971. "time": "2020-09-30T07:37:11+00:00"
  972. },
  973. {
  974. "name": "laravel/framework",
  975. "version": "v8.16.1",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/laravel/framework.git",
  979. "reference": "f7dfc22e6c42e9ed4dda14c05814349af6943206"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/laravel/framework/zipball/f7dfc22e6c42e9ed4dda14c05814349af6943206",
  984. "reference": "f7dfc22e6c42e9ed4dda14c05814349af6943206",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "doctrine/inflector": "^1.4|^2.0",
  995. "dragonmantank/cron-expression": "^3.0.2",
  996. "egulias/email-validator": "^2.1.10",
  997. "ext-json": "*",
  998. "ext-mbstring": "*",
  999. "ext-openssl": "*",
  1000. "league/commonmark": "^1.3",
  1001. "league/flysystem": "^1.1",
  1002. "monolog/monolog": "^2.0",
  1003. "nesbot/carbon": "^2.31",
  1004. "opis/closure": "^3.6",
  1005. "php": "^7.3|^8.0",
  1006. "psr/container": "^1.0",
  1007. "psr/simple-cache": "^1.0",
  1008. "ramsey/uuid": "^4.0",
  1009. "swiftmailer/swiftmailer": "^6.0",
  1010. "symfony/console": "^5.1",
  1011. "symfony/error-handler": "^5.1",
  1012. "symfony/finder": "^5.1",
  1013. "symfony/http-foundation": "^5.1",
  1014. "symfony/http-kernel": "^5.1",
  1015. "symfony/mime": "^5.1",
  1016. "symfony/process": "^5.1",
  1017. "symfony/routing": "^5.1",
  1018. "symfony/var-dumper": "^5.1",
  1019. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1020. "vlucas/phpdotenv": "^5.2",
  1021. "voku/portable-ascii": "^1.4.8"
  1022. },
  1023. "conflict": {
  1024. "tightenco/collect": "<5.5.33"
  1025. },
  1026. "provide": {
  1027. "psr/container-implementation": "1.0"
  1028. },
  1029. "replace": {
  1030. "illuminate/auth": "self.version",
  1031. "illuminate/broadcasting": "self.version",
  1032. "illuminate/bus": "self.version",
  1033. "illuminate/cache": "self.version",
  1034. "illuminate/collections": "self.version",
  1035. "illuminate/config": "self.version",
  1036. "illuminate/console": "self.version",
  1037. "illuminate/container": "self.version",
  1038. "illuminate/contracts": "self.version",
  1039. "illuminate/cookie": "self.version",
  1040. "illuminate/database": "self.version",
  1041. "illuminate/encryption": "self.version",
  1042. "illuminate/events": "self.version",
  1043. "illuminate/filesystem": "self.version",
  1044. "illuminate/hashing": "self.version",
  1045. "illuminate/http": "self.version",
  1046. "illuminate/log": "self.version",
  1047. "illuminate/macroable": "self.version",
  1048. "illuminate/mail": "self.version",
  1049. "illuminate/notifications": "self.version",
  1050. "illuminate/pagination": "self.version",
  1051. "illuminate/pipeline": "self.version",
  1052. "illuminate/queue": "self.version",
  1053. "illuminate/redis": "self.version",
  1054. "illuminate/routing": "self.version",
  1055. "illuminate/session": "self.version",
  1056. "illuminate/support": "self.version",
  1057. "illuminate/testing": "self.version",
  1058. "illuminate/translation": "self.version",
  1059. "illuminate/validation": "self.version",
  1060. "illuminate/view": "self.version"
  1061. },
  1062. "require-dev": {
  1063. "aws/aws-sdk-php": "^3.155",
  1064. "doctrine/dbal": "^2.6|^3.0",
  1065. "filp/whoops": "^2.8",
  1066. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1067. "league/flysystem-cached-adapter": "^1.0",
  1068. "mockery/mockery": "^1.4.2",
  1069. "orchestra/testbench-core": "^6.5",
  1070. "pda/pheanstalk": "^4.0",
  1071. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1072. "predis/predis": "^1.1.1",
  1073. "symfony/cache": "^5.1"
  1074. },
  1075. "suggest": {
  1076. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1077. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  1078. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1079. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1080. "ext-memcached": "Required to use the memcache cache driver.",
  1081. "ext-pcntl": "Required to use all features of the queue worker.",
  1082. "ext-posix": "Required to use all features of the queue worker.",
  1083. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1084. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1085. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1086. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1087. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1088. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1089. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1090. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1091. "mockery/mockery": "Required to use mocking (^1.4.2).",
  1092. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1093. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1094. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  1095. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1096. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1097. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1098. "symfony/cache": "Required to PSR-6 cache bridge (^5.1).",
  1099. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1).",
  1100. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1101. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1102. },
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "8.x-dev"
  1107. }
  1108. },
  1109. "autoload": {
  1110. "files": [
  1111. "src/Illuminate/Collections/helpers.php",
  1112. "src/Illuminate/Events/functions.php",
  1113. "src/Illuminate/Foundation/helpers.php",
  1114. "src/Illuminate/Support/helpers.php"
  1115. ],
  1116. "psr-4": {
  1117. "Illuminate\\": "src/Illuminate/",
  1118. "Illuminate\\Support\\": [
  1119. "src/Illuminate/Macroable/",
  1120. "src/Illuminate/Collections/"
  1121. ]
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Taylor Otwell",
  1131. "email": "taylor@laravel.com"
  1132. }
  1133. ],
  1134. "description": "The Laravel Framework.",
  1135. "homepage": "https://laravel.com",
  1136. "keywords": [
  1137. "framework",
  1138. "laravel"
  1139. ],
  1140. "support": {
  1141. "issues": "https://github.com/laravel/framework/issues",
  1142. "source": "https://github.com/laravel/framework"
  1143. },
  1144. "time": "2020-11-25T15:01:02+00:00"
  1145. },
  1146. {
  1147. "name": "laravel/tinker",
  1148. "version": "v2.5.0",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/laravel/tinker.git",
  1152. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1157. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1158. "shasum": "",
  1159. "mirrors": [
  1160. {
  1161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1162. "preferred": true
  1163. }
  1164. ]
  1165. },
  1166. "require": {
  1167. "illuminate/console": "^6.0|^7.0|^8.0",
  1168. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1169. "illuminate/support": "^6.0|^7.0|^8.0",
  1170. "php": "^7.2.5|^8.0",
  1171. "psy/psysh": "^0.10.4",
  1172. "symfony/var-dumper": "^4.3.4|^5.0"
  1173. },
  1174. "require-dev": {
  1175. "mockery/mockery": "~1.3.3|^1.4.2",
  1176. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1177. },
  1178. "suggest": {
  1179. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1180. },
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-master": "2.x-dev"
  1185. },
  1186. "laravel": {
  1187. "providers": [
  1188. "Laravel\\Tinker\\TinkerServiceProvider"
  1189. ]
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-4": {
  1194. "Laravel\\Tinker\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Taylor Otwell",
  1204. "email": "taylor@laravel.com"
  1205. }
  1206. ],
  1207. "description": "Powerful REPL for the Laravel framework.",
  1208. "keywords": [
  1209. "REPL",
  1210. "Tinker",
  1211. "laravel",
  1212. "psysh"
  1213. ],
  1214. "support": {
  1215. "issues": "https://github.com/laravel/tinker/issues",
  1216. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1217. },
  1218. "time": "2020-10-29T13:07:12+00:00"
  1219. },
  1220. {
  1221. "name": "league/commonmark",
  1222. "version": "1.5.7",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "https://github.com/thephpleague/commonmark.git",
  1226. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1231. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1232. "shasum": "",
  1233. "mirrors": [
  1234. {
  1235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1236. "preferred": true
  1237. }
  1238. ]
  1239. },
  1240. "require": {
  1241. "ext-mbstring": "*",
  1242. "php": "^7.1 || ^8.0"
  1243. },
  1244. "conflict": {
  1245. "scrutinizer/ocular": "1.7.*"
  1246. },
  1247. "require-dev": {
  1248. "cebe/markdown": "~1.0",
  1249. "commonmark/commonmark.js": "0.29.2",
  1250. "erusev/parsedown": "~1.0",
  1251. "ext-json": "*",
  1252. "github/gfm": "0.29.0",
  1253. "michelf/php-markdown": "~1.4",
  1254. "mikehaertl/php-shellcommand": "^1.4",
  1255. "phpstan/phpstan": "^0.12",
  1256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1257. "scrutinizer/ocular": "^1.5",
  1258. "symfony/finder": "^4.2"
  1259. },
  1260. "bin": [
  1261. "bin/commonmark"
  1262. ],
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "League\\CommonMark\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "BSD-3-Clause"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Colin O'Dell",
  1276. "email": "colinodell@gmail.com",
  1277. "homepage": "https://www.colinodell.com",
  1278. "role": "Lead Developer"
  1279. }
  1280. ],
  1281. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1282. "homepage": "https://commonmark.thephpleague.com",
  1283. "keywords": [
  1284. "commonmark",
  1285. "flavored",
  1286. "gfm",
  1287. "github",
  1288. "github-flavored",
  1289. "markdown",
  1290. "md",
  1291. "parser"
  1292. ],
  1293. "support": {
  1294. "docs": "https://commonmark.thephpleague.com/",
  1295. "issues": "https://github.com/thephpleague/commonmark/issues",
  1296. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1297. "source": "https://github.com/thephpleague/commonmark"
  1298. },
  1299. "funding": [
  1300. {
  1301. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1302. "type": "custom"
  1303. },
  1304. {
  1305. "url": "https://www.colinodell.com/sponsor",
  1306. "type": "custom"
  1307. },
  1308. {
  1309. "url": "https://www.paypal.me/colinpodell/10.00",
  1310. "type": "custom"
  1311. },
  1312. {
  1313. "url": "https://github.com/colinodell",
  1314. "type": "github"
  1315. },
  1316. {
  1317. "url": "https://www.patreon.com/colinodell",
  1318. "type": "patreon"
  1319. },
  1320. {
  1321. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1322. "type": "tidelift"
  1323. }
  1324. ],
  1325. "time": "2020-10-31T13:49:32+00:00"
  1326. },
  1327. {
  1328. "name": "league/flysystem",
  1329. "version": "1.1.3",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/thephpleague/flysystem.git",
  1333. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1338. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1339. "shasum": "",
  1340. "mirrors": [
  1341. {
  1342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1343. "preferred": true
  1344. }
  1345. ]
  1346. },
  1347. "require": {
  1348. "ext-fileinfo": "*",
  1349. "league/mime-type-detection": "^1.3",
  1350. "php": "^7.2.5 || ^8.0"
  1351. },
  1352. "conflict": {
  1353. "league/flysystem-sftp": "<1.0.6"
  1354. },
  1355. "require-dev": {
  1356. "phpspec/prophecy": "^1.11.1",
  1357. "phpunit/phpunit": "^8.5.8"
  1358. },
  1359. "suggest": {
  1360. "ext-fileinfo": "Required for MimeType",
  1361. "ext-ftp": "Allows you to use FTP server storage",
  1362. "ext-openssl": "Allows you to use FTPS server storage",
  1363. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1364. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1365. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1366. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1367. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1368. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1369. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1370. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1371. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1372. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1373. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1374. },
  1375. "type": "library",
  1376. "extra": {
  1377. "branch-alias": {
  1378. "dev-master": "1.1-dev"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "psr-4": {
  1383. "League\\Flysystem\\": "src/"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Frank de Jonge",
  1393. "email": "info@frenky.net"
  1394. }
  1395. ],
  1396. "description": "Filesystem abstraction: Many filesystems, one API.",
  1397. "keywords": [
  1398. "Cloud Files",
  1399. "WebDAV",
  1400. "abstraction",
  1401. "aws",
  1402. "cloud",
  1403. "copy.com",
  1404. "dropbox",
  1405. "file systems",
  1406. "files",
  1407. "filesystem",
  1408. "filesystems",
  1409. "ftp",
  1410. "rackspace",
  1411. "remote",
  1412. "s3",
  1413. "sftp",
  1414. "storage"
  1415. ],
  1416. "support": {
  1417. "issues": "https://github.com/thephpleague/flysystem/issues",
  1418. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1419. },
  1420. "funding": [
  1421. {
  1422. "url": "https://offset.earth/frankdejonge",
  1423. "type": "other"
  1424. }
  1425. ],
  1426. "time": "2020-08-23T07:39:11+00:00"
  1427. },
  1428. {
  1429. "name": "league/mime-type-detection",
  1430. "version": "1.5.1",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1434. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1439. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1440. "shasum": "",
  1441. "mirrors": [
  1442. {
  1443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1444. "preferred": true
  1445. }
  1446. ]
  1447. },
  1448. "require": {
  1449. "ext-fileinfo": "*",
  1450. "php": "^7.2 || ^8.0"
  1451. },
  1452. "require-dev": {
  1453. "phpstan/phpstan": "^0.12.36",
  1454. "phpunit/phpunit": "^8.5.8"
  1455. },
  1456. "type": "library",
  1457. "autoload": {
  1458. "psr-4": {
  1459. "League\\MimeTypeDetection\\": "src"
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Frank de Jonge",
  1469. "email": "info@frankdejonge.nl"
  1470. }
  1471. ],
  1472. "description": "Mime-type detection for Flysystem",
  1473. "support": {
  1474. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1475. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  1476. },
  1477. "funding": [
  1478. {
  1479. "url": "https://github.com/frankdejonge",
  1480. "type": "github"
  1481. },
  1482. {
  1483. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1484. "type": "tidelift"
  1485. }
  1486. ],
  1487. "time": "2020-10-18T11:50:25+00:00"
  1488. },
  1489. {
  1490. "name": "monolog/monolog",
  1491. "version": "2.1.1",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/Seldaek/monolog.git",
  1495. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  1500. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "php": ">=7.2",
  1511. "psr/log": "^1.0.1"
  1512. },
  1513. "provide": {
  1514. "psr/log-implementation": "1.0.0"
  1515. },
  1516. "require-dev": {
  1517. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1518. "doctrine/couchdb": "~1.0@dev",
  1519. "elasticsearch/elasticsearch": "^6.0",
  1520. "graylog2/gelf-php": "^1.4.2",
  1521. "php-amqplib/php-amqplib": "~2.4",
  1522. "php-console/php-console": "^3.1.3",
  1523. "php-parallel-lint/php-parallel-lint": "^1.0",
  1524. "phpspec/prophecy": "^1.6.1",
  1525. "phpunit/phpunit": "^8.5",
  1526. "predis/predis": "^1.1",
  1527. "rollbar/rollbar": "^1.3",
  1528. "ruflin/elastica": ">=0.90 <3.0",
  1529. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1530. },
  1531. "suggest": {
  1532. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1533. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1534. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1535. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1536. "ext-mbstring": "Allow to work properly with unicode symbols",
  1537. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1538. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1539. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1540. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1541. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1542. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1543. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1544. },
  1545. "type": "library",
  1546. "extra": {
  1547. "branch-alias": {
  1548. "dev-master": "2.x-dev"
  1549. }
  1550. },
  1551. "autoload": {
  1552. "psr-4": {
  1553. "Monolog\\": "src/Monolog"
  1554. }
  1555. },
  1556. "notification-url": "https://packagist.org/downloads/",
  1557. "license": [
  1558. "MIT"
  1559. ],
  1560. "authors": [
  1561. {
  1562. "name": "Jordi Boggiano",
  1563. "email": "j.boggiano@seld.be",
  1564. "homepage": "http://seld.be"
  1565. }
  1566. ],
  1567. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1568. "homepage": "http://github.com/Seldaek/monolog",
  1569. "keywords": [
  1570. "log",
  1571. "logging",
  1572. "psr-3"
  1573. ],
  1574. "support": {
  1575. "issues": "https://github.com/Seldaek/monolog/issues",
  1576. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  1577. },
  1578. "funding": [
  1579. {
  1580. "url": "https://github.com/Seldaek",
  1581. "type": "github"
  1582. },
  1583. {
  1584. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1585. "type": "tidelift"
  1586. }
  1587. ],
  1588. "time": "2020-07-23T08:41:23+00:00"
  1589. },
  1590. {
  1591. "name": "nesbot/carbon",
  1592. "version": "2.41.5",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/briannesbitt/Carbon.git",
  1596. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee",
  1601. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee",
  1602. "shasum": "",
  1603. "mirrors": [
  1604. {
  1605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1606. "preferred": true
  1607. }
  1608. ]
  1609. },
  1610. "require": {
  1611. "ext-json": "*",
  1612. "php": "^7.1.8 || ^8.0",
  1613. "symfony/polyfill-mbstring": "^1.0",
  1614. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1615. },
  1616. "require-dev": {
  1617. "doctrine/orm": "^2.7",
  1618. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1619. "kylekatarnls/multi-tester": "^2.0",
  1620. "phpmd/phpmd": "^2.9",
  1621. "phpstan/extension-installer": "^1.0",
  1622. "phpstan/phpstan": "^0.12.35",
  1623. "phpunit/phpunit": "^7.5 || ^8.0",
  1624. "squizlabs/php_codesniffer": "^3.4"
  1625. },
  1626. "bin": [
  1627. "bin/carbon"
  1628. ],
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "2.x-dev",
  1633. "dev-3.x": "3.x-dev"
  1634. },
  1635. "laravel": {
  1636. "providers": [
  1637. "Carbon\\Laravel\\ServiceProvider"
  1638. ]
  1639. },
  1640. "phpstan": {
  1641. "includes": [
  1642. "extension.neon"
  1643. ]
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "Carbon\\": "src/Carbon/"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Brian Nesbitt",
  1658. "email": "brian@nesbot.com",
  1659. "homepage": "http://nesbot.com"
  1660. },
  1661. {
  1662. "name": "kylekatarnls",
  1663. "homepage": "http://github.com/kylekatarnls"
  1664. }
  1665. ],
  1666. "description": "An API extension for DateTime that supports 281 different languages.",
  1667. "homepage": "http://carbon.nesbot.com",
  1668. "keywords": [
  1669. "date",
  1670. "datetime",
  1671. "time"
  1672. ],
  1673. "support": {
  1674. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1675. "source": "https://github.com/briannesbitt/Carbon"
  1676. },
  1677. "funding": [
  1678. {
  1679. "url": "https://opencollective.com/Carbon",
  1680. "type": "open_collective"
  1681. },
  1682. {
  1683. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1684. "type": "tidelift"
  1685. }
  1686. ],
  1687. "time": "2020-10-23T06:02:30+00:00"
  1688. },
  1689. {
  1690. "name": "nikic/php-parser",
  1691. "version": "v4.10.2",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://github.com/nikic/PHP-Parser.git",
  1695. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  1700. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  1701. "shasum": "",
  1702. "mirrors": [
  1703. {
  1704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1705. "preferred": true
  1706. }
  1707. ]
  1708. },
  1709. "require": {
  1710. "ext-tokenizer": "*",
  1711. "php": ">=7.0"
  1712. },
  1713. "require-dev": {
  1714. "ircmaxell/php-yacc": "^0.0.7",
  1715. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1716. },
  1717. "bin": [
  1718. "bin/php-parse"
  1719. ],
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "4.9-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "psr-4": {
  1728. "PhpParser\\": "lib/PhpParser"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Nikita Popov"
  1738. }
  1739. ],
  1740. "description": "A PHP parser written in PHP",
  1741. "keywords": [
  1742. "parser",
  1743. "php"
  1744. ],
  1745. "support": {
  1746. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1747. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
  1748. },
  1749. "time": "2020-09-26T10:30:38+00:00"
  1750. },
  1751. {
  1752. "name": "opis/closure",
  1753. "version": "3.6.1",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/opis/closure.git",
  1757. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1762. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1763. "shasum": "",
  1764. "mirrors": [
  1765. {
  1766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1767. "preferred": true
  1768. }
  1769. ]
  1770. },
  1771. "require": {
  1772. "php": "^5.4 || ^7.0 || ^8.0"
  1773. },
  1774. "require-dev": {
  1775. "jeremeamia/superclosure": "^2.0",
  1776. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1777. },
  1778. "type": "library",
  1779. "extra": {
  1780. "branch-alias": {
  1781. "dev-master": "3.6.x-dev"
  1782. }
  1783. },
  1784. "autoload": {
  1785. "psr-4": {
  1786. "Opis\\Closure\\": "src/"
  1787. },
  1788. "files": [
  1789. "functions.php"
  1790. ]
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "MIT"
  1795. ],
  1796. "authors": [
  1797. {
  1798. "name": "Marius Sarca",
  1799. "email": "marius.sarca@gmail.com"
  1800. },
  1801. {
  1802. "name": "Sorin Sarca",
  1803. "email": "sarca_sorin@hotmail.com"
  1804. }
  1805. ],
  1806. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1807. "homepage": "https://opis.io/closure",
  1808. "keywords": [
  1809. "anonymous functions",
  1810. "closure",
  1811. "function",
  1812. "serializable",
  1813. "serialization",
  1814. "serialize"
  1815. ],
  1816. "support": {
  1817. "issues": "https://github.com/opis/closure/issues",
  1818. "source": "https://github.com/opis/closure/tree/3.6.1"
  1819. },
  1820. "time": "2020-11-07T02:01:34+00:00"
  1821. },
  1822. {
  1823. "name": "phpoption/phpoption",
  1824. "version": "1.7.5",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/schmittjoh/php-option.git",
  1828. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1833. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1834. "shasum": "",
  1835. "mirrors": [
  1836. {
  1837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1838. "preferred": true
  1839. }
  1840. ]
  1841. },
  1842. "require": {
  1843. "php": "^5.5.9 || ^7.0 || ^8.0"
  1844. },
  1845. "require-dev": {
  1846. "bamarni/composer-bin-plugin": "^1.4.1",
  1847. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  1848. },
  1849. "type": "library",
  1850. "extra": {
  1851. "branch-alias": {
  1852. "dev-master": "1.7-dev"
  1853. }
  1854. },
  1855. "autoload": {
  1856. "psr-4": {
  1857. "PhpOption\\": "src/PhpOption/"
  1858. }
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "Apache-2.0"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "Johannes M. Schmitt",
  1867. "email": "schmittjoh@gmail.com"
  1868. },
  1869. {
  1870. "name": "Graham Campbell",
  1871. "email": "graham@alt-three.com"
  1872. }
  1873. ],
  1874. "description": "Option Type for PHP",
  1875. "keywords": [
  1876. "language",
  1877. "option",
  1878. "php",
  1879. "type"
  1880. ],
  1881. "support": {
  1882. "issues": "https://github.com/schmittjoh/php-option/issues",
  1883. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  1884. },
  1885. "funding": [
  1886. {
  1887. "url": "https://github.com/GrahamCampbell",
  1888. "type": "github"
  1889. },
  1890. {
  1891. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1892. "type": "tidelift"
  1893. }
  1894. ],
  1895. "time": "2020-07-20T17:29:33+00:00"
  1896. },
  1897. {
  1898. "name": "psr/container",
  1899. "version": "1.0.0",
  1900. "source": {
  1901. "type": "git",
  1902. "url": "https://github.com/php-fig/container.git",
  1903. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1904. },
  1905. "dist": {
  1906. "type": "zip",
  1907. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1908. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1909. "shasum": "",
  1910. "mirrors": [
  1911. {
  1912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1913. "preferred": true
  1914. }
  1915. ]
  1916. },
  1917. "require": {
  1918. "php": ">=5.3.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "1.0.x-dev"
  1924. }
  1925. },
  1926. "autoload": {
  1927. "psr-4": {
  1928. "Psr\\Container\\": "src/"
  1929. }
  1930. },
  1931. "notification-url": "https://packagist.org/downloads/",
  1932. "license": [
  1933. "MIT"
  1934. ],
  1935. "authors": [
  1936. {
  1937. "name": "PHP-FIG",
  1938. "homepage": "http://www.php-fig.org/"
  1939. }
  1940. ],
  1941. "description": "Common Container Interface (PHP FIG PSR-11)",
  1942. "homepage": "https://github.com/php-fig/container",
  1943. "keywords": [
  1944. "PSR-11",
  1945. "container",
  1946. "container-interface",
  1947. "container-interop",
  1948. "psr"
  1949. ],
  1950. "support": {
  1951. "issues": "https://github.com/php-fig/container/issues",
  1952. "source": "https://github.com/php-fig/container/tree/master"
  1953. },
  1954. "time": "2017-02-14T16:28:37+00:00"
  1955. },
  1956. {
  1957. "name": "psr/event-dispatcher",
  1958. "version": "1.0.0",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/php-fig/event-dispatcher.git",
  1962. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1967. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1968. "shasum": "",
  1969. "mirrors": [
  1970. {
  1971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1972. "preferred": true
  1973. }
  1974. ]
  1975. },
  1976. "require": {
  1977. "php": ">=7.2.0"
  1978. },
  1979. "type": "library",
  1980. "extra": {
  1981. "branch-alias": {
  1982. "dev-master": "1.0.x-dev"
  1983. }
  1984. },
  1985. "autoload": {
  1986. "psr-4": {
  1987. "Psr\\EventDispatcher\\": "src/"
  1988. }
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "MIT"
  1993. ],
  1994. "authors": [
  1995. {
  1996. "name": "PHP-FIG",
  1997. "homepage": "http://www.php-fig.org/"
  1998. }
  1999. ],
  2000. "description": "Standard interfaces for event handling.",
  2001. "keywords": [
  2002. "events",
  2003. "psr",
  2004. "psr-14"
  2005. ],
  2006. "support": {
  2007. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2008. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2009. },
  2010. "time": "2019-01-08T18:20:26+00:00"
  2011. },
  2012. {
  2013. "name": "psr/http-client",
  2014. "version": "1.0.1",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/php-fig/http-client.git",
  2018. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2023. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2024. "shasum": "",
  2025. "mirrors": [
  2026. {
  2027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2028. "preferred": true
  2029. }
  2030. ]
  2031. },
  2032. "require": {
  2033. "php": "^7.0 || ^8.0",
  2034. "psr/http-message": "^1.0"
  2035. },
  2036. "type": "library",
  2037. "extra": {
  2038. "branch-alias": {
  2039. "dev-master": "1.0.x-dev"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-4": {
  2044. "Psr\\Http\\Client\\": "src/"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "MIT"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "PHP-FIG",
  2054. "homepage": "http://www.php-fig.org/"
  2055. }
  2056. ],
  2057. "description": "Common interface for HTTP clients",
  2058. "homepage": "https://github.com/php-fig/http-client",
  2059. "keywords": [
  2060. "http",
  2061. "http-client",
  2062. "psr",
  2063. "psr-18"
  2064. ],
  2065. "support": {
  2066. "source": "https://github.com/php-fig/http-client/tree/master"
  2067. },
  2068. "time": "2020-06-29T06:28:15+00:00"
  2069. },
  2070. {
  2071. "name": "psr/http-message",
  2072. "version": "1.0.1",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://github.com/php-fig/http-message.git",
  2076. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2081. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2082. "shasum": "",
  2083. "mirrors": [
  2084. {
  2085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2086. "preferred": true
  2087. }
  2088. ]
  2089. },
  2090. "require": {
  2091. "php": ">=5.3.0"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "1.0.x-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "psr-4": {
  2101. "Psr\\Http\\Message\\": "src/"
  2102. }
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "MIT"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "PHP-FIG",
  2111. "homepage": "http://www.php-fig.org/"
  2112. }
  2113. ],
  2114. "description": "Common interface for HTTP messages",
  2115. "homepage": "https://github.com/php-fig/http-message",
  2116. "keywords": [
  2117. "http",
  2118. "http-message",
  2119. "psr",
  2120. "psr-7",
  2121. "request",
  2122. "response"
  2123. ],
  2124. "support": {
  2125. "source": "https://github.com/php-fig/http-message/tree/master"
  2126. },
  2127. "time": "2016-08-06T14:39:51+00:00"
  2128. },
  2129. {
  2130. "name": "psr/log",
  2131. "version": "1.1.3",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/php-fig/log.git",
  2135. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2140. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2141. "shasum": "",
  2142. "mirrors": [
  2143. {
  2144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2145. "preferred": true
  2146. }
  2147. ]
  2148. },
  2149. "require": {
  2150. "php": ">=5.3.0"
  2151. },
  2152. "type": "library",
  2153. "extra": {
  2154. "branch-alias": {
  2155. "dev-master": "1.1.x-dev"
  2156. }
  2157. },
  2158. "autoload": {
  2159. "psr-4": {
  2160. "Psr\\Log\\": "Psr/Log/"
  2161. }
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "MIT"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "PHP-FIG",
  2170. "homepage": "http://www.php-fig.org/"
  2171. }
  2172. ],
  2173. "description": "Common interface for logging libraries",
  2174. "homepage": "https://github.com/php-fig/log",
  2175. "keywords": [
  2176. "log",
  2177. "psr",
  2178. "psr-3"
  2179. ],
  2180. "support": {
  2181. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2182. },
  2183. "time": "2020-03-23T09:12:05+00:00"
  2184. },
  2185. {
  2186. "name": "psr/simple-cache",
  2187. "version": "1.0.1",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/php-fig/simple-cache.git",
  2191. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2196. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2197. "shasum": "",
  2198. "mirrors": [
  2199. {
  2200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2201. "preferred": true
  2202. }
  2203. ]
  2204. },
  2205. "require": {
  2206. "php": ">=5.3.0"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "1.0.x-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "Psr\\SimpleCache\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "PHP-FIG",
  2226. "homepage": "http://www.php-fig.org/"
  2227. }
  2228. ],
  2229. "description": "Common interfaces for simple caching",
  2230. "keywords": [
  2231. "cache",
  2232. "caching",
  2233. "psr",
  2234. "psr-16",
  2235. "simple-cache"
  2236. ],
  2237. "support": {
  2238. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2239. },
  2240. "time": "2017-10-23T01:57:42+00:00"
  2241. },
  2242. {
  2243. "name": "psy/psysh",
  2244. "version": "v0.10.4",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/bobthecow/psysh.git",
  2248. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  2253. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  2254. "shasum": "",
  2255. "mirrors": [
  2256. {
  2257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2258. "preferred": true
  2259. }
  2260. ]
  2261. },
  2262. "require": {
  2263. "dnoegel/php-xdg-base-dir": "0.1.*",
  2264. "ext-json": "*",
  2265. "ext-tokenizer": "*",
  2266. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  2267. "php": "^8.0 || ^7.0 || ^5.5.9",
  2268. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  2269. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  2270. },
  2271. "require-dev": {
  2272. "bamarni/composer-bin-plugin": "^1.2",
  2273. "hoa/console": "3.17.*"
  2274. },
  2275. "suggest": {
  2276. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2277. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2278. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2279. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2280. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2281. },
  2282. "bin": [
  2283. "bin/psysh"
  2284. ],
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "0.10.x-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "files": [
  2293. "src/functions.php"
  2294. ],
  2295. "psr-4": {
  2296. "Psy\\": "src/"
  2297. }
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Justin Hileman",
  2306. "email": "justin@justinhileman.info",
  2307. "homepage": "http://justinhileman.com"
  2308. }
  2309. ],
  2310. "description": "An interactive shell for modern PHP.",
  2311. "homepage": "http://psysh.org",
  2312. "keywords": [
  2313. "REPL",
  2314. "console",
  2315. "interactive",
  2316. "shell"
  2317. ],
  2318. "support": {
  2319. "issues": "https://github.com/bobthecow/psysh/issues",
  2320. "source": "https://github.com/bobthecow/psysh/tree/master"
  2321. },
  2322. "time": "2020-05-03T19:32:03+00:00"
  2323. },
  2324. {
  2325. "name": "ralouphie/getallheaders",
  2326. "version": "3.0.3",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/ralouphie/getallheaders.git",
  2330. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2335. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2336. "shasum": "",
  2337. "mirrors": [
  2338. {
  2339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2340. "preferred": true
  2341. }
  2342. ]
  2343. },
  2344. "require": {
  2345. "php": ">=5.6"
  2346. },
  2347. "require-dev": {
  2348. "php-coveralls/php-coveralls": "^2.1",
  2349. "phpunit/phpunit": "^5 || ^6.5"
  2350. },
  2351. "type": "library",
  2352. "autoload": {
  2353. "files": [
  2354. "src/getallheaders.php"
  2355. ]
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "Ralph Khattar",
  2364. "email": "ralph.khattar@gmail.com"
  2365. }
  2366. ],
  2367. "description": "A polyfill for getallheaders.",
  2368. "support": {
  2369. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2370. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2371. },
  2372. "time": "2019-03-08T08:55:37+00:00"
  2373. },
  2374. {
  2375. "name": "ramsey/collection",
  2376. "version": "1.1.1",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/ramsey/collection.git",
  2380. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  2385. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  2386. "shasum": "",
  2387. "mirrors": [
  2388. {
  2389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2390. "preferred": true
  2391. }
  2392. ]
  2393. },
  2394. "require": {
  2395. "php": "^7.2 || ^8"
  2396. },
  2397. "require-dev": {
  2398. "captainhook/captainhook": "^5.3",
  2399. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2400. "ergebnis/composer-normalize": "^2.6",
  2401. "fzaninotto/faker": "^1.5",
  2402. "hamcrest/hamcrest-php": "^2",
  2403. "jangregor/phpstan-prophecy": "^0.6",
  2404. "mockery/mockery": "^1.3",
  2405. "phpstan/extension-installer": "^1",
  2406. "phpstan/phpstan": "^0.12.32",
  2407. "phpstan/phpstan-mockery": "^0.12.5",
  2408. "phpstan/phpstan-phpunit": "^0.12.11",
  2409. "phpunit/phpunit": "^8.5",
  2410. "psy/psysh": "^0.10.4",
  2411. "slevomat/coding-standard": "^6.3",
  2412. "squizlabs/php_codesniffer": "^3.5",
  2413. "vimeo/psalm": "^3.12.2"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-4": {
  2418. "Ramsey\\Collection\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Ben Ramsey",
  2428. "email": "ben@benramsey.com",
  2429. "homepage": "https://benramsey.com"
  2430. }
  2431. ],
  2432. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2433. "keywords": [
  2434. "array",
  2435. "collection",
  2436. "hash",
  2437. "map",
  2438. "queue",
  2439. "set"
  2440. ],
  2441. "support": {
  2442. "issues": "https://github.com/ramsey/collection/issues",
  2443. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  2444. },
  2445. "funding": [
  2446. {
  2447. "url": "https://github.com/ramsey",
  2448. "type": "github"
  2449. }
  2450. ],
  2451. "time": "2020-09-10T20:58:17+00:00"
  2452. },
  2453. {
  2454. "name": "ramsey/uuid",
  2455. "version": "4.1.0",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://github.com/ramsey/uuid.git",
  2459. "reference": "988dbefc7878d0a35f12afb4df1f7dd0bd153c43"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://api.github.com/repos/ramsey/uuid/zipball/988dbefc7878d0a35f12afb4df1f7dd0bd153c43",
  2464. "reference": "988dbefc7878d0a35f12afb4df1f7dd0bd153c43",
  2465. "shasum": "",
  2466. "mirrors": [
  2467. {
  2468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2469. "preferred": true
  2470. }
  2471. ]
  2472. },
  2473. "require": {
  2474. "brick/math": "^0.8",
  2475. "ext-json": "*",
  2476. "php": "^7.2 || ^8",
  2477. "ramsey/collection": "^1.0",
  2478. "symfony/polyfill-ctype": "^1.8"
  2479. },
  2480. "replace": {
  2481. "rhumsaa/uuid": "self.version"
  2482. },
  2483. "require-dev": {
  2484. "codeception/aspect-mock": "^3",
  2485. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  2486. "doctrine/annotations": "^1.8",
  2487. "goaop/framework": "^2",
  2488. "mockery/mockery": "^1.3",
  2489. "moontoast/math": "^1.1",
  2490. "paragonie/random-lib": "^2",
  2491. "php-mock/php-mock-mockery": "^1.3",
  2492. "php-mock/php-mock-phpunit": "^2.5",
  2493. "php-parallel-lint/php-parallel-lint": "^1.1",
  2494. "phpbench/phpbench": "^0.17.1",
  2495. "phpstan/extension-installer": "^1.0",
  2496. "phpstan/phpstan": "^0.12",
  2497. "phpstan/phpstan-mockery": "^0.12",
  2498. "phpstan/phpstan-phpunit": "^0.12",
  2499. "phpunit/phpunit": "^8.5",
  2500. "psy/psysh": "^0.10.0",
  2501. "slevomat/coding-standard": "^6.0",
  2502. "squizlabs/php_codesniffer": "^3.5",
  2503. "vimeo/psalm": "3.9.4"
  2504. },
  2505. "suggest": {
  2506. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2507. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2508. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2509. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2510. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2511. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "4.x-dev"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Ramsey\\Uuid\\": "src/"
  2522. },
  2523. "files": [
  2524. "src/functions.php"
  2525. ]
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2532. "homepage": "https://github.com/ramsey/uuid",
  2533. "keywords": [
  2534. "guid",
  2535. "identifier",
  2536. "uuid"
  2537. ],
  2538. "support": {
  2539. "issues": "https://github.com/ramsey/uuid/issues",
  2540. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2541. "source": "https://github.com/ramsey/uuid"
  2542. },
  2543. "funding": [
  2544. {
  2545. "url": "https://github.com/ramsey",
  2546. "type": "github"
  2547. }
  2548. ],
  2549. "time": "2020-07-28T16:51:01+00:00"
  2550. },
  2551. {
  2552. "name": "swiftmailer/swiftmailer",
  2553. "version": "v6.2.3",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2557. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2562. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2563. "shasum": "",
  2564. "mirrors": [
  2565. {
  2566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2567. "preferred": true
  2568. }
  2569. ]
  2570. },
  2571. "require": {
  2572. "egulias/email-validator": "~2.0",
  2573. "php": ">=7.0.0",
  2574. "symfony/polyfill-iconv": "^1.0",
  2575. "symfony/polyfill-intl-idn": "^1.10",
  2576. "symfony/polyfill-mbstring": "^1.0"
  2577. },
  2578. "require-dev": {
  2579. "mockery/mockery": "~0.9.1",
  2580. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2581. },
  2582. "suggest": {
  2583. "ext-intl": "Needed to support internationalized email addresses",
  2584. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2585. },
  2586. "type": "library",
  2587. "extra": {
  2588. "branch-alias": {
  2589. "dev-master": "6.2-dev"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "files": [
  2594. "lib/swift_required.php"
  2595. ]
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Chris Corbyn"
  2604. },
  2605. {
  2606. "name": "Fabien Potencier",
  2607. "email": "fabien@symfony.com"
  2608. }
  2609. ],
  2610. "description": "Swiftmailer, free feature-rich PHP mailer",
  2611. "homepage": "https://swiftmailer.symfony.com",
  2612. "keywords": [
  2613. "email",
  2614. "mail",
  2615. "mailer"
  2616. ],
  2617. "support": {
  2618. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2619. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.3"
  2620. },
  2621. "time": "2019-11-12T09:31:26+00:00"
  2622. },
  2623. {
  2624. "name": "symfony/console",
  2625. "version": "v5.1.8",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/symfony/console.git",
  2629. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  2634. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  2635. "shasum": "",
  2636. "mirrors": [
  2637. {
  2638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2639. "preferred": true
  2640. }
  2641. ]
  2642. },
  2643. "require": {
  2644. "php": ">=7.2.5",
  2645. "symfony/polyfill-mbstring": "~1.0",
  2646. "symfony/polyfill-php73": "^1.8",
  2647. "symfony/polyfill-php80": "^1.15",
  2648. "symfony/service-contracts": "^1.1|^2",
  2649. "symfony/string": "^5.1"
  2650. },
  2651. "conflict": {
  2652. "symfony/dependency-injection": "<4.4",
  2653. "symfony/dotenv": "<5.1",
  2654. "symfony/event-dispatcher": "<4.4",
  2655. "symfony/lock": "<4.4",
  2656. "symfony/process": "<4.4"
  2657. },
  2658. "provide": {
  2659. "psr/log-implementation": "1.0"
  2660. },
  2661. "require-dev": {
  2662. "psr/log": "~1.0",
  2663. "symfony/config": "^4.4|^5.0",
  2664. "symfony/dependency-injection": "^4.4|^5.0",
  2665. "symfony/event-dispatcher": "^4.4|^5.0",
  2666. "symfony/lock": "^4.4|^5.0",
  2667. "symfony/process": "^4.4|^5.0",
  2668. "symfony/var-dumper": "^4.4|^5.0"
  2669. },
  2670. "suggest": {
  2671. "psr/log": "For using the console logger",
  2672. "symfony/event-dispatcher": "",
  2673. "symfony/lock": "",
  2674. "symfony/process": ""
  2675. },
  2676. "type": "library",
  2677. "autoload": {
  2678. "psr-4": {
  2679. "Symfony\\Component\\Console\\": ""
  2680. },
  2681. "exclude-from-classmap": [
  2682. "/Tests/"
  2683. ]
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Fabien Potencier",
  2692. "email": "fabien@symfony.com"
  2693. },
  2694. {
  2695. "name": "Symfony Community",
  2696. "homepage": "https://symfony.com/contributors"
  2697. }
  2698. ],
  2699. "description": "Symfony Console Component",
  2700. "homepage": "https://symfony.com",
  2701. "support": {
  2702. "source": "https://github.com/symfony/console/tree/v5.1.8"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://symfony.com/sponsor",
  2707. "type": "custom"
  2708. },
  2709. {
  2710. "url": "https://github.com/fabpot",
  2711. "type": "github"
  2712. },
  2713. {
  2714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2715. "type": "tidelift"
  2716. }
  2717. ],
  2718. "time": "2020-10-24T12:01:57+00:00"
  2719. },
  2720. {
  2721. "name": "symfony/css-selector",
  2722. "version": "v5.1.8",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/symfony/css-selector.git",
  2726. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/symfony/css-selector/zipball/6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  2731. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  2732. "shasum": "",
  2733. "mirrors": [
  2734. {
  2735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2736. "preferred": true
  2737. }
  2738. ]
  2739. },
  2740. "require": {
  2741. "php": ">=7.2.5"
  2742. },
  2743. "type": "library",
  2744. "autoload": {
  2745. "psr-4": {
  2746. "Symfony\\Component\\CssSelector\\": ""
  2747. },
  2748. "exclude-from-classmap": [
  2749. "/Tests/"
  2750. ]
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Fabien Potencier",
  2759. "email": "fabien@symfony.com"
  2760. },
  2761. {
  2762. "name": "Jean-François Simon",
  2763. "email": "jeanfrancois.simon@sensiolabs.com"
  2764. },
  2765. {
  2766. "name": "Symfony Community",
  2767. "homepage": "https://symfony.com/contributors"
  2768. }
  2769. ],
  2770. "description": "Symfony CssSelector Component",
  2771. "homepage": "https://symfony.com",
  2772. "support": {
  2773. "source": "https://github.com/symfony/css-selector/tree/v5.1.8"
  2774. },
  2775. "funding": [
  2776. {
  2777. "url": "https://symfony.com/sponsor",
  2778. "type": "custom"
  2779. },
  2780. {
  2781. "url": "https://github.com/fabpot",
  2782. "type": "github"
  2783. },
  2784. {
  2785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2786. "type": "tidelift"
  2787. }
  2788. ],
  2789. "time": "2020-10-24T12:01:57+00:00"
  2790. },
  2791. {
  2792. "name": "symfony/deprecation-contracts",
  2793. "version": "v2.2.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/symfony/deprecation-contracts.git",
  2797. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2802. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2803. "shasum": "",
  2804. "mirrors": [
  2805. {
  2806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2807. "preferred": true
  2808. }
  2809. ]
  2810. },
  2811. "require": {
  2812. "php": ">=7.1"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "2.2-dev"
  2818. },
  2819. "thanks": {
  2820. "name": "symfony/contracts",
  2821. "url": "https://github.com/symfony/contracts"
  2822. }
  2823. },
  2824. "autoload": {
  2825. "files": [
  2826. "function.php"
  2827. ]
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "MIT"
  2832. ],
  2833. "authors": [
  2834. {
  2835. "name": "Nicolas Grekas",
  2836. "email": "p@tchwork.com"
  2837. },
  2838. {
  2839. "name": "Symfony Community",
  2840. "homepage": "https://symfony.com/contributors"
  2841. }
  2842. ],
  2843. "description": "A generic function and convention to trigger deprecation notices",
  2844. "homepage": "https://symfony.com",
  2845. "support": {
  2846. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  2847. },
  2848. "funding": [
  2849. {
  2850. "url": "https://symfony.com/sponsor",
  2851. "type": "custom"
  2852. },
  2853. {
  2854. "url": "https://github.com/fabpot",
  2855. "type": "github"
  2856. },
  2857. {
  2858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2859. "type": "tidelift"
  2860. }
  2861. ],
  2862. "time": "2020-09-07T11:33:47+00:00"
  2863. },
  2864. {
  2865. "name": "symfony/error-handler",
  2866. "version": "v5.1.8",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/symfony/error-handler.git",
  2870. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/symfony/error-handler/zipball/a154f2b12fd1ec708559ba73ed58bd1304e55718",
  2875. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718",
  2876. "shasum": "",
  2877. "mirrors": [
  2878. {
  2879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2880. "preferred": true
  2881. }
  2882. ]
  2883. },
  2884. "require": {
  2885. "php": ">=7.2.5",
  2886. "psr/log": "^1.0",
  2887. "symfony/polyfill-php80": "^1.15",
  2888. "symfony/var-dumper": "^4.4|^5.0"
  2889. },
  2890. "require-dev": {
  2891. "symfony/deprecation-contracts": "^2.1",
  2892. "symfony/http-kernel": "^4.4|^5.0",
  2893. "symfony/serializer": "^4.4|^5.0"
  2894. },
  2895. "type": "library",
  2896. "autoload": {
  2897. "psr-4": {
  2898. "Symfony\\Component\\ErrorHandler\\": ""
  2899. },
  2900. "exclude-from-classmap": [
  2901. "/Tests/"
  2902. ]
  2903. },
  2904. "notification-url": "https://packagist.org/downloads/",
  2905. "license": [
  2906. "MIT"
  2907. ],
  2908. "authors": [
  2909. {
  2910. "name": "Fabien Potencier",
  2911. "email": "fabien@symfony.com"
  2912. },
  2913. {
  2914. "name": "Symfony Community",
  2915. "homepage": "https://symfony.com/contributors"
  2916. }
  2917. ],
  2918. "description": "Symfony ErrorHandler Component",
  2919. "homepage": "https://symfony.com",
  2920. "support": {
  2921. "source": "https://github.com/symfony/error-handler/tree/v5.1.8"
  2922. },
  2923. "funding": [
  2924. {
  2925. "url": "https://symfony.com/sponsor",
  2926. "type": "custom"
  2927. },
  2928. {
  2929. "url": "https://github.com/fabpot",
  2930. "type": "github"
  2931. },
  2932. {
  2933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2934. "type": "tidelift"
  2935. }
  2936. ],
  2937. "time": "2020-10-24T12:01:57+00:00"
  2938. },
  2939. {
  2940. "name": "symfony/event-dispatcher",
  2941. "version": "v5.1.8",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://github.com/symfony/event-dispatcher.git",
  2945. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26f4edae48c913fc183a3da0553fe63bdfbd361a",
  2950. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a",
  2951. "shasum": "",
  2952. "mirrors": [
  2953. {
  2954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2955. "preferred": true
  2956. }
  2957. ]
  2958. },
  2959. "require": {
  2960. "php": ">=7.2.5",
  2961. "symfony/deprecation-contracts": "^2.1",
  2962. "symfony/event-dispatcher-contracts": "^2",
  2963. "symfony/polyfill-php80": "^1.15"
  2964. },
  2965. "conflict": {
  2966. "symfony/dependency-injection": "<4.4"
  2967. },
  2968. "provide": {
  2969. "psr/event-dispatcher-implementation": "1.0",
  2970. "symfony/event-dispatcher-implementation": "2.0"
  2971. },
  2972. "require-dev": {
  2973. "psr/log": "~1.0",
  2974. "symfony/config": "^4.4|^5.0",
  2975. "symfony/dependency-injection": "^4.4|^5.0",
  2976. "symfony/error-handler": "^4.4|^5.0",
  2977. "symfony/expression-language": "^4.4|^5.0",
  2978. "symfony/http-foundation": "^4.4|^5.0",
  2979. "symfony/service-contracts": "^1.1|^2",
  2980. "symfony/stopwatch": "^4.4|^5.0"
  2981. },
  2982. "suggest": {
  2983. "symfony/dependency-injection": "",
  2984. "symfony/http-kernel": ""
  2985. },
  2986. "type": "library",
  2987. "autoload": {
  2988. "psr-4": {
  2989. "Symfony\\Component\\EventDispatcher\\": ""
  2990. },
  2991. "exclude-from-classmap": [
  2992. "/Tests/"
  2993. ]
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "MIT"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "Fabien Potencier",
  3002. "email": "fabien@symfony.com"
  3003. },
  3004. {
  3005. "name": "Symfony Community",
  3006. "homepage": "https://symfony.com/contributors"
  3007. }
  3008. ],
  3009. "description": "Symfony EventDispatcher Component",
  3010. "homepage": "https://symfony.com",
  3011. "support": {
  3012. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.8"
  3013. },
  3014. "funding": [
  3015. {
  3016. "url": "https://symfony.com/sponsor",
  3017. "type": "custom"
  3018. },
  3019. {
  3020. "url": "https://github.com/fabpot",
  3021. "type": "github"
  3022. },
  3023. {
  3024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3025. "type": "tidelift"
  3026. }
  3027. ],
  3028. "time": "2020-10-24T12:01:57+00:00"
  3029. },
  3030. {
  3031. "name": "symfony/event-dispatcher-contracts",
  3032. "version": "v2.2.0",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3036. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  3041. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  3042. "shasum": "",
  3043. "mirrors": [
  3044. {
  3045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3046. "preferred": true
  3047. }
  3048. ]
  3049. },
  3050. "require": {
  3051. "php": ">=7.2.5",
  3052. "psr/event-dispatcher": "^1"
  3053. },
  3054. "suggest": {
  3055. "symfony/event-dispatcher-implementation": ""
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-alias": {
  3060. "dev-master": "2.2-dev"
  3061. },
  3062. "thanks": {
  3063. "name": "symfony/contracts",
  3064. "url": "https://github.com/symfony/contracts"
  3065. }
  3066. },
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Symfony\\Contracts\\EventDispatcher\\": ""
  3070. }
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "authors": [
  3077. {
  3078. "name": "Nicolas Grekas",
  3079. "email": "p@tchwork.com"
  3080. },
  3081. {
  3082. "name": "Symfony Community",
  3083. "homepage": "https://symfony.com/contributors"
  3084. }
  3085. ],
  3086. "description": "Generic abstractions related to dispatching event",
  3087. "homepage": "https://symfony.com",
  3088. "keywords": [
  3089. "abstractions",
  3090. "contracts",
  3091. "decoupling",
  3092. "interfaces",
  3093. "interoperability",
  3094. "standards"
  3095. ],
  3096. "support": {
  3097. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  3098. },
  3099. "funding": [
  3100. {
  3101. "url": "https://symfony.com/sponsor",
  3102. "type": "custom"
  3103. },
  3104. {
  3105. "url": "https://github.com/fabpot",
  3106. "type": "github"
  3107. },
  3108. {
  3109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3110. "type": "tidelift"
  3111. }
  3112. ],
  3113. "time": "2020-09-07T11:33:47+00:00"
  3114. },
  3115. {
  3116. "name": "symfony/finder",
  3117. "version": "v5.1.8",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/symfony/finder.git",
  3121. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  3126. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  3127. "shasum": "",
  3128. "mirrors": [
  3129. {
  3130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3131. "preferred": true
  3132. }
  3133. ]
  3134. },
  3135. "require": {
  3136. "php": ">=7.2.5"
  3137. },
  3138. "type": "library",
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Symfony\\Component\\Finder\\": ""
  3142. },
  3143. "exclude-from-classmap": [
  3144. "/Tests/"
  3145. ]
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Fabien Potencier",
  3154. "email": "fabien@symfony.com"
  3155. },
  3156. {
  3157. "name": "Symfony Community",
  3158. "homepage": "https://symfony.com/contributors"
  3159. }
  3160. ],
  3161. "description": "Symfony Finder Component",
  3162. "homepage": "https://symfony.com",
  3163. "support": {
  3164. "source": "https://github.com/symfony/finder/tree/v5.1.8"
  3165. },
  3166. "funding": [
  3167. {
  3168. "url": "https://symfony.com/sponsor",
  3169. "type": "custom"
  3170. },
  3171. {
  3172. "url": "https://github.com/fabpot",
  3173. "type": "github"
  3174. },
  3175. {
  3176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3177. "type": "tidelift"
  3178. }
  3179. ],
  3180. "time": "2020-10-24T12:01:57+00:00"
  3181. },
  3182. {
  3183. "name": "symfony/http-client-contracts",
  3184. "version": "v2.3.1",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/symfony/http-client-contracts.git",
  3188. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  3193. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "php": ">=7.2.5"
  3204. },
  3205. "suggest": {
  3206. "symfony/http-client-implementation": ""
  3207. },
  3208. "type": "library",
  3209. "extra": {
  3210. "branch-version": "2.3",
  3211. "branch-alias": {
  3212. "dev-main": "2.3-dev"
  3213. },
  3214. "thanks": {
  3215. "name": "symfony/contracts",
  3216. "url": "https://github.com/symfony/contracts"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "Symfony\\Contracts\\HttpClient\\": ""
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "MIT"
  3227. ],
  3228. "authors": [
  3229. {
  3230. "name": "Nicolas Grekas",
  3231. "email": "p@tchwork.com"
  3232. },
  3233. {
  3234. "name": "Symfony Community",
  3235. "homepage": "https://symfony.com/contributors"
  3236. }
  3237. ],
  3238. "description": "Generic abstractions related to HTTP clients",
  3239. "homepage": "https://symfony.com",
  3240. "keywords": [
  3241. "abstractions",
  3242. "contracts",
  3243. "decoupling",
  3244. "interfaces",
  3245. "interoperability",
  3246. "standards"
  3247. ],
  3248. "support": {
  3249. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  3250. },
  3251. "funding": [
  3252. {
  3253. "url": "https://symfony.com/sponsor",
  3254. "type": "custom"
  3255. },
  3256. {
  3257. "url": "https://github.com/fabpot",
  3258. "type": "github"
  3259. },
  3260. {
  3261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3262. "type": "tidelift"
  3263. }
  3264. ],
  3265. "time": "2020-10-14T17:08:19+00:00"
  3266. },
  3267. {
  3268. "name": "symfony/http-foundation",
  3269. "version": "v5.1.8",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://github.com/symfony/http-foundation.git",
  3273. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a2860ec970404b0233ab1e59e0568d3277d32b6f",
  3278. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f",
  3279. "shasum": "",
  3280. "mirrors": [
  3281. {
  3282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3283. "preferred": true
  3284. }
  3285. ]
  3286. },
  3287. "require": {
  3288. "php": ">=7.2.5",
  3289. "symfony/deprecation-contracts": "^2.1",
  3290. "symfony/polyfill-mbstring": "~1.1",
  3291. "symfony/polyfill-php80": "^1.15"
  3292. },
  3293. "require-dev": {
  3294. "predis/predis": "~1.0",
  3295. "symfony/cache": "^4.4|^5.0",
  3296. "symfony/expression-language": "^4.4|^5.0",
  3297. "symfony/mime": "^4.4|^5.0"
  3298. },
  3299. "suggest": {
  3300. "symfony/mime": "To use the file extension guesser"
  3301. },
  3302. "type": "library",
  3303. "autoload": {
  3304. "psr-4": {
  3305. "Symfony\\Component\\HttpFoundation\\": ""
  3306. },
  3307. "exclude-from-classmap": [
  3308. "/Tests/"
  3309. ]
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Fabien Potencier",
  3318. "email": "fabien@symfony.com"
  3319. },
  3320. {
  3321. "name": "Symfony Community",
  3322. "homepage": "https://symfony.com/contributors"
  3323. }
  3324. ],
  3325. "description": "Symfony HttpFoundation Component",
  3326. "homepage": "https://symfony.com",
  3327. "support": {
  3328. "source": "https://github.com/symfony/http-foundation/tree/v5.1.8"
  3329. },
  3330. "funding": [
  3331. {
  3332. "url": "https://symfony.com/sponsor",
  3333. "type": "custom"
  3334. },
  3335. {
  3336. "url": "https://github.com/fabpot",
  3337. "type": "github"
  3338. },
  3339. {
  3340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3341. "type": "tidelift"
  3342. }
  3343. ],
  3344. "time": "2020-10-24T12:01:57+00:00"
  3345. },
  3346. {
  3347. "name": "symfony/http-kernel",
  3348. "version": "v5.1.8",
  3349. "source": {
  3350. "type": "git",
  3351. "url": "https://github.com/symfony/http-kernel.git",
  3352. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd"
  3353. },
  3354. "dist": {
  3355. "type": "zip",
  3356. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  3357. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  3358. "shasum": "",
  3359. "mirrors": [
  3360. {
  3361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3362. "preferred": true
  3363. }
  3364. ]
  3365. },
  3366. "require": {
  3367. "php": ">=7.2.5",
  3368. "psr/log": "~1.0",
  3369. "symfony/deprecation-contracts": "^2.1",
  3370. "symfony/error-handler": "^4.4|^5.0",
  3371. "symfony/event-dispatcher": "^5.0",
  3372. "symfony/http-client-contracts": "^1.1|^2",
  3373. "symfony/http-foundation": "^4.4|^5.0",
  3374. "symfony/polyfill-ctype": "^1.8",
  3375. "symfony/polyfill-php73": "^1.9",
  3376. "symfony/polyfill-php80": "^1.15"
  3377. },
  3378. "conflict": {
  3379. "symfony/browser-kit": "<4.4",
  3380. "symfony/cache": "<5.0",
  3381. "symfony/config": "<5.0",
  3382. "symfony/console": "<4.4",
  3383. "symfony/dependency-injection": "<4.4",
  3384. "symfony/doctrine-bridge": "<5.0",
  3385. "symfony/form": "<5.0",
  3386. "symfony/http-client": "<5.0",
  3387. "symfony/mailer": "<5.0",
  3388. "symfony/messenger": "<5.0",
  3389. "symfony/translation": "<5.0",
  3390. "symfony/twig-bridge": "<5.0",
  3391. "symfony/validator": "<5.0",
  3392. "twig/twig": "<2.4"
  3393. },
  3394. "provide": {
  3395. "psr/log-implementation": "1.0"
  3396. },
  3397. "require-dev": {
  3398. "psr/cache": "~1.0",
  3399. "symfony/browser-kit": "^4.4|^5.0",
  3400. "symfony/config": "^5.0",
  3401. "symfony/console": "^4.4|^5.0",
  3402. "symfony/css-selector": "^4.4|^5.0",
  3403. "symfony/dependency-injection": "^4.4|^5.0",
  3404. "symfony/dom-crawler": "^4.4|^5.0",
  3405. "symfony/expression-language": "^4.4|^5.0",
  3406. "symfony/finder": "^4.4|^5.0",
  3407. "symfony/process": "^4.4|^5.0",
  3408. "symfony/routing": "^4.4|^5.0",
  3409. "symfony/stopwatch": "^4.4|^5.0",
  3410. "symfony/translation": "^4.4|^5.0",
  3411. "symfony/translation-contracts": "^1.1|^2",
  3412. "twig/twig": "^2.4|^3.0"
  3413. },
  3414. "suggest": {
  3415. "symfony/browser-kit": "",
  3416. "symfony/config": "",
  3417. "symfony/console": "",
  3418. "symfony/dependency-injection": ""
  3419. },
  3420. "type": "library",
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Symfony\\Component\\HttpKernel\\": ""
  3424. },
  3425. "exclude-from-classmap": [
  3426. "/Tests/"
  3427. ]
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "Fabien Potencier",
  3436. "email": "fabien@symfony.com"
  3437. },
  3438. {
  3439. "name": "Symfony Community",
  3440. "homepage": "https://symfony.com/contributors"
  3441. }
  3442. ],
  3443. "description": "Symfony HttpKernel Component",
  3444. "homepage": "https://symfony.com",
  3445. "support": {
  3446. "source": "https://github.com/symfony/http-kernel/tree/v5.1.8"
  3447. },
  3448. "funding": [
  3449. {
  3450. "url": "https://symfony.com/sponsor",
  3451. "type": "custom"
  3452. },
  3453. {
  3454. "url": "https://github.com/fabpot",
  3455. "type": "github"
  3456. },
  3457. {
  3458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3459. "type": "tidelift"
  3460. }
  3461. ],
  3462. "time": "2020-10-28T05:55:23+00:00"
  3463. },
  3464. {
  3465. "name": "symfony/mime",
  3466. "version": "v5.1.8",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://github.com/symfony/mime.git",
  3470. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  3475. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  3476. "shasum": "",
  3477. "mirrors": [
  3478. {
  3479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3480. "preferred": true
  3481. }
  3482. ]
  3483. },
  3484. "require": {
  3485. "php": ">=7.2.5",
  3486. "symfony/polyfill-intl-idn": "^1.10",
  3487. "symfony/polyfill-mbstring": "^1.0",
  3488. "symfony/polyfill-php80": "^1.15"
  3489. },
  3490. "conflict": {
  3491. "symfony/mailer": "<4.4"
  3492. },
  3493. "require-dev": {
  3494. "egulias/email-validator": "^2.1.10",
  3495. "symfony/dependency-injection": "^4.4|^5.0"
  3496. },
  3497. "type": "library",
  3498. "autoload": {
  3499. "psr-4": {
  3500. "Symfony\\Component\\Mime\\": ""
  3501. },
  3502. "exclude-from-classmap": [
  3503. "/Tests/"
  3504. ]
  3505. },
  3506. "notification-url": "https://packagist.org/downloads/",
  3507. "license": [
  3508. "MIT"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "Fabien Potencier",
  3513. "email": "fabien@symfony.com"
  3514. },
  3515. {
  3516. "name": "Symfony Community",
  3517. "homepage": "https://symfony.com/contributors"
  3518. }
  3519. ],
  3520. "description": "A library to manipulate MIME messages",
  3521. "homepage": "https://symfony.com",
  3522. "keywords": [
  3523. "mime",
  3524. "mime-type"
  3525. ],
  3526. "support": {
  3527. "source": "https://github.com/symfony/mime/tree/v5.1.8"
  3528. },
  3529. "funding": [
  3530. {
  3531. "url": "https://symfony.com/sponsor",
  3532. "type": "custom"
  3533. },
  3534. {
  3535. "url": "https://github.com/fabpot",
  3536. "type": "github"
  3537. },
  3538. {
  3539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3540. "type": "tidelift"
  3541. }
  3542. ],
  3543. "time": "2020-10-24T12:01:57+00:00"
  3544. },
  3545. {
  3546. "name": "symfony/polyfill-ctype",
  3547. "version": "v1.20.0",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/symfony/polyfill-ctype.git",
  3551. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3556. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3557. "shasum": "",
  3558. "mirrors": [
  3559. {
  3560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3561. "preferred": true
  3562. }
  3563. ]
  3564. },
  3565. "require": {
  3566. "php": ">=7.1"
  3567. },
  3568. "suggest": {
  3569. "ext-ctype": "For best performance"
  3570. },
  3571. "type": "library",
  3572. "extra": {
  3573. "branch-alias": {
  3574. "dev-main": "1.20-dev"
  3575. },
  3576. "thanks": {
  3577. "name": "symfony/polyfill",
  3578. "url": "https://github.com/symfony/polyfill"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "psr-4": {
  3583. "Symfony\\Polyfill\\Ctype\\": ""
  3584. },
  3585. "files": [
  3586. "bootstrap.php"
  3587. ]
  3588. },
  3589. "notification-url": "https://packagist.org/downloads/",
  3590. "license": [
  3591. "MIT"
  3592. ],
  3593. "authors": [
  3594. {
  3595. "name": "Gert de Pagter",
  3596. "email": "BackEndTea@gmail.com"
  3597. },
  3598. {
  3599. "name": "Symfony Community",
  3600. "homepage": "https://symfony.com/contributors"
  3601. }
  3602. ],
  3603. "description": "Symfony polyfill for ctype functions",
  3604. "homepage": "https://symfony.com",
  3605. "keywords": [
  3606. "compatibility",
  3607. "ctype",
  3608. "polyfill",
  3609. "portable"
  3610. ],
  3611. "support": {
  3612. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  3613. },
  3614. "funding": [
  3615. {
  3616. "url": "https://symfony.com/sponsor",
  3617. "type": "custom"
  3618. },
  3619. {
  3620. "url": "https://github.com/fabpot",
  3621. "type": "github"
  3622. },
  3623. {
  3624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3625. "type": "tidelift"
  3626. }
  3627. ],
  3628. "time": "2020-10-23T14:02:19+00:00"
  3629. },
  3630. {
  3631. "name": "symfony/polyfill-iconv",
  3632. "version": "v1.20.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/symfony/polyfill-iconv.git",
  3636. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3641. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3642. "shasum": "",
  3643. "mirrors": [
  3644. {
  3645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3646. "preferred": true
  3647. }
  3648. ]
  3649. },
  3650. "require": {
  3651. "php": ">=7.1"
  3652. },
  3653. "suggest": {
  3654. "ext-iconv": "For best performance"
  3655. },
  3656. "type": "library",
  3657. "extra": {
  3658. "branch-alias": {
  3659. "dev-main": "1.20-dev"
  3660. },
  3661. "thanks": {
  3662. "name": "symfony/polyfill",
  3663. "url": "https://github.com/symfony/polyfill"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Symfony\\Polyfill\\Iconv\\": ""
  3669. },
  3670. "files": [
  3671. "bootstrap.php"
  3672. ]
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "MIT"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "Nicolas Grekas",
  3681. "email": "p@tchwork.com"
  3682. },
  3683. {
  3684. "name": "Symfony Community",
  3685. "homepage": "https://symfony.com/contributors"
  3686. }
  3687. ],
  3688. "description": "Symfony polyfill for the Iconv extension",
  3689. "homepage": "https://symfony.com",
  3690. "keywords": [
  3691. "compatibility",
  3692. "iconv",
  3693. "polyfill",
  3694. "portable",
  3695. "shim"
  3696. ],
  3697. "support": {
  3698. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  3699. },
  3700. "funding": [
  3701. {
  3702. "url": "https://symfony.com/sponsor",
  3703. "type": "custom"
  3704. },
  3705. {
  3706. "url": "https://github.com/fabpot",
  3707. "type": "github"
  3708. },
  3709. {
  3710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3711. "type": "tidelift"
  3712. }
  3713. ],
  3714. "time": "2020-10-23T14:02:19+00:00"
  3715. },
  3716. {
  3717. "name": "symfony/polyfill-intl-grapheme",
  3718. "version": "v1.20.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3722. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  3727. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  3728. "shasum": "",
  3729. "mirrors": [
  3730. {
  3731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3732. "preferred": true
  3733. }
  3734. ]
  3735. },
  3736. "require": {
  3737. "php": ">=7.1"
  3738. },
  3739. "suggest": {
  3740. "ext-intl": "For best performance"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-main": "1.20-dev"
  3746. },
  3747. "thanks": {
  3748. "name": "symfony/polyfill",
  3749. "url": "https://github.com/symfony/polyfill"
  3750. }
  3751. },
  3752. "autoload": {
  3753. "psr-4": {
  3754. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3755. },
  3756. "files": [
  3757. "bootstrap.php"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Nicolas Grekas",
  3767. "email": "p@tchwork.com"
  3768. },
  3769. {
  3770. "name": "Symfony Community",
  3771. "homepage": "https://symfony.com/contributors"
  3772. }
  3773. ],
  3774. "description": "Symfony polyfill for intl's grapheme_* functions",
  3775. "homepage": "https://symfony.com",
  3776. "keywords": [
  3777. "compatibility",
  3778. "grapheme",
  3779. "intl",
  3780. "polyfill",
  3781. "portable",
  3782. "shim"
  3783. ],
  3784. "support": {
  3785. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://symfony.com/sponsor",
  3790. "type": "custom"
  3791. },
  3792. {
  3793. "url": "https://github.com/fabpot",
  3794. "type": "github"
  3795. },
  3796. {
  3797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3798. "type": "tidelift"
  3799. }
  3800. ],
  3801. "time": "2020-10-23T14:02:19+00:00"
  3802. },
  3803. {
  3804. "name": "symfony/polyfill-intl-idn",
  3805. "version": "v1.20.0",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3809. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  3814. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  3815. "shasum": "",
  3816. "mirrors": [
  3817. {
  3818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3819. "preferred": true
  3820. }
  3821. ]
  3822. },
  3823. "require": {
  3824. "php": ">=7.1",
  3825. "symfony/polyfill-intl-normalizer": "^1.10",
  3826. "symfony/polyfill-php72": "^1.10"
  3827. },
  3828. "suggest": {
  3829. "ext-intl": "For best performance"
  3830. },
  3831. "type": "library",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-main": "1.20-dev"
  3835. },
  3836. "thanks": {
  3837. "name": "symfony/polyfill",
  3838. "url": "https://github.com/symfony/polyfill"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "psr-4": {
  3843. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3844. },
  3845. "files": [
  3846. "bootstrap.php"
  3847. ]
  3848. },
  3849. "notification-url": "https://packagist.org/downloads/",
  3850. "license": [
  3851. "MIT"
  3852. ],
  3853. "authors": [
  3854. {
  3855. "name": "Laurent Bassin",
  3856. "email": "laurent@bassin.info"
  3857. },
  3858. {
  3859. "name": "Trevor Rowbotham",
  3860. "email": "trevor.rowbotham@pm.me"
  3861. },
  3862. {
  3863. "name": "Symfony Community",
  3864. "homepage": "https://symfony.com/contributors"
  3865. }
  3866. ],
  3867. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3868. "homepage": "https://symfony.com",
  3869. "keywords": [
  3870. "compatibility",
  3871. "idn",
  3872. "intl",
  3873. "polyfill",
  3874. "portable",
  3875. "shim"
  3876. ],
  3877. "support": {
  3878. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://symfony.com/sponsor",
  3883. "type": "custom"
  3884. },
  3885. {
  3886. "url": "https://github.com/fabpot",
  3887. "type": "github"
  3888. },
  3889. {
  3890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3891. "type": "tidelift"
  3892. }
  3893. ],
  3894. "time": "2020-10-23T14:02:19+00:00"
  3895. },
  3896. {
  3897. "name": "symfony/polyfill-intl-normalizer",
  3898. "version": "v1.20.0",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3902. "reference": "727d1096295d807c309fb01a851577302394c897"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  3907. "reference": "727d1096295d807c309fb01a851577302394c897",
  3908. "shasum": "",
  3909. "mirrors": [
  3910. {
  3911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3912. "preferred": true
  3913. }
  3914. ]
  3915. },
  3916. "require": {
  3917. "php": ">=7.1"
  3918. },
  3919. "suggest": {
  3920. "ext-intl": "For best performance"
  3921. },
  3922. "type": "library",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-main": "1.20-dev"
  3926. },
  3927. "thanks": {
  3928. "name": "symfony/polyfill",
  3929. "url": "https://github.com/symfony/polyfill"
  3930. }
  3931. },
  3932. "autoload": {
  3933. "psr-4": {
  3934. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3935. },
  3936. "files": [
  3937. "bootstrap.php"
  3938. ],
  3939. "classmap": [
  3940. "Resources/stubs"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Nicolas Grekas",
  3950. "email": "p@tchwork.com"
  3951. },
  3952. {
  3953. "name": "Symfony Community",
  3954. "homepage": "https://symfony.com/contributors"
  3955. }
  3956. ],
  3957. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3958. "homepage": "https://symfony.com",
  3959. "keywords": [
  3960. "compatibility",
  3961. "intl",
  3962. "normalizer",
  3963. "polyfill",
  3964. "portable",
  3965. "shim"
  3966. ],
  3967. "support": {
  3968. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  3969. },
  3970. "funding": [
  3971. {
  3972. "url": "https://symfony.com/sponsor",
  3973. "type": "custom"
  3974. },
  3975. {
  3976. "url": "https://github.com/fabpot",
  3977. "type": "github"
  3978. },
  3979. {
  3980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3981. "type": "tidelift"
  3982. }
  3983. ],
  3984. "time": "2020-10-23T14:02:19+00:00"
  3985. },
  3986. {
  3987. "name": "symfony/polyfill-mbstring",
  3988. "version": "v1.20.0",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3992. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  3997. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  3998. "shasum": "",
  3999. "mirrors": [
  4000. {
  4001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4002. "preferred": true
  4003. }
  4004. ]
  4005. },
  4006. "require": {
  4007. "php": ">=7.1"
  4008. },
  4009. "suggest": {
  4010. "ext-mbstring": "For best performance"
  4011. },
  4012. "type": "library",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-main": "1.20-dev"
  4016. },
  4017. "thanks": {
  4018. "name": "symfony/polyfill",
  4019. "url": "https://github.com/symfony/polyfill"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "psr-4": {
  4024. "Symfony\\Polyfill\\Mbstring\\": ""
  4025. },
  4026. "files": [
  4027. "bootstrap.php"
  4028. ]
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "MIT"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Nicolas Grekas",
  4037. "email": "p@tchwork.com"
  4038. },
  4039. {
  4040. "name": "Symfony Community",
  4041. "homepage": "https://symfony.com/contributors"
  4042. }
  4043. ],
  4044. "description": "Symfony polyfill for the Mbstring extension",
  4045. "homepage": "https://symfony.com",
  4046. "keywords": [
  4047. "compatibility",
  4048. "mbstring",
  4049. "polyfill",
  4050. "portable",
  4051. "shim"
  4052. ],
  4053. "support": {
  4054. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  4055. },
  4056. "funding": [
  4057. {
  4058. "url": "https://symfony.com/sponsor",
  4059. "type": "custom"
  4060. },
  4061. {
  4062. "url": "https://github.com/fabpot",
  4063. "type": "github"
  4064. },
  4065. {
  4066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4067. "type": "tidelift"
  4068. }
  4069. ],
  4070. "time": "2020-10-23T14:02:19+00:00"
  4071. },
  4072. {
  4073. "name": "symfony/polyfill-php72",
  4074. "version": "v1.20.0",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/symfony/polyfill-php72.git",
  4078. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  4083. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  4084. "shasum": "",
  4085. "mirrors": [
  4086. {
  4087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4088. "preferred": true
  4089. }
  4090. ]
  4091. },
  4092. "require": {
  4093. "php": ">=7.1"
  4094. },
  4095. "type": "library",
  4096. "extra": {
  4097. "branch-alias": {
  4098. "dev-main": "1.20-dev"
  4099. },
  4100. "thanks": {
  4101. "name": "symfony/polyfill",
  4102. "url": "https://github.com/symfony/polyfill"
  4103. }
  4104. },
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Symfony\\Polyfill\\Php72\\": ""
  4108. },
  4109. "files": [
  4110. "bootstrap.php"
  4111. ]
  4112. },
  4113. "notification-url": "https://packagist.org/downloads/",
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "Nicolas Grekas",
  4120. "email": "p@tchwork.com"
  4121. },
  4122. {
  4123. "name": "Symfony Community",
  4124. "homepage": "https://symfony.com/contributors"
  4125. }
  4126. ],
  4127. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4128. "homepage": "https://symfony.com",
  4129. "keywords": [
  4130. "compatibility",
  4131. "polyfill",
  4132. "portable",
  4133. "shim"
  4134. ],
  4135. "support": {
  4136. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  4137. },
  4138. "funding": [
  4139. {
  4140. "url": "https://symfony.com/sponsor",
  4141. "type": "custom"
  4142. },
  4143. {
  4144. "url": "https://github.com/fabpot",
  4145. "type": "github"
  4146. },
  4147. {
  4148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4149. "type": "tidelift"
  4150. }
  4151. ],
  4152. "time": "2020-10-23T14:02:19+00:00"
  4153. },
  4154. {
  4155. "name": "symfony/polyfill-php73",
  4156. "version": "v1.20.0",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://github.com/symfony/polyfill-php73.git",
  4160. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  4165. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  4166. "shasum": "",
  4167. "mirrors": [
  4168. {
  4169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4170. "preferred": true
  4171. }
  4172. ]
  4173. },
  4174. "require": {
  4175. "php": ">=7.1"
  4176. },
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-main": "1.20-dev"
  4181. },
  4182. "thanks": {
  4183. "name": "symfony/polyfill",
  4184. "url": "https://github.com/symfony/polyfill"
  4185. }
  4186. },
  4187. "autoload": {
  4188. "psr-4": {
  4189. "Symfony\\Polyfill\\Php73\\": ""
  4190. },
  4191. "files": [
  4192. "bootstrap.php"
  4193. ],
  4194. "classmap": [
  4195. "Resources/stubs"
  4196. ]
  4197. },
  4198. "notification-url": "https://packagist.org/downloads/",
  4199. "license": [
  4200. "MIT"
  4201. ],
  4202. "authors": [
  4203. {
  4204. "name": "Nicolas Grekas",
  4205. "email": "p@tchwork.com"
  4206. },
  4207. {
  4208. "name": "Symfony Community",
  4209. "homepage": "https://symfony.com/contributors"
  4210. }
  4211. ],
  4212. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4213. "homepage": "https://symfony.com",
  4214. "keywords": [
  4215. "compatibility",
  4216. "polyfill",
  4217. "portable",
  4218. "shim"
  4219. ],
  4220. "support": {
  4221. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  4222. },
  4223. "funding": [
  4224. {
  4225. "url": "https://symfony.com/sponsor",
  4226. "type": "custom"
  4227. },
  4228. {
  4229. "url": "https://github.com/fabpot",
  4230. "type": "github"
  4231. },
  4232. {
  4233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4234. "type": "tidelift"
  4235. }
  4236. ],
  4237. "time": "2020-10-23T14:02:19+00:00"
  4238. },
  4239. {
  4240. "name": "symfony/polyfill-php80",
  4241. "version": "v1.20.0",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/symfony/polyfill-php80.git",
  4245. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4250. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4251. "shasum": "",
  4252. "mirrors": [
  4253. {
  4254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4255. "preferred": true
  4256. }
  4257. ]
  4258. },
  4259. "require": {
  4260. "php": ">=7.1"
  4261. },
  4262. "type": "library",
  4263. "extra": {
  4264. "branch-alias": {
  4265. "dev-main": "1.20-dev"
  4266. },
  4267. "thanks": {
  4268. "name": "symfony/polyfill",
  4269. "url": "https://github.com/symfony/polyfill"
  4270. }
  4271. },
  4272. "autoload": {
  4273. "psr-4": {
  4274. "Symfony\\Polyfill\\Php80\\": ""
  4275. },
  4276. "files": [
  4277. "bootstrap.php"
  4278. ],
  4279. "classmap": [
  4280. "Resources/stubs"
  4281. ]
  4282. },
  4283. "notification-url": "https://packagist.org/downloads/",
  4284. "license": [
  4285. "MIT"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "Ion Bazan",
  4290. "email": "ion.bazan@gmail.com"
  4291. },
  4292. {
  4293. "name": "Nicolas Grekas",
  4294. "email": "p@tchwork.com"
  4295. },
  4296. {
  4297. "name": "Symfony Community",
  4298. "homepage": "https://symfony.com/contributors"
  4299. }
  4300. ],
  4301. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4302. "homepage": "https://symfony.com",
  4303. "keywords": [
  4304. "compatibility",
  4305. "polyfill",
  4306. "portable",
  4307. "shim"
  4308. ],
  4309. "support": {
  4310. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://symfony.com/sponsor",
  4315. "type": "custom"
  4316. },
  4317. {
  4318. "url": "https://github.com/fabpot",
  4319. "type": "github"
  4320. },
  4321. {
  4322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4323. "type": "tidelift"
  4324. }
  4325. ],
  4326. "time": "2020-10-23T14:02:19+00:00"
  4327. },
  4328. {
  4329. "name": "symfony/process",
  4330. "version": "v5.1.8",
  4331. "source": {
  4332. "type": "git",
  4333. "url": "https://github.com/symfony/process.git",
  4334. "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
  4335. },
  4336. "dist": {
  4337. "type": "zip",
  4338. "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
  4339. "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
  4340. "shasum": "",
  4341. "mirrors": [
  4342. {
  4343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4344. "preferred": true
  4345. }
  4346. ]
  4347. },
  4348. "require": {
  4349. "php": ">=7.2.5",
  4350. "symfony/polyfill-php80": "^1.15"
  4351. },
  4352. "type": "library",
  4353. "autoload": {
  4354. "psr-4": {
  4355. "Symfony\\Component\\Process\\": ""
  4356. },
  4357. "exclude-from-classmap": [
  4358. "/Tests/"
  4359. ]
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Fabien Potencier",
  4368. "email": "fabien@symfony.com"
  4369. },
  4370. {
  4371. "name": "Symfony Community",
  4372. "homepage": "https://symfony.com/contributors"
  4373. }
  4374. ],
  4375. "description": "Symfony Process Component",
  4376. "homepage": "https://symfony.com",
  4377. "support": {
  4378. "source": "https://github.com/symfony/process/tree/v5.1.8"
  4379. },
  4380. "funding": [
  4381. {
  4382. "url": "https://symfony.com/sponsor",
  4383. "type": "custom"
  4384. },
  4385. {
  4386. "url": "https://github.com/fabpot",
  4387. "type": "github"
  4388. },
  4389. {
  4390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4391. "type": "tidelift"
  4392. }
  4393. ],
  4394. "time": "2020-10-24T12:01:57+00:00"
  4395. },
  4396. {
  4397. "name": "symfony/routing",
  4398. "version": "v5.1.8",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://github.com/symfony/routing.git",
  4402. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f"
  4403. },
  4404. "dist": {
  4405. "type": "zip",
  4406. "url": "https://api.github.com/repos/symfony/routing/zipball/d6ceee2a37b61b41079005207bf37746d1bfe71f",
  4407. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f",
  4408. "shasum": "",
  4409. "mirrors": [
  4410. {
  4411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4412. "preferred": true
  4413. }
  4414. ]
  4415. },
  4416. "require": {
  4417. "php": ">=7.2.5",
  4418. "symfony/deprecation-contracts": "^2.1",
  4419. "symfony/polyfill-php80": "^1.15"
  4420. },
  4421. "conflict": {
  4422. "symfony/config": "<5.0",
  4423. "symfony/dependency-injection": "<4.4",
  4424. "symfony/yaml": "<4.4"
  4425. },
  4426. "require-dev": {
  4427. "doctrine/annotations": "~1.2",
  4428. "psr/log": "~1.0",
  4429. "symfony/config": "^5.0",
  4430. "symfony/dependency-injection": "^4.4|^5.0",
  4431. "symfony/expression-language": "^4.4|^5.0",
  4432. "symfony/http-foundation": "^4.4|^5.0",
  4433. "symfony/yaml": "^4.4|^5.0"
  4434. },
  4435. "suggest": {
  4436. "doctrine/annotations": "For using the annotation loader",
  4437. "symfony/config": "For using the all-in-one router or any loader",
  4438. "symfony/expression-language": "For using expression matching",
  4439. "symfony/http-foundation": "For using a Symfony Request object",
  4440. "symfony/yaml": "For using the YAML loader"
  4441. },
  4442. "type": "library",
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Symfony\\Component\\Routing\\": ""
  4446. },
  4447. "exclude-from-classmap": [
  4448. "/Tests/"
  4449. ]
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Fabien Potencier",
  4458. "email": "fabien@symfony.com"
  4459. },
  4460. {
  4461. "name": "Symfony Community",
  4462. "homepage": "https://symfony.com/contributors"
  4463. }
  4464. ],
  4465. "description": "Symfony Routing Component",
  4466. "homepage": "https://symfony.com",
  4467. "keywords": [
  4468. "router",
  4469. "routing",
  4470. "uri",
  4471. "url"
  4472. ],
  4473. "support": {
  4474. "source": "https://github.com/symfony/routing/tree/v5.1.8"
  4475. },
  4476. "funding": [
  4477. {
  4478. "url": "https://symfony.com/sponsor",
  4479. "type": "custom"
  4480. },
  4481. {
  4482. "url": "https://github.com/fabpot",
  4483. "type": "github"
  4484. },
  4485. {
  4486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4487. "type": "tidelift"
  4488. }
  4489. ],
  4490. "time": "2020-10-24T12:01:57+00:00"
  4491. },
  4492. {
  4493. "name": "symfony/service-contracts",
  4494. "version": "v2.2.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/symfony/service-contracts.git",
  4498. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4503. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4504. "shasum": "",
  4505. "mirrors": [
  4506. {
  4507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4508. "preferred": true
  4509. }
  4510. ]
  4511. },
  4512. "require": {
  4513. "php": ">=7.2.5",
  4514. "psr/container": "^1.0"
  4515. },
  4516. "suggest": {
  4517. "symfony/service-implementation": ""
  4518. },
  4519. "type": "library",
  4520. "extra": {
  4521. "branch-alias": {
  4522. "dev-master": "2.2-dev"
  4523. },
  4524. "thanks": {
  4525. "name": "symfony/contracts",
  4526. "url": "https://github.com/symfony/contracts"
  4527. }
  4528. },
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Symfony\\Contracts\\Service\\": ""
  4532. }
  4533. },
  4534. "notification-url": "https://packagist.org/downloads/",
  4535. "license": [
  4536. "MIT"
  4537. ],
  4538. "authors": [
  4539. {
  4540. "name": "Nicolas Grekas",
  4541. "email": "p@tchwork.com"
  4542. },
  4543. {
  4544. "name": "Symfony Community",
  4545. "homepage": "https://symfony.com/contributors"
  4546. }
  4547. ],
  4548. "description": "Generic abstractions related to writing services",
  4549. "homepage": "https://symfony.com",
  4550. "keywords": [
  4551. "abstractions",
  4552. "contracts",
  4553. "decoupling",
  4554. "interfaces",
  4555. "interoperability",
  4556. "standards"
  4557. ],
  4558. "support": {
  4559. "source": "https://github.com/symfony/service-contracts/tree/master"
  4560. },
  4561. "funding": [
  4562. {
  4563. "url": "https://symfony.com/sponsor",
  4564. "type": "custom"
  4565. },
  4566. {
  4567. "url": "https://github.com/fabpot",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4572. "type": "tidelift"
  4573. }
  4574. ],
  4575. "time": "2020-09-07T11:33:47+00:00"
  4576. },
  4577. {
  4578. "name": "symfony/string",
  4579. "version": "v5.1.8",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/symfony/string.git",
  4583. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
  4588. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "php": ">=7.2.5",
  4599. "symfony/polyfill-ctype": "~1.8",
  4600. "symfony/polyfill-intl-grapheme": "~1.0",
  4601. "symfony/polyfill-intl-normalizer": "~1.0",
  4602. "symfony/polyfill-mbstring": "~1.0",
  4603. "symfony/polyfill-php80": "~1.15"
  4604. },
  4605. "require-dev": {
  4606. "symfony/error-handler": "^4.4|^5.0",
  4607. "symfony/http-client": "^4.4|^5.0",
  4608. "symfony/translation-contracts": "^1.1|^2",
  4609. "symfony/var-exporter": "^4.4|^5.0"
  4610. },
  4611. "type": "library",
  4612. "autoload": {
  4613. "psr-4": {
  4614. "Symfony\\Component\\String\\": ""
  4615. },
  4616. "files": [
  4617. "Resources/functions.php"
  4618. ],
  4619. "exclude-from-classmap": [
  4620. "/Tests/"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Nicolas Grekas",
  4630. "email": "p@tchwork.com"
  4631. },
  4632. {
  4633. "name": "Symfony Community",
  4634. "homepage": "https://symfony.com/contributors"
  4635. }
  4636. ],
  4637. "description": "Symfony String component",
  4638. "homepage": "https://symfony.com",
  4639. "keywords": [
  4640. "grapheme",
  4641. "i18n",
  4642. "string",
  4643. "unicode",
  4644. "utf-8",
  4645. "utf8"
  4646. ],
  4647. "support": {
  4648. "source": "https://github.com/symfony/string/tree/v5.1.8"
  4649. },
  4650. "funding": [
  4651. {
  4652. "url": "https://symfony.com/sponsor",
  4653. "type": "custom"
  4654. },
  4655. {
  4656. "url": "https://github.com/fabpot",
  4657. "type": "github"
  4658. },
  4659. {
  4660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4661. "type": "tidelift"
  4662. }
  4663. ],
  4664. "time": "2020-10-24T12:01:57+00:00"
  4665. },
  4666. {
  4667. "name": "symfony/translation",
  4668. "version": "v5.1.8",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/symfony/translation.git",
  4672. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6",
  4677. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6",
  4678. "shasum": "",
  4679. "mirrors": [
  4680. {
  4681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4682. "preferred": true
  4683. }
  4684. ]
  4685. },
  4686. "require": {
  4687. "php": ">=7.2.5",
  4688. "symfony/polyfill-mbstring": "~1.0",
  4689. "symfony/polyfill-php80": "^1.15",
  4690. "symfony/translation-contracts": "^2"
  4691. },
  4692. "conflict": {
  4693. "symfony/config": "<4.4",
  4694. "symfony/dependency-injection": "<5.0",
  4695. "symfony/http-kernel": "<5.0",
  4696. "symfony/twig-bundle": "<5.0",
  4697. "symfony/yaml": "<4.4"
  4698. },
  4699. "provide": {
  4700. "symfony/translation-implementation": "2.0"
  4701. },
  4702. "require-dev": {
  4703. "psr/log": "~1.0",
  4704. "symfony/config": "^4.4|^5.0",
  4705. "symfony/console": "^4.4|^5.0",
  4706. "symfony/dependency-injection": "^5.0",
  4707. "symfony/finder": "^4.4|^5.0",
  4708. "symfony/http-kernel": "^5.0",
  4709. "symfony/intl": "^4.4|^5.0",
  4710. "symfony/service-contracts": "^1.1.2|^2",
  4711. "symfony/yaml": "^4.4|^5.0"
  4712. },
  4713. "suggest": {
  4714. "psr/log-implementation": "To use logging capability in translator",
  4715. "symfony/config": "",
  4716. "symfony/yaml": ""
  4717. },
  4718. "type": "library",
  4719. "autoload": {
  4720. "psr-4": {
  4721. "Symfony\\Component\\Translation\\": ""
  4722. },
  4723. "exclude-from-classmap": [
  4724. "/Tests/"
  4725. ]
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Fabien Potencier",
  4734. "email": "fabien@symfony.com"
  4735. },
  4736. {
  4737. "name": "Symfony Community",
  4738. "homepage": "https://symfony.com/contributors"
  4739. }
  4740. ],
  4741. "description": "Symfony Translation Component",
  4742. "homepage": "https://symfony.com",
  4743. "support": {
  4744. "source": "https://github.com/symfony/translation/tree/v5.1.8"
  4745. },
  4746. "funding": [
  4747. {
  4748. "url": "https://symfony.com/sponsor",
  4749. "type": "custom"
  4750. },
  4751. {
  4752. "url": "https://github.com/fabpot",
  4753. "type": "github"
  4754. },
  4755. {
  4756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4757. "type": "tidelift"
  4758. }
  4759. ],
  4760. "time": "2020-10-24T12:01:57+00:00"
  4761. },
  4762. {
  4763. "name": "symfony/translation-contracts",
  4764. "version": "v2.3.0",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/symfony/translation-contracts.git",
  4768. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4773. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4774. "shasum": "",
  4775. "mirrors": [
  4776. {
  4777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4778. "preferred": true
  4779. }
  4780. ]
  4781. },
  4782. "require": {
  4783. "php": ">=7.2.5"
  4784. },
  4785. "suggest": {
  4786. "symfony/translation-implementation": ""
  4787. },
  4788. "type": "library",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-master": "2.3-dev"
  4792. },
  4793. "thanks": {
  4794. "name": "symfony/contracts",
  4795. "url": "https://github.com/symfony/contracts"
  4796. }
  4797. },
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Symfony\\Contracts\\Translation\\": ""
  4801. }
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "MIT"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "Nicolas Grekas",
  4810. "email": "p@tchwork.com"
  4811. },
  4812. {
  4813. "name": "Symfony Community",
  4814. "homepage": "https://symfony.com/contributors"
  4815. }
  4816. ],
  4817. "description": "Generic abstractions related to translation",
  4818. "homepage": "https://symfony.com",
  4819. "keywords": [
  4820. "abstractions",
  4821. "contracts",
  4822. "decoupling",
  4823. "interfaces",
  4824. "interoperability",
  4825. "standards"
  4826. ],
  4827. "support": {
  4828. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  4829. },
  4830. "funding": [
  4831. {
  4832. "url": "https://symfony.com/sponsor",
  4833. "type": "custom"
  4834. },
  4835. {
  4836. "url": "https://github.com/fabpot",
  4837. "type": "github"
  4838. },
  4839. {
  4840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4841. "type": "tidelift"
  4842. }
  4843. ],
  4844. "time": "2020-09-28T13:05:58+00:00"
  4845. },
  4846. {
  4847. "name": "symfony/var-dumper",
  4848. "version": "v5.1.8",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/symfony/var-dumper.git",
  4852. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  4857. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  4858. "shasum": "",
  4859. "mirrors": [
  4860. {
  4861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4862. "preferred": true
  4863. }
  4864. ]
  4865. },
  4866. "require": {
  4867. "php": ">=7.2.5",
  4868. "symfony/polyfill-mbstring": "~1.0",
  4869. "symfony/polyfill-php80": "^1.15"
  4870. },
  4871. "conflict": {
  4872. "phpunit/phpunit": "<5.4.3",
  4873. "symfony/console": "<4.4"
  4874. },
  4875. "require-dev": {
  4876. "ext-iconv": "*",
  4877. "symfony/console": "^4.4|^5.0",
  4878. "symfony/process": "^4.4|^5.0",
  4879. "twig/twig": "^2.4|^3.0"
  4880. },
  4881. "suggest": {
  4882. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4883. "ext-intl": "To show region name in time zone dump",
  4884. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4885. },
  4886. "bin": [
  4887. "Resources/bin/var-dump-server"
  4888. ],
  4889. "type": "library",
  4890. "autoload": {
  4891. "files": [
  4892. "Resources/functions/dump.php"
  4893. ],
  4894. "psr-4": {
  4895. "Symfony\\Component\\VarDumper\\": ""
  4896. },
  4897. "exclude-from-classmap": [
  4898. "/Tests/"
  4899. ]
  4900. },
  4901. "notification-url": "https://packagist.org/downloads/",
  4902. "license": [
  4903. "MIT"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Nicolas Grekas",
  4908. "email": "p@tchwork.com"
  4909. },
  4910. {
  4911. "name": "Symfony Community",
  4912. "homepage": "https://symfony.com/contributors"
  4913. }
  4914. ],
  4915. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4916. "homepage": "https://symfony.com",
  4917. "keywords": [
  4918. "debug",
  4919. "dump"
  4920. ],
  4921. "support": {
  4922. "source": "https://github.com/symfony/var-dumper/tree/v5.1.8"
  4923. },
  4924. "funding": [
  4925. {
  4926. "url": "https://symfony.com/sponsor",
  4927. "type": "custom"
  4928. },
  4929. {
  4930. "url": "https://github.com/fabpot",
  4931. "type": "github"
  4932. },
  4933. {
  4934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4935. "type": "tidelift"
  4936. }
  4937. ],
  4938. "time": "2020-10-27T10:11:13+00:00"
  4939. },
  4940. {
  4941. "name": "tijsverkoyen/css-to-inline-styles",
  4942. "version": "2.2.3",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4946. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4951. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4952. "shasum": "",
  4953. "mirrors": [
  4954. {
  4955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4956. "preferred": true
  4957. }
  4958. ]
  4959. },
  4960. "require": {
  4961. "ext-dom": "*",
  4962. "ext-libxml": "*",
  4963. "php": "^5.5 || ^7.0 || ^8.0",
  4964. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4965. },
  4966. "require-dev": {
  4967. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  4968. },
  4969. "type": "library",
  4970. "extra": {
  4971. "branch-alias": {
  4972. "dev-master": "2.2.x-dev"
  4973. }
  4974. },
  4975. "autoload": {
  4976. "psr-4": {
  4977. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4978. }
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "BSD-3-Clause"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Tijs Verkoyen",
  4987. "email": "css_to_inline_styles@verkoyen.eu",
  4988. "role": "Developer"
  4989. }
  4990. ],
  4991. "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.",
  4992. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4993. "support": {
  4994. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4995. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  4996. },
  4997. "time": "2020-07-13T06:12:54+00:00"
  4998. },
  4999. {
  5000. "name": "vlucas/phpdotenv",
  5001. "version": "v5.2.0",
  5002. "source": {
  5003. "type": "git",
  5004. "url": "https://github.com/vlucas/phpdotenv.git",
  5005. "reference": "fba64139db67123c7a57072e5f8d3db10d160b66"
  5006. },
  5007. "dist": {
  5008. "type": "zip",
  5009. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/fba64139db67123c7a57072e5f8d3db10d160b66",
  5010. "reference": "fba64139db67123c7a57072e5f8d3db10d160b66",
  5011. "shasum": "",
  5012. "mirrors": [
  5013. {
  5014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5015. "preferred": true
  5016. }
  5017. ]
  5018. },
  5019. "require": {
  5020. "ext-pcre": "*",
  5021. "graham-campbell/result-type": "^1.0.1",
  5022. "php": "^7.1.3 || ^8.0",
  5023. "phpoption/phpoption": "^1.7.4",
  5024. "symfony/polyfill-ctype": "^1.17",
  5025. "symfony/polyfill-mbstring": "^1.17",
  5026. "symfony/polyfill-php80": "^1.17"
  5027. },
  5028. "require-dev": {
  5029. "bamarni/composer-bin-plugin": "^1.4.1",
  5030. "ext-filter": "*",
  5031. "phpunit/phpunit": "^7.5.20 || ^8.5.2 || ^9.0"
  5032. },
  5033. "suggest": {
  5034. "ext-filter": "Required to use the boolean validator."
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-master": "5.2-dev"
  5040. }
  5041. },
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Dotenv\\": "src/"
  5045. }
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "BSD-3-Clause"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Graham Campbell",
  5054. "email": "graham@alt-three.com",
  5055. "homepage": "https://gjcampbell.co.uk/"
  5056. },
  5057. {
  5058. "name": "Vance Lucas",
  5059. "email": "vance@vancelucas.com",
  5060. "homepage": "https://vancelucas.com/"
  5061. }
  5062. ],
  5063. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5064. "keywords": [
  5065. "dotenv",
  5066. "env",
  5067. "environment"
  5068. ],
  5069. "support": {
  5070. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5071. "source": "https://github.com/vlucas/phpdotenv/tree/v5.2.0"
  5072. },
  5073. "funding": [
  5074. {
  5075. "url": "https://github.com/GrahamCampbell",
  5076. "type": "github"
  5077. },
  5078. {
  5079. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5080. "type": "tidelift"
  5081. }
  5082. ],
  5083. "time": "2020-09-14T15:57:31+00:00"
  5084. },
  5085. {
  5086. "name": "voku/portable-ascii",
  5087. "version": "1.5.6",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/voku/portable-ascii.git",
  5091. "reference": "80953678b19901e5165c56752d087fc11526017c"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  5096. "reference": "80953678b19901e5165c56752d087fc11526017c",
  5097. "shasum": "",
  5098. "mirrors": [
  5099. {
  5100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5101. "preferred": true
  5102. }
  5103. ]
  5104. },
  5105. "require": {
  5106. "php": ">=7.0.0"
  5107. },
  5108. "require-dev": {
  5109. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5110. },
  5111. "suggest": {
  5112. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5113. },
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "voku\\": "src/voku/"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Lars Moelleken",
  5127. "homepage": "http://www.moelleken.org/"
  5128. }
  5129. ],
  5130. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5131. "homepage": "https://github.com/voku/portable-ascii",
  5132. "keywords": [
  5133. "ascii",
  5134. "clean",
  5135. "php"
  5136. ],
  5137. "support": {
  5138. "issues": "https://github.com/voku/portable-ascii/issues",
  5139. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  5140. },
  5141. "funding": [
  5142. {
  5143. "url": "https://www.paypal.me/moelleken",
  5144. "type": "custom"
  5145. },
  5146. {
  5147. "url": "https://github.com/voku",
  5148. "type": "github"
  5149. },
  5150. {
  5151. "url": "https://opencollective.com/portable-ascii",
  5152. "type": "open_collective"
  5153. },
  5154. {
  5155. "url": "https://www.patreon.com/voku",
  5156. "type": "patreon"
  5157. },
  5158. {
  5159. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5160. "type": "tidelift"
  5161. }
  5162. ],
  5163. "time": "2020-11-12T00:07:28+00:00"
  5164. },
  5165. {
  5166. "name": "webmozart/assert",
  5167. "version": "1.9.1",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/webmozart/assert.git",
  5171. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5176. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5177. "shasum": "",
  5178. "mirrors": [
  5179. {
  5180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5181. "preferred": true
  5182. }
  5183. ]
  5184. },
  5185. "require": {
  5186. "php": "^5.3.3 || ^7.0 || ^8.0",
  5187. "symfony/polyfill-ctype": "^1.8"
  5188. },
  5189. "conflict": {
  5190. "phpstan/phpstan": "<0.12.20",
  5191. "vimeo/psalm": "<3.9.1"
  5192. },
  5193. "require-dev": {
  5194. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5195. },
  5196. "type": "library",
  5197. "autoload": {
  5198. "psr-4": {
  5199. "Webmozart\\Assert\\": "src/"
  5200. }
  5201. },
  5202. "notification-url": "https://packagist.org/downloads/",
  5203. "license": [
  5204. "MIT"
  5205. ],
  5206. "authors": [
  5207. {
  5208. "name": "Bernhard Schussek",
  5209. "email": "bschussek@gmail.com"
  5210. }
  5211. ],
  5212. "description": "Assertions to validate method input/output with nice error messages.",
  5213. "keywords": [
  5214. "assert",
  5215. "check",
  5216. "validate"
  5217. ],
  5218. "support": {
  5219. "issues": "https://github.com/webmozart/assert/issues",
  5220. "source": "https://github.com/webmozart/assert/tree/master"
  5221. },
  5222. "time": "2020-07-08T17:02:28+00:00"
  5223. }
  5224. ],
  5225. "packages-dev": [
  5226. {
  5227. "name": "doctrine/instantiator",
  5228. "version": "1.4.0",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/doctrine/instantiator.git",
  5232. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5237. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5238. "shasum": "",
  5239. "mirrors": [
  5240. {
  5241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5242. "preferred": true
  5243. }
  5244. ]
  5245. },
  5246. "require": {
  5247. "php": "^7.1 || ^8.0"
  5248. },
  5249. "require-dev": {
  5250. "doctrine/coding-standard": "^8.0",
  5251. "ext-pdo": "*",
  5252. "ext-phar": "*",
  5253. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  5254. "phpstan/phpstan": "^0.12",
  5255. "phpstan/phpstan-phpunit": "^0.12",
  5256. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5257. },
  5258. "type": "library",
  5259. "autoload": {
  5260. "psr-4": {
  5261. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5262. }
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Marco Pivetta",
  5271. "email": "ocramius@gmail.com",
  5272. "homepage": "https://ocramius.github.io/"
  5273. }
  5274. ],
  5275. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5276. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5277. "keywords": [
  5278. "constructor",
  5279. "instantiate"
  5280. ],
  5281. "support": {
  5282. "issues": "https://github.com/doctrine/instantiator/issues",
  5283. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  5284. },
  5285. "funding": [
  5286. {
  5287. "url": "https://www.doctrine-project.org/sponsorship.html",
  5288. "type": "custom"
  5289. },
  5290. {
  5291. "url": "https://www.patreon.com/phpdoctrine",
  5292. "type": "patreon"
  5293. },
  5294. {
  5295. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5296. "type": "tidelift"
  5297. }
  5298. ],
  5299. "time": "2020-11-10T18:47:58+00:00"
  5300. },
  5301. {
  5302. "name": "facade/flare-client-php",
  5303. "version": "1.3.7",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://github.com/facade/flare-client-php.git",
  5307. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5312. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5313. "shasum": "",
  5314. "mirrors": [
  5315. {
  5316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5317. "preferred": true
  5318. }
  5319. ]
  5320. },
  5321. "require": {
  5322. "facade/ignition-contracts": "~1.0",
  5323. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5324. "php": "^7.1|^8.0",
  5325. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5326. "symfony/mime": "^3.4|^4.0|^5.1",
  5327. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5328. },
  5329. "require-dev": {
  5330. "friendsofphp/php-cs-fixer": "^2.14",
  5331. "phpunit/phpunit": "^7.5.16",
  5332. "spatie/phpunit-snapshot-assertions": "^2.0"
  5333. },
  5334. "type": "library",
  5335. "extra": {
  5336. "branch-alias": {
  5337. "dev-master": "1.0-dev"
  5338. }
  5339. },
  5340. "autoload": {
  5341. "psr-4": {
  5342. "Facade\\FlareClient\\": "src"
  5343. },
  5344. "files": [
  5345. "src/helpers.php"
  5346. ]
  5347. },
  5348. "notification-url": "https://packagist.org/downloads/",
  5349. "license": [
  5350. "MIT"
  5351. ],
  5352. "description": "Send PHP errors to Flare",
  5353. "homepage": "https://github.com/facade/flare-client-php",
  5354. "keywords": [
  5355. "exception",
  5356. "facade",
  5357. "flare",
  5358. "reporting"
  5359. ],
  5360. "support": {
  5361. "issues": "https://github.com/facade/flare-client-php/issues",
  5362. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  5363. },
  5364. "funding": [
  5365. {
  5366. "url": "https://github.com/spatie",
  5367. "type": "github"
  5368. }
  5369. ],
  5370. "time": "2020-10-21T16:02:39+00:00"
  5371. },
  5372. {
  5373. "name": "facade/ignition",
  5374. "version": "2.5.2",
  5375. "source": {
  5376. "type": "git",
  5377. "url": "https://github.com/facade/ignition.git",
  5378. "reference": "08668034beb185fa2ac6f09b1034eaa440952ace"
  5379. },
  5380. "dist": {
  5381. "type": "zip",
  5382. "url": "https://api.github.com/repos/facade/ignition/zipball/08668034beb185fa2ac6f09b1034eaa440952ace",
  5383. "reference": "08668034beb185fa2ac6f09b1034eaa440952ace",
  5384. "shasum": "",
  5385. "mirrors": [
  5386. {
  5387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5388. "preferred": true
  5389. }
  5390. ]
  5391. },
  5392. "require": {
  5393. "ext-json": "*",
  5394. "ext-mbstring": "*",
  5395. "facade/flare-client-php": "^1.3.7",
  5396. "facade/ignition-contracts": "^1.0.2",
  5397. "filp/whoops": "^2.4",
  5398. "illuminate/support": "^7.0|^8.0",
  5399. "monolog/monolog": "^2.0",
  5400. "php": "^7.2.5|^8.0",
  5401. "symfony/console": "^5.0",
  5402. "symfony/var-dumper": "^5.0"
  5403. },
  5404. "require-dev": {
  5405. "friendsofphp/php-cs-fixer": "^2.14",
  5406. "mockery/mockery": "^1.3",
  5407. "orchestra/testbench": "^5.0|^6.0",
  5408. "psalm/plugin-laravel": "^1.2"
  5409. },
  5410. "suggest": {
  5411. "laravel/telescope": "^3.1"
  5412. },
  5413. "type": "library",
  5414. "extra": {
  5415. "branch-alias": {
  5416. "dev-master": "2.x-dev"
  5417. },
  5418. "laravel": {
  5419. "providers": [
  5420. "Facade\\Ignition\\IgnitionServiceProvider"
  5421. ],
  5422. "aliases": {
  5423. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5424. }
  5425. }
  5426. },
  5427. "autoload": {
  5428. "psr-4": {
  5429. "Facade\\Ignition\\": "src"
  5430. },
  5431. "files": [
  5432. "src/helpers.php"
  5433. ]
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "description": "A beautiful error page for Laravel applications.",
  5440. "homepage": "https://github.com/facade/ignition",
  5441. "keywords": [
  5442. "error",
  5443. "flare",
  5444. "laravel",
  5445. "page"
  5446. ],
  5447. "support": {
  5448. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5449. "forum": "https://twitter.com/flareappio",
  5450. "issues": "https://github.com/facade/ignition/issues",
  5451. "source": "https://github.com/facade/ignition"
  5452. },
  5453. "time": "2020-11-17T09:18:51+00:00"
  5454. },
  5455. {
  5456. "name": "facade/ignition-contracts",
  5457. "version": "1.0.2",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://github.com/facade/ignition-contracts.git",
  5461. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5466. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5467. "shasum": "",
  5468. "mirrors": [
  5469. {
  5470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5471. "preferred": true
  5472. }
  5473. ]
  5474. },
  5475. "require": {
  5476. "php": "^7.3|^8.0"
  5477. },
  5478. "require-dev": {
  5479. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5480. "phpunit/phpunit": "^9.3.11",
  5481. "vimeo/psalm": "^3.17.1"
  5482. },
  5483. "type": "library",
  5484. "autoload": {
  5485. "psr-4": {
  5486. "Facade\\IgnitionContracts\\": "src"
  5487. }
  5488. },
  5489. "notification-url": "https://packagist.org/downloads/",
  5490. "license": [
  5491. "MIT"
  5492. ],
  5493. "authors": [
  5494. {
  5495. "name": "Freek Van der Herten",
  5496. "email": "freek@spatie.be",
  5497. "homepage": "https://flareapp.io",
  5498. "role": "Developer"
  5499. }
  5500. ],
  5501. "description": "Solution contracts for Ignition",
  5502. "homepage": "https://github.com/facade/ignition-contracts",
  5503. "keywords": [
  5504. "contracts",
  5505. "flare",
  5506. "ignition"
  5507. ],
  5508. "support": {
  5509. "issues": "https://github.com/facade/ignition-contracts/issues",
  5510. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5511. },
  5512. "time": "2020-10-16T08:27:54+00:00"
  5513. },
  5514. {
  5515. "name": "fakerphp/faker",
  5516. "version": "v1.12.0",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/FakerPHP/Faker.git",
  5520. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/9aa6c9e289860951e6b4d010c7a841802d015cd8",
  5525. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8",
  5526. "shasum": "",
  5527. "mirrors": [
  5528. {
  5529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5530. "preferred": true
  5531. }
  5532. ]
  5533. },
  5534. "require": {
  5535. "php": "^7.1 || ^8.0"
  5536. },
  5537. "conflict": {
  5538. "fzaninotto/faker": "*"
  5539. },
  5540. "require-dev": {
  5541. "bamarni/composer-bin-plugin": "^1.4.1",
  5542. "ext-intl": "*",
  5543. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  5544. },
  5545. "type": "library",
  5546. "autoload": {
  5547. "psr-4": {
  5548. "Faker\\": "src/Faker/"
  5549. }
  5550. },
  5551. "notification-url": "https://packagist.org/downloads/",
  5552. "license": [
  5553. "MIT"
  5554. ],
  5555. "authors": [
  5556. {
  5557. "name": "François Zaninotto"
  5558. }
  5559. ],
  5560. "description": "Faker is a PHP library that generates fake data for you.",
  5561. "keywords": [
  5562. "data",
  5563. "faker",
  5564. "fixtures"
  5565. ],
  5566. "support": {
  5567. "issues": "https://github.com/FakerPHP/Faker/issues",
  5568. "source": "https://github.com/FakerPHP/Faker/tree/v1.12.0"
  5569. },
  5570. "time": "2020-11-23T09:33:08+00:00"
  5571. },
  5572. {
  5573. "name": "filp/whoops",
  5574. "version": "2.9.0",
  5575. "source": {
  5576. "type": "git",
  5577. "url": "https://github.com/filp/whoops.git",
  5578. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8"
  5579. },
  5580. "dist": {
  5581. "type": "zip",
  5582. "url": "https://api.github.com/repos/filp/whoops/zipball/2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  5583. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  5584. "shasum": "",
  5585. "mirrors": [
  5586. {
  5587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5588. "preferred": true
  5589. }
  5590. ]
  5591. },
  5592. "require": {
  5593. "php": "^5.5.9 || ^7.0 || ^8.0",
  5594. "psr/log": "^1.0.1"
  5595. },
  5596. "require-dev": {
  5597. "mockery/mockery": "^0.9 || ^1.0",
  5598. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5599. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5600. },
  5601. "suggest": {
  5602. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5603. "whoops/soap": "Formats errors as SOAP responses"
  5604. },
  5605. "type": "library",
  5606. "extra": {
  5607. "branch-alias": {
  5608. "dev-master": "2.7-dev"
  5609. }
  5610. },
  5611. "autoload": {
  5612. "psr-4": {
  5613. "Whoops\\": "src/Whoops/"
  5614. }
  5615. },
  5616. "notification-url": "https://packagist.org/downloads/",
  5617. "license": [
  5618. "MIT"
  5619. ],
  5620. "authors": [
  5621. {
  5622. "name": "Filipe Dobreira",
  5623. "homepage": "https://github.com/filp",
  5624. "role": "Developer"
  5625. }
  5626. ],
  5627. "description": "php error handling for cool kids",
  5628. "homepage": "https://filp.github.io/whoops/",
  5629. "keywords": [
  5630. "error",
  5631. "exception",
  5632. "handling",
  5633. "library",
  5634. "throwable",
  5635. "whoops"
  5636. ],
  5637. "support": {
  5638. "issues": "https://github.com/filp/whoops/issues",
  5639. "source": "https://github.com/filp/whoops/tree/2.9.0"
  5640. },
  5641. "time": "2020-10-20T12:00:00+00:00"
  5642. },
  5643. {
  5644. "name": "hamcrest/hamcrest-php",
  5645. "version": "v2.0.1",
  5646. "source": {
  5647. "type": "git",
  5648. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5649. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5650. },
  5651. "dist": {
  5652. "type": "zip",
  5653. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5654. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5655. "shasum": "",
  5656. "mirrors": [
  5657. {
  5658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5659. "preferred": true
  5660. }
  5661. ]
  5662. },
  5663. "require": {
  5664. "php": "^5.3|^7.0|^8.0"
  5665. },
  5666. "replace": {
  5667. "cordoval/hamcrest-php": "*",
  5668. "davedevelopment/hamcrest-php": "*",
  5669. "kodova/hamcrest-php": "*"
  5670. },
  5671. "require-dev": {
  5672. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5673. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5674. },
  5675. "type": "library",
  5676. "extra": {
  5677. "branch-alias": {
  5678. "dev-master": "2.1-dev"
  5679. }
  5680. },
  5681. "autoload": {
  5682. "classmap": [
  5683. "hamcrest"
  5684. ]
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "BSD-3-Clause"
  5689. ],
  5690. "description": "This is the PHP port of Hamcrest Matchers",
  5691. "keywords": [
  5692. "test"
  5693. ],
  5694. "support": {
  5695. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5696. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5697. },
  5698. "time": "2020-07-09T08:09:16+00:00"
  5699. },
  5700. {
  5701. "name": "mockery/mockery",
  5702. "version": "1.4.2",
  5703. "source": {
  5704. "type": "git",
  5705. "url": "https://github.com/mockery/mockery.git",
  5706. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  5707. },
  5708. "dist": {
  5709. "type": "zip",
  5710. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  5711. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  5712. "shasum": "",
  5713. "mirrors": [
  5714. {
  5715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5716. "preferred": true
  5717. }
  5718. ]
  5719. },
  5720. "require": {
  5721. "hamcrest/hamcrest-php": "^2.0.1",
  5722. "lib-pcre": ">=7.0",
  5723. "php": "^7.3 || ^8.0"
  5724. },
  5725. "conflict": {
  5726. "phpunit/phpunit": "<8.0"
  5727. },
  5728. "require-dev": {
  5729. "phpunit/phpunit": "^8.5 || ^9.3"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "1.4.x-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "psr-0": {
  5739. "Mockery": "library/"
  5740. }
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "BSD-3-Clause"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "Pádraic Brady",
  5749. "email": "padraic.brady@gmail.com",
  5750. "homepage": "http://blog.astrumfutura.com"
  5751. },
  5752. {
  5753. "name": "Dave Marshall",
  5754. "email": "dave.marshall@atstsolutions.co.uk",
  5755. "homepage": "http://davedevelopment.co.uk"
  5756. }
  5757. ],
  5758. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5759. "homepage": "https://github.com/mockery/mockery",
  5760. "keywords": [
  5761. "BDD",
  5762. "TDD",
  5763. "library",
  5764. "mock",
  5765. "mock objects",
  5766. "mockery",
  5767. "stub",
  5768. "test",
  5769. "test double",
  5770. "testing"
  5771. ],
  5772. "support": {
  5773. "issues": "https://github.com/mockery/mockery/issues",
  5774. "source": "https://github.com/mockery/mockery/tree/master"
  5775. },
  5776. "time": "2020-08-11T18:10:13+00:00"
  5777. },
  5778. {
  5779. "name": "myclabs/deep-copy",
  5780. "version": "1.10.2",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/myclabs/DeepCopy.git",
  5784. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5789. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5790. "shasum": "",
  5791. "mirrors": [
  5792. {
  5793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5794. "preferred": true
  5795. }
  5796. ]
  5797. },
  5798. "require": {
  5799. "php": "^7.1 || ^8.0"
  5800. },
  5801. "replace": {
  5802. "myclabs/deep-copy": "self.version"
  5803. },
  5804. "require-dev": {
  5805. "doctrine/collections": "^1.0",
  5806. "doctrine/common": "^2.6",
  5807. "phpunit/phpunit": "^7.1"
  5808. },
  5809. "type": "library",
  5810. "autoload": {
  5811. "psr-4": {
  5812. "DeepCopy\\": "src/DeepCopy/"
  5813. },
  5814. "files": [
  5815. "src/DeepCopy/deep_copy.php"
  5816. ]
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "description": "Create deep copies (clones) of your objects",
  5823. "keywords": [
  5824. "clone",
  5825. "copy",
  5826. "duplicate",
  5827. "object",
  5828. "object graph"
  5829. ],
  5830. "support": {
  5831. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5832. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  5833. },
  5834. "funding": [
  5835. {
  5836. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5837. "type": "tidelift"
  5838. }
  5839. ],
  5840. "time": "2020-11-13T09:40:50+00:00"
  5841. },
  5842. {
  5843. "name": "nunomaduro/collision",
  5844. "version": "v5.1.0",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/nunomaduro/collision.git",
  5848. "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
  5853. "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
  5854. "shasum": "",
  5855. "mirrors": [
  5856. {
  5857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5858. "preferred": true
  5859. }
  5860. ]
  5861. },
  5862. "require": {
  5863. "facade/ignition-contracts": "^1.0",
  5864. "filp/whoops": "^2.7.2",
  5865. "php": "^7.3 || ^8.0",
  5866. "symfony/console": "^5.0"
  5867. },
  5868. "require-dev": {
  5869. "fideloper/proxy": "^4.4.0",
  5870. "friendsofphp/php-cs-fixer": "^2.16.4",
  5871. "fruitcake/laravel-cors": "^2.0.1",
  5872. "laravel/framework": "^8.0",
  5873. "laravel/tinker": "^2.4.1",
  5874. "nunomaduro/larastan": "^0.6.2",
  5875. "nunomaduro/mock-final-classes": "^1.0",
  5876. "orchestra/testbench": "^6.0",
  5877. "phpstan/phpstan": "^0.12.36",
  5878. "phpunit/phpunit": "^9.3.3"
  5879. },
  5880. "type": "library",
  5881. "extra": {
  5882. "laravel": {
  5883. "providers": [
  5884. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5885. ]
  5886. }
  5887. },
  5888. "autoload": {
  5889. "psr-4": {
  5890. "NunoMaduro\\Collision\\": "src/"
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Nuno Maduro",
  5900. "email": "enunomaduro@gmail.com"
  5901. }
  5902. ],
  5903. "description": "Cli error handling for console/command-line PHP applications.",
  5904. "keywords": [
  5905. "artisan",
  5906. "cli",
  5907. "command-line",
  5908. "console",
  5909. "error",
  5910. "handling",
  5911. "laravel",
  5912. "laravel-zero",
  5913. "php",
  5914. "symfony"
  5915. ],
  5916. "support": {
  5917. "issues": "https://github.com/nunomaduro/collision/issues",
  5918. "source": "https://github.com/nunomaduro/collision"
  5919. },
  5920. "funding": [
  5921. {
  5922. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5923. "type": "custom"
  5924. },
  5925. {
  5926. "url": "https://github.com/nunomaduro",
  5927. "type": "github"
  5928. },
  5929. {
  5930. "url": "https://www.patreon.com/nunomaduro",
  5931. "type": "patreon"
  5932. }
  5933. ],
  5934. "time": "2020-10-29T14:50:40+00:00"
  5935. },
  5936. {
  5937. "name": "phar-io/manifest",
  5938. "version": "2.0.1",
  5939. "source": {
  5940. "type": "git",
  5941. "url": "https://github.com/phar-io/manifest.git",
  5942. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  5943. },
  5944. "dist": {
  5945. "type": "zip",
  5946. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5947. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5948. "shasum": "",
  5949. "mirrors": [
  5950. {
  5951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5952. "preferred": true
  5953. }
  5954. ]
  5955. },
  5956. "require": {
  5957. "ext-dom": "*",
  5958. "ext-phar": "*",
  5959. "ext-xmlwriter": "*",
  5960. "phar-io/version": "^3.0.1",
  5961. "php": "^7.2 || ^8.0"
  5962. },
  5963. "type": "library",
  5964. "extra": {
  5965. "branch-alias": {
  5966. "dev-master": "2.0.x-dev"
  5967. }
  5968. },
  5969. "autoload": {
  5970. "classmap": [
  5971. "src/"
  5972. ]
  5973. },
  5974. "notification-url": "https://packagist.org/downloads/",
  5975. "license": [
  5976. "BSD-3-Clause"
  5977. ],
  5978. "authors": [
  5979. {
  5980. "name": "Arne Blankerts",
  5981. "email": "arne@blankerts.de",
  5982. "role": "Developer"
  5983. },
  5984. {
  5985. "name": "Sebastian Heuer",
  5986. "email": "sebastian@phpeople.de",
  5987. "role": "Developer"
  5988. },
  5989. {
  5990. "name": "Sebastian Bergmann",
  5991. "email": "sebastian@phpunit.de",
  5992. "role": "Developer"
  5993. }
  5994. ],
  5995. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5996. "support": {
  5997. "issues": "https://github.com/phar-io/manifest/issues",
  5998. "source": "https://github.com/phar-io/manifest/tree/master"
  5999. },
  6000. "time": "2020-06-27T14:33:11+00:00"
  6001. },
  6002. {
  6003. "name": "phar-io/version",
  6004. "version": "3.0.2",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/phar-io/version.git",
  6008. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/phar-io/version/zipball/c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  6013. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  6014. "shasum": "",
  6015. "mirrors": [
  6016. {
  6017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6018. "preferred": true
  6019. }
  6020. ]
  6021. },
  6022. "require": {
  6023. "php": "^7.2 || ^8.0"
  6024. },
  6025. "type": "library",
  6026. "autoload": {
  6027. "classmap": [
  6028. "src/"
  6029. ]
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "BSD-3-Clause"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Arne Blankerts",
  6038. "email": "arne@blankerts.de",
  6039. "role": "Developer"
  6040. },
  6041. {
  6042. "name": "Sebastian Heuer",
  6043. "email": "sebastian@phpeople.de",
  6044. "role": "Developer"
  6045. },
  6046. {
  6047. "name": "Sebastian Bergmann",
  6048. "email": "sebastian@phpunit.de",
  6049. "role": "Developer"
  6050. }
  6051. ],
  6052. "description": "Library for handling version information and constraints",
  6053. "support": {
  6054. "issues": "https://github.com/phar-io/version/issues",
  6055. "source": "https://github.com/phar-io/version/tree/master"
  6056. },
  6057. "time": "2020-06-27T14:39:04+00:00"
  6058. },
  6059. {
  6060. "name": "phpdocumentor/reflection-common",
  6061. "version": "2.2.0",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6065. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6070. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6071. "shasum": "",
  6072. "mirrors": [
  6073. {
  6074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6075. "preferred": true
  6076. }
  6077. ]
  6078. },
  6079. "require": {
  6080. "php": "^7.2 || ^8.0"
  6081. },
  6082. "type": "library",
  6083. "extra": {
  6084. "branch-alias": {
  6085. "dev-2.x": "2.x-dev"
  6086. }
  6087. },
  6088. "autoload": {
  6089. "psr-4": {
  6090. "phpDocumentor\\Reflection\\": "src/"
  6091. }
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "Jaap van Otterdijk",
  6100. "email": "opensource@ijaap.nl"
  6101. }
  6102. ],
  6103. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6104. "homepage": "http://www.phpdoc.org",
  6105. "keywords": [
  6106. "FQSEN",
  6107. "phpDocumentor",
  6108. "phpdoc",
  6109. "reflection",
  6110. "static analysis"
  6111. ],
  6112. "support": {
  6113. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6114. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6115. },
  6116. "time": "2020-06-27T09:03:43+00:00"
  6117. },
  6118. {
  6119. "name": "phpdocumentor/reflection-docblock",
  6120. "version": "5.2.2",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6124. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  6129. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  6130. "shasum": "",
  6131. "mirrors": [
  6132. {
  6133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6134. "preferred": true
  6135. }
  6136. ]
  6137. },
  6138. "require": {
  6139. "ext-filter": "*",
  6140. "php": "^7.2 || ^8.0",
  6141. "phpdocumentor/reflection-common": "^2.2",
  6142. "phpdocumentor/type-resolver": "^1.3",
  6143. "webmozart/assert": "^1.9.1"
  6144. },
  6145. "require-dev": {
  6146. "mockery/mockery": "~1.3.2"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-master": "5.x-dev"
  6152. }
  6153. },
  6154. "autoload": {
  6155. "psr-4": {
  6156. "phpDocumentor\\Reflection\\": "src"
  6157. }
  6158. },
  6159. "notification-url": "https://packagist.org/downloads/",
  6160. "license": [
  6161. "MIT"
  6162. ],
  6163. "authors": [
  6164. {
  6165. "name": "Mike van Riel",
  6166. "email": "me@mikevanriel.com"
  6167. },
  6168. {
  6169. "name": "Jaap van Otterdijk",
  6170. "email": "account@ijaap.nl"
  6171. }
  6172. ],
  6173. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6174. "support": {
  6175. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6176. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  6177. },
  6178. "time": "2020-09-03T19:13:55+00:00"
  6179. },
  6180. {
  6181. "name": "phpdocumentor/type-resolver",
  6182. "version": "1.4.0",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6186. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6191. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6192. "shasum": "",
  6193. "mirrors": [
  6194. {
  6195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6196. "preferred": true
  6197. }
  6198. ]
  6199. },
  6200. "require": {
  6201. "php": "^7.2 || ^8.0",
  6202. "phpdocumentor/reflection-common": "^2.0"
  6203. },
  6204. "require-dev": {
  6205. "ext-tokenizer": "*"
  6206. },
  6207. "type": "library",
  6208. "extra": {
  6209. "branch-alias": {
  6210. "dev-1.x": "1.x-dev"
  6211. }
  6212. },
  6213. "autoload": {
  6214. "psr-4": {
  6215. "phpDocumentor\\Reflection\\": "src"
  6216. }
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "MIT"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Mike van Riel",
  6225. "email": "me@mikevanriel.com"
  6226. }
  6227. ],
  6228. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6229. "support": {
  6230. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  6231. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  6232. },
  6233. "time": "2020-09-17T18:55:26+00:00"
  6234. },
  6235. {
  6236. "name": "phpspec/prophecy",
  6237. "version": "1.12.1",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://github.com/phpspec/prophecy.git",
  6241. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  6246. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  6247. "shasum": "",
  6248. "mirrors": [
  6249. {
  6250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6251. "preferred": true
  6252. }
  6253. ]
  6254. },
  6255. "require": {
  6256. "doctrine/instantiator": "^1.2",
  6257. "php": "^7.2 || ~8.0, <8.1",
  6258. "phpdocumentor/reflection-docblock": "^5.2",
  6259. "sebastian/comparator": "^3.0 || ^4.0",
  6260. "sebastian/recursion-context": "^3.0 || ^4.0"
  6261. },
  6262. "require-dev": {
  6263. "phpspec/phpspec": "^6.0",
  6264. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  6265. },
  6266. "type": "library",
  6267. "extra": {
  6268. "branch-alias": {
  6269. "dev-master": "1.11.x-dev"
  6270. }
  6271. },
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Prophecy\\": "src/Prophecy"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Konstantin Kudryashov",
  6284. "email": "ever.zet@gmail.com",
  6285. "homepage": "http://everzet.com"
  6286. },
  6287. {
  6288. "name": "Marcello Duarte",
  6289. "email": "marcello.duarte@gmail.com"
  6290. }
  6291. ],
  6292. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6293. "homepage": "https://github.com/phpspec/prophecy",
  6294. "keywords": [
  6295. "Double",
  6296. "Dummy",
  6297. "fake",
  6298. "mock",
  6299. "spy",
  6300. "stub"
  6301. ],
  6302. "support": {
  6303. "issues": "https://github.com/phpspec/prophecy/issues",
  6304. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  6305. },
  6306. "time": "2020-09-29T09:10:42+00:00"
  6307. },
  6308. {
  6309. "name": "phpunit/php-code-coverage",
  6310. "version": "9.2.4",
  6311. "source": {
  6312. "type": "git",
  6313. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6314. "reference": "0a7f0acf9269c190fd982b5c04423feae986b6e0"
  6315. },
  6316. "dist": {
  6317. "type": "zip",
  6318. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0a7f0acf9269c190fd982b5c04423feae986b6e0",
  6319. "reference": "0a7f0acf9269c190fd982b5c04423feae986b6e0",
  6320. "shasum": "",
  6321. "mirrors": [
  6322. {
  6323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6324. "preferred": true
  6325. }
  6326. ]
  6327. },
  6328. "require": {
  6329. "ext-dom": "*",
  6330. "ext-libxml": "*",
  6331. "ext-xmlwriter": "*",
  6332. "nikic/php-parser": "^4.10.2",
  6333. "php": ">=7.3",
  6334. "phpunit/php-file-iterator": "^3.0.3",
  6335. "phpunit/php-text-template": "^2.0.2",
  6336. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6337. "sebastian/complexity": "^2.0",
  6338. "sebastian/environment": "^5.1.2",
  6339. "sebastian/lines-of-code": "^1.0",
  6340. "sebastian/version": "^3.0.1",
  6341. "theseer/tokenizer": "^1.2.0"
  6342. },
  6343. "require-dev": {
  6344. "phpunit/phpunit": "^9.3"
  6345. },
  6346. "suggest": {
  6347. "ext-pcov": "*",
  6348. "ext-xdebug": "*"
  6349. },
  6350. "type": "library",
  6351. "extra": {
  6352. "branch-alias": {
  6353. "dev-master": "9.2-dev"
  6354. }
  6355. },
  6356. "autoload": {
  6357. "classmap": [
  6358. "src/"
  6359. ]
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "BSD-3-Clause"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Sebastian Bergmann",
  6368. "email": "sebastian@phpunit.de",
  6369. "role": "lead"
  6370. }
  6371. ],
  6372. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6373. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6374. "keywords": [
  6375. "coverage",
  6376. "testing",
  6377. "xunit"
  6378. ],
  6379. "support": {
  6380. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6381. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.4"
  6382. },
  6383. "funding": [
  6384. {
  6385. "url": "https://github.com/sebastianbergmann",
  6386. "type": "github"
  6387. }
  6388. ],
  6389. "time": "2020-11-27T06:15:15+00:00"
  6390. },
  6391. {
  6392. "name": "phpunit/php-file-iterator",
  6393. "version": "3.0.5",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6397. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  6402. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  6403. "shasum": "",
  6404. "mirrors": [
  6405. {
  6406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6407. "preferred": true
  6408. }
  6409. ]
  6410. },
  6411. "require": {
  6412. "php": ">=7.3"
  6413. },
  6414. "require-dev": {
  6415. "phpunit/phpunit": "^9.3"
  6416. },
  6417. "type": "library",
  6418. "extra": {
  6419. "branch-alias": {
  6420. "dev-master": "3.0-dev"
  6421. }
  6422. },
  6423. "autoload": {
  6424. "classmap": [
  6425. "src/"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "BSD-3-Clause"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Sebastian Bergmann",
  6435. "email": "sebastian@phpunit.de",
  6436. "role": "lead"
  6437. }
  6438. ],
  6439. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6440. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6441. "keywords": [
  6442. "filesystem",
  6443. "iterator"
  6444. ],
  6445. "support": {
  6446. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6447. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  6448. },
  6449. "funding": [
  6450. {
  6451. "url": "https://github.com/sebastianbergmann",
  6452. "type": "github"
  6453. }
  6454. ],
  6455. "time": "2020-09-28T05:57:25+00:00"
  6456. },
  6457. {
  6458. "name": "phpunit/php-invoker",
  6459. "version": "3.1.1",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6463. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6468. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6469. "shasum": "",
  6470. "mirrors": [
  6471. {
  6472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6473. "preferred": true
  6474. }
  6475. ]
  6476. },
  6477. "require": {
  6478. "php": ">=7.3"
  6479. },
  6480. "require-dev": {
  6481. "ext-pcntl": "*",
  6482. "phpunit/phpunit": "^9.3"
  6483. },
  6484. "suggest": {
  6485. "ext-pcntl": "*"
  6486. },
  6487. "type": "library",
  6488. "extra": {
  6489. "branch-alias": {
  6490. "dev-master": "3.1-dev"
  6491. }
  6492. },
  6493. "autoload": {
  6494. "classmap": [
  6495. "src/"
  6496. ]
  6497. },
  6498. "notification-url": "https://packagist.org/downloads/",
  6499. "license": [
  6500. "BSD-3-Clause"
  6501. ],
  6502. "authors": [
  6503. {
  6504. "name": "Sebastian Bergmann",
  6505. "email": "sebastian@phpunit.de",
  6506. "role": "lead"
  6507. }
  6508. ],
  6509. "description": "Invoke callables with a timeout",
  6510. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6511. "keywords": [
  6512. "process"
  6513. ],
  6514. "support": {
  6515. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6516. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6517. },
  6518. "funding": [
  6519. {
  6520. "url": "https://github.com/sebastianbergmann",
  6521. "type": "github"
  6522. }
  6523. ],
  6524. "time": "2020-09-28T05:58:55+00:00"
  6525. },
  6526. {
  6527. "name": "phpunit/php-text-template",
  6528. "version": "2.0.4",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6532. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6537. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6538. "shasum": "",
  6539. "mirrors": [
  6540. {
  6541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6542. "preferred": true
  6543. }
  6544. ]
  6545. },
  6546. "require": {
  6547. "php": ">=7.3"
  6548. },
  6549. "require-dev": {
  6550. "phpunit/phpunit": "^9.3"
  6551. },
  6552. "type": "library",
  6553. "extra": {
  6554. "branch-alias": {
  6555. "dev-master": "2.0-dev"
  6556. }
  6557. },
  6558. "autoload": {
  6559. "classmap": [
  6560. "src/"
  6561. ]
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "license": [
  6565. "BSD-3-Clause"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "Sebastian Bergmann",
  6570. "email": "sebastian@phpunit.de",
  6571. "role": "lead"
  6572. }
  6573. ],
  6574. "description": "Simple template engine.",
  6575. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6576. "keywords": [
  6577. "template"
  6578. ],
  6579. "support": {
  6580. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6581. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6582. },
  6583. "funding": [
  6584. {
  6585. "url": "https://github.com/sebastianbergmann",
  6586. "type": "github"
  6587. }
  6588. ],
  6589. "time": "2020-10-26T05:33:50+00:00"
  6590. },
  6591. {
  6592. "name": "phpunit/php-timer",
  6593. "version": "5.0.3",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6597. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6602. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6603. "shasum": "",
  6604. "mirrors": [
  6605. {
  6606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6607. "preferred": true
  6608. }
  6609. ]
  6610. },
  6611. "require": {
  6612. "php": ">=7.3"
  6613. },
  6614. "require-dev": {
  6615. "phpunit/phpunit": "^9.3"
  6616. },
  6617. "type": "library",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-master": "5.0-dev"
  6621. }
  6622. },
  6623. "autoload": {
  6624. "classmap": [
  6625. "src/"
  6626. ]
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "BSD-3-Clause"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Sebastian Bergmann",
  6635. "email": "sebastian@phpunit.de",
  6636. "role": "lead"
  6637. }
  6638. ],
  6639. "description": "Utility class for timing",
  6640. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6641. "keywords": [
  6642. "timer"
  6643. ],
  6644. "support": {
  6645. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6646. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://github.com/sebastianbergmann",
  6651. "type": "github"
  6652. }
  6653. ],
  6654. "time": "2020-10-26T13:16:10+00:00"
  6655. },
  6656. {
  6657. "name": "phpunit/phpunit",
  6658. "version": "9.4.3",
  6659. "source": {
  6660. "type": "git",
  6661. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6662. "reference": "9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab"
  6663. },
  6664. "dist": {
  6665. "type": "zip",
  6666. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab",
  6667. "reference": "9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab",
  6668. "shasum": "",
  6669. "mirrors": [
  6670. {
  6671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6672. "preferred": true
  6673. }
  6674. ]
  6675. },
  6676. "require": {
  6677. "doctrine/instantiator": "^1.3.1",
  6678. "ext-dom": "*",
  6679. "ext-json": "*",
  6680. "ext-libxml": "*",
  6681. "ext-mbstring": "*",
  6682. "ext-xml": "*",
  6683. "ext-xmlwriter": "*",
  6684. "myclabs/deep-copy": "^1.10.1",
  6685. "phar-io/manifest": "^2.0.1",
  6686. "phar-io/version": "^3.0.2",
  6687. "php": ">=7.3",
  6688. "phpspec/prophecy": "^1.12.1",
  6689. "phpunit/php-code-coverage": "^9.2",
  6690. "phpunit/php-file-iterator": "^3.0.5",
  6691. "phpunit/php-invoker": "^3.1.1",
  6692. "phpunit/php-text-template": "^2.0.3",
  6693. "phpunit/php-timer": "^5.0.2",
  6694. "sebastian/cli-parser": "^1.0.1",
  6695. "sebastian/code-unit": "^1.0.6",
  6696. "sebastian/comparator": "^4.0.5",
  6697. "sebastian/diff": "^4.0.3",
  6698. "sebastian/environment": "^5.1.3",
  6699. "sebastian/exporter": "^4.0.3",
  6700. "sebastian/global-state": "^5.0.1",
  6701. "sebastian/object-enumerator": "^4.0.3",
  6702. "sebastian/resource-operations": "^3.0.3",
  6703. "sebastian/type": "^2.3",
  6704. "sebastian/version": "^3.0.2"
  6705. },
  6706. "require-dev": {
  6707. "ext-pdo": "*",
  6708. "phpspec/prophecy-phpunit": "^2.0.1"
  6709. },
  6710. "suggest": {
  6711. "ext-soap": "*",
  6712. "ext-xdebug": "*"
  6713. },
  6714. "bin": [
  6715. "phpunit"
  6716. ],
  6717. "type": "library",
  6718. "extra": {
  6719. "branch-alias": {
  6720. "dev-master": "9.4-dev"
  6721. }
  6722. },
  6723. "autoload": {
  6724. "classmap": [
  6725. "src/"
  6726. ],
  6727. "files": [
  6728. "src/Framework/Assert/Functions.php"
  6729. ]
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "BSD-3-Clause"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Sebastian Bergmann",
  6738. "email": "sebastian@phpunit.de",
  6739. "role": "lead"
  6740. }
  6741. ],
  6742. "description": "The PHP Unit Testing framework.",
  6743. "homepage": "https://phpunit.de/",
  6744. "keywords": [
  6745. "phpunit",
  6746. "testing",
  6747. "xunit"
  6748. ],
  6749. "support": {
  6750. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6751. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.4.3"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://phpunit.de/donate.html",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/sebastianbergmann",
  6760. "type": "github"
  6761. }
  6762. ],
  6763. "time": "2020-11-10T12:53:30+00:00"
  6764. },
  6765. {
  6766. "name": "sebastian/cli-parser",
  6767. "version": "1.0.1",
  6768. "source": {
  6769. "type": "git",
  6770. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6771. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6772. },
  6773. "dist": {
  6774. "type": "zip",
  6775. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6776. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6777. "shasum": "",
  6778. "mirrors": [
  6779. {
  6780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6781. "preferred": true
  6782. }
  6783. ]
  6784. },
  6785. "require": {
  6786. "php": ">=7.3"
  6787. },
  6788. "require-dev": {
  6789. "phpunit/phpunit": "^9.3"
  6790. },
  6791. "type": "library",
  6792. "extra": {
  6793. "branch-alias": {
  6794. "dev-master": "1.0-dev"
  6795. }
  6796. },
  6797. "autoload": {
  6798. "classmap": [
  6799. "src/"
  6800. ]
  6801. },
  6802. "notification-url": "https://packagist.org/downloads/",
  6803. "license": [
  6804. "BSD-3-Clause"
  6805. ],
  6806. "authors": [
  6807. {
  6808. "name": "Sebastian Bergmann",
  6809. "email": "sebastian@phpunit.de",
  6810. "role": "lead"
  6811. }
  6812. ],
  6813. "description": "Library for parsing CLI options",
  6814. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6815. "support": {
  6816. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6817. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6818. },
  6819. "funding": [
  6820. {
  6821. "url": "https://github.com/sebastianbergmann",
  6822. "type": "github"
  6823. }
  6824. ],
  6825. "time": "2020-09-28T06:08:49+00:00"
  6826. },
  6827. {
  6828. "name": "sebastian/code-unit",
  6829. "version": "1.0.8",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6833. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6838. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6839. "shasum": "",
  6840. "mirrors": [
  6841. {
  6842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6843. "preferred": true
  6844. }
  6845. ]
  6846. },
  6847. "require": {
  6848. "php": ">=7.3"
  6849. },
  6850. "require-dev": {
  6851. "phpunit/phpunit": "^9.3"
  6852. },
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-master": "1.0-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "classmap": [
  6861. "src/"
  6862. ]
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "BSD-3-Clause"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Sebastian Bergmann",
  6871. "email": "sebastian@phpunit.de",
  6872. "role": "lead"
  6873. }
  6874. ],
  6875. "description": "Collection of value objects that represent the PHP code units",
  6876. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6877. "support": {
  6878. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6879. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6880. },
  6881. "funding": [
  6882. {
  6883. "url": "https://github.com/sebastianbergmann",
  6884. "type": "github"
  6885. }
  6886. ],
  6887. "time": "2020-10-26T13:08:54+00:00"
  6888. },
  6889. {
  6890. "name": "sebastian/code-unit-reverse-lookup",
  6891. "version": "2.0.3",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6895. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6900. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6901. "shasum": "",
  6902. "mirrors": [
  6903. {
  6904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6905. "preferred": true
  6906. }
  6907. ]
  6908. },
  6909. "require": {
  6910. "php": ">=7.3"
  6911. },
  6912. "require-dev": {
  6913. "phpunit/phpunit": "^9.3"
  6914. },
  6915. "type": "library",
  6916. "extra": {
  6917. "branch-alias": {
  6918. "dev-master": "2.0-dev"
  6919. }
  6920. },
  6921. "autoload": {
  6922. "classmap": [
  6923. "src/"
  6924. ]
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "BSD-3-Clause"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Sebastian Bergmann",
  6933. "email": "sebastian@phpunit.de"
  6934. }
  6935. ],
  6936. "description": "Looks up which function or method a line of code belongs to",
  6937. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6938. "support": {
  6939. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6940. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6941. },
  6942. "funding": [
  6943. {
  6944. "url": "https://github.com/sebastianbergmann",
  6945. "type": "github"
  6946. }
  6947. ],
  6948. "time": "2020-09-28T05:30:19+00:00"
  6949. },
  6950. {
  6951. "name": "sebastian/comparator",
  6952. "version": "4.0.6",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/sebastianbergmann/comparator.git",
  6956. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  6961. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  6962. "shasum": "",
  6963. "mirrors": [
  6964. {
  6965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6966. "preferred": true
  6967. }
  6968. ]
  6969. },
  6970. "require": {
  6971. "php": ">=7.3",
  6972. "sebastian/diff": "^4.0",
  6973. "sebastian/exporter": "^4.0"
  6974. },
  6975. "require-dev": {
  6976. "phpunit/phpunit": "^9.3"
  6977. },
  6978. "type": "library",
  6979. "extra": {
  6980. "branch-alias": {
  6981. "dev-master": "4.0-dev"
  6982. }
  6983. },
  6984. "autoload": {
  6985. "classmap": [
  6986. "src/"
  6987. ]
  6988. },
  6989. "notification-url": "https://packagist.org/downloads/",
  6990. "license": [
  6991. "BSD-3-Clause"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "Sebastian Bergmann",
  6996. "email": "sebastian@phpunit.de"
  6997. },
  6998. {
  6999. "name": "Jeff Welch",
  7000. "email": "whatthejeff@gmail.com"
  7001. },
  7002. {
  7003. "name": "Volker Dusch",
  7004. "email": "github@wallbash.com"
  7005. },
  7006. {
  7007. "name": "Bernhard Schussek",
  7008. "email": "bschussek@2bepublished.at"
  7009. }
  7010. ],
  7011. "description": "Provides the functionality to compare PHP values for equality",
  7012. "homepage": "https://github.com/sebastianbergmann/comparator",
  7013. "keywords": [
  7014. "comparator",
  7015. "compare",
  7016. "equality"
  7017. ],
  7018. "support": {
  7019. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7020. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  7021. },
  7022. "funding": [
  7023. {
  7024. "url": "https://github.com/sebastianbergmann",
  7025. "type": "github"
  7026. }
  7027. ],
  7028. "time": "2020-10-26T15:49:45+00:00"
  7029. },
  7030. {
  7031. "name": "sebastian/complexity",
  7032. "version": "2.0.2",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/sebastianbergmann/complexity.git",
  7036. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  7041. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  7042. "shasum": "",
  7043. "mirrors": [
  7044. {
  7045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7046. "preferred": true
  7047. }
  7048. ]
  7049. },
  7050. "require": {
  7051. "nikic/php-parser": "^4.7",
  7052. "php": ">=7.3"
  7053. },
  7054. "require-dev": {
  7055. "phpunit/phpunit": "^9.3"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "branch-alias": {
  7060. "dev-master": "2.0-dev"
  7061. }
  7062. },
  7063. "autoload": {
  7064. "classmap": [
  7065. "src/"
  7066. ]
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "BSD-3-Clause"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Sebastian Bergmann",
  7075. "email": "sebastian@phpunit.de",
  7076. "role": "lead"
  7077. }
  7078. ],
  7079. "description": "Library for calculating the complexity of PHP code units",
  7080. "homepage": "https://github.com/sebastianbergmann/complexity",
  7081. "support": {
  7082. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7083. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  7084. },
  7085. "funding": [
  7086. {
  7087. "url": "https://github.com/sebastianbergmann",
  7088. "type": "github"
  7089. }
  7090. ],
  7091. "time": "2020-10-26T15:52:27+00:00"
  7092. },
  7093. {
  7094. "name": "sebastian/diff",
  7095. "version": "4.0.4",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/sebastianbergmann/diff.git",
  7099. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7104. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7105. "shasum": "",
  7106. "mirrors": [
  7107. {
  7108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7109. "preferred": true
  7110. }
  7111. ]
  7112. },
  7113. "require": {
  7114. "php": ">=7.3"
  7115. },
  7116. "require-dev": {
  7117. "phpunit/phpunit": "^9.3",
  7118. "symfony/process": "^4.2 || ^5"
  7119. },
  7120. "type": "library",
  7121. "extra": {
  7122. "branch-alias": {
  7123. "dev-master": "4.0-dev"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "classmap": [
  7128. "src/"
  7129. ]
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "license": [
  7133. "BSD-3-Clause"
  7134. ],
  7135. "authors": [
  7136. {
  7137. "name": "Sebastian Bergmann",
  7138. "email": "sebastian@phpunit.de"
  7139. },
  7140. {
  7141. "name": "Kore Nordmann",
  7142. "email": "mail@kore-nordmann.de"
  7143. }
  7144. ],
  7145. "description": "Diff implementation",
  7146. "homepage": "https://github.com/sebastianbergmann/diff",
  7147. "keywords": [
  7148. "diff",
  7149. "udiff",
  7150. "unidiff",
  7151. "unified diff"
  7152. ],
  7153. "support": {
  7154. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7155. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  7156. },
  7157. "funding": [
  7158. {
  7159. "url": "https://github.com/sebastianbergmann",
  7160. "type": "github"
  7161. }
  7162. ],
  7163. "time": "2020-10-26T13:10:38+00:00"
  7164. },
  7165. {
  7166. "name": "sebastian/environment",
  7167. "version": "5.1.3",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/sebastianbergmann/environment.git",
  7171. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  7176. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  7177. "shasum": "",
  7178. "mirrors": [
  7179. {
  7180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7181. "preferred": true
  7182. }
  7183. ]
  7184. },
  7185. "require": {
  7186. "php": ">=7.3"
  7187. },
  7188. "require-dev": {
  7189. "phpunit/phpunit": "^9.3"
  7190. },
  7191. "suggest": {
  7192. "ext-posix": "*"
  7193. },
  7194. "type": "library",
  7195. "extra": {
  7196. "branch-alias": {
  7197. "dev-master": "5.1-dev"
  7198. }
  7199. },
  7200. "autoload": {
  7201. "classmap": [
  7202. "src/"
  7203. ]
  7204. },
  7205. "notification-url": "https://packagist.org/downloads/",
  7206. "license": [
  7207. "BSD-3-Clause"
  7208. ],
  7209. "authors": [
  7210. {
  7211. "name": "Sebastian Bergmann",
  7212. "email": "sebastian@phpunit.de"
  7213. }
  7214. ],
  7215. "description": "Provides functionality to handle HHVM/PHP environments",
  7216. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7217. "keywords": [
  7218. "Xdebug",
  7219. "environment",
  7220. "hhvm"
  7221. ],
  7222. "support": {
  7223. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7224. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://github.com/sebastianbergmann",
  7229. "type": "github"
  7230. }
  7231. ],
  7232. "time": "2020-09-28T05:52:38+00:00"
  7233. },
  7234. {
  7235. "name": "sebastian/exporter",
  7236. "version": "4.0.3",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/sebastianbergmann/exporter.git",
  7240. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7245. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7246. "shasum": "",
  7247. "mirrors": [
  7248. {
  7249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7250. "preferred": true
  7251. }
  7252. ]
  7253. },
  7254. "require": {
  7255. "php": ">=7.3",
  7256. "sebastian/recursion-context": "^4.0"
  7257. },
  7258. "require-dev": {
  7259. "ext-mbstring": "*",
  7260. "phpunit/phpunit": "^9.3"
  7261. },
  7262. "type": "library",
  7263. "extra": {
  7264. "branch-alias": {
  7265. "dev-master": "4.0-dev"
  7266. }
  7267. },
  7268. "autoload": {
  7269. "classmap": [
  7270. "src/"
  7271. ]
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "BSD-3-Clause"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Sebastian Bergmann",
  7280. "email": "sebastian@phpunit.de"
  7281. },
  7282. {
  7283. "name": "Jeff Welch",
  7284. "email": "whatthejeff@gmail.com"
  7285. },
  7286. {
  7287. "name": "Volker Dusch",
  7288. "email": "github@wallbash.com"
  7289. },
  7290. {
  7291. "name": "Adam Harvey",
  7292. "email": "aharvey@php.net"
  7293. },
  7294. {
  7295. "name": "Bernhard Schussek",
  7296. "email": "bschussek@gmail.com"
  7297. }
  7298. ],
  7299. "description": "Provides the functionality to export PHP variables for visualization",
  7300. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7301. "keywords": [
  7302. "export",
  7303. "exporter"
  7304. ],
  7305. "support": {
  7306. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7307. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  7308. },
  7309. "funding": [
  7310. {
  7311. "url": "https://github.com/sebastianbergmann",
  7312. "type": "github"
  7313. }
  7314. ],
  7315. "time": "2020-09-28T05:24:23+00:00"
  7316. },
  7317. {
  7318. "name": "sebastian/global-state",
  7319. "version": "5.0.2",
  7320. "source": {
  7321. "type": "git",
  7322. "url": "https://github.com/sebastianbergmann/global-state.git",
  7323. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  7324. },
  7325. "dist": {
  7326. "type": "zip",
  7327. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  7328. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  7329. "shasum": "",
  7330. "mirrors": [
  7331. {
  7332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7333. "preferred": true
  7334. }
  7335. ]
  7336. },
  7337. "require": {
  7338. "php": ">=7.3",
  7339. "sebastian/object-reflector": "^2.0",
  7340. "sebastian/recursion-context": "^4.0"
  7341. },
  7342. "require-dev": {
  7343. "ext-dom": "*",
  7344. "phpunit/phpunit": "^9.3"
  7345. },
  7346. "suggest": {
  7347. "ext-uopz": "*"
  7348. },
  7349. "type": "library",
  7350. "extra": {
  7351. "branch-alias": {
  7352. "dev-master": "5.0-dev"
  7353. }
  7354. },
  7355. "autoload": {
  7356. "classmap": [
  7357. "src/"
  7358. ]
  7359. },
  7360. "notification-url": "https://packagist.org/downloads/",
  7361. "license": [
  7362. "BSD-3-Clause"
  7363. ],
  7364. "authors": [
  7365. {
  7366. "name": "Sebastian Bergmann",
  7367. "email": "sebastian@phpunit.de"
  7368. }
  7369. ],
  7370. "description": "Snapshotting of global state",
  7371. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7372. "keywords": [
  7373. "global state"
  7374. ],
  7375. "support": {
  7376. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7377. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://github.com/sebastianbergmann",
  7382. "type": "github"
  7383. }
  7384. ],
  7385. "time": "2020-10-26T15:55:19+00:00"
  7386. },
  7387. {
  7388. "name": "sebastian/lines-of-code",
  7389. "version": "1.0.2",
  7390. "source": {
  7391. "type": "git",
  7392. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7393. "reference": "acf76492a65401babcf5283296fa510782783a7a"
  7394. },
  7395. "dist": {
  7396. "type": "zip",
  7397. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/acf76492a65401babcf5283296fa510782783a7a",
  7398. "reference": "acf76492a65401babcf5283296fa510782783a7a",
  7399. "shasum": "",
  7400. "mirrors": [
  7401. {
  7402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7403. "preferred": true
  7404. }
  7405. ]
  7406. },
  7407. "require": {
  7408. "nikic/php-parser": "^4.6",
  7409. "php": ">=7.3"
  7410. },
  7411. "require-dev": {
  7412. "phpunit/phpunit": "^9.3"
  7413. },
  7414. "type": "library",
  7415. "extra": {
  7416. "branch-alias": {
  7417. "dev-master": "1.0-dev"
  7418. }
  7419. },
  7420. "autoload": {
  7421. "classmap": [
  7422. "src/"
  7423. ]
  7424. },
  7425. "notification-url": "https://packagist.org/downloads/",
  7426. "license": [
  7427. "BSD-3-Clause"
  7428. ],
  7429. "authors": [
  7430. {
  7431. "name": "Sebastian Bergmann",
  7432. "email": "sebastian@phpunit.de",
  7433. "role": "lead"
  7434. }
  7435. ],
  7436. "description": "Library for counting the lines of code in PHP source code",
  7437. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7438. "support": {
  7439. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7440. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.2"
  7441. },
  7442. "funding": [
  7443. {
  7444. "url": "https://github.com/sebastianbergmann",
  7445. "type": "github"
  7446. }
  7447. ],
  7448. "time": "2020-10-26T17:03:56+00:00"
  7449. },
  7450. {
  7451. "name": "sebastian/object-enumerator",
  7452. "version": "4.0.4",
  7453. "source": {
  7454. "type": "git",
  7455. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7456. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7457. },
  7458. "dist": {
  7459. "type": "zip",
  7460. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7461. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7462. "shasum": "",
  7463. "mirrors": [
  7464. {
  7465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7466. "preferred": true
  7467. }
  7468. ]
  7469. },
  7470. "require": {
  7471. "php": ">=7.3",
  7472. "sebastian/object-reflector": "^2.0",
  7473. "sebastian/recursion-context": "^4.0"
  7474. },
  7475. "require-dev": {
  7476. "phpunit/phpunit": "^9.3"
  7477. },
  7478. "type": "library",
  7479. "extra": {
  7480. "branch-alias": {
  7481. "dev-master": "4.0-dev"
  7482. }
  7483. },
  7484. "autoload": {
  7485. "classmap": [
  7486. "src/"
  7487. ]
  7488. },
  7489. "notification-url": "https://packagist.org/downloads/",
  7490. "license": [
  7491. "BSD-3-Clause"
  7492. ],
  7493. "authors": [
  7494. {
  7495. "name": "Sebastian Bergmann",
  7496. "email": "sebastian@phpunit.de"
  7497. }
  7498. ],
  7499. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7500. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7501. "support": {
  7502. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7503. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7504. },
  7505. "funding": [
  7506. {
  7507. "url": "https://github.com/sebastianbergmann",
  7508. "type": "github"
  7509. }
  7510. ],
  7511. "time": "2020-10-26T13:12:34+00:00"
  7512. },
  7513. {
  7514. "name": "sebastian/object-reflector",
  7515. "version": "2.0.4",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7519. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7524. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7525. "shasum": "",
  7526. "mirrors": [
  7527. {
  7528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7529. "preferred": true
  7530. }
  7531. ]
  7532. },
  7533. "require": {
  7534. "php": ">=7.3"
  7535. },
  7536. "require-dev": {
  7537. "phpunit/phpunit": "^9.3"
  7538. },
  7539. "type": "library",
  7540. "extra": {
  7541. "branch-alias": {
  7542. "dev-master": "2.0-dev"
  7543. }
  7544. },
  7545. "autoload": {
  7546. "classmap": [
  7547. "src/"
  7548. ]
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "BSD-3-Clause"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Sebastian Bergmann",
  7557. "email": "sebastian@phpunit.de"
  7558. }
  7559. ],
  7560. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7561. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7562. "support": {
  7563. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7564. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://github.com/sebastianbergmann",
  7569. "type": "github"
  7570. }
  7571. ],
  7572. "time": "2020-10-26T13:14:26+00:00"
  7573. },
  7574. {
  7575. "name": "sebastian/recursion-context",
  7576. "version": "4.0.4",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7580. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7585. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7586. "shasum": "",
  7587. "mirrors": [
  7588. {
  7589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7590. "preferred": true
  7591. }
  7592. ]
  7593. },
  7594. "require": {
  7595. "php": ">=7.3"
  7596. },
  7597. "require-dev": {
  7598. "phpunit/phpunit": "^9.3"
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-master": "4.0-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "classmap": [
  7608. "src/"
  7609. ]
  7610. },
  7611. "notification-url": "https://packagist.org/downloads/",
  7612. "license": [
  7613. "BSD-3-Clause"
  7614. ],
  7615. "authors": [
  7616. {
  7617. "name": "Sebastian Bergmann",
  7618. "email": "sebastian@phpunit.de"
  7619. },
  7620. {
  7621. "name": "Jeff Welch",
  7622. "email": "whatthejeff@gmail.com"
  7623. },
  7624. {
  7625. "name": "Adam Harvey",
  7626. "email": "aharvey@php.net"
  7627. }
  7628. ],
  7629. "description": "Provides functionality to recursively process PHP variables",
  7630. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7631. "support": {
  7632. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7633. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://github.com/sebastianbergmann",
  7638. "type": "github"
  7639. }
  7640. ],
  7641. "time": "2020-10-26T13:17:30+00:00"
  7642. },
  7643. {
  7644. "name": "sebastian/resource-operations",
  7645. "version": "dev-master",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7649. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7654. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7655. "shasum": "",
  7656. "mirrors": [
  7657. {
  7658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7659. "preferred": true
  7660. }
  7661. ]
  7662. },
  7663. "require": {
  7664. "php": ">=7.3"
  7665. },
  7666. "require-dev": {
  7667. "phpunit/phpunit": "^9.0"
  7668. },
  7669. "default-branch": true,
  7670. "type": "library",
  7671. "extra": {
  7672. "branch-alias": {
  7673. "dev-master": "3.0-dev"
  7674. }
  7675. },
  7676. "autoload": {
  7677. "classmap": [
  7678. "src/"
  7679. ]
  7680. },
  7681. "notification-url": "https://packagist.org/downloads/",
  7682. "license": [
  7683. "BSD-3-Clause"
  7684. ],
  7685. "authors": [
  7686. {
  7687. "name": "Sebastian Bergmann",
  7688. "email": "sebastian@phpunit.de"
  7689. }
  7690. ],
  7691. "description": "Provides a list of PHP built-in functions that operate on resources",
  7692. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7693. "support": {
  7694. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7695. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7696. },
  7697. "funding": [
  7698. {
  7699. "url": "https://github.com/sebastianbergmann",
  7700. "type": "github"
  7701. }
  7702. ],
  7703. "time": "2020-09-28T06:45:17+00:00"
  7704. },
  7705. {
  7706. "name": "sebastian/type",
  7707. "version": "2.3.1",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/sebastianbergmann/type.git",
  7711. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7716. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7717. "shasum": "",
  7718. "mirrors": [
  7719. {
  7720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7721. "preferred": true
  7722. }
  7723. ]
  7724. },
  7725. "require": {
  7726. "php": ">=7.3"
  7727. },
  7728. "require-dev": {
  7729. "phpunit/phpunit": "^9.3"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-master": "2.3-dev"
  7735. }
  7736. },
  7737. "autoload": {
  7738. "classmap": [
  7739. "src/"
  7740. ]
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "BSD-3-Clause"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Sebastian Bergmann",
  7749. "email": "sebastian@phpunit.de",
  7750. "role": "lead"
  7751. }
  7752. ],
  7753. "description": "Collection of value objects that represent the types of the PHP type system",
  7754. "homepage": "https://github.com/sebastianbergmann/type",
  7755. "support": {
  7756. "issues": "https://github.com/sebastianbergmann/type/issues",
  7757. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  7758. },
  7759. "funding": [
  7760. {
  7761. "url": "https://github.com/sebastianbergmann",
  7762. "type": "github"
  7763. }
  7764. ],
  7765. "time": "2020-10-26T13:18:59+00:00"
  7766. },
  7767. {
  7768. "name": "sebastian/version",
  7769. "version": "3.0.2",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/sebastianbergmann/version.git",
  7773. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7778. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7779. "shasum": "",
  7780. "mirrors": [
  7781. {
  7782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7783. "preferred": true
  7784. }
  7785. ]
  7786. },
  7787. "require": {
  7788. "php": ">=7.3"
  7789. },
  7790. "type": "library",
  7791. "extra": {
  7792. "branch-alias": {
  7793. "dev-master": "3.0-dev"
  7794. }
  7795. },
  7796. "autoload": {
  7797. "classmap": [
  7798. "src/"
  7799. ]
  7800. },
  7801. "notification-url": "https://packagist.org/downloads/",
  7802. "license": [
  7803. "BSD-3-Clause"
  7804. ],
  7805. "authors": [
  7806. {
  7807. "name": "Sebastian Bergmann",
  7808. "email": "sebastian@phpunit.de",
  7809. "role": "lead"
  7810. }
  7811. ],
  7812. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7813. "homepage": "https://github.com/sebastianbergmann/version",
  7814. "support": {
  7815. "issues": "https://github.com/sebastianbergmann/version/issues",
  7816. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7817. },
  7818. "funding": [
  7819. {
  7820. "url": "https://github.com/sebastianbergmann",
  7821. "type": "github"
  7822. }
  7823. ],
  7824. "time": "2020-09-28T06:39:44+00:00"
  7825. },
  7826. {
  7827. "name": "theseer/tokenizer",
  7828. "version": "1.2.0",
  7829. "source": {
  7830. "type": "git",
  7831. "url": "https://github.com/theseer/tokenizer.git",
  7832. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  7833. },
  7834. "dist": {
  7835. "type": "zip",
  7836. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  7837. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  7838. "shasum": "",
  7839. "mirrors": [
  7840. {
  7841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7842. "preferred": true
  7843. }
  7844. ]
  7845. },
  7846. "require": {
  7847. "ext-dom": "*",
  7848. "ext-tokenizer": "*",
  7849. "ext-xmlwriter": "*",
  7850. "php": "^7.2 || ^8.0"
  7851. },
  7852. "type": "library",
  7853. "autoload": {
  7854. "classmap": [
  7855. "src/"
  7856. ]
  7857. },
  7858. "notification-url": "https://packagist.org/downloads/",
  7859. "license": [
  7860. "BSD-3-Clause"
  7861. ],
  7862. "authors": [
  7863. {
  7864. "name": "Arne Blankerts",
  7865. "email": "arne@blankerts.de",
  7866. "role": "Developer"
  7867. }
  7868. ],
  7869. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7870. "support": {
  7871. "issues": "https://github.com/theseer/tokenizer/issues",
  7872. "source": "https://github.com/theseer/tokenizer/tree/master"
  7873. },
  7874. "funding": [
  7875. {
  7876. "url": "https://github.com/theseer",
  7877. "type": "github"
  7878. }
  7879. ],
  7880. "time": "2020-07-12T23:59:07+00:00"
  7881. }
  7882. ],
  7883. "aliases": [],
  7884. "minimum-stability": "dev",
  7885. "stability-flags": [],
  7886. "prefer-stable": true,
  7887. "prefer-lowest": false,
  7888. "platform": {
  7889. "php": "^7.3|^8.0"
  7890. },
  7891. "platform-dev": [],
  7892. "plugin-api-version": "2.0.0"
  7893. }