composer.lock 365 KB

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