composer.lock 251 KB

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