composer.lock 356 KB

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