composer.lock 348 KB

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