composer.lock 253 KB

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