composer.lock 364 KB

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