composer.lock 315 KB

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