composer.lock 365 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437
  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": "04ef064a952d8635e2fbfa09ff022d67",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  20. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2020-05-31T07:17:05+00:00"
  60. },
  61. {
  62. "name": "brick/math",
  63. "version": "0.9.1",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/brick/math.git",
  67. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  72. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "ext-json": "*",
  77. "php": "^7.1|^8.0"
  78. },
  79. "require-dev": {
  80. "php-coveralls/php-coveralls": "^2.2",
  81. "phpunit/phpunit": "^7.5.15|^8.5",
  82. "vimeo/psalm": "^3.5"
  83. },
  84. "type": "library",
  85. "autoload": {
  86. "psr-4": {
  87. "Brick\\Math\\": "src/"
  88. }
  89. },
  90. "notification-url": "https://packagist.org/downloads/",
  91. "license": [
  92. "MIT"
  93. ],
  94. "description": "Arbitrary-precision arithmetic library",
  95. "keywords": [
  96. "Arbitrary-precision",
  97. "BigInteger",
  98. "BigRational",
  99. "arithmetic",
  100. "bigdecimal",
  101. "bignum",
  102. "brick",
  103. "math"
  104. ],
  105. "funding": [
  106. {
  107. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  108. "type": "tidelift"
  109. }
  110. ],
  111. "time": "2020-08-18T23:57:15+00:00"
  112. },
  113. {
  114. "name": "composer/ca-bundle",
  115. "version": "1.2.8",
  116. "source": {
  117. "type": "git",
  118. "url": "https://github.com/composer/ca-bundle.git",
  119. "reference": "8a7ecad675253e4654ea05505233285377405215"
  120. },
  121. "dist": {
  122. "type": "zip",
  123. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  124. "reference": "8a7ecad675253e4654ea05505233285377405215",
  125. "shasum": ""
  126. },
  127. "require": {
  128. "ext-openssl": "*",
  129. "ext-pcre": "*",
  130. "php": "^5.3.2 || ^7.0 || ^8.0"
  131. },
  132. "require-dev": {
  133. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  134. "psr/log": "^1.0",
  135. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  136. },
  137. "type": "library",
  138. "extra": {
  139. "branch-alias": {
  140. "dev-master": "1.x-dev"
  141. }
  142. },
  143. "autoload": {
  144. "psr-4": {
  145. "Composer\\CaBundle\\": "src"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Jordi Boggiano",
  155. "email": "j.boggiano@seld.be",
  156. "homepage": "http://seld.be"
  157. }
  158. ],
  159. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  160. "keywords": [
  161. "cabundle",
  162. "cacert",
  163. "certificate",
  164. "ssl",
  165. "tls"
  166. ],
  167. "funding": [
  168. {
  169. "url": "https://packagist.com",
  170. "type": "custom"
  171. },
  172. {
  173. "url": "https://github.com/composer",
  174. "type": "github"
  175. },
  176. {
  177. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  178. "type": "tidelift"
  179. }
  180. ],
  181. "time": "2020-08-23T12:54:47+00:00"
  182. },
  183. {
  184. "name": "dnoegel/php-xdg-base-dir",
  185. "version": "v0.1.1",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  189. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  194. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "php": ">=5.3.2"
  199. },
  200. "require-dev": {
  201. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  202. },
  203. "type": "library",
  204. "autoload": {
  205. "psr-4": {
  206. "XdgBaseDir\\": "src/"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "description": "implementation of xdg base directory specification for php",
  214. "time": "2019-12-04T15:06:13+00:00"
  215. },
  216. {
  217. "name": "doctrine/inflector",
  218. "version": "2.0.3",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/doctrine/inflector.git",
  222. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  227. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "php": "^7.2 || ^8.0"
  232. },
  233. "require-dev": {
  234. "doctrine/coding-standard": "^7.0",
  235. "phpstan/phpstan": "^0.11",
  236. "phpstan/phpstan-phpunit": "^0.11",
  237. "phpstan/phpstan-strict-rules": "^0.11",
  238. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  239. },
  240. "type": "library",
  241. "extra": {
  242. "branch-alias": {
  243. "dev-master": "2.0.x-dev"
  244. }
  245. },
  246. "autoload": {
  247. "psr-4": {
  248. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Guilherme Blanco",
  258. "email": "guilhermeblanco@gmail.com"
  259. },
  260. {
  261. "name": "Roman Borschel",
  262. "email": "roman@code-factory.org"
  263. },
  264. {
  265. "name": "Benjamin Eberlei",
  266. "email": "kontakt@beberlei.de"
  267. },
  268. {
  269. "name": "Jonathan Wage",
  270. "email": "jonwage@gmail.com"
  271. },
  272. {
  273. "name": "Johannes Schmitt",
  274. "email": "schmittjoh@gmail.com"
  275. }
  276. ],
  277. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  278. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  279. "keywords": [
  280. "inflection",
  281. "inflector",
  282. "lowercase",
  283. "manipulation",
  284. "php",
  285. "plural",
  286. "singular",
  287. "strings",
  288. "uppercase",
  289. "words"
  290. ],
  291. "funding": [
  292. {
  293. "url": "https://www.doctrine-project.org/sponsorship.html",
  294. "type": "custom"
  295. },
  296. {
  297. "url": "https://www.patreon.com/phpdoctrine",
  298. "type": "patreon"
  299. },
  300. {
  301. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  302. "type": "tidelift"
  303. }
  304. ],
  305. "time": "2020-05-29T15:13:26+00:00"
  306. },
  307. {
  308. "name": "doctrine/lexer",
  309. "version": "1.2.1",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/doctrine/lexer.git",
  313. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  318. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "php": "^7.2 || ^8.0"
  323. },
  324. "require-dev": {
  325. "doctrine/coding-standard": "^6.0",
  326. "phpstan/phpstan": "^0.11.8",
  327. "phpunit/phpunit": "^8.2"
  328. },
  329. "type": "library",
  330. "extra": {
  331. "branch-alias": {
  332. "dev-master": "1.2.x-dev"
  333. }
  334. },
  335. "autoload": {
  336. "psr-4": {
  337. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  338. }
  339. },
  340. "notification-url": "https://packagist.org/downloads/",
  341. "license": [
  342. "MIT"
  343. ],
  344. "authors": [
  345. {
  346. "name": "Guilherme Blanco",
  347. "email": "guilhermeblanco@gmail.com"
  348. },
  349. {
  350. "name": "Roman Borschel",
  351. "email": "roman@code-factory.org"
  352. },
  353. {
  354. "name": "Johannes Schmitt",
  355. "email": "schmittjoh@gmail.com"
  356. }
  357. ],
  358. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  359. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  360. "keywords": [
  361. "annotations",
  362. "docblock",
  363. "lexer",
  364. "parser",
  365. "php"
  366. ],
  367. "funding": [
  368. {
  369. "url": "https://www.doctrine-project.org/sponsorship.html",
  370. "type": "custom"
  371. },
  372. {
  373. "url": "https://www.patreon.com/phpdoctrine",
  374. "type": "patreon"
  375. },
  376. {
  377. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  378. "type": "tidelift"
  379. }
  380. ],
  381. "time": "2020-05-25T17:44:05+00:00"
  382. },
  383. {
  384. "name": "dragonmantank/cron-expression",
  385. "version": "v2.3.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.22",
  446. "source": {
  447. "type": "git",
  448. "url": "https://github.com/egulias/EmailValidator.git",
  449. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  450. },
  451. "dist": {
  452. "type": "zip",
  453. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  454. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  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-09-26T15:48:38+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.0",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/fideloper/TrustedProxy.git",
  557. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  562. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  567. "php": ">=5.4.0"
  568. },
  569. "require-dev": {
  570. "illuminate/http": "^5.0|^6.0|^7.0|^8.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-06-23T01:36:47+00:00"
  604. },
  605. {
  606. "name": "fruitcake/laravel-cors",
  607. "version": "v2.0.2",
  608. "source": {
  609. "type": "git",
  610. "url": "https://github.com/fruitcake/laravel-cors.git",
  611. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a"
  612. },
  613. "dist": {
  614. "type": "zip",
  615. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/4b19bfc3bd422948af37a42a62fad7f49025894a",
  616. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a",
  617. "shasum": ""
  618. },
  619. "require": {
  620. "asm89/stack-cors": "^2.0.1",
  621. "illuminate/contracts": "^6|^7|^8",
  622. "illuminate/support": "^6|^7|^8",
  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-09-07T11:48:52+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.100",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1126. "reference": "82e1d983e29d9fea6e8e5505110d0278a5285f36"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/82e1d983e29d9fea6e8e5505110d0278a5285f36",
  1131. "reference": "82e1d983e29d9fea6e8e5505110d0278a5285f36",
  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-11T18:08:38+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.28.4",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/laravel/framework.git",
  1295. "reference": "de187e9200948bab6975167e480950abcd5efdac"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/laravel/framework/zipball/de187e9200948bab6975167e480950abcd5efdac",
  1300. "reference": "de187e9200948bab6975167e480950abcd5efdac",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "doctrine/inflector": "^1.4|^2.0",
  1305. "dragonmantank/cron-expression": "^2.0",
  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.0.34",
  1312. "monolog/monolog": "^2.0",
  1313. "nesbot/carbon": "^2.17",
  1314. "opis/closure": "^3.1",
  1315. "php": "^7.2.5",
  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.4",
  1375. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1376. "league/flysystem-cached-adapter": "^1.0",
  1377. "mockery/mockery": "^1.3.1",
  1378. "moontoast/math": "^1.1",
  1379. "orchestra/testbench-core": "^5.0",
  1380. "pda/pheanstalk": "^4.0",
  1381. "phpunit/phpunit": "^8.4|^9.0",
  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. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1395. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1396. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  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.1).",
  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.0).",
  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-06T14:22:09+00:00"
  1446. },
  1447. {
  1448. "name": "laravel/tinker",
  1449. "version": "v2.4.2",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/laravel/tinker.git",
  1453. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1458. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  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",
  1466. "psy/psysh": "^0.10.3",
  1467. "symfony/var-dumper": "^4.3|^5.0"
  1468. },
  1469. "require-dev": {
  1470. "mockery/mockery": "^1.3.1",
  1471. "phpunit/phpunit": "^8.4|^9.0"
  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-08-11T19:28:08+00:00"
  1510. },
  1511. {
  1512. "name": "league/commonmark",
  1513. "version": "1.5.6",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/thephpleague/commonmark.git",
  1517. "reference": "a56e91e0fa1f6d0049153a9c34f63488f6b7ce61"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/a56e91e0fa1f6d0049153a9c34f63488f6b7ce61",
  1522. "reference": "a56e91e0fa1f6d0049153a9c34f63488f6b7ce61",
  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-17T21:33:03+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.0",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/maxmind/web-service-common-php.git",
  2046. "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/ba67d9532cfaf499bd71774b8170d05df4f75fb7",
  2051. "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7",
  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-10-01T15:28:36+00:00"
  2085. },
  2086. {
  2087. "name": "mews/captcha",
  2088. "version": "3.2.1",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/mewebstudio/captcha.git",
  2092. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  2097. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  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-09-30T07:04:15+00:00"
  2154. },
  2155. {
  2156. "name": "mews/purifier",
  2157. "version": "3.3.0",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/mewebstudio/Purifier.git",
  2161. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/da76c8705550d549a8723ffe7368c0f5554652a1",
  2166. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1",
  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-09-10T22:30:34+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.3",
  2424. "source": {
  2425. "type": "git",
  2426. "url": "https://github.com/briannesbitt/Carbon.git",
  2427. "reference": "e148788eeae9b9b7b87996520358b86faad37b52"
  2428. },
  2429. "dist": {
  2430. "type": "zip",
  2431. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e148788eeae9b9b7b87996520358b86faad37b52",
  2432. "reference": "e148788eeae9b9b7b87996520358b86faad37b52",
  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-12T20:36:09+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": "paragonie/random_compat",
  2689. "version": "v9.99.100",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/paragonie/random_compat.git",
  2693. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2698. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": ">= 7"
  2703. },
  2704. "require-dev": {
  2705. "phpunit/phpunit": "4.*|5.*",
  2706. "vimeo/psalm": "^1"
  2707. },
  2708. "suggest": {
  2709. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2710. },
  2711. "type": "library",
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Paragon Initiative Enterprises",
  2719. "email": "security@paragonie.com",
  2720. "homepage": "https://paragonie.com"
  2721. }
  2722. ],
  2723. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2724. "keywords": [
  2725. "csprng",
  2726. "polyfill",
  2727. "pseudorandom",
  2728. "random"
  2729. ],
  2730. "time": "2020-10-15T08:29:30+00:00"
  2731. },
  2732. {
  2733. "name": "phpoffice/phpspreadsheet",
  2734. "version": "1.15.0",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2738. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2743. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2744. "shasum": ""
  2745. },
  2746. "require": {
  2747. "ext-ctype": "*",
  2748. "ext-dom": "*",
  2749. "ext-fileinfo": "*",
  2750. "ext-gd": "*",
  2751. "ext-iconv": "*",
  2752. "ext-libxml": "*",
  2753. "ext-mbstring": "*",
  2754. "ext-simplexml": "*",
  2755. "ext-xml": "*",
  2756. "ext-xmlreader": "*",
  2757. "ext-xmlwriter": "*",
  2758. "ext-zip": "*",
  2759. "ext-zlib": "*",
  2760. "maennchen/zipstream-php": "^2.1",
  2761. "markbaker/complex": "^1.5|^2.0",
  2762. "markbaker/matrix": "^1.2|^2.0",
  2763. "php": "^7.2|^8.0",
  2764. "psr/http-client": "^1.0",
  2765. "psr/http-factory": "^1.0",
  2766. "psr/simple-cache": "^1.0"
  2767. },
  2768. "require-dev": {
  2769. "dompdf/dompdf": "^0.8.5",
  2770. "friendsofphp/php-cs-fixer": "^2.16",
  2771. "jpgraph/jpgraph": "^4.0",
  2772. "mpdf/mpdf": "^8.0",
  2773. "phpcompatibility/php-compatibility": "^9.3",
  2774. "phpunit/phpunit": "^8.5|^9.3",
  2775. "squizlabs/php_codesniffer": "^3.5",
  2776. "tecnickcom/tcpdf": "^6.3"
  2777. },
  2778. "suggest": {
  2779. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2780. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2781. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2782. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2783. },
  2784. "type": "library",
  2785. "autoload": {
  2786. "psr-4": {
  2787. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Maarten Balliauw",
  2797. "homepage": "https://blog.maartenballiauw.be"
  2798. },
  2799. {
  2800. "name": "Mark Baker",
  2801. "homepage": "https://markbakeruk.net"
  2802. },
  2803. {
  2804. "name": "Franck Lefevre",
  2805. "homepage": "https://rootslabs.net"
  2806. },
  2807. {
  2808. "name": "Erik Tilt"
  2809. },
  2810. {
  2811. "name": "Adrien Crivelli"
  2812. }
  2813. ],
  2814. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2815. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2816. "keywords": [
  2817. "OpenXML",
  2818. "excel",
  2819. "gnumeric",
  2820. "ods",
  2821. "php",
  2822. "spreadsheet",
  2823. "xls",
  2824. "xlsx"
  2825. ],
  2826. "time": "2020-10-11T13:20:59+00:00"
  2827. },
  2828. {
  2829. "name": "phpoption/phpoption",
  2830. "version": "1.7.5",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/schmittjoh/php-option.git",
  2834. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2839. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": "^5.5.9 || ^7.0 || ^8.0"
  2844. },
  2845. "require-dev": {
  2846. "bamarni/composer-bin-plugin": "^1.4.1",
  2847. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-master": "1.7-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "PhpOption\\": "src/PhpOption/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "Apache-2.0"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Johannes M. Schmitt",
  2867. "email": "schmittjoh@gmail.com"
  2868. },
  2869. {
  2870. "name": "Graham Campbell",
  2871. "email": "graham@alt-three.com"
  2872. }
  2873. ],
  2874. "description": "Option Type for PHP",
  2875. "keywords": [
  2876. "language",
  2877. "option",
  2878. "php",
  2879. "type"
  2880. ],
  2881. "funding": [
  2882. {
  2883. "url": "https://github.com/GrahamCampbell",
  2884. "type": "github"
  2885. },
  2886. {
  2887. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2888. "type": "tidelift"
  2889. }
  2890. ],
  2891. "time": "2020-07-20T17:29:33+00:00"
  2892. },
  2893. {
  2894. "name": "psr/container",
  2895. "version": "1.0.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/php-fig/container.git",
  2899. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2904. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2905. "shasum": ""
  2906. },
  2907. "require": {
  2908. "php": ">=5.3.0"
  2909. },
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "1.0.x-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-4": {
  2918. "Psr\\Container\\": "src/"
  2919. }
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "MIT"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "PHP-FIG",
  2928. "homepage": "http://www.php-fig.org/"
  2929. }
  2930. ],
  2931. "description": "Common Container Interface (PHP FIG PSR-11)",
  2932. "homepage": "https://github.com/php-fig/container",
  2933. "keywords": [
  2934. "PSR-11",
  2935. "container",
  2936. "container-interface",
  2937. "container-interop",
  2938. "psr"
  2939. ],
  2940. "time": "2017-02-14T16:28:37+00:00"
  2941. },
  2942. {
  2943. "name": "psr/event-dispatcher",
  2944. "version": "1.0.0",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/php-fig/event-dispatcher.git",
  2948. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2953. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "php": ">=7.2.0"
  2958. },
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "1.0.x-dev"
  2963. }
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Psr\\EventDispatcher\\": "src/"
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "PHP-FIG",
  2977. "homepage": "http://www.php-fig.org/"
  2978. }
  2979. ],
  2980. "description": "Standard interfaces for event handling.",
  2981. "keywords": [
  2982. "events",
  2983. "psr",
  2984. "psr-14"
  2985. ],
  2986. "time": "2019-01-08T18:20:26+00:00"
  2987. },
  2988. {
  2989. "name": "psr/http-client",
  2990. "version": "1.0.1",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/php-fig/http-client.git",
  2994. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2999. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": "^7.0 || ^8.0",
  3004. "psr/http-message": "^1.0"
  3005. },
  3006. "type": "library",
  3007. "extra": {
  3008. "branch-alias": {
  3009. "dev-master": "1.0.x-dev"
  3010. }
  3011. },
  3012. "autoload": {
  3013. "psr-4": {
  3014. "Psr\\Http\\Client\\": "src/"
  3015. }
  3016. },
  3017. "notification-url": "https://packagist.org/downloads/",
  3018. "license": [
  3019. "MIT"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "PHP-FIG",
  3024. "homepage": "http://www.php-fig.org/"
  3025. }
  3026. ],
  3027. "description": "Common interface for HTTP clients",
  3028. "homepage": "https://github.com/php-fig/http-client",
  3029. "keywords": [
  3030. "http",
  3031. "http-client",
  3032. "psr",
  3033. "psr-18"
  3034. ],
  3035. "time": "2020-06-29T06:28:15+00:00"
  3036. },
  3037. {
  3038. "name": "psr/http-factory",
  3039. "version": "1.0.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/php-fig/http-factory.git",
  3043. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3048. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": ">=7.0.0",
  3053. "psr/http-message": "^1.0"
  3054. },
  3055. "type": "library",
  3056. "extra": {
  3057. "branch-alias": {
  3058. "dev-master": "1.0.x-dev"
  3059. }
  3060. },
  3061. "autoload": {
  3062. "psr-4": {
  3063. "Psr\\Http\\Message\\": "src/"
  3064. }
  3065. },
  3066. "notification-url": "https://packagist.org/downloads/",
  3067. "license": [
  3068. "MIT"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "PHP-FIG",
  3073. "homepage": "http://www.php-fig.org/"
  3074. }
  3075. ],
  3076. "description": "Common interfaces for PSR-7 HTTP message factories",
  3077. "keywords": [
  3078. "factory",
  3079. "http",
  3080. "message",
  3081. "psr",
  3082. "psr-17",
  3083. "psr-7",
  3084. "request",
  3085. "response"
  3086. ],
  3087. "time": "2019-04-30T12:38:16+00:00"
  3088. },
  3089. {
  3090. "name": "psr/http-message",
  3091. "version": "1.0.1",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/php-fig/http-message.git",
  3095. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3100. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=5.3.0"
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "branch-alias": {
  3109. "dev-master": "1.0.x-dev"
  3110. }
  3111. },
  3112. "autoload": {
  3113. "psr-4": {
  3114. "Psr\\Http\\Message\\": "src/"
  3115. }
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "PHP-FIG",
  3124. "homepage": "http://www.php-fig.org/"
  3125. }
  3126. ],
  3127. "description": "Common interface for HTTP messages",
  3128. "homepage": "https://github.com/php-fig/http-message",
  3129. "keywords": [
  3130. "http",
  3131. "http-message",
  3132. "psr",
  3133. "psr-7",
  3134. "request",
  3135. "response"
  3136. ],
  3137. "time": "2016-08-06T14:39:51+00:00"
  3138. },
  3139. {
  3140. "name": "psr/log",
  3141. "version": "1.1.3",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/php-fig/log.git",
  3145. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3150. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=5.3.0"
  3155. },
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "1.1.x-dev"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "Psr\\Log\\": "Psr/Log/"
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "PHP-FIG",
  3174. "homepage": "http://www.php-fig.org/"
  3175. }
  3176. ],
  3177. "description": "Common interface for logging libraries",
  3178. "homepage": "https://github.com/php-fig/log",
  3179. "keywords": [
  3180. "log",
  3181. "psr",
  3182. "psr-3"
  3183. ],
  3184. "time": "2020-03-23T09:12:05+00:00"
  3185. },
  3186. {
  3187. "name": "psr/simple-cache",
  3188. "version": "1.0.1",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/php-fig/simple-cache.git",
  3192. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3197. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3198. "shasum": ""
  3199. },
  3200. "require": {
  3201. "php": ">=5.3.0"
  3202. },
  3203. "type": "library",
  3204. "extra": {
  3205. "branch-alias": {
  3206. "dev-master": "1.0.x-dev"
  3207. }
  3208. },
  3209. "autoload": {
  3210. "psr-4": {
  3211. "Psr\\SimpleCache\\": "src/"
  3212. }
  3213. },
  3214. "notification-url": "https://packagist.org/downloads/",
  3215. "license": [
  3216. "MIT"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "PHP-FIG",
  3221. "homepage": "http://www.php-fig.org/"
  3222. }
  3223. ],
  3224. "description": "Common interfaces for simple caching",
  3225. "keywords": [
  3226. "cache",
  3227. "caching",
  3228. "psr",
  3229. "psr-16",
  3230. "simple-cache"
  3231. ],
  3232. "time": "2017-10-23T01:57:42+00:00"
  3233. },
  3234. {
  3235. "name": "psy/psysh",
  3236. "version": "v0.10.4",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://github.com/bobthecow/psysh.git",
  3240. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3245. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3246. "shasum": ""
  3247. },
  3248. "require": {
  3249. "dnoegel/php-xdg-base-dir": "0.1.*",
  3250. "ext-json": "*",
  3251. "ext-tokenizer": "*",
  3252. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3253. "php": "^8.0 || ^7.0 || ^5.5.9",
  3254. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3255. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3256. },
  3257. "require-dev": {
  3258. "bamarni/composer-bin-plugin": "^1.2",
  3259. "hoa/console": "3.17.*"
  3260. },
  3261. "suggest": {
  3262. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3263. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3264. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3265. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3266. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3267. },
  3268. "bin": [
  3269. "bin/psysh"
  3270. ],
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "0.10.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "files": [
  3279. "src/functions.php"
  3280. ],
  3281. "psr-4": {
  3282. "Psy\\": "src/"
  3283. }
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Justin Hileman",
  3292. "email": "justin@justinhileman.info",
  3293. "homepage": "http://justinhileman.com"
  3294. }
  3295. ],
  3296. "description": "An interactive shell for modern PHP.",
  3297. "homepage": "http://psysh.org",
  3298. "keywords": [
  3299. "REPL",
  3300. "console",
  3301. "interactive",
  3302. "shell"
  3303. ],
  3304. "time": "2020-05-03T19:32:03+00:00"
  3305. },
  3306. {
  3307. "name": "ralouphie/getallheaders",
  3308. "version": "3.0.3",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/ralouphie/getallheaders.git",
  3312. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3317. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3318. "shasum": ""
  3319. },
  3320. "require": {
  3321. "php": ">=5.6"
  3322. },
  3323. "require-dev": {
  3324. "php-coveralls/php-coveralls": "^2.1",
  3325. "phpunit/phpunit": "^5 || ^6.5"
  3326. },
  3327. "type": "library",
  3328. "autoload": {
  3329. "files": [
  3330. "src/getallheaders.php"
  3331. ]
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "MIT"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "Ralph Khattar",
  3340. "email": "ralph.khattar@gmail.com"
  3341. }
  3342. ],
  3343. "description": "A polyfill for getallheaders.",
  3344. "time": "2019-03-08T08:55:37+00:00"
  3345. },
  3346. {
  3347. "name": "ramsey/collection",
  3348. "version": "1.1.1",
  3349. "source": {
  3350. "type": "git",
  3351. "url": "https://github.com/ramsey/collection.git",
  3352. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3353. },
  3354. "dist": {
  3355. "type": "zip",
  3356. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3357. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3358. "shasum": ""
  3359. },
  3360. "require": {
  3361. "php": "^7.2 || ^8"
  3362. },
  3363. "require-dev": {
  3364. "captainhook/captainhook": "^5.3",
  3365. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3366. "ergebnis/composer-normalize": "^2.6",
  3367. "fzaninotto/faker": "^1.5",
  3368. "hamcrest/hamcrest-php": "^2",
  3369. "jangregor/phpstan-prophecy": "^0.6",
  3370. "mockery/mockery": "^1.3",
  3371. "phpstan/extension-installer": "^1",
  3372. "phpstan/phpstan": "^0.12.32",
  3373. "phpstan/phpstan-mockery": "^0.12.5",
  3374. "phpstan/phpstan-phpunit": "^0.12.11",
  3375. "phpunit/phpunit": "^8.5",
  3376. "psy/psysh": "^0.10.4",
  3377. "slevomat/coding-standard": "^6.3",
  3378. "squizlabs/php_codesniffer": "^3.5",
  3379. "vimeo/psalm": "^3.12.2"
  3380. },
  3381. "type": "library",
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Ramsey\\Collection\\": "src/"
  3385. }
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "authors": [
  3392. {
  3393. "name": "Ben Ramsey",
  3394. "email": "ben@benramsey.com",
  3395. "homepage": "https://benramsey.com"
  3396. }
  3397. ],
  3398. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3399. "keywords": [
  3400. "array",
  3401. "collection",
  3402. "hash",
  3403. "map",
  3404. "queue",
  3405. "set"
  3406. ],
  3407. "funding": [
  3408. {
  3409. "url": "https://github.com/ramsey",
  3410. "type": "github"
  3411. }
  3412. ],
  3413. "time": "2020-09-10T20:58:17+00:00"
  3414. },
  3415. {
  3416. "name": "ramsey/uuid",
  3417. "version": "4.1.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/ramsey/uuid.git",
  3421. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3426. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "brick/math": "^0.8 || ^0.9",
  3431. "ext-json": "*",
  3432. "php": "^7.2 || ^8",
  3433. "ramsey/collection": "^1.0",
  3434. "symfony/polyfill-ctype": "^1.8"
  3435. },
  3436. "replace": {
  3437. "rhumsaa/uuid": "self.version"
  3438. },
  3439. "require-dev": {
  3440. "codeception/aspect-mock": "^3",
  3441. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3442. "doctrine/annotations": "^1.8",
  3443. "goaop/framework": "^2",
  3444. "mockery/mockery": "^1.3",
  3445. "moontoast/math": "^1.1",
  3446. "paragonie/random-lib": "^2",
  3447. "php-mock/php-mock-mockery": "^1.3",
  3448. "php-mock/php-mock-phpunit": "^2.5",
  3449. "php-parallel-lint/php-parallel-lint": "^1.1",
  3450. "phpbench/phpbench": "^0.17.1",
  3451. "phpstan/extension-installer": "^1.0",
  3452. "phpstan/phpstan": "^0.12",
  3453. "phpstan/phpstan-mockery": "^0.12",
  3454. "phpstan/phpstan-phpunit": "^0.12",
  3455. "phpunit/phpunit": "^8.5",
  3456. "psy/psysh": "^0.10.0",
  3457. "slevomat/coding-standard": "^6.0",
  3458. "squizlabs/php_codesniffer": "^3.5",
  3459. "vimeo/psalm": "3.9.4"
  3460. },
  3461. "suggest": {
  3462. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3463. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3464. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3465. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3466. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3467. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3468. },
  3469. "type": "library",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-master": "4.x-dev"
  3473. }
  3474. },
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Ramsey\\Uuid\\": "src/"
  3478. },
  3479. "files": [
  3480. "src/functions.php"
  3481. ]
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3488. "homepage": "https://github.com/ramsey/uuid",
  3489. "keywords": [
  3490. "guid",
  3491. "identifier",
  3492. "uuid"
  3493. ],
  3494. "funding": [
  3495. {
  3496. "url": "https://github.com/ramsey",
  3497. "type": "github"
  3498. }
  3499. ],
  3500. "time": "2020-08-18T17:17:46+00:00"
  3501. },
  3502. {
  3503. "name": "rap2hpoutre/laravel-log-viewer",
  3504. "version": "v1.7.0",
  3505. "source": {
  3506. "type": "git",
  3507. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3508. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3509. },
  3510. "dist": {
  3511. "type": "zip",
  3512. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  3513. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  3514. "shasum": ""
  3515. },
  3516. "require": {
  3517. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  3518. "php": ">=5.4.0"
  3519. },
  3520. "require-dev": {
  3521. "orchestra/testbench": "3.7.*",
  3522. "phpunit/phpunit": "^7"
  3523. },
  3524. "type": "laravel-package",
  3525. "extra": {
  3526. "laravel": {
  3527. "providers": [
  3528. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3529. ]
  3530. }
  3531. },
  3532. "autoload": {
  3533. "classmap": [
  3534. "src/controllers"
  3535. ],
  3536. "psr-0": {
  3537. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3538. }
  3539. },
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "rap2hpoutre",
  3547. "email": "raphaelht@gmail.com"
  3548. }
  3549. ],
  3550. "description": "A Laravel log reader",
  3551. "keywords": [
  3552. "laravel",
  3553. "log",
  3554. "log-reader",
  3555. "log-viewer",
  3556. "logging",
  3557. "lumen"
  3558. ],
  3559. "time": "2020-09-08T12:21:27+00:00"
  3560. },
  3561. {
  3562. "name": "riverslei/payment",
  3563. "version": "v5.1.0",
  3564. "source": {
  3565. "type": "git",
  3566. "url": "https://github.com/helei112g/payment.git",
  3567. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3568. },
  3569. "dist": {
  3570. "type": "zip",
  3571. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3572. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3573. "shasum": ""
  3574. },
  3575. "require": {
  3576. "ext-bcmath": "*",
  3577. "ext-json": "*",
  3578. "ext-mbstring": "*",
  3579. "ext-openssl": "*",
  3580. "ext-simplexml": "*",
  3581. "ext-xml": "*",
  3582. "guzzlehttp/guzzle": "~6.0",
  3583. "php": ">=7.0"
  3584. },
  3585. "require-dev": {
  3586. "codeception/codeception": "*"
  3587. },
  3588. "type": "library",
  3589. "autoload": {
  3590. "psr-4": {
  3591. "Payment\\": "src/"
  3592. }
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Leo",
  3601. "email": "dayugog@gmail.com",
  3602. "homepage": "https://dayutalk.cn"
  3603. }
  3604. ],
  3605. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3606. "homepage": "http://helei112g.github.io/payment",
  3607. "keywords": [
  3608. "alipay",
  3609. "weixin",
  3610. "一网通",
  3611. "微信支付",
  3612. "招商一网通",
  3613. "支付宝支付",
  3614. "集成支付接口SDK"
  3615. ],
  3616. "time": "2020-05-04T03:07:17+00:00"
  3617. },
  3618. {
  3619. "name": "spatie/laravel-permission",
  3620. "version": "3.17.0",
  3621. "source": {
  3622. "type": "git",
  3623. "url": "https://github.com/spatie/laravel-permission.git",
  3624. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394"
  3625. },
  3626. "dist": {
  3627. "type": "zip",
  3628. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/35d40a45e49f5713f477823b571e05ef6a3a0394",
  3629. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394",
  3630. "shasum": ""
  3631. },
  3632. "require": {
  3633. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3634. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3635. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3636. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3637. "php": "^7.2.5"
  3638. },
  3639. "require-dev": {
  3640. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3641. "phpunit/phpunit": "^8.0|^9.0",
  3642. "predis/predis": "^1.1"
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "laravel": {
  3647. "providers": [
  3648. "Spatie\\Permission\\PermissionServiceProvider"
  3649. ]
  3650. }
  3651. },
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Spatie\\Permission\\": "src"
  3655. },
  3656. "files": [
  3657. "src/helpers.php"
  3658. ]
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Freek Van der Herten",
  3667. "email": "freek@spatie.be",
  3668. "homepage": "https://spatie.be",
  3669. "role": "Developer"
  3670. }
  3671. ],
  3672. "description": "Permission handling for Laravel 5.8 and up",
  3673. "homepage": "https://github.com/spatie/laravel-permission",
  3674. "keywords": [
  3675. "acl",
  3676. "laravel",
  3677. "permission",
  3678. "permissions",
  3679. "rbac",
  3680. "roles",
  3681. "security",
  3682. "spatie"
  3683. ],
  3684. "funding": [
  3685. {
  3686. "url": "https://spatie.be/open-source/support-us",
  3687. "type": "custom"
  3688. }
  3689. ],
  3690. "time": "2020-09-16T16:47:18+00:00"
  3691. },
  3692. {
  3693. "name": "srmklive/paypal",
  3694. "version": "1.8.0",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/srmklive/laravel-paypal.git",
  3698. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3703. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3704. "shasum": ""
  3705. },
  3706. "require": {
  3707. "guzzlehttp/guzzle": "~6.0|~7.0",
  3708. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3709. "nesbot/carbon": "~1.0|~2.0"
  3710. },
  3711. "type": "library",
  3712. "extra": {
  3713. "laravel": {
  3714. "providers": [
  3715. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3716. ],
  3717. "aliases": {
  3718. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3719. }
  3720. }
  3721. },
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Srmklive\\PayPal\\": "src/"
  3725. }
  3726. },
  3727. "notification-url": "https://packagist.org/downloads/",
  3728. "license": [
  3729. "MIT"
  3730. ],
  3731. "authors": [
  3732. {
  3733. "name": "Raza Mehdi",
  3734. "email": "srmk@outlook.com"
  3735. }
  3736. ],
  3737. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3738. "keywords": [
  3739. "http",
  3740. "laravel paypal",
  3741. "paypal",
  3742. "rest",
  3743. "web service"
  3744. ],
  3745. "time": "2020-09-03T07:50:08+00:00"
  3746. },
  3747. {
  3748. "name": "stripe/stripe-php",
  3749. "version": "v7.61.0",
  3750. "source": {
  3751. "type": "git",
  3752. "url": "https://github.com/stripe/stripe-php.git",
  3753. "reference": "51c6cd18cb51740101c940a3fefc876ef7cd8cae"
  3754. },
  3755. "dist": {
  3756. "type": "zip",
  3757. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/51c6cd18cb51740101c940a3fefc876ef7cd8cae",
  3758. "reference": "51c6cd18cb51740101c940a3fefc876ef7cd8cae",
  3759. "shasum": ""
  3760. },
  3761. "require": {
  3762. "ext-curl": "*",
  3763. "ext-json": "*",
  3764. "ext-mbstring": "*",
  3765. "php": ">=5.6.0"
  3766. },
  3767. "require-dev": {
  3768. "friendsofphp/php-cs-fixer": "2.16.1",
  3769. "php-coveralls/php-coveralls": "^2.1",
  3770. "phpunit/phpunit": "^5.7",
  3771. "squizlabs/php_codesniffer": "^3.3",
  3772. "symfony/process": "~3.4"
  3773. },
  3774. "type": "library",
  3775. "extra": {
  3776. "branch-alias": {
  3777. "dev-master": "2.0-dev"
  3778. }
  3779. },
  3780. "autoload": {
  3781. "psr-4": {
  3782. "Stripe\\": "lib/"
  3783. }
  3784. },
  3785. "notification-url": "https://packagist.org/downloads/",
  3786. "license": [
  3787. "MIT"
  3788. ],
  3789. "authors": [
  3790. {
  3791. "name": "Stripe and contributors",
  3792. "homepage": "https://github.com/stripe/stripe-php/contributors"
  3793. }
  3794. ],
  3795. "description": "Stripe PHP Library",
  3796. "homepage": "https://stripe.com/",
  3797. "keywords": [
  3798. "api",
  3799. "payment processing",
  3800. "stripe"
  3801. ],
  3802. "time": "2020-10-20T20:01:45+00:00"
  3803. },
  3804. {
  3805. "name": "swiftmailer/swiftmailer",
  3806. "version": "v6.2.3",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3810. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3815. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "egulias/email-validator": "~2.0",
  3820. "php": ">=7.0.0",
  3821. "symfony/polyfill-iconv": "^1.0",
  3822. "symfony/polyfill-intl-idn": "^1.10",
  3823. "symfony/polyfill-mbstring": "^1.0"
  3824. },
  3825. "require-dev": {
  3826. "mockery/mockery": "~0.9.1",
  3827. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3828. },
  3829. "suggest": {
  3830. "ext-intl": "Needed to support internationalized email addresses",
  3831. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3832. },
  3833. "type": "library",
  3834. "extra": {
  3835. "branch-alias": {
  3836. "dev-master": "6.2-dev"
  3837. }
  3838. },
  3839. "autoload": {
  3840. "files": [
  3841. "lib/swift_required.php"
  3842. ]
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "MIT"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Chris Corbyn"
  3851. },
  3852. {
  3853. "name": "Fabien Potencier",
  3854. "email": "fabien@symfony.com"
  3855. }
  3856. ],
  3857. "description": "Swiftmailer, free feature-rich PHP mailer",
  3858. "homepage": "https://swiftmailer.symfony.com",
  3859. "keywords": [
  3860. "email",
  3861. "mail",
  3862. "mailer"
  3863. ],
  3864. "time": "2019-11-12T09:31:26+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/console",
  3868. "version": "v5.1.7",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/console.git",
  3872. "reference": "ae789a8a2ad189ce7e8216942cdb9b77319f5eb8"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/console/zipball/ae789a8a2ad189ce7e8216942cdb9b77319f5eb8",
  3877. "reference": "ae789a8a2ad189ce7e8216942cdb9b77319f5eb8",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=7.2.5",
  3882. "symfony/polyfill-mbstring": "~1.0",
  3883. "symfony/polyfill-php73": "^1.8",
  3884. "symfony/polyfill-php80": "^1.15",
  3885. "symfony/service-contracts": "^1.1|^2",
  3886. "symfony/string": "^5.1"
  3887. },
  3888. "conflict": {
  3889. "symfony/dependency-injection": "<4.4",
  3890. "symfony/dotenv": "<5.1",
  3891. "symfony/event-dispatcher": "<4.4",
  3892. "symfony/lock": "<4.4",
  3893. "symfony/process": "<4.4"
  3894. },
  3895. "provide": {
  3896. "psr/log-implementation": "1.0"
  3897. },
  3898. "require-dev": {
  3899. "psr/log": "~1.0",
  3900. "symfony/config": "^4.4|^5.0",
  3901. "symfony/dependency-injection": "^4.4|^5.0",
  3902. "symfony/event-dispatcher": "^4.4|^5.0",
  3903. "symfony/lock": "^4.4|^5.0",
  3904. "symfony/process": "^4.4|^5.0",
  3905. "symfony/var-dumper": "^4.4|^5.0"
  3906. },
  3907. "suggest": {
  3908. "psr/log": "For using the console logger",
  3909. "symfony/event-dispatcher": "",
  3910. "symfony/lock": "",
  3911. "symfony/process": ""
  3912. },
  3913. "type": "library",
  3914. "extra": {
  3915. "branch-alias": {
  3916. "dev-master": "5.1-dev"
  3917. }
  3918. },
  3919. "autoload": {
  3920. "psr-4": {
  3921. "Symfony\\Component\\Console\\": ""
  3922. },
  3923. "exclude-from-classmap": [
  3924. "/Tests/"
  3925. ]
  3926. },
  3927. "notification-url": "https://packagist.org/downloads/",
  3928. "license": [
  3929. "MIT"
  3930. ],
  3931. "authors": [
  3932. {
  3933. "name": "Fabien Potencier",
  3934. "email": "fabien@symfony.com"
  3935. },
  3936. {
  3937. "name": "Symfony Community",
  3938. "homepage": "https://symfony.com/contributors"
  3939. }
  3940. ],
  3941. "description": "Symfony Console Component",
  3942. "homepage": "https://symfony.com",
  3943. "funding": [
  3944. {
  3945. "url": "https://symfony.com/sponsor",
  3946. "type": "custom"
  3947. },
  3948. {
  3949. "url": "https://github.com/fabpot",
  3950. "type": "github"
  3951. },
  3952. {
  3953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3954. "type": "tidelift"
  3955. }
  3956. ],
  3957. "time": "2020-10-07T15:23:00+00:00"
  3958. },
  3959. {
  3960. "name": "symfony/css-selector",
  3961. "version": "v5.1.7",
  3962. "source": {
  3963. "type": "git",
  3964. "url": "https://github.com/symfony/css-selector.git",
  3965. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  3966. },
  3967. "dist": {
  3968. "type": "zip",
  3969. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3970. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3971. "shasum": ""
  3972. },
  3973. "require": {
  3974. "php": ">=7.2.5"
  3975. },
  3976. "type": "library",
  3977. "extra": {
  3978. "branch-alias": {
  3979. "dev-master": "5.1-dev"
  3980. }
  3981. },
  3982. "autoload": {
  3983. "psr-4": {
  3984. "Symfony\\Component\\CssSelector\\": ""
  3985. },
  3986. "exclude-from-classmap": [
  3987. "/Tests/"
  3988. ]
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "Fabien Potencier",
  3997. "email": "fabien@symfony.com"
  3998. },
  3999. {
  4000. "name": "Jean-François Simon",
  4001. "email": "jeanfrancois.simon@sensiolabs.com"
  4002. },
  4003. {
  4004. "name": "Symfony Community",
  4005. "homepage": "https://symfony.com/contributors"
  4006. }
  4007. ],
  4008. "description": "Symfony CssSelector Component",
  4009. "homepage": "https://symfony.com",
  4010. "funding": [
  4011. {
  4012. "url": "https://symfony.com/sponsor",
  4013. "type": "custom"
  4014. },
  4015. {
  4016. "url": "https://github.com/fabpot",
  4017. "type": "github"
  4018. },
  4019. {
  4020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4021. "type": "tidelift"
  4022. }
  4023. ],
  4024. "time": "2020-05-20T17:43:50+00:00"
  4025. },
  4026. {
  4027. "name": "symfony/deprecation-contracts",
  4028. "version": "v2.2.0",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/symfony/deprecation-contracts.git",
  4032. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4037. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "php": ">=7.1"
  4042. },
  4043. "type": "library",
  4044. "extra": {
  4045. "branch-alias": {
  4046. "dev-master": "2.2-dev"
  4047. },
  4048. "thanks": {
  4049. "name": "symfony/contracts",
  4050. "url": "https://github.com/symfony/contracts"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "files": [
  4055. "function.php"
  4056. ]
  4057. },
  4058. "notification-url": "https://packagist.org/downloads/",
  4059. "license": [
  4060. "MIT"
  4061. ],
  4062. "authors": [
  4063. {
  4064. "name": "Nicolas Grekas",
  4065. "email": "p@tchwork.com"
  4066. },
  4067. {
  4068. "name": "Symfony Community",
  4069. "homepage": "https://symfony.com/contributors"
  4070. }
  4071. ],
  4072. "description": "A generic function and convention to trigger deprecation notices",
  4073. "homepage": "https://symfony.com",
  4074. "funding": [
  4075. {
  4076. "url": "https://symfony.com/sponsor",
  4077. "type": "custom"
  4078. },
  4079. {
  4080. "url": "https://github.com/fabpot",
  4081. "type": "github"
  4082. },
  4083. {
  4084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4085. "type": "tidelift"
  4086. }
  4087. ],
  4088. "time": "2020-09-07T11:33:47+00:00"
  4089. },
  4090. {
  4091. "name": "symfony/error-handler",
  4092. "version": "v5.1.7",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/symfony/error-handler.git",
  4096. "reference": "5e4d8ef8d71822922d1eebd130219ae3491a5ca9"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/symfony/error-handler/zipball/5e4d8ef8d71822922d1eebd130219ae3491a5ca9",
  4101. "reference": "5e4d8ef8d71822922d1eebd130219ae3491a5ca9",
  4102. "shasum": ""
  4103. },
  4104. "require": {
  4105. "php": ">=7.2.5",
  4106. "psr/log": "^1.0",
  4107. "symfony/polyfill-php80": "^1.15",
  4108. "symfony/var-dumper": "^4.4|^5.0"
  4109. },
  4110. "require-dev": {
  4111. "symfony/deprecation-contracts": "^2.1",
  4112. "symfony/http-kernel": "^4.4|^5.0",
  4113. "symfony/serializer": "^4.4|^5.0"
  4114. },
  4115. "type": "library",
  4116. "extra": {
  4117. "branch-alias": {
  4118. "dev-master": "5.1-dev"
  4119. }
  4120. },
  4121. "autoload": {
  4122. "psr-4": {
  4123. "Symfony\\Component\\ErrorHandler\\": ""
  4124. },
  4125. "exclude-from-classmap": [
  4126. "/Tests/"
  4127. ]
  4128. },
  4129. "notification-url": "https://packagist.org/downloads/",
  4130. "license": [
  4131. "MIT"
  4132. ],
  4133. "authors": [
  4134. {
  4135. "name": "Fabien Potencier",
  4136. "email": "fabien@symfony.com"
  4137. },
  4138. {
  4139. "name": "Symfony Community",
  4140. "homepage": "https://symfony.com/contributors"
  4141. }
  4142. ],
  4143. "description": "Symfony ErrorHandler Component",
  4144. "homepage": "https://symfony.com",
  4145. "funding": [
  4146. {
  4147. "url": "https://symfony.com/sponsor",
  4148. "type": "custom"
  4149. },
  4150. {
  4151. "url": "https://github.com/fabpot",
  4152. "type": "github"
  4153. },
  4154. {
  4155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4156. "type": "tidelift"
  4157. }
  4158. ],
  4159. "time": "2020-10-02T08:49:02+00:00"
  4160. },
  4161. {
  4162. "name": "symfony/event-dispatcher",
  4163. "version": "v5.1.7",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/symfony/event-dispatcher.git",
  4167. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d5de97d6af175a9e8131c546db054ca32842dd0f",
  4172. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "php": ">=7.2.5",
  4177. "symfony/deprecation-contracts": "^2.1",
  4178. "symfony/event-dispatcher-contracts": "^2",
  4179. "symfony/polyfill-php80": "^1.15"
  4180. },
  4181. "conflict": {
  4182. "symfony/dependency-injection": "<4.4"
  4183. },
  4184. "provide": {
  4185. "psr/event-dispatcher-implementation": "1.0",
  4186. "symfony/event-dispatcher-implementation": "2.0"
  4187. },
  4188. "require-dev": {
  4189. "psr/log": "~1.0",
  4190. "symfony/config": "^4.4|^5.0",
  4191. "symfony/dependency-injection": "^4.4|^5.0",
  4192. "symfony/error-handler": "^4.4|^5.0",
  4193. "symfony/expression-language": "^4.4|^5.0",
  4194. "symfony/http-foundation": "^4.4|^5.0",
  4195. "symfony/service-contracts": "^1.1|^2",
  4196. "symfony/stopwatch": "^4.4|^5.0"
  4197. },
  4198. "suggest": {
  4199. "symfony/dependency-injection": "",
  4200. "symfony/http-kernel": ""
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "5.1-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Symfony\\Component\\EventDispatcher\\": ""
  4211. },
  4212. "exclude-from-classmap": [
  4213. "/Tests/"
  4214. ]
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Fabien Potencier",
  4223. "email": "fabien@symfony.com"
  4224. },
  4225. {
  4226. "name": "Symfony Community",
  4227. "homepage": "https://symfony.com/contributors"
  4228. }
  4229. ],
  4230. "description": "Symfony EventDispatcher Component",
  4231. "homepage": "https://symfony.com",
  4232. "funding": [
  4233. {
  4234. "url": "https://symfony.com/sponsor",
  4235. "type": "custom"
  4236. },
  4237. {
  4238. "url": "https://github.com/fabpot",
  4239. "type": "github"
  4240. },
  4241. {
  4242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4243. "type": "tidelift"
  4244. }
  4245. ],
  4246. "time": "2020-09-18T14:27:32+00:00"
  4247. },
  4248. {
  4249. "name": "symfony/event-dispatcher-contracts",
  4250. "version": "v2.2.0",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4254. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4259. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "php": ">=7.2.5",
  4264. "psr/event-dispatcher": "^1"
  4265. },
  4266. "suggest": {
  4267. "symfony/event-dispatcher-implementation": ""
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "2.2-dev"
  4273. },
  4274. "thanks": {
  4275. "name": "symfony/contracts",
  4276. "url": "https://github.com/symfony/contracts"
  4277. }
  4278. },
  4279. "autoload": {
  4280. "psr-4": {
  4281. "Symfony\\Contracts\\EventDispatcher\\": ""
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Nicolas Grekas",
  4291. "email": "p@tchwork.com"
  4292. },
  4293. {
  4294. "name": "Symfony Community",
  4295. "homepage": "https://symfony.com/contributors"
  4296. }
  4297. ],
  4298. "description": "Generic abstractions related to dispatching event",
  4299. "homepage": "https://symfony.com",
  4300. "keywords": [
  4301. "abstractions",
  4302. "contracts",
  4303. "decoupling",
  4304. "interfaces",
  4305. "interoperability",
  4306. "standards"
  4307. ],
  4308. "funding": [
  4309. {
  4310. "url": "https://symfony.com/sponsor",
  4311. "type": "custom"
  4312. },
  4313. {
  4314. "url": "https://github.com/fabpot",
  4315. "type": "github"
  4316. },
  4317. {
  4318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4319. "type": "tidelift"
  4320. }
  4321. ],
  4322. "time": "2020-09-07T11:33:47+00:00"
  4323. },
  4324. {
  4325. "name": "symfony/finder",
  4326. "version": "v5.1.7",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/symfony/finder.git",
  4330. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4335. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "php": ">=7.2.5"
  4340. },
  4341. "type": "library",
  4342. "extra": {
  4343. "branch-alias": {
  4344. "dev-master": "5.1-dev"
  4345. }
  4346. },
  4347. "autoload": {
  4348. "psr-4": {
  4349. "Symfony\\Component\\Finder\\": ""
  4350. },
  4351. "exclude-from-classmap": [
  4352. "/Tests/"
  4353. ]
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "Fabien Potencier",
  4362. "email": "fabien@symfony.com"
  4363. },
  4364. {
  4365. "name": "Symfony Community",
  4366. "homepage": "https://symfony.com/contributors"
  4367. }
  4368. ],
  4369. "description": "Symfony Finder Component",
  4370. "homepage": "https://symfony.com",
  4371. "funding": [
  4372. {
  4373. "url": "https://symfony.com/sponsor",
  4374. "type": "custom"
  4375. },
  4376. {
  4377. "url": "https://github.com/fabpot",
  4378. "type": "github"
  4379. },
  4380. {
  4381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4382. "type": "tidelift"
  4383. }
  4384. ],
  4385. "time": "2020-09-02T16:23:27+00:00"
  4386. },
  4387. {
  4388. "name": "symfony/http-client-contracts",
  4389. "version": "v2.3.1",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/symfony/http-client-contracts.git",
  4393. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4398. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4399. "shasum": ""
  4400. },
  4401. "require": {
  4402. "php": ">=7.2.5"
  4403. },
  4404. "suggest": {
  4405. "symfony/http-client-implementation": ""
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "branch-version": "2.3",
  4410. "branch-alias": {
  4411. "dev-main": "2.3-dev"
  4412. },
  4413. "thanks": {
  4414. "name": "symfony/contracts",
  4415. "url": "https://github.com/symfony/contracts"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Symfony\\Contracts\\HttpClient\\": ""
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "Nicolas Grekas",
  4430. "email": "p@tchwork.com"
  4431. },
  4432. {
  4433. "name": "Symfony Community",
  4434. "homepage": "https://symfony.com/contributors"
  4435. }
  4436. ],
  4437. "description": "Generic abstractions related to HTTP clients",
  4438. "homepage": "https://symfony.com",
  4439. "keywords": [
  4440. "abstractions",
  4441. "contracts",
  4442. "decoupling",
  4443. "interfaces",
  4444. "interoperability",
  4445. "standards"
  4446. ],
  4447. "funding": [
  4448. {
  4449. "url": "https://symfony.com/sponsor",
  4450. "type": "custom"
  4451. },
  4452. {
  4453. "url": "https://github.com/fabpot",
  4454. "type": "github"
  4455. },
  4456. {
  4457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4458. "type": "tidelift"
  4459. }
  4460. ],
  4461. "time": "2020-10-14T17:08:19+00:00"
  4462. },
  4463. {
  4464. "name": "symfony/http-foundation",
  4465. "version": "v5.1.7",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/symfony/http-foundation.git",
  4469. "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/353b42e7b4fd1c898aab09a059466c9cea74039b",
  4474. "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "php": ">=7.2.5",
  4479. "symfony/deprecation-contracts": "^2.1",
  4480. "symfony/polyfill-mbstring": "~1.1",
  4481. "symfony/polyfill-php80": "^1.15"
  4482. },
  4483. "require-dev": {
  4484. "predis/predis": "~1.0",
  4485. "symfony/cache": "^4.4|^5.0",
  4486. "symfony/expression-language": "^4.4|^5.0",
  4487. "symfony/mime": "^4.4|^5.0"
  4488. },
  4489. "suggest": {
  4490. "symfony/mime": "To use the file extension guesser"
  4491. },
  4492. "type": "library",
  4493. "extra": {
  4494. "branch-alias": {
  4495. "dev-master": "5.1-dev"
  4496. }
  4497. },
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Symfony\\Component\\HttpFoundation\\": ""
  4501. },
  4502. "exclude-from-classmap": [
  4503. "/Tests/"
  4504. ]
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Fabien Potencier",
  4513. "email": "fabien@symfony.com"
  4514. },
  4515. {
  4516. "name": "Symfony Community",
  4517. "homepage": "https://symfony.com/contributors"
  4518. }
  4519. ],
  4520. "description": "Symfony HttpFoundation Component",
  4521. "homepage": "https://symfony.com",
  4522. "funding": [
  4523. {
  4524. "url": "https://symfony.com/sponsor",
  4525. "type": "custom"
  4526. },
  4527. {
  4528. "url": "https://github.com/fabpot",
  4529. "type": "github"
  4530. },
  4531. {
  4532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4533. "type": "tidelift"
  4534. }
  4535. ],
  4536. "time": "2020-09-27T14:14:57+00:00"
  4537. },
  4538. {
  4539. "name": "symfony/http-kernel",
  4540. "version": "v5.1.7",
  4541. "source": {
  4542. "type": "git",
  4543. "url": "https://github.com/symfony/http-kernel.git",
  4544. "reference": "1764b87d2f10d5c9ce6e4850fe27934116d89708"
  4545. },
  4546. "dist": {
  4547. "type": "zip",
  4548. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1764b87d2f10d5c9ce6e4850fe27934116d89708",
  4549. "reference": "1764b87d2f10d5c9ce6e4850fe27934116d89708",
  4550. "shasum": ""
  4551. },
  4552. "require": {
  4553. "php": ">=7.2.5",
  4554. "psr/log": "~1.0",
  4555. "symfony/deprecation-contracts": "^2.1",
  4556. "symfony/error-handler": "^4.4|^5.0",
  4557. "symfony/event-dispatcher": "^5.0",
  4558. "symfony/http-client-contracts": "^1.1|^2",
  4559. "symfony/http-foundation": "^4.4|^5.0",
  4560. "symfony/polyfill-ctype": "^1.8",
  4561. "symfony/polyfill-php73": "^1.9",
  4562. "symfony/polyfill-php80": "^1.15"
  4563. },
  4564. "conflict": {
  4565. "symfony/browser-kit": "<4.4",
  4566. "symfony/cache": "<5.0",
  4567. "symfony/config": "<5.0",
  4568. "symfony/console": "<4.4",
  4569. "symfony/dependency-injection": "<4.4",
  4570. "symfony/doctrine-bridge": "<5.0",
  4571. "symfony/form": "<5.0",
  4572. "symfony/http-client": "<5.0",
  4573. "symfony/mailer": "<5.0",
  4574. "symfony/messenger": "<5.0",
  4575. "symfony/translation": "<5.0",
  4576. "symfony/twig-bridge": "<5.0",
  4577. "symfony/validator": "<5.0",
  4578. "twig/twig": "<2.4"
  4579. },
  4580. "provide": {
  4581. "psr/log-implementation": "1.0"
  4582. },
  4583. "require-dev": {
  4584. "psr/cache": "~1.0",
  4585. "symfony/browser-kit": "^4.4|^5.0",
  4586. "symfony/config": "^5.0",
  4587. "symfony/console": "^4.4|^5.0",
  4588. "symfony/css-selector": "^4.4|^5.0",
  4589. "symfony/dependency-injection": "^4.4|^5.0",
  4590. "symfony/dom-crawler": "^4.4|^5.0",
  4591. "symfony/expression-language": "^4.4|^5.0",
  4592. "symfony/finder": "^4.4|^5.0",
  4593. "symfony/process": "^4.4|^5.0",
  4594. "symfony/routing": "^4.4|^5.0",
  4595. "symfony/stopwatch": "^4.4|^5.0",
  4596. "symfony/translation": "^4.4|^5.0",
  4597. "symfony/translation-contracts": "^1.1|^2",
  4598. "twig/twig": "^2.4|^3.0"
  4599. },
  4600. "suggest": {
  4601. "symfony/browser-kit": "",
  4602. "symfony/config": "",
  4603. "symfony/console": "",
  4604. "symfony/dependency-injection": ""
  4605. },
  4606. "type": "library",
  4607. "extra": {
  4608. "branch-alias": {
  4609. "dev-master": "5.1-dev"
  4610. }
  4611. },
  4612. "autoload": {
  4613. "psr-4": {
  4614. "Symfony\\Component\\HttpKernel\\": ""
  4615. },
  4616. "exclude-from-classmap": [
  4617. "/Tests/"
  4618. ]
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Fabien Potencier",
  4627. "email": "fabien@symfony.com"
  4628. },
  4629. {
  4630. "name": "Symfony Community",
  4631. "homepage": "https://symfony.com/contributors"
  4632. }
  4633. ],
  4634. "description": "Symfony HttpKernel Component",
  4635. "homepage": "https://symfony.com",
  4636. "funding": [
  4637. {
  4638. "url": "https://symfony.com/sponsor",
  4639. "type": "custom"
  4640. },
  4641. {
  4642. "url": "https://github.com/fabpot",
  4643. "type": "github"
  4644. },
  4645. {
  4646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4647. "type": "tidelift"
  4648. }
  4649. ],
  4650. "time": "2020-10-04T07:57:28+00:00"
  4651. },
  4652. {
  4653. "name": "symfony/mime",
  4654. "version": "v5.1.7",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://github.com/symfony/mime.git",
  4658. "reference": "4404d6545125863561721514ad9388db2661eec5"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5",
  4663. "reference": "4404d6545125863561721514ad9388db2661eec5",
  4664. "shasum": ""
  4665. },
  4666. "require": {
  4667. "php": ">=7.2.5",
  4668. "symfony/polyfill-intl-idn": "^1.10",
  4669. "symfony/polyfill-mbstring": "^1.0",
  4670. "symfony/polyfill-php80": "^1.15"
  4671. },
  4672. "conflict": {
  4673. "symfony/mailer": "<4.4"
  4674. },
  4675. "require-dev": {
  4676. "egulias/email-validator": "^2.1.10",
  4677. "symfony/dependency-injection": "^4.4|^5.0"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "5.1-dev"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "psr-4": {
  4687. "Symfony\\Component\\Mime\\": ""
  4688. },
  4689. "exclude-from-classmap": [
  4690. "/Tests/"
  4691. ]
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Fabien Potencier",
  4700. "email": "fabien@symfony.com"
  4701. },
  4702. {
  4703. "name": "Symfony Community",
  4704. "homepage": "https://symfony.com/contributors"
  4705. }
  4706. ],
  4707. "description": "A library to manipulate MIME messages",
  4708. "homepage": "https://symfony.com",
  4709. "keywords": [
  4710. "mime",
  4711. "mime-type"
  4712. ],
  4713. "funding": [
  4714. {
  4715. "url": "https://symfony.com/sponsor",
  4716. "type": "custom"
  4717. },
  4718. {
  4719. "url": "https://github.com/fabpot",
  4720. "type": "github"
  4721. },
  4722. {
  4723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4724. "type": "tidelift"
  4725. }
  4726. ],
  4727. "time": "2020-09-02T16:23:27+00:00"
  4728. },
  4729. {
  4730. "name": "symfony/polyfill-ctype",
  4731. "version": "v1.18.1",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/symfony/polyfill-ctype.git",
  4735. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4740. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "php": ">=5.3.3"
  4745. },
  4746. "suggest": {
  4747. "ext-ctype": "For best performance"
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-master": "1.18-dev"
  4753. },
  4754. "thanks": {
  4755. "name": "symfony/polyfill",
  4756. "url": "https://github.com/symfony/polyfill"
  4757. }
  4758. },
  4759. "autoload": {
  4760. "psr-4": {
  4761. "Symfony\\Polyfill\\Ctype\\": ""
  4762. },
  4763. "files": [
  4764. "bootstrap.php"
  4765. ]
  4766. },
  4767. "notification-url": "https://packagist.org/downloads/",
  4768. "license": [
  4769. "MIT"
  4770. ],
  4771. "authors": [
  4772. {
  4773. "name": "Gert de Pagter",
  4774. "email": "BackEndTea@gmail.com"
  4775. },
  4776. {
  4777. "name": "Symfony Community",
  4778. "homepage": "https://symfony.com/contributors"
  4779. }
  4780. ],
  4781. "description": "Symfony polyfill for ctype functions",
  4782. "homepage": "https://symfony.com",
  4783. "keywords": [
  4784. "compatibility",
  4785. "ctype",
  4786. "polyfill",
  4787. "portable"
  4788. ],
  4789. "funding": [
  4790. {
  4791. "url": "https://symfony.com/sponsor",
  4792. "type": "custom"
  4793. },
  4794. {
  4795. "url": "https://github.com/fabpot",
  4796. "type": "github"
  4797. },
  4798. {
  4799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4800. "type": "tidelift"
  4801. }
  4802. ],
  4803. "time": "2020-07-14T12:35:20+00:00"
  4804. },
  4805. {
  4806. "name": "symfony/polyfill-iconv",
  4807. "version": "v1.18.1",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/symfony/polyfill-iconv.git",
  4811. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4816. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "php": ">=5.3.3"
  4821. },
  4822. "suggest": {
  4823. "ext-iconv": "For best performance"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "1.18-dev"
  4829. },
  4830. "thanks": {
  4831. "name": "symfony/polyfill",
  4832. "url": "https://github.com/symfony/polyfill"
  4833. }
  4834. },
  4835. "autoload": {
  4836. "psr-4": {
  4837. "Symfony\\Polyfill\\Iconv\\": ""
  4838. },
  4839. "files": [
  4840. "bootstrap.php"
  4841. ]
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "MIT"
  4846. ],
  4847. "authors": [
  4848. {
  4849. "name": "Nicolas Grekas",
  4850. "email": "p@tchwork.com"
  4851. },
  4852. {
  4853. "name": "Symfony Community",
  4854. "homepage": "https://symfony.com/contributors"
  4855. }
  4856. ],
  4857. "description": "Symfony polyfill for the Iconv extension",
  4858. "homepage": "https://symfony.com",
  4859. "keywords": [
  4860. "compatibility",
  4861. "iconv",
  4862. "polyfill",
  4863. "portable",
  4864. "shim"
  4865. ],
  4866. "funding": [
  4867. {
  4868. "url": "https://symfony.com/sponsor",
  4869. "type": "custom"
  4870. },
  4871. {
  4872. "url": "https://github.com/fabpot",
  4873. "type": "github"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2020-07-14T12:35:20+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/polyfill-intl-grapheme",
  4884. "version": "v1.18.1",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4888. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4893. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": ">=5.3.3"
  4898. },
  4899. "suggest": {
  4900. "ext-intl": "For best performance"
  4901. },
  4902. "type": "library",
  4903. "extra": {
  4904. "branch-alias": {
  4905. "dev-master": "1.18-dev"
  4906. },
  4907. "thanks": {
  4908. "name": "symfony/polyfill",
  4909. "url": "https://github.com/symfony/polyfill"
  4910. }
  4911. },
  4912. "autoload": {
  4913. "psr-4": {
  4914. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4915. },
  4916. "files": [
  4917. "bootstrap.php"
  4918. ]
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Nicolas Grekas",
  4927. "email": "p@tchwork.com"
  4928. },
  4929. {
  4930. "name": "Symfony Community",
  4931. "homepage": "https://symfony.com/contributors"
  4932. }
  4933. ],
  4934. "description": "Symfony polyfill for intl's grapheme_* functions",
  4935. "homepage": "https://symfony.com",
  4936. "keywords": [
  4937. "compatibility",
  4938. "grapheme",
  4939. "intl",
  4940. "polyfill",
  4941. "portable",
  4942. "shim"
  4943. ],
  4944. "funding": [
  4945. {
  4946. "url": "https://symfony.com/sponsor",
  4947. "type": "custom"
  4948. },
  4949. {
  4950. "url": "https://github.com/fabpot",
  4951. "type": "github"
  4952. },
  4953. {
  4954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4955. "type": "tidelift"
  4956. }
  4957. ],
  4958. "time": "2020-07-14T12:35:20+00:00"
  4959. },
  4960. {
  4961. "name": "symfony/polyfill-intl-idn",
  4962. "version": "v1.18.1",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4966. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4971. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "php": ">=5.3.3",
  4976. "symfony/polyfill-intl-normalizer": "^1.10",
  4977. "symfony/polyfill-php70": "^1.10",
  4978. "symfony/polyfill-php72": "^1.10"
  4979. },
  4980. "suggest": {
  4981. "ext-intl": "For best performance"
  4982. },
  4983. "type": "library",
  4984. "extra": {
  4985. "branch-alias": {
  4986. "dev-master": "1.18-dev"
  4987. },
  4988. "thanks": {
  4989. "name": "symfony/polyfill",
  4990. "url": "https://github.com/symfony/polyfill"
  4991. }
  4992. },
  4993. "autoload": {
  4994. "psr-4": {
  4995. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4996. },
  4997. "files": [
  4998. "bootstrap.php"
  4999. ]
  5000. },
  5001. "notification-url": "https://packagist.org/downloads/",
  5002. "license": [
  5003. "MIT"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "Laurent Bassin",
  5008. "email": "laurent@bassin.info"
  5009. },
  5010. {
  5011. "name": "Trevor Rowbotham",
  5012. "email": "trevor.rowbotham@pm.me"
  5013. },
  5014. {
  5015. "name": "Symfony Community",
  5016. "homepage": "https://symfony.com/contributors"
  5017. }
  5018. ],
  5019. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5020. "homepage": "https://symfony.com",
  5021. "keywords": [
  5022. "compatibility",
  5023. "idn",
  5024. "intl",
  5025. "polyfill",
  5026. "portable",
  5027. "shim"
  5028. ],
  5029. "funding": [
  5030. {
  5031. "url": "https://symfony.com/sponsor",
  5032. "type": "custom"
  5033. },
  5034. {
  5035. "url": "https://github.com/fabpot",
  5036. "type": "github"
  5037. },
  5038. {
  5039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5040. "type": "tidelift"
  5041. }
  5042. ],
  5043. "time": "2020-08-04T06:02:08+00:00"
  5044. },
  5045. {
  5046. "name": "symfony/polyfill-intl-normalizer",
  5047. "version": "v1.18.1",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5051. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5056. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5057. "shasum": ""
  5058. },
  5059. "require": {
  5060. "php": ">=5.3.3"
  5061. },
  5062. "suggest": {
  5063. "ext-intl": "For best performance"
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-master": "1.18-dev"
  5069. },
  5070. "thanks": {
  5071. "name": "symfony/polyfill",
  5072. "url": "https://github.com/symfony/polyfill"
  5073. }
  5074. },
  5075. "autoload": {
  5076. "psr-4": {
  5077. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5078. },
  5079. "files": [
  5080. "bootstrap.php"
  5081. ],
  5082. "classmap": [
  5083. "Resources/stubs"
  5084. ]
  5085. },
  5086. "notification-url": "https://packagist.org/downloads/",
  5087. "license": [
  5088. "MIT"
  5089. ],
  5090. "authors": [
  5091. {
  5092. "name": "Nicolas Grekas",
  5093. "email": "p@tchwork.com"
  5094. },
  5095. {
  5096. "name": "Symfony Community",
  5097. "homepage": "https://symfony.com/contributors"
  5098. }
  5099. ],
  5100. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5101. "homepage": "https://symfony.com",
  5102. "keywords": [
  5103. "compatibility",
  5104. "intl",
  5105. "normalizer",
  5106. "polyfill",
  5107. "portable",
  5108. "shim"
  5109. ],
  5110. "funding": [
  5111. {
  5112. "url": "https://symfony.com/sponsor",
  5113. "type": "custom"
  5114. },
  5115. {
  5116. "url": "https://github.com/fabpot",
  5117. "type": "github"
  5118. },
  5119. {
  5120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5121. "type": "tidelift"
  5122. }
  5123. ],
  5124. "time": "2020-07-14T12:35:20+00:00"
  5125. },
  5126. {
  5127. "name": "symfony/polyfill-mbstring",
  5128. "version": "v1.18.1",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5132. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5137. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "php": ">=5.3.3"
  5142. },
  5143. "suggest": {
  5144. "ext-mbstring": "For best performance"
  5145. },
  5146. "type": "library",
  5147. "extra": {
  5148. "branch-alias": {
  5149. "dev-master": "1.18-dev"
  5150. },
  5151. "thanks": {
  5152. "name": "symfony/polyfill",
  5153. "url": "https://github.com/symfony/polyfill"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "psr-4": {
  5158. "Symfony\\Polyfill\\Mbstring\\": ""
  5159. },
  5160. "files": [
  5161. "bootstrap.php"
  5162. ]
  5163. },
  5164. "notification-url": "https://packagist.org/downloads/",
  5165. "license": [
  5166. "MIT"
  5167. ],
  5168. "authors": [
  5169. {
  5170. "name": "Nicolas Grekas",
  5171. "email": "p@tchwork.com"
  5172. },
  5173. {
  5174. "name": "Symfony Community",
  5175. "homepage": "https://symfony.com/contributors"
  5176. }
  5177. ],
  5178. "description": "Symfony polyfill for the Mbstring extension",
  5179. "homepage": "https://symfony.com",
  5180. "keywords": [
  5181. "compatibility",
  5182. "mbstring",
  5183. "polyfill",
  5184. "portable",
  5185. "shim"
  5186. ],
  5187. "funding": [
  5188. {
  5189. "url": "https://symfony.com/sponsor",
  5190. "type": "custom"
  5191. },
  5192. {
  5193. "url": "https://github.com/fabpot",
  5194. "type": "github"
  5195. },
  5196. {
  5197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5198. "type": "tidelift"
  5199. }
  5200. ],
  5201. "time": "2020-07-14T12:35:20+00:00"
  5202. },
  5203. {
  5204. "name": "symfony/polyfill-php70",
  5205. "version": "v1.18.1",
  5206. "source": {
  5207. "type": "git",
  5208. "url": "https://github.com/symfony/polyfill-php70.git",
  5209. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5210. },
  5211. "dist": {
  5212. "type": "zip",
  5213. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5214. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5215. "shasum": ""
  5216. },
  5217. "require": {
  5218. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5219. "php": ">=5.3.3"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-master": "1.18-dev"
  5225. },
  5226. "thanks": {
  5227. "name": "symfony/polyfill",
  5228. "url": "https://github.com/symfony/polyfill"
  5229. }
  5230. },
  5231. "autoload": {
  5232. "psr-4": {
  5233. "Symfony\\Polyfill\\Php70\\": ""
  5234. },
  5235. "files": [
  5236. "bootstrap.php"
  5237. ],
  5238. "classmap": [
  5239. "Resources/stubs"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Nicolas Grekas",
  5249. "email": "p@tchwork.com"
  5250. },
  5251. {
  5252. "name": "Symfony Community",
  5253. "homepage": "https://symfony.com/contributors"
  5254. }
  5255. ],
  5256. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5257. "homepage": "https://symfony.com",
  5258. "keywords": [
  5259. "compatibility",
  5260. "polyfill",
  5261. "portable",
  5262. "shim"
  5263. ],
  5264. "funding": [
  5265. {
  5266. "url": "https://symfony.com/sponsor",
  5267. "type": "custom"
  5268. },
  5269. {
  5270. "url": "https://github.com/fabpot",
  5271. "type": "github"
  5272. },
  5273. {
  5274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5275. "type": "tidelift"
  5276. }
  5277. ],
  5278. "time": "2020-07-14T12:35:20+00:00"
  5279. },
  5280. {
  5281. "name": "symfony/polyfill-php72",
  5282. "version": "v1.18.1",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/symfony/polyfill-php72.git",
  5286. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5291. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "php": ">=5.3.3"
  5296. },
  5297. "type": "library",
  5298. "extra": {
  5299. "branch-alias": {
  5300. "dev-master": "1.18-dev"
  5301. },
  5302. "thanks": {
  5303. "name": "symfony/polyfill",
  5304. "url": "https://github.com/symfony/polyfill"
  5305. }
  5306. },
  5307. "autoload": {
  5308. "psr-4": {
  5309. "Symfony\\Polyfill\\Php72\\": ""
  5310. },
  5311. "files": [
  5312. "bootstrap.php"
  5313. ]
  5314. },
  5315. "notification-url": "https://packagist.org/downloads/",
  5316. "license": [
  5317. "MIT"
  5318. ],
  5319. "authors": [
  5320. {
  5321. "name": "Nicolas Grekas",
  5322. "email": "p@tchwork.com"
  5323. },
  5324. {
  5325. "name": "Symfony Community",
  5326. "homepage": "https://symfony.com/contributors"
  5327. }
  5328. ],
  5329. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5330. "homepage": "https://symfony.com",
  5331. "keywords": [
  5332. "compatibility",
  5333. "polyfill",
  5334. "portable",
  5335. "shim"
  5336. ],
  5337. "funding": [
  5338. {
  5339. "url": "https://symfony.com/sponsor",
  5340. "type": "custom"
  5341. },
  5342. {
  5343. "url": "https://github.com/fabpot",
  5344. "type": "github"
  5345. },
  5346. {
  5347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5348. "type": "tidelift"
  5349. }
  5350. ],
  5351. "time": "2020-07-14T12:35:20+00:00"
  5352. },
  5353. {
  5354. "name": "symfony/polyfill-php73",
  5355. "version": "v1.18.1",
  5356. "source": {
  5357. "type": "git",
  5358. "url": "https://github.com/symfony/polyfill-php73.git",
  5359. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5360. },
  5361. "dist": {
  5362. "type": "zip",
  5363. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5364. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5365. "shasum": ""
  5366. },
  5367. "require": {
  5368. "php": ">=5.3.3"
  5369. },
  5370. "type": "library",
  5371. "extra": {
  5372. "branch-alias": {
  5373. "dev-master": "1.18-dev"
  5374. },
  5375. "thanks": {
  5376. "name": "symfony/polyfill",
  5377. "url": "https://github.com/symfony/polyfill"
  5378. }
  5379. },
  5380. "autoload": {
  5381. "psr-4": {
  5382. "Symfony\\Polyfill\\Php73\\": ""
  5383. },
  5384. "files": [
  5385. "bootstrap.php"
  5386. ],
  5387. "classmap": [
  5388. "Resources/stubs"
  5389. ]
  5390. },
  5391. "notification-url": "https://packagist.org/downloads/",
  5392. "license": [
  5393. "MIT"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "Nicolas Grekas",
  5398. "email": "p@tchwork.com"
  5399. },
  5400. {
  5401. "name": "Symfony Community",
  5402. "homepage": "https://symfony.com/contributors"
  5403. }
  5404. ],
  5405. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5406. "homepage": "https://symfony.com",
  5407. "keywords": [
  5408. "compatibility",
  5409. "polyfill",
  5410. "portable",
  5411. "shim"
  5412. ],
  5413. "funding": [
  5414. {
  5415. "url": "https://symfony.com/sponsor",
  5416. "type": "custom"
  5417. },
  5418. {
  5419. "url": "https://github.com/fabpot",
  5420. "type": "github"
  5421. },
  5422. {
  5423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5424. "type": "tidelift"
  5425. }
  5426. ],
  5427. "time": "2020-07-14T12:35:20+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/polyfill-php80",
  5431. "version": "v1.18.1",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/polyfill-php80.git",
  5435. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5440. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5441. "shasum": ""
  5442. },
  5443. "require": {
  5444. "php": ">=7.0.8"
  5445. },
  5446. "type": "library",
  5447. "extra": {
  5448. "branch-alias": {
  5449. "dev-master": "1.18-dev"
  5450. },
  5451. "thanks": {
  5452. "name": "symfony/polyfill",
  5453. "url": "https://github.com/symfony/polyfill"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Symfony\\Polyfill\\Php80\\": ""
  5459. },
  5460. "files": [
  5461. "bootstrap.php"
  5462. ],
  5463. "classmap": [
  5464. "Resources/stubs"
  5465. ]
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "license": [
  5469. "MIT"
  5470. ],
  5471. "authors": [
  5472. {
  5473. "name": "Ion Bazan",
  5474. "email": "ion.bazan@gmail.com"
  5475. },
  5476. {
  5477. "name": "Nicolas Grekas",
  5478. "email": "p@tchwork.com"
  5479. },
  5480. {
  5481. "name": "Symfony Community",
  5482. "homepage": "https://symfony.com/contributors"
  5483. }
  5484. ],
  5485. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5486. "homepage": "https://symfony.com",
  5487. "keywords": [
  5488. "compatibility",
  5489. "polyfill",
  5490. "portable",
  5491. "shim"
  5492. ],
  5493. "funding": [
  5494. {
  5495. "url": "https://symfony.com/sponsor",
  5496. "type": "custom"
  5497. },
  5498. {
  5499. "url": "https://github.com/fabpot",
  5500. "type": "github"
  5501. },
  5502. {
  5503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5504. "type": "tidelift"
  5505. }
  5506. ],
  5507. "time": "2020-07-14T12:35:20+00:00"
  5508. },
  5509. {
  5510. "name": "symfony/process",
  5511. "version": "v5.1.7",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://github.com/symfony/process.git",
  5515. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://api.github.com/repos/symfony/process/zipball/d3a2e64866169586502f0cd9cab69135ad12cee9",
  5520. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9",
  5521. "shasum": ""
  5522. },
  5523. "require": {
  5524. "php": ">=7.2.5",
  5525. "symfony/polyfill-php80": "^1.15"
  5526. },
  5527. "type": "library",
  5528. "extra": {
  5529. "branch-alias": {
  5530. "dev-master": "5.1-dev"
  5531. }
  5532. },
  5533. "autoload": {
  5534. "psr-4": {
  5535. "Symfony\\Component\\Process\\": ""
  5536. },
  5537. "exclude-from-classmap": [
  5538. "/Tests/"
  5539. ]
  5540. },
  5541. "notification-url": "https://packagist.org/downloads/",
  5542. "license": [
  5543. "MIT"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Fabien Potencier",
  5548. "email": "fabien@symfony.com"
  5549. },
  5550. {
  5551. "name": "Symfony Community",
  5552. "homepage": "https://symfony.com/contributors"
  5553. }
  5554. ],
  5555. "description": "Symfony Process Component",
  5556. "homepage": "https://symfony.com",
  5557. "funding": [
  5558. {
  5559. "url": "https://symfony.com/sponsor",
  5560. "type": "custom"
  5561. },
  5562. {
  5563. "url": "https://github.com/fabpot",
  5564. "type": "github"
  5565. },
  5566. {
  5567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5568. "type": "tidelift"
  5569. }
  5570. ],
  5571. "time": "2020-09-02T16:23:27+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/routing",
  5575. "version": "v5.1.7",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/routing.git",
  5579. "reference": "720348c2ae011f8c56964c0fc3e992840cb60ccf"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/routing/zipball/720348c2ae011f8c56964c0fc3e992840cb60ccf",
  5584. "reference": "720348c2ae011f8c56964c0fc3e992840cb60ccf",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=7.2.5",
  5589. "symfony/deprecation-contracts": "^2.1",
  5590. "symfony/polyfill-php80": "^1.15"
  5591. },
  5592. "conflict": {
  5593. "symfony/config": "<5.0",
  5594. "symfony/dependency-injection": "<4.4",
  5595. "symfony/yaml": "<4.4"
  5596. },
  5597. "require-dev": {
  5598. "doctrine/annotations": "~1.2",
  5599. "psr/log": "~1.0",
  5600. "symfony/config": "^5.0",
  5601. "symfony/dependency-injection": "^4.4|^5.0",
  5602. "symfony/expression-language": "^4.4|^5.0",
  5603. "symfony/http-foundation": "^4.4|^5.0",
  5604. "symfony/yaml": "^4.4|^5.0"
  5605. },
  5606. "suggest": {
  5607. "doctrine/annotations": "For using the annotation loader",
  5608. "symfony/config": "For using the all-in-one router or any loader",
  5609. "symfony/expression-language": "For using expression matching",
  5610. "symfony/http-foundation": "For using a Symfony Request object",
  5611. "symfony/yaml": "For using the YAML loader"
  5612. },
  5613. "type": "library",
  5614. "extra": {
  5615. "branch-alias": {
  5616. "dev-master": "5.1-dev"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "psr-4": {
  5621. "Symfony\\Component\\Routing\\": ""
  5622. },
  5623. "exclude-from-classmap": [
  5624. "/Tests/"
  5625. ]
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Fabien Potencier",
  5634. "email": "fabien@symfony.com"
  5635. },
  5636. {
  5637. "name": "Symfony Community",
  5638. "homepage": "https://symfony.com/contributors"
  5639. }
  5640. ],
  5641. "description": "Symfony Routing Component",
  5642. "homepage": "https://symfony.com",
  5643. "keywords": [
  5644. "router",
  5645. "routing",
  5646. "uri",
  5647. "url"
  5648. ],
  5649. "funding": [
  5650. {
  5651. "url": "https://symfony.com/sponsor",
  5652. "type": "custom"
  5653. },
  5654. {
  5655. "url": "https://github.com/fabpot",
  5656. "type": "github"
  5657. },
  5658. {
  5659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5660. "type": "tidelift"
  5661. }
  5662. ],
  5663. "time": "2020-10-02T13:05:43+00:00"
  5664. },
  5665. {
  5666. "name": "symfony/service-contracts",
  5667. "version": "v2.2.0",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/symfony/service-contracts.git",
  5671. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5676. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": ">=7.2.5",
  5681. "psr/container": "^1.0"
  5682. },
  5683. "suggest": {
  5684. "symfony/service-implementation": ""
  5685. },
  5686. "type": "library",
  5687. "extra": {
  5688. "branch-alias": {
  5689. "dev-master": "2.2-dev"
  5690. },
  5691. "thanks": {
  5692. "name": "symfony/contracts",
  5693. "url": "https://github.com/symfony/contracts"
  5694. }
  5695. },
  5696. "autoload": {
  5697. "psr-4": {
  5698. "Symfony\\Contracts\\Service\\": ""
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Nicolas Grekas",
  5708. "email": "p@tchwork.com"
  5709. },
  5710. {
  5711. "name": "Symfony Community",
  5712. "homepage": "https://symfony.com/contributors"
  5713. }
  5714. ],
  5715. "description": "Generic abstractions related to writing services",
  5716. "homepage": "https://symfony.com",
  5717. "keywords": [
  5718. "abstractions",
  5719. "contracts",
  5720. "decoupling",
  5721. "interfaces",
  5722. "interoperability",
  5723. "standards"
  5724. ],
  5725. "funding": [
  5726. {
  5727. "url": "https://symfony.com/sponsor",
  5728. "type": "custom"
  5729. },
  5730. {
  5731. "url": "https://github.com/fabpot",
  5732. "type": "github"
  5733. },
  5734. {
  5735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5736. "type": "tidelift"
  5737. }
  5738. ],
  5739. "time": "2020-09-07T11:33:47+00:00"
  5740. },
  5741. {
  5742. "name": "symfony/string",
  5743. "version": "v5.1.7",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/symfony/string.git",
  5747. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5752. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5753. "shasum": ""
  5754. },
  5755. "require": {
  5756. "php": ">=7.2.5",
  5757. "symfony/polyfill-ctype": "~1.8",
  5758. "symfony/polyfill-intl-grapheme": "~1.0",
  5759. "symfony/polyfill-intl-normalizer": "~1.0",
  5760. "symfony/polyfill-mbstring": "~1.0",
  5761. "symfony/polyfill-php80": "~1.15"
  5762. },
  5763. "require-dev": {
  5764. "symfony/error-handler": "^4.4|^5.0",
  5765. "symfony/http-client": "^4.4|^5.0",
  5766. "symfony/translation-contracts": "^1.1|^2",
  5767. "symfony/var-exporter": "^4.4|^5.0"
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-master": "5.1-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "psr-4": {
  5777. "Symfony\\Component\\String\\": ""
  5778. },
  5779. "files": [
  5780. "Resources/functions.php"
  5781. ],
  5782. "exclude-from-classmap": [
  5783. "/Tests/"
  5784. ]
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Nicolas Grekas",
  5793. "email": "p@tchwork.com"
  5794. },
  5795. {
  5796. "name": "Symfony Community",
  5797. "homepage": "https://symfony.com/contributors"
  5798. }
  5799. ],
  5800. "description": "Symfony String component",
  5801. "homepage": "https://symfony.com",
  5802. "keywords": [
  5803. "grapheme",
  5804. "i18n",
  5805. "string",
  5806. "unicode",
  5807. "utf-8",
  5808. "utf8"
  5809. ],
  5810. "funding": [
  5811. {
  5812. "url": "https://symfony.com/sponsor",
  5813. "type": "custom"
  5814. },
  5815. {
  5816. "url": "https://github.com/fabpot",
  5817. "type": "github"
  5818. },
  5819. {
  5820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5821. "type": "tidelift"
  5822. }
  5823. ],
  5824. "time": "2020-09-15T12:23:47+00:00"
  5825. },
  5826. {
  5827. "name": "symfony/translation",
  5828. "version": "v5.1.7",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://github.com/symfony/translation.git",
  5832. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://api.github.com/repos/symfony/translation/zipball/e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5837. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5838. "shasum": ""
  5839. },
  5840. "require": {
  5841. "php": ">=7.2.5",
  5842. "symfony/polyfill-mbstring": "~1.0",
  5843. "symfony/polyfill-php80": "^1.15",
  5844. "symfony/translation-contracts": "^2"
  5845. },
  5846. "conflict": {
  5847. "symfony/config": "<4.4",
  5848. "symfony/dependency-injection": "<5.0",
  5849. "symfony/http-kernel": "<5.0",
  5850. "symfony/twig-bundle": "<5.0",
  5851. "symfony/yaml": "<4.4"
  5852. },
  5853. "provide": {
  5854. "symfony/translation-implementation": "2.0"
  5855. },
  5856. "require-dev": {
  5857. "psr/log": "~1.0",
  5858. "symfony/config": "^4.4|^5.0",
  5859. "symfony/console": "^4.4|^5.0",
  5860. "symfony/dependency-injection": "^5.0",
  5861. "symfony/finder": "^4.4|^5.0",
  5862. "symfony/http-kernel": "^5.0",
  5863. "symfony/intl": "^4.4|^5.0",
  5864. "symfony/service-contracts": "^1.1.2|^2",
  5865. "symfony/yaml": "^4.4|^5.0"
  5866. },
  5867. "suggest": {
  5868. "psr/log-implementation": "To use logging capability in translator",
  5869. "symfony/config": "",
  5870. "symfony/yaml": ""
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "branch-alias": {
  5875. "dev-master": "5.1-dev"
  5876. }
  5877. },
  5878. "autoload": {
  5879. "psr-4": {
  5880. "Symfony\\Component\\Translation\\": ""
  5881. },
  5882. "exclude-from-classmap": [
  5883. "/Tests/"
  5884. ]
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Fabien Potencier",
  5893. "email": "fabien@symfony.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Symfony Translation Component",
  5901. "homepage": "https://symfony.com",
  5902. "funding": [
  5903. {
  5904. "url": "https://symfony.com/sponsor",
  5905. "type": "custom"
  5906. },
  5907. {
  5908. "url": "https://github.com/fabpot",
  5909. "type": "github"
  5910. },
  5911. {
  5912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5913. "type": "tidelift"
  5914. }
  5915. ],
  5916. "time": "2020-09-27T03:44:28+00:00"
  5917. },
  5918. {
  5919. "name": "symfony/translation-contracts",
  5920. "version": "v2.3.0",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/symfony/translation-contracts.git",
  5924. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5929. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5930. "shasum": ""
  5931. },
  5932. "require": {
  5933. "php": ">=7.2.5"
  5934. },
  5935. "suggest": {
  5936. "symfony/translation-implementation": ""
  5937. },
  5938. "type": "library",
  5939. "extra": {
  5940. "branch-alias": {
  5941. "dev-master": "2.3-dev"
  5942. },
  5943. "thanks": {
  5944. "name": "symfony/contracts",
  5945. "url": "https://github.com/symfony/contracts"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "psr-4": {
  5950. "Symfony\\Contracts\\Translation\\": ""
  5951. }
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Nicolas Grekas",
  5960. "email": "p@tchwork.com"
  5961. },
  5962. {
  5963. "name": "Symfony Community",
  5964. "homepage": "https://symfony.com/contributors"
  5965. }
  5966. ],
  5967. "description": "Generic abstractions related to translation",
  5968. "homepage": "https://symfony.com",
  5969. "keywords": [
  5970. "abstractions",
  5971. "contracts",
  5972. "decoupling",
  5973. "interfaces",
  5974. "interoperability",
  5975. "standards"
  5976. ],
  5977. "funding": [
  5978. {
  5979. "url": "https://symfony.com/sponsor",
  5980. "type": "custom"
  5981. },
  5982. {
  5983. "url": "https://github.com/fabpot",
  5984. "type": "github"
  5985. },
  5986. {
  5987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5988. "type": "tidelift"
  5989. }
  5990. ],
  5991. "time": "2020-09-28T13:05:58+00:00"
  5992. },
  5993. {
  5994. "name": "symfony/var-dumper",
  5995. "version": "v5.1.7",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/symfony/var-dumper.git",
  5999. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c976c115a0d788808f7e71834c8eb0844f678d02",
  6004. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=7.2.5",
  6009. "symfony/polyfill-mbstring": "~1.0",
  6010. "symfony/polyfill-php80": "^1.15"
  6011. },
  6012. "conflict": {
  6013. "phpunit/phpunit": "<5.4.3",
  6014. "symfony/console": "<4.4"
  6015. },
  6016. "require-dev": {
  6017. "ext-iconv": "*",
  6018. "symfony/console": "^4.4|^5.0",
  6019. "symfony/process": "^4.4|^5.0",
  6020. "twig/twig": "^2.4|^3.0"
  6021. },
  6022. "suggest": {
  6023. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6024. "ext-intl": "To show region name in time zone dump",
  6025. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6026. },
  6027. "bin": [
  6028. "Resources/bin/var-dump-server"
  6029. ],
  6030. "type": "library",
  6031. "extra": {
  6032. "branch-alias": {
  6033. "dev-master": "5.1-dev"
  6034. }
  6035. },
  6036. "autoload": {
  6037. "files": [
  6038. "Resources/functions/dump.php"
  6039. ],
  6040. "psr-4": {
  6041. "Symfony\\Component\\VarDumper\\": ""
  6042. },
  6043. "exclude-from-classmap": [
  6044. "/Tests/"
  6045. ]
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "MIT"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Nicolas Grekas",
  6054. "email": "p@tchwork.com"
  6055. },
  6056. {
  6057. "name": "Symfony Community",
  6058. "homepage": "https://symfony.com/contributors"
  6059. }
  6060. ],
  6061. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6062. "homepage": "https://symfony.com",
  6063. "keywords": [
  6064. "debug",
  6065. "dump"
  6066. ],
  6067. "funding": [
  6068. {
  6069. "url": "https://symfony.com/sponsor",
  6070. "type": "custom"
  6071. },
  6072. {
  6073. "url": "https://github.com/fabpot",
  6074. "type": "github"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2020-09-18T14:27:32+00:00"
  6082. },
  6083. {
  6084. "name": "tijsverkoyen/css-to-inline-styles",
  6085. "version": "2.2.3",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6089. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6094. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6095. "shasum": ""
  6096. },
  6097. "require": {
  6098. "ext-dom": "*",
  6099. "ext-libxml": "*",
  6100. "php": "^5.5 || ^7.0 || ^8.0",
  6101. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6102. },
  6103. "require-dev": {
  6104. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6105. },
  6106. "type": "library",
  6107. "extra": {
  6108. "branch-alias": {
  6109. "dev-master": "2.2.x-dev"
  6110. }
  6111. },
  6112. "autoload": {
  6113. "psr-4": {
  6114. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6115. }
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "BSD-3-Clause"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Tijs Verkoyen",
  6124. "email": "css_to_inline_styles@verkoyen.eu",
  6125. "role": "Developer"
  6126. }
  6127. ],
  6128. "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.",
  6129. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6130. "time": "2020-07-13T06:12:54+00:00"
  6131. },
  6132. {
  6133. "name": "vlucas/phpdotenv",
  6134. "version": "v4.1.8",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/vlucas/phpdotenv.git",
  6138. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6143. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6144. "shasum": ""
  6145. },
  6146. "require": {
  6147. "php": "^5.5.9 || ^7.0 || ^8.0",
  6148. "phpoption/phpoption": "^1.7.3",
  6149. "symfony/polyfill-ctype": "^1.17"
  6150. },
  6151. "require-dev": {
  6152. "bamarni/composer-bin-plugin": "^1.4.1",
  6153. "ext-filter": "*",
  6154. "ext-pcre": "*",
  6155. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6156. },
  6157. "suggest": {
  6158. "ext-filter": "Required to use the boolean validator.",
  6159. "ext-pcre": "Required to use most of the library."
  6160. },
  6161. "type": "library",
  6162. "extra": {
  6163. "branch-alias": {
  6164. "dev-master": "4.1-dev"
  6165. }
  6166. },
  6167. "autoload": {
  6168. "psr-4": {
  6169. "Dotenv\\": "src/"
  6170. }
  6171. },
  6172. "notification-url": "https://packagist.org/downloads/",
  6173. "license": [
  6174. "BSD-3-Clause"
  6175. ],
  6176. "authors": [
  6177. {
  6178. "name": "Graham Campbell",
  6179. "email": "graham@alt-three.com",
  6180. "homepage": "https://gjcampbell.co.uk/"
  6181. },
  6182. {
  6183. "name": "Vance Lucas",
  6184. "email": "vance@vancelucas.com",
  6185. "homepage": "https://vancelucas.com/"
  6186. }
  6187. ],
  6188. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6189. "keywords": [
  6190. "dotenv",
  6191. "env",
  6192. "environment"
  6193. ],
  6194. "funding": [
  6195. {
  6196. "url": "https://github.com/GrahamCampbell",
  6197. "type": "github"
  6198. },
  6199. {
  6200. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6201. "type": "tidelift"
  6202. }
  6203. ],
  6204. "time": "2020-07-14T19:22:52+00:00"
  6205. },
  6206. {
  6207. "name": "voku/portable-ascii",
  6208. "version": "1.5.3",
  6209. "source": {
  6210. "type": "git",
  6211. "url": "https://github.com/voku/portable-ascii.git",
  6212. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6213. },
  6214. "dist": {
  6215. "type": "zip",
  6216. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6217. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6218. "shasum": ""
  6219. },
  6220. "require": {
  6221. "php": ">=7.0.0"
  6222. },
  6223. "require-dev": {
  6224. "phpunit/phpunit": "~6.0 || ~7.0"
  6225. },
  6226. "suggest": {
  6227. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6228. },
  6229. "type": "library",
  6230. "autoload": {
  6231. "psr-4": {
  6232. "voku\\": "src/voku/"
  6233. }
  6234. },
  6235. "notification-url": "https://packagist.org/downloads/",
  6236. "license": [
  6237. "MIT"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "Lars Moelleken",
  6242. "homepage": "http://www.moelleken.org/"
  6243. }
  6244. ],
  6245. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6246. "homepage": "https://github.com/voku/portable-ascii",
  6247. "keywords": [
  6248. "ascii",
  6249. "clean",
  6250. "php"
  6251. ],
  6252. "funding": [
  6253. {
  6254. "url": "https://www.paypal.me/moelleken",
  6255. "type": "custom"
  6256. },
  6257. {
  6258. "url": "https://github.com/voku",
  6259. "type": "github"
  6260. },
  6261. {
  6262. "url": "https://opencollective.com/portable-ascii",
  6263. "type": "open_collective"
  6264. },
  6265. {
  6266. "url": "https://www.patreon.com/voku",
  6267. "type": "patreon"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2020-07-22T23:32:04+00:00"
  6275. },
  6276. {
  6277. "name": "xhat/payjs",
  6278. "version": "1.5.0",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/xhat/payjs.git",
  6282. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6287. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6288. "shasum": ""
  6289. },
  6290. "type": "library",
  6291. "autoload": {
  6292. "psr-4": {
  6293. "Xhat\\Payjs\\": "src/"
  6294. }
  6295. },
  6296. "notification-url": "https://packagist.org/downloads/",
  6297. "license": [
  6298. "MIT"
  6299. ],
  6300. "authors": [
  6301. {
  6302. "name": "andy",
  6303. "email": "andy@popfeng.com"
  6304. }
  6305. ],
  6306. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6307. "funding": [
  6308. {
  6309. "url": "https://payjs.cn/sponsor/dajjxz",
  6310. "type": "custom"
  6311. }
  6312. ],
  6313. "time": "2020-09-11T06:02:42+00:00"
  6314. },
  6315. {
  6316. "name": "zbrettonye/geetest",
  6317. "version": "v1.2.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/ZBrettonYe/geetest.git",
  6321. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6326. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "ext-json": "*",
  6331. "guzzlehttp/guzzle": "^6.3|^7.0",
  6332. "illuminate/routing": "^6|^7|^8",
  6333. "illuminate/support": "^6|^7|^8",
  6334. "php": "^7.2"
  6335. },
  6336. "require-dev": {
  6337. "mockery/mockery": "^1.3.1",
  6338. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  6339. },
  6340. "type": "library",
  6341. "extra": {
  6342. "laravel": {
  6343. "providers": [
  6344. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6345. ],
  6346. "aliases": {
  6347. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6348. }
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "ZBrettonYe\\Geetest\\": "src/"
  6354. }
  6355. },
  6356. "notification-url": "https://packagist.org/downloads/",
  6357. "license": [
  6358. "MIT"
  6359. ],
  6360. "authors": [
  6361. {
  6362. "name": "zbrettonye",
  6363. "email": "monkeyblacktech97@gmail.com"
  6364. }
  6365. ],
  6366. "description": "Geetest Package for Laravel6-8",
  6367. "keywords": [
  6368. "geetest",
  6369. "laravel"
  6370. ],
  6371. "time": "2020-10-13T20:15:36+00:00"
  6372. },
  6373. {
  6374. "name": "zbrettonye/hcaptcha",
  6375. "version": "V1.1.0",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6379. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6384. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "guzzlehttp/guzzle": "^6.2|^7.0",
  6389. "illuminate/support": "^6|^7|^8",
  6390. "php": "^7.2"
  6391. },
  6392. "require-dev": {
  6393. "phpunit/phpunit": "~4.8"
  6394. },
  6395. "type": "library",
  6396. "extra": {
  6397. "laravel": {
  6398. "providers": [
  6399. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6400. ],
  6401. "aliases": {
  6402. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6403. }
  6404. }
  6405. },
  6406. "autoload": {
  6407. "psr-4": {
  6408. "ZBrettonYe\\HCaptcha\\": "src/"
  6409. }
  6410. },
  6411. "notification-url": "https://packagist.org/downloads/",
  6412. "license": [
  6413. "MIT"
  6414. ],
  6415. "authors": [
  6416. {
  6417. "name": "zbrettonye",
  6418. "email": "monkeyblacktech97@gmail.com"
  6419. }
  6420. ],
  6421. "description": "hCaptcha For Laravel6~8",
  6422. "keywords": [
  6423. "captcha",
  6424. "hcaptcha",
  6425. "laravel"
  6426. ],
  6427. "time": "2020-10-13T21:22:51+00:00"
  6428. },
  6429. {
  6430. "name": "zbrettonye/no-captcha",
  6431. "version": "v1.1.0",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6435. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6440. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "ext-json": "*",
  6445. "guzzlehttp/guzzle": "^6.2|^7.0",
  6446. "illuminate/support": "^6|^7|^8",
  6447. "php": "^7.2"
  6448. },
  6449. "require-dev": {
  6450. "phpunit/phpunit": "~4.8"
  6451. },
  6452. "type": "library",
  6453. "extra": {
  6454. "laravel": {
  6455. "providers": [
  6456. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6457. ],
  6458. "aliases": {
  6459. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6460. }
  6461. }
  6462. },
  6463. "autoload": {
  6464. "psr-4": {
  6465. "ZBrettonYe\\NoCaptcha\\": "src/"
  6466. }
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "zbrettonye",
  6475. "email": "monkeyblacktech97@gmail.com"
  6476. }
  6477. ],
  6478. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  6479. "keywords": [
  6480. "captcha",
  6481. "laravel",
  6482. "no-captcha",
  6483. "recaptcha"
  6484. ],
  6485. "time": "2020-10-13T21:35:30+00:00"
  6486. },
  6487. {
  6488. "name": "zoujingli/ip2region",
  6489. "version": "v1.0.8",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/zoujingli/ip2region.git",
  6493. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6498. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6499. "shasum": ""
  6500. },
  6501. "require": {
  6502. "php": ">=5.3"
  6503. },
  6504. "type": "library",
  6505. "autoload": {
  6506. "classmap": [
  6507. "Ip2Region.php"
  6508. ]
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "Apache-2.0"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Anyon",
  6517. "email": "zoujingli@qq.com",
  6518. "homepage": "http://ctolog.com"
  6519. }
  6520. ],
  6521. "description": "Ip2Region for PHP",
  6522. "homepage": "https://github.com/zoujingli/Ip2Region",
  6523. "keywords": [
  6524. "Ip2Region"
  6525. ],
  6526. "time": "2020-07-06T05:33:26+00:00"
  6527. }
  6528. ],
  6529. "packages-dev": [
  6530. {
  6531. "name": "andrey-helldar/laravel-lang-publisher",
  6532. "version": "v6.1.0",
  6533. "source": {
  6534. "type": "git",
  6535. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  6536. "reference": "f139c43e615c1256f5493c6a465aef06089b451e"
  6537. },
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/f139c43e615c1256f5493c6a465aef06089b451e",
  6541. "reference": "f139c43e615c1256f5493c6a465aef06089b451e",
  6542. "shasum": ""
  6543. },
  6544. "require": {
  6545. "andrey-helldar/pretty-array": "^1.4.2",
  6546. "andrey-helldar/support": "^1.4.1",
  6547. "ext-json": "*",
  6548. "illuminate/console": "^7.0|^8.0",
  6549. "illuminate/support": "^7.0|^8.0",
  6550. "laravel-lang/lang": "^7.0",
  6551. "php": "^7.2.5"
  6552. },
  6553. "require-dev": {
  6554. "mockery/mockery": "^1.3.1",
  6555. "orchestra/testbench": "^5.0|^6.0",
  6556. "phpunit/phpunit": "^8.4|^9.0"
  6557. },
  6558. "suggest": {
  6559. "andrey-helldar/lang-translations": "Translation of main messages",
  6560. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  6561. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6562. },
  6563. "type": "library",
  6564. "extra": {
  6565. "laravel": {
  6566. "providers": [
  6567. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  6568. ]
  6569. }
  6570. },
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Helldar\\LaravelLangPublisher\\": "src"
  6574. }
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Andrey Helldar",
  6583. "email": "helldar@ai-rus.com"
  6584. }
  6585. ],
  6586. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  6587. "keywords": [
  6588. "i18n",
  6589. "jetstream",
  6590. "lang",
  6591. "languages",
  6592. "laravel",
  6593. "locale",
  6594. "localisation",
  6595. "localization",
  6596. "lpm",
  6597. "lumen",
  6598. "publisher",
  6599. "trans",
  6600. "translations",
  6601. "validations"
  6602. ],
  6603. "funding": [
  6604. {
  6605. "url": "https://money.yandex.ru/to/410012115955701",
  6606. "type": "custom"
  6607. },
  6608. {
  6609. "url": "https://paypal.me/helldar",
  6610. "type": "custom"
  6611. }
  6612. ],
  6613. "time": "2020-10-04T14:48:29+00:00"
  6614. },
  6615. {
  6616. "name": "andrey-helldar/pretty-array",
  6617. "version": "v1.4.3",
  6618. "source": {
  6619. "type": "git",
  6620. "url": "https://github.com/andrey-helldar/pretty-array.git",
  6621. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4"
  6622. },
  6623. "dist": {
  6624. "type": "zip",
  6625. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/9a173df74949d8206a03d96999f0c838ca4e82c4",
  6626. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4",
  6627. "shasum": ""
  6628. },
  6629. "require": {
  6630. "andrey-helldar/support": "^1.16.0",
  6631. "ext-dom": "*",
  6632. "ext-mbstring": "*",
  6633. "php": "^7.1.3"
  6634. },
  6635. "require-dev": {
  6636. "phpstan/phpstan": "^0.12.7",
  6637. "phpunit/phpunit": "^7.0|^8.0"
  6638. },
  6639. "suggest": {
  6640. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6641. },
  6642. "type": "library",
  6643. "autoload": {
  6644. "psr-4": {
  6645. "Helldar\\PrettyArray\\": "src/"
  6646. }
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "MIT"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Andrey Helldar",
  6655. "email": "helldar@ai-rus.com"
  6656. }
  6657. ],
  6658. "description": "Simple conversion of an array to a pretty view.",
  6659. "keywords": [
  6660. "array",
  6661. "pretty",
  6662. "pretty array"
  6663. ],
  6664. "funding": [
  6665. {
  6666. "url": "https://money.yandex.ru/to/410012115955701",
  6667. "type": "custom"
  6668. },
  6669. {
  6670. "url": "https://paypal.me/helldar",
  6671. "type": "custom"
  6672. }
  6673. ],
  6674. "time": "2020-07-24T15:19:50+00:00"
  6675. },
  6676. {
  6677. "name": "andrey-helldar/support",
  6678. "version": "v1.21.0",
  6679. "source": {
  6680. "type": "git",
  6681. "url": "https://github.com/andrey-helldar/support.git",
  6682. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f"
  6683. },
  6684. "dist": {
  6685. "type": "zip",
  6686. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6687. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6688. "shasum": ""
  6689. },
  6690. "require": {
  6691. "ext-ctype": "*",
  6692. "ext-dom": "*",
  6693. "ext-json": "*",
  6694. "ext-mbstring": "*",
  6695. "php": "^7.1.3"
  6696. },
  6697. "require-dev": {
  6698. "ext-bcmath": "*",
  6699. "phpunit/phpunit": "^8.0|^9.0"
  6700. },
  6701. "suggest": {
  6702. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  6703. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  6704. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6705. },
  6706. "type": "library",
  6707. "extra": {
  6708. "laravel": {
  6709. "providers": [
  6710. "Helldar\\Support\\ServiceProvider"
  6711. ]
  6712. }
  6713. },
  6714. "autoload": {
  6715. "psr-4": {
  6716. "Helldar\\Support\\": "src/"
  6717. },
  6718. "files": [
  6719. "src/helpers/digit.php",
  6720. "src/helpers/dumper.php",
  6721. "src/helpers/http.php",
  6722. "src/helpers/strings.php"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Andrey Helldar",
  6732. "email": "helldar@ai-rus.com"
  6733. }
  6734. ],
  6735. "description": "Support package is a collection of helpers and tools for projects.",
  6736. "keywords": [
  6737. "framework",
  6738. "laravel",
  6739. "support",
  6740. "symfony",
  6741. "yii",
  6742. "yii2"
  6743. ],
  6744. "funding": [
  6745. {
  6746. "url": "https://money.yandex.ru/to/410012115955701",
  6747. "type": "custom"
  6748. },
  6749. {
  6750. "url": "https://paypal.me/helldar",
  6751. "type": "custom"
  6752. }
  6753. ],
  6754. "time": "2020-07-24T14:17:57+00:00"
  6755. },
  6756. {
  6757. "name": "arcanedev/laravel-lang",
  6758. "version": "8.0.0",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  6762. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  6763. },
  6764. "dist": {
  6765. "type": "zip",
  6766. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6767. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6768. "shasum": ""
  6769. },
  6770. "require": {
  6771. "arcanedev/support": "^7.1.2",
  6772. "caouecs/laravel-lang": "^6.0",
  6773. "php": "^7.2.5"
  6774. },
  6775. "require-dev": {
  6776. "mockery/mockery": "^1.3.1",
  6777. "orchestra/testbench": "^5.0",
  6778. "phpunit/phpunit": "^8.5|^9.0"
  6779. },
  6780. "type": "library",
  6781. "extra": {
  6782. "laravel": {
  6783. "providers": [
  6784. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  6785. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  6786. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  6787. ]
  6788. }
  6789. },
  6790. "autoload": {
  6791. "psr-4": {
  6792. "Arcanedev\\LaravelLang\\": "src/"
  6793. }
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "ARCANEDEV",
  6802. "email": "arcanedev.maroc@gmail.com",
  6803. "homepage": "https://github.com/arcanedev-maroc",
  6804. "role": "Developer"
  6805. }
  6806. ],
  6807. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  6808. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  6809. "keywords": [
  6810. "arcanedev",
  6811. "lang",
  6812. "languages",
  6813. "laravel",
  6814. "localisation",
  6815. "localization",
  6816. "trans",
  6817. "translations",
  6818. "validations"
  6819. ],
  6820. "time": "2020-03-21T21:29:29+00:00"
  6821. },
  6822. {
  6823. "name": "arcanedev/support",
  6824. "version": "7.1.2",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/ARCANEDEV/Support.git",
  6828. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6833. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "illuminate/filesystem": "^7.0",
  6838. "illuminate/support": "^7.0",
  6839. "php": "^7.2.5"
  6840. },
  6841. "require-dev": {
  6842. "orchestra/testbench": "^5.0",
  6843. "phpunit/phpunit": "^8.0|^9.0"
  6844. },
  6845. "type": "library",
  6846. "extra": {
  6847. "branch-alias": {
  6848. "dev-master": "7.x-dev"
  6849. }
  6850. },
  6851. "autoload": {
  6852. "psr-4": {
  6853. "Arcanedev\\Support\\": "src/"
  6854. },
  6855. "files": [
  6856. "helpers.php"
  6857. ]
  6858. },
  6859. "notification-url": "https://packagist.org/downloads/",
  6860. "license": [
  6861. "MIT"
  6862. ],
  6863. "authors": [
  6864. {
  6865. "name": "ARCANEDEV",
  6866. "email": "arcanedev.maroc@gmail.com",
  6867. "homepage": "https://github.com/arcanedev-maroc"
  6868. }
  6869. ],
  6870. "description": "ARCANEDEV Support Helpers",
  6871. "homepage": "https://github.com/ARCANEDEV/Support",
  6872. "keywords": [
  6873. "arcanedev",
  6874. "arcanesoft",
  6875. "laravel",
  6876. "support"
  6877. ],
  6878. "time": "2020-03-12T09:28:19+00:00"
  6879. },
  6880. {
  6881. "name": "barryvdh/laravel-debugbar",
  6882. "version": "v3.5.1",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6886. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6891. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6892. "shasum": ""
  6893. },
  6894. "require": {
  6895. "illuminate/routing": "^6|^7|^8",
  6896. "illuminate/session": "^6|^7|^8",
  6897. "illuminate/support": "^6|^7|^8",
  6898. "maximebf/debugbar": "^1.16.3",
  6899. "php": ">=7.2",
  6900. "symfony/debug": "^4.3|^5",
  6901. "symfony/finder": "^4.3|^5"
  6902. },
  6903. "require-dev": {
  6904. "orchestra/testbench-dusk": "^4|^5|^6",
  6905. "phpunit/phpunit": "^8.5|^9.0",
  6906. "squizlabs/php_codesniffer": "^3.5"
  6907. },
  6908. "type": "library",
  6909. "extra": {
  6910. "branch-alias": {
  6911. "dev-master": "3.5-dev"
  6912. },
  6913. "laravel": {
  6914. "providers": [
  6915. "Barryvdh\\Debugbar\\ServiceProvider"
  6916. ],
  6917. "aliases": {
  6918. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6919. }
  6920. }
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Barryvdh\\Debugbar\\": "src/"
  6925. },
  6926. "files": [
  6927. "src/helpers.php"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Barry vd. Heuvel",
  6937. "email": "barryvdh@gmail.com"
  6938. }
  6939. ],
  6940. "description": "PHP Debugbar integration for Laravel",
  6941. "keywords": [
  6942. "debug",
  6943. "debugbar",
  6944. "laravel",
  6945. "profiler",
  6946. "webprofiler"
  6947. ],
  6948. "funding": [
  6949. {
  6950. "url": "https://github.com/barryvdh",
  6951. "type": "github"
  6952. }
  6953. ],
  6954. "time": "2020-09-07T19:32:39+00:00"
  6955. },
  6956. {
  6957. "name": "barryvdh/laravel-ide-helper",
  6958. "version": "v2.8.1",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6962. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  6967. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  6968. "shasum": ""
  6969. },
  6970. "require": {
  6971. "barryvdh/reflection-docblock": "^2.0.6",
  6972. "composer/composer": "^1.6 || ^2.0@dev",
  6973. "doctrine/dbal": "~2.3",
  6974. "ext-json": "*",
  6975. "illuminate/console": "^6 || ^7 || ^8",
  6976. "illuminate/filesystem": "^6 || ^7 || ^8",
  6977. "illuminate/support": "^6 || ^7 || ^8",
  6978. "php": ">=7.2",
  6979. "phpdocumentor/type-resolver": "^1.1.0"
  6980. },
  6981. "require-dev": {
  6982. "friendsofphp/php-cs-fixer": "^2",
  6983. "illuminate/config": "^6 || ^7 || ^8",
  6984. "illuminate/view": "^6 || ^7 || ^8",
  6985. "mockery/mockery": "^1.3",
  6986. "orchestra/testbench": "^4 || ^5 || ^6",
  6987. "phpunit/phpunit": "^8.5 || ^9",
  6988. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  6989. "vimeo/psalm": "^3.12"
  6990. },
  6991. "type": "library",
  6992. "extra": {
  6993. "branch-alias": {
  6994. "dev-master": "2.8-dev"
  6995. },
  6996. "laravel": {
  6997. "providers": [
  6998. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6999. ]
  7000. }
  7001. },
  7002. "autoload": {
  7003. "psr-4": {
  7004. "Barryvdh\\LaravelIdeHelper\\": "src"
  7005. }
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Barry vd. Heuvel",
  7014. "email": "barryvdh@gmail.com"
  7015. }
  7016. ],
  7017. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7018. "keywords": [
  7019. "autocomplete",
  7020. "codeintel",
  7021. "helper",
  7022. "ide",
  7023. "laravel",
  7024. "netbeans",
  7025. "phpdoc",
  7026. "phpstorm",
  7027. "sublime"
  7028. ],
  7029. "funding": [
  7030. {
  7031. "url": "https://github.com/barryvdh",
  7032. "type": "github"
  7033. }
  7034. ],
  7035. "time": "2020-09-07T07:36:37+00:00"
  7036. },
  7037. {
  7038. "name": "barryvdh/reflection-docblock",
  7039. "version": "v2.0.6",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7043. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7048. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7049. "shasum": ""
  7050. },
  7051. "require": {
  7052. "php": ">=5.3.3"
  7053. },
  7054. "require-dev": {
  7055. "phpunit/phpunit": "~4.0,<4.5"
  7056. },
  7057. "suggest": {
  7058. "dflydev/markdown": "~1.0",
  7059. "erusev/parsedown": "~1.0"
  7060. },
  7061. "type": "library",
  7062. "extra": {
  7063. "branch-alias": {
  7064. "dev-master": "2.0.x-dev"
  7065. }
  7066. },
  7067. "autoload": {
  7068. "psr-0": {
  7069. "Barryvdh": [
  7070. "src/"
  7071. ]
  7072. }
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Mike van Riel",
  7081. "email": "mike.vanriel@naenius.com"
  7082. }
  7083. ],
  7084. "time": "2018-12-13T10:34:14+00:00"
  7085. },
  7086. {
  7087. "name": "caouecs/laravel-lang",
  7088. "version": "6.1.4",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/caouecs/lang.git",
  7092. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7097. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7098. "shasum": ""
  7099. },
  7100. "require": {
  7101. "ext-json": "*"
  7102. },
  7103. "suggest": {
  7104. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7105. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7106. "overtrue/laravel-lang": "Command to add languages in your project"
  7107. },
  7108. "type": "library",
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "caouecs",
  7116. "email": "caouecs@caouecs.net"
  7117. }
  7118. ],
  7119. "description": "Languages for Laravel",
  7120. "keywords": [
  7121. "lang",
  7122. "languages",
  7123. "laravel",
  7124. "lpm"
  7125. ],
  7126. "abandoned": "https://github.com/Laravel-Lang/lang",
  7127. "time": "2020-07-13T14:35:32+00:00"
  7128. },
  7129. {
  7130. "name": "composer/composer",
  7131. "version": "1.10.15",
  7132. "source": {
  7133. "type": "git",
  7134. "url": "https://github.com/composer/composer.git",
  7135. "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12"
  7136. },
  7137. "dist": {
  7138. "type": "zip",
  7139. "url": "https://api.github.com/repos/composer/composer/zipball/547c9ee73fe26c77af09a0ea16419176b1cdbd12",
  7140. "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12",
  7141. "shasum": ""
  7142. },
  7143. "require": {
  7144. "composer/ca-bundle": "^1.0",
  7145. "composer/semver": "^1.0",
  7146. "composer/spdx-licenses": "^1.2",
  7147. "composer/xdebug-handler": "^1.1",
  7148. "justinrainbow/json-schema": "^5.2.10",
  7149. "php": "^5.3.2 || ^7.0",
  7150. "psr/log": "^1.0",
  7151. "seld/jsonlint": "^1.4",
  7152. "seld/phar-utils": "^1.0",
  7153. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7154. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7155. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7156. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7157. },
  7158. "conflict": {
  7159. "symfony/console": "2.8.38"
  7160. },
  7161. "require-dev": {
  7162. "phpspec/prophecy": "^1.10",
  7163. "symfony/phpunit-bridge": "^4.2"
  7164. },
  7165. "suggest": {
  7166. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7167. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7168. "ext-zlib": "Allow gzip compression of HTTP requests"
  7169. },
  7170. "bin": [
  7171. "bin/composer"
  7172. ],
  7173. "type": "library",
  7174. "extra": {
  7175. "branch-alias": {
  7176. "dev-master": "1.10-dev"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Composer\\": "src/Composer"
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "authors": [
  7189. {
  7190. "name": "Nils Adermann",
  7191. "email": "naderman@naderman.de",
  7192. "homepage": "http://www.naderman.de"
  7193. },
  7194. {
  7195. "name": "Jordi Boggiano",
  7196. "email": "j.boggiano@seld.be",
  7197. "homepage": "http://seld.be"
  7198. }
  7199. ],
  7200. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7201. "homepage": "https://getcomposer.org/",
  7202. "keywords": [
  7203. "autoload",
  7204. "dependency",
  7205. "package"
  7206. ],
  7207. "funding": [
  7208. {
  7209. "url": "https://packagist.com",
  7210. "type": "custom"
  7211. },
  7212. {
  7213. "url": "https://github.com/composer",
  7214. "type": "github"
  7215. },
  7216. {
  7217. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7218. "type": "tidelift"
  7219. }
  7220. ],
  7221. "time": "2020-10-13T13:59:09+00:00"
  7222. },
  7223. {
  7224. "name": "composer/semver",
  7225. "version": "1.7.1",
  7226. "source": {
  7227. "type": "git",
  7228. "url": "https://github.com/composer/semver.git",
  7229. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  7230. },
  7231. "dist": {
  7232. "type": "zip",
  7233. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  7234. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  7235. "shasum": ""
  7236. },
  7237. "require": {
  7238. "php": "^5.3.2 || ^7.0"
  7239. },
  7240. "require-dev": {
  7241. "phpunit/phpunit": "^4.5 || ^5.0.5"
  7242. },
  7243. "type": "library",
  7244. "extra": {
  7245. "branch-alias": {
  7246. "dev-master": "1.x-dev"
  7247. }
  7248. },
  7249. "autoload": {
  7250. "psr-4": {
  7251. "Composer\\Semver\\": "src"
  7252. }
  7253. },
  7254. "notification-url": "https://packagist.org/downloads/",
  7255. "license": [
  7256. "MIT"
  7257. ],
  7258. "authors": [
  7259. {
  7260. "name": "Nils Adermann",
  7261. "email": "naderman@naderman.de",
  7262. "homepage": "http://www.naderman.de"
  7263. },
  7264. {
  7265. "name": "Jordi Boggiano",
  7266. "email": "j.boggiano@seld.be",
  7267. "homepage": "http://seld.be"
  7268. },
  7269. {
  7270. "name": "Rob Bast",
  7271. "email": "rob.bast@gmail.com",
  7272. "homepage": "http://robbast.nl"
  7273. }
  7274. ],
  7275. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7276. "keywords": [
  7277. "semantic",
  7278. "semver",
  7279. "validation",
  7280. "versioning"
  7281. ],
  7282. "funding": [
  7283. {
  7284. "url": "https://packagist.com",
  7285. "type": "custom"
  7286. },
  7287. {
  7288. "url": "https://github.com/composer",
  7289. "type": "github"
  7290. },
  7291. {
  7292. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7293. "type": "tidelift"
  7294. }
  7295. ],
  7296. "time": "2020-09-27T13:13:07+00:00"
  7297. },
  7298. {
  7299. "name": "composer/spdx-licenses",
  7300. "version": "1.5.4",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/composer/spdx-licenses.git",
  7304. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  7309. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "php": "^5.3.2 || ^7.0 || ^8.0"
  7314. },
  7315. "require-dev": {
  7316. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7317. },
  7318. "type": "library",
  7319. "extra": {
  7320. "branch-alias": {
  7321. "dev-master": "1.x-dev"
  7322. }
  7323. },
  7324. "autoload": {
  7325. "psr-4": {
  7326. "Composer\\Spdx\\": "src"
  7327. }
  7328. },
  7329. "notification-url": "https://packagist.org/downloads/",
  7330. "license": [
  7331. "MIT"
  7332. ],
  7333. "authors": [
  7334. {
  7335. "name": "Nils Adermann",
  7336. "email": "naderman@naderman.de",
  7337. "homepage": "http://www.naderman.de"
  7338. },
  7339. {
  7340. "name": "Jordi Boggiano",
  7341. "email": "j.boggiano@seld.be",
  7342. "homepage": "http://seld.be"
  7343. },
  7344. {
  7345. "name": "Rob Bast",
  7346. "email": "rob.bast@gmail.com",
  7347. "homepage": "http://robbast.nl"
  7348. }
  7349. ],
  7350. "description": "SPDX licenses list and validation library.",
  7351. "keywords": [
  7352. "license",
  7353. "spdx",
  7354. "validator"
  7355. ],
  7356. "funding": [
  7357. {
  7358. "url": "https://packagist.com",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/composer",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2020-07-15T15:35:07+00:00"
  7371. },
  7372. {
  7373. "name": "composer/xdebug-handler",
  7374. "version": "1.4.3",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/composer/xdebug-handler.git",
  7378. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  7383. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": "^5.3.2 || ^7.0 || ^8.0",
  7388. "psr/log": "^1.0"
  7389. },
  7390. "require-dev": {
  7391. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7392. },
  7393. "type": "library",
  7394. "autoload": {
  7395. "psr-4": {
  7396. "Composer\\XdebugHandler\\": "src"
  7397. }
  7398. },
  7399. "notification-url": "https://packagist.org/downloads/",
  7400. "license": [
  7401. "MIT"
  7402. ],
  7403. "authors": [
  7404. {
  7405. "name": "John Stevenson",
  7406. "email": "john-stevenson@blueyonder.co.uk"
  7407. }
  7408. ],
  7409. "description": "Restarts a process without Xdebug.",
  7410. "keywords": [
  7411. "Xdebug",
  7412. "performance"
  7413. ],
  7414. "funding": [
  7415. {
  7416. "url": "https://packagist.com",
  7417. "type": "custom"
  7418. },
  7419. {
  7420. "url": "https://github.com/composer",
  7421. "type": "github"
  7422. },
  7423. {
  7424. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7425. "type": "tidelift"
  7426. }
  7427. ],
  7428. "time": "2020-08-19T10:27:58+00:00"
  7429. },
  7430. {
  7431. "name": "doctrine/cache",
  7432. "version": "1.10.2",
  7433. "source": {
  7434. "type": "git",
  7435. "url": "https://github.com/doctrine/cache.git",
  7436. "reference": "13e3381b25847283a91948d04640543941309727"
  7437. },
  7438. "dist": {
  7439. "type": "zip",
  7440. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  7441. "reference": "13e3381b25847283a91948d04640543941309727",
  7442. "shasum": ""
  7443. },
  7444. "require": {
  7445. "php": "~7.1 || ^8.0"
  7446. },
  7447. "conflict": {
  7448. "doctrine/common": ">2.2,<2.4"
  7449. },
  7450. "require-dev": {
  7451. "alcaeus/mongo-php-adapter": "^1.1",
  7452. "doctrine/coding-standard": "^6.0",
  7453. "mongodb/mongodb": "^1.1",
  7454. "phpunit/phpunit": "^7.0",
  7455. "predis/predis": "~1.0"
  7456. },
  7457. "suggest": {
  7458. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "1.9.x-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "psr-4": {
  7468. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Guilherme Blanco",
  7478. "email": "guilhermeblanco@gmail.com"
  7479. },
  7480. {
  7481. "name": "Roman Borschel",
  7482. "email": "roman@code-factory.org"
  7483. },
  7484. {
  7485. "name": "Benjamin Eberlei",
  7486. "email": "kontakt@beberlei.de"
  7487. },
  7488. {
  7489. "name": "Jonathan Wage",
  7490. "email": "jonwage@gmail.com"
  7491. },
  7492. {
  7493. "name": "Johannes Schmitt",
  7494. "email": "schmittjoh@gmail.com"
  7495. }
  7496. ],
  7497. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7498. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7499. "keywords": [
  7500. "abstraction",
  7501. "apcu",
  7502. "cache",
  7503. "caching",
  7504. "couchdb",
  7505. "memcached",
  7506. "php",
  7507. "redis",
  7508. "xcache"
  7509. ],
  7510. "funding": [
  7511. {
  7512. "url": "https://www.doctrine-project.org/sponsorship.html",
  7513. "type": "custom"
  7514. },
  7515. {
  7516. "url": "https://www.patreon.com/phpdoctrine",
  7517. "type": "patreon"
  7518. },
  7519. {
  7520. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7521. "type": "tidelift"
  7522. }
  7523. ],
  7524. "time": "2020-07-07T18:54:01+00:00"
  7525. },
  7526. {
  7527. "name": "doctrine/dbal",
  7528. "version": "2.11.3",
  7529. "source": {
  7530. "type": "git",
  7531. "url": "https://github.com/doctrine/dbal.git",
  7532. "reference": "fb5d5f2f26babf8dce217b1eb88300c22bb703a4"
  7533. },
  7534. "dist": {
  7535. "type": "zip",
  7536. "url": "https://api.github.com/repos/doctrine/dbal/zipball/fb5d5f2f26babf8dce217b1eb88300c22bb703a4",
  7537. "reference": "fb5d5f2f26babf8dce217b1eb88300c22bb703a4",
  7538. "shasum": ""
  7539. },
  7540. "require": {
  7541. "doctrine/cache": "^1.0",
  7542. "doctrine/event-manager": "^1.0",
  7543. "ext-pdo": "*",
  7544. "php": "^7.3"
  7545. },
  7546. "require-dev": {
  7547. "doctrine/coding-standard": "^8.1",
  7548. "jetbrains/phpstorm-stubs": "^2019.1",
  7549. "phpstan/phpstan": "^0.12.40",
  7550. "phpunit/phpunit": "^9.4",
  7551. "psalm/plugin-phpunit": "^0.10.0",
  7552. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  7553. "vimeo/psalm": "^3.17.2"
  7554. },
  7555. "suggest": {
  7556. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7557. },
  7558. "bin": [
  7559. "bin/doctrine-dbal"
  7560. ],
  7561. "type": "library",
  7562. "extra": {
  7563. "branch-alias": {
  7564. "dev-master": "4.0.x-dev"
  7565. }
  7566. },
  7567. "autoload": {
  7568. "psr-4": {
  7569. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  7570. }
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "MIT"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "Guilherme Blanco",
  7579. "email": "guilhermeblanco@gmail.com"
  7580. },
  7581. {
  7582. "name": "Roman Borschel",
  7583. "email": "roman@code-factory.org"
  7584. },
  7585. {
  7586. "name": "Benjamin Eberlei",
  7587. "email": "kontakt@beberlei.de"
  7588. },
  7589. {
  7590. "name": "Jonathan Wage",
  7591. "email": "jonwage@gmail.com"
  7592. }
  7593. ],
  7594. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7595. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7596. "keywords": [
  7597. "abstraction",
  7598. "database",
  7599. "db2",
  7600. "dbal",
  7601. "mariadb",
  7602. "mssql",
  7603. "mysql",
  7604. "oci8",
  7605. "oracle",
  7606. "pdo",
  7607. "pgsql",
  7608. "postgresql",
  7609. "queryobject",
  7610. "sasql",
  7611. "sql",
  7612. "sqlanywhere",
  7613. "sqlite",
  7614. "sqlserver",
  7615. "sqlsrv"
  7616. ],
  7617. "funding": [
  7618. {
  7619. "url": "https://www.doctrine-project.org/sponsorship.html",
  7620. "type": "custom"
  7621. },
  7622. {
  7623. "url": "https://www.patreon.com/phpdoctrine",
  7624. "type": "patreon"
  7625. },
  7626. {
  7627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7628. "type": "tidelift"
  7629. }
  7630. ],
  7631. "time": "2020-10-20T14:36:48+00:00"
  7632. },
  7633. {
  7634. "name": "doctrine/event-manager",
  7635. "version": "1.1.1",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/doctrine/event-manager.git",
  7639. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7644. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "php": "^7.1 || ^8.0"
  7649. },
  7650. "conflict": {
  7651. "doctrine/common": "<2.9@dev"
  7652. },
  7653. "require-dev": {
  7654. "doctrine/coding-standard": "^6.0",
  7655. "phpunit/phpunit": "^7.0"
  7656. },
  7657. "type": "library",
  7658. "extra": {
  7659. "branch-alias": {
  7660. "dev-master": "1.0.x-dev"
  7661. }
  7662. },
  7663. "autoload": {
  7664. "psr-4": {
  7665. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7666. }
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "MIT"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Guilherme Blanco",
  7675. "email": "guilhermeblanco@gmail.com"
  7676. },
  7677. {
  7678. "name": "Roman Borschel",
  7679. "email": "roman@code-factory.org"
  7680. },
  7681. {
  7682. "name": "Benjamin Eberlei",
  7683. "email": "kontakt@beberlei.de"
  7684. },
  7685. {
  7686. "name": "Jonathan Wage",
  7687. "email": "jonwage@gmail.com"
  7688. },
  7689. {
  7690. "name": "Johannes Schmitt",
  7691. "email": "schmittjoh@gmail.com"
  7692. },
  7693. {
  7694. "name": "Marco Pivetta",
  7695. "email": "ocramius@gmail.com"
  7696. }
  7697. ],
  7698. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7699. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7700. "keywords": [
  7701. "event",
  7702. "event dispatcher",
  7703. "event manager",
  7704. "event system",
  7705. "events"
  7706. ],
  7707. "funding": [
  7708. {
  7709. "url": "https://www.doctrine-project.org/sponsorship.html",
  7710. "type": "custom"
  7711. },
  7712. {
  7713. "url": "https://www.patreon.com/phpdoctrine",
  7714. "type": "patreon"
  7715. },
  7716. {
  7717. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7718. "type": "tidelift"
  7719. }
  7720. ],
  7721. "time": "2020-05-29T18:28:51+00:00"
  7722. },
  7723. {
  7724. "name": "doctrine/instantiator",
  7725. "version": "1.3.1",
  7726. "source": {
  7727. "type": "git",
  7728. "url": "https://github.com/doctrine/instantiator.git",
  7729. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7730. },
  7731. "dist": {
  7732. "type": "zip",
  7733. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7734. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7735. "shasum": ""
  7736. },
  7737. "require": {
  7738. "php": "^7.1 || ^8.0"
  7739. },
  7740. "require-dev": {
  7741. "doctrine/coding-standard": "^6.0",
  7742. "ext-pdo": "*",
  7743. "ext-phar": "*",
  7744. "phpbench/phpbench": "^0.13",
  7745. "phpstan/phpstan-phpunit": "^0.11",
  7746. "phpstan/phpstan-shim": "^0.11",
  7747. "phpunit/phpunit": "^7.0"
  7748. },
  7749. "type": "library",
  7750. "extra": {
  7751. "branch-alias": {
  7752. "dev-master": "1.2.x-dev"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "psr-4": {
  7757. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7758. }
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "MIT"
  7763. ],
  7764. "authors": [
  7765. {
  7766. "name": "Marco Pivetta",
  7767. "email": "ocramius@gmail.com",
  7768. "homepage": "http://ocramius.github.com/"
  7769. }
  7770. ],
  7771. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7772. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7773. "keywords": [
  7774. "constructor",
  7775. "instantiate"
  7776. ],
  7777. "funding": [
  7778. {
  7779. "url": "https://www.doctrine-project.org/sponsorship.html",
  7780. "type": "custom"
  7781. },
  7782. {
  7783. "url": "https://www.patreon.com/phpdoctrine",
  7784. "type": "patreon"
  7785. },
  7786. {
  7787. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7788. "type": "tidelift"
  7789. }
  7790. ],
  7791. "time": "2020-05-29T17:27:14+00:00"
  7792. },
  7793. {
  7794. "name": "facade/flare-client-php",
  7795. "version": "1.3.6",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://github.com/facade/flare-client-php.git",
  7799. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7804. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7805. "shasum": ""
  7806. },
  7807. "require": {
  7808. "facade/ignition-contracts": "~1.0",
  7809. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7810. "php": "^7.1",
  7811. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7812. "symfony/mime": "^3.4|^4.0|^5.1",
  7813. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7814. },
  7815. "require-dev": {
  7816. "friendsofphp/php-cs-fixer": "^2.14",
  7817. "phpunit/phpunit": "^7.5.16",
  7818. "spatie/phpunit-snapshot-assertions": "^2.0"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "1.0-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "psr-4": {
  7828. "Facade\\FlareClient\\": "src"
  7829. },
  7830. "files": [
  7831. "src/helpers.php"
  7832. ]
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "MIT"
  7837. ],
  7838. "description": "Send PHP errors to Flare",
  7839. "homepage": "https://github.com/facade/flare-client-php",
  7840. "keywords": [
  7841. "exception",
  7842. "facade",
  7843. "flare",
  7844. "reporting"
  7845. ],
  7846. "funding": [
  7847. {
  7848. "url": "https://github.com/spatie",
  7849. "type": "github"
  7850. }
  7851. ],
  7852. "time": "2020-09-18T06:35:11+00:00"
  7853. },
  7854. {
  7855. "name": "facade/ignition",
  7856. "version": "2.4.1",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/facade/ignition.git",
  7860. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/facade/ignition/zipball/9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  7865. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  7866. "shasum": ""
  7867. },
  7868. "require": {
  7869. "ext-json": "*",
  7870. "ext-mbstring": "*",
  7871. "facade/flare-client-php": "^1.0",
  7872. "facade/ignition-contracts": "^1.0",
  7873. "filp/whoops": "^2.4",
  7874. "illuminate/support": "^7.0|^8.0",
  7875. "monolog/monolog": "^2.0",
  7876. "php": "^7.2.5",
  7877. "scrivo/highlight.php": "^9.15",
  7878. "symfony/console": "^5.0",
  7879. "symfony/var-dumper": "^5.0"
  7880. },
  7881. "require-dev": {
  7882. "friendsofphp/php-cs-fixer": "^2.14",
  7883. "mockery/mockery": "^1.3",
  7884. "orchestra/testbench": "^5.0|^6.0",
  7885. "psalm/plugin-laravel": "^1.2"
  7886. },
  7887. "suggest": {
  7888. "laravel/telescope": "^3.1"
  7889. },
  7890. "type": "library",
  7891. "extra": {
  7892. "branch-alias": {
  7893. "dev-master": "2.x-dev"
  7894. },
  7895. "laravel": {
  7896. "providers": [
  7897. "Facade\\Ignition\\IgnitionServiceProvider"
  7898. ],
  7899. "aliases": {
  7900. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7901. }
  7902. }
  7903. },
  7904. "autoload": {
  7905. "psr-4": {
  7906. "Facade\\Ignition\\": "src"
  7907. },
  7908. "files": [
  7909. "src/helpers.php"
  7910. ]
  7911. },
  7912. "notification-url": "https://packagist.org/downloads/",
  7913. "license": [
  7914. "MIT"
  7915. ],
  7916. "description": "A beautiful error page for Laravel applications.",
  7917. "homepage": "https://github.com/facade/ignition",
  7918. "keywords": [
  7919. "error",
  7920. "flare",
  7921. "laravel",
  7922. "page"
  7923. ],
  7924. "time": "2020-10-14T08:59:59+00:00"
  7925. },
  7926. {
  7927. "name": "facade/ignition-contracts",
  7928. "version": "1.0.2",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/facade/ignition-contracts.git",
  7932. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7937. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "php": "^7.3|^8.0"
  7942. },
  7943. "require-dev": {
  7944. "friendsofphp/php-cs-fixer": "^v2.15.8",
  7945. "phpunit/phpunit": "^9.3.11",
  7946. "vimeo/psalm": "^3.17.1"
  7947. },
  7948. "type": "library",
  7949. "autoload": {
  7950. "psr-4": {
  7951. "Facade\\IgnitionContracts\\": "src"
  7952. }
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Freek Van der Herten",
  7961. "email": "freek@spatie.be",
  7962. "homepage": "https://flareapp.io",
  7963. "role": "Developer"
  7964. }
  7965. ],
  7966. "description": "Solution contracts for Ignition",
  7967. "homepage": "https://github.com/facade/ignition-contracts",
  7968. "keywords": [
  7969. "contracts",
  7970. "flare",
  7971. "ignition"
  7972. ],
  7973. "time": "2020-10-16T08:27:54+00:00"
  7974. },
  7975. {
  7976. "name": "filp/whoops",
  7977. "version": "2.9.0",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/filp/whoops.git",
  7981. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/filp/whoops/zipball/2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  7986. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^5.5.9 || ^7.0 || ^8.0",
  7991. "psr/log": "^1.0.1"
  7992. },
  7993. "require-dev": {
  7994. "mockery/mockery": "^0.9 || ^1.0",
  7995. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7996. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7997. },
  7998. "suggest": {
  7999. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8000. "whoops/soap": "Formats errors as SOAP responses"
  8001. },
  8002. "type": "library",
  8003. "extra": {
  8004. "branch-alias": {
  8005. "dev-master": "2.7-dev"
  8006. }
  8007. },
  8008. "autoload": {
  8009. "psr-4": {
  8010. "Whoops\\": "src/Whoops/"
  8011. }
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "MIT"
  8016. ],
  8017. "authors": [
  8018. {
  8019. "name": "Filipe Dobreira",
  8020. "homepage": "https://github.com/filp",
  8021. "role": "Developer"
  8022. }
  8023. ],
  8024. "description": "php error handling for cool kids",
  8025. "homepage": "https://filp.github.io/whoops/",
  8026. "keywords": [
  8027. "error",
  8028. "exception",
  8029. "handling",
  8030. "library",
  8031. "throwable",
  8032. "whoops"
  8033. ],
  8034. "time": "2020-10-20T12:00:00+00:00"
  8035. },
  8036. {
  8037. "name": "fzaninotto/faker",
  8038. "version": "v1.9.1",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/fzaninotto/Faker.git",
  8042. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  8047. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "php": "^5.3.3 || ^7.0"
  8052. },
  8053. "require-dev": {
  8054. "ext-intl": "*",
  8055. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8056. "squizlabs/php_codesniffer": "^2.9.2"
  8057. },
  8058. "type": "library",
  8059. "extra": {
  8060. "branch-alias": {
  8061. "dev-master": "1.9-dev"
  8062. }
  8063. },
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Faker\\": "src/Faker/"
  8067. }
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "François Zaninotto"
  8076. }
  8077. ],
  8078. "description": "Faker is a PHP library that generates fake data for you.",
  8079. "keywords": [
  8080. "data",
  8081. "faker",
  8082. "fixtures"
  8083. ],
  8084. "time": "2019-12-12T13:22:17+00:00"
  8085. },
  8086. {
  8087. "name": "hamcrest/hamcrest-php",
  8088. "version": "v2.0.1",
  8089. "source": {
  8090. "type": "git",
  8091. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8092. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8093. },
  8094. "dist": {
  8095. "type": "zip",
  8096. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8097. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8098. "shasum": ""
  8099. },
  8100. "require": {
  8101. "php": "^5.3|^7.0|^8.0"
  8102. },
  8103. "replace": {
  8104. "cordoval/hamcrest-php": "*",
  8105. "davedevelopment/hamcrest-php": "*",
  8106. "kodova/hamcrest-php": "*"
  8107. },
  8108. "require-dev": {
  8109. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8110. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8111. },
  8112. "type": "library",
  8113. "extra": {
  8114. "branch-alias": {
  8115. "dev-master": "2.1-dev"
  8116. }
  8117. },
  8118. "autoload": {
  8119. "classmap": [
  8120. "hamcrest"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "BSD-3-Clause"
  8126. ],
  8127. "description": "This is the PHP port of Hamcrest Matchers",
  8128. "keywords": [
  8129. "test"
  8130. ],
  8131. "time": "2020-07-09T08:09:16+00:00"
  8132. },
  8133. {
  8134. "name": "justinrainbow/json-schema",
  8135. "version": "5.2.10",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/justinrainbow/json-schema.git",
  8139. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8144. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8145. "shasum": ""
  8146. },
  8147. "require": {
  8148. "php": ">=5.3.3"
  8149. },
  8150. "require-dev": {
  8151. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8152. "json-schema/json-schema-test-suite": "1.2.0",
  8153. "phpunit/phpunit": "^4.8.35"
  8154. },
  8155. "bin": [
  8156. "bin/validate-json"
  8157. ],
  8158. "type": "library",
  8159. "extra": {
  8160. "branch-alias": {
  8161. "dev-master": "5.0.x-dev"
  8162. }
  8163. },
  8164. "autoload": {
  8165. "psr-4": {
  8166. "JsonSchema\\": "src/JsonSchema/"
  8167. }
  8168. },
  8169. "notification-url": "https://packagist.org/downloads/",
  8170. "license": [
  8171. "MIT"
  8172. ],
  8173. "authors": [
  8174. {
  8175. "name": "Bruno Prieto Reis",
  8176. "email": "bruno.p.reis@gmail.com"
  8177. },
  8178. {
  8179. "name": "Justin Rainbow",
  8180. "email": "justin.rainbow@gmail.com"
  8181. },
  8182. {
  8183. "name": "Igor Wiedler",
  8184. "email": "igor@wiedler.ch"
  8185. },
  8186. {
  8187. "name": "Robert Schönthal",
  8188. "email": "seroscho@googlemail.com"
  8189. }
  8190. ],
  8191. "description": "A library to validate a json schema.",
  8192. "homepage": "https://github.com/justinrainbow/json-schema",
  8193. "keywords": [
  8194. "json",
  8195. "schema"
  8196. ],
  8197. "time": "2020-05-27T16:41:55+00:00"
  8198. },
  8199. {
  8200. "name": "laravel/telescope",
  8201. "version": "v3.5.1",
  8202. "source": {
  8203. "type": "git",
  8204. "url": "https://github.com/laravel/telescope.git",
  8205. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8206. },
  8207. "dist": {
  8208. "type": "zip",
  8209. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8210. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8211. "shasum": ""
  8212. },
  8213. "require": {
  8214. "ext-json": "*",
  8215. "laravel/framework": "^6.0|^7.0",
  8216. "moontoast/math": "^1.1",
  8217. "php": "^7.2",
  8218. "symfony/var-dumper": "^4.4|^5.0"
  8219. },
  8220. "require-dev": {
  8221. "ext-gd": "*",
  8222. "orchestra/testbench": "^4.0|^5.0"
  8223. },
  8224. "type": "library",
  8225. "extra": {
  8226. "branch-alias": {
  8227. "dev-master": "3.x-dev"
  8228. },
  8229. "laravel": {
  8230. "providers": [
  8231. "Laravel\\Telescope\\TelescopeServiceProvider"
  8232. ]
  8233. }
  8234. },
  8235. "autoload": {
  8236. "psr-4": {
  8237. "Laravel\\Telescope\\": "src/"
  8238. }
  8239. },
  8240. "notification-url": "https://packagist.org/downloads/",
  8241. "license": [
  8242. "MIT"
  8243. ],
  8244. "authors": [
  8245. {
  8246. "name": "Taylor Otwell",
  8247. "email": "taylor@laravel.com"
  8248. },
  8249. {
  8250. "name": "Mohamed Said",
  8251. "email": "mohamed@laravel.com"
  8252. }
  8253. ],
  8254. "description": "An elegant debug assistant for the Laravel framework.",
  8255. "keywords": [
  8256. "debugging",
  8257. "laravel",
  8258. "monitoring"
  8259. ],
  8260. "time": "2020-07-28T19:12:33+00:00"
  8261. },
  8262. {
  8263. "name": "maximebf/debugbar",
  8264. "version": "v1.16.3",
  8265. "source": {
  8266. "type": "git",
  8267. "url": "https://github.com/maximebf/php-debugbar.git",
  8268. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  8269. },
  8270. "dist": {
  8271. "type": "zip",
  8272. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8273. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8274. "shasum": ""
  8275. },
  8276. "require": {
  8277. "php": "^7.1",
  8278. "psr/log": "^1.0",
  8279. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8280. },
  8281. "require-dev": {
  8282. "phpunit/phpunit": "^5"
  8283. },
  8284. "suggest": {
  8285. "kriswallsmith/assetic": "The best way to manage assets",
  8286. "monolog/monolog": "Log using Monolog",
  8287. "predis/predis": "Redis storage"
  8288. },
  8289. "type": "library",
  8290. "extra": {
  8291. "branch-alias": {
  8292. "dev-master": "1.16-dev"
  8293. }
  8294. },
  8295. "autoload": {
  8296. "psr-4": {
  8297. "DebugBar\\": "src/DebugBar/"
  8298. }
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "MIT"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "Maxime Bouroumeau-Fuseau",
  8307. "email": "maxime.bouroumeau@gmail.com",
  8308. "homepage": "http://maximebf.com"
  8309. },
  8310. {
  8311. "name": "Barry vd. Heuvel",
  8312. "email": "barryvdh@gmail.com"
  8313. }
  8314. ],
  8315. "description": "Debug bar in the browser for php application",
  8316. "homepage": "https://github.com/maximebf/php-debugbar",
  8317. "keywords": [
  8318. "debug",
  8319. "debugbar"
  8320. ],
  8321. "time": "2020-05-06T07:06:27+00:00"
  8322. },
  8323. {
  8324. "name": "mockery/mockery",
  8325. "version": "1.4.2",
  8326. "source": {
  8327. "type": "git",
  8328. "url": "https://github.com/mockery/mockery.git",
  8329. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8330. },
  8331. "dist": {
  8332. "type": "zip",
  8333. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8334. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8335. "shasum": ""
  8336. },
  8337. "require": {
  8338. "hamcrest/hamcrest-php": "^2.0.1",
  8339. "lib-pcre": ">=7.0",
  8340. "php": "^7.3 || ^8.0"
  8341. },
  8342. "conflict": {
  8343. "phpunit/phpunit": "<8.0"
  8344. },
  8345. "require-dev": {
  8346. "phpunit/phpunit": "^8.5 || ^9.3"
  8347. },
  8348. "type": "library",
  8349. "extra": {
  8350. "branch-alias": {
  8351. "dev-master": "1.4.x-dev"
  8352. }
  8353. },
  8354. "autoload": {
  8355. "psr-0": {
  8356. "Mockery": "library/"
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "BSD-3-Clause"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Pádraic Brady",
  8366. "email": "padraic.brady@gmail.com",
  8367. "homepage": "http://blog.astrumfutura.com"
  8368. },
  8369. {
  8370. "name": "Dave Marshall",
  8371. "email": "dave.marshall@atstsolutions.co.uk",
  8372. "homepage": "http://davedevelopment.co.uk"
  8373. }
  8374. ],
  8375. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8376. "homepage": "https://github.com/mockery/mockery",
  8377. "keywords": [
  8378. "BDD",
  8379. "TDD",
  8380. "library",
  8381. "mock",
  8382. "mock objects",
  8383. "mockery",
  8384. "stub",
  8385. "test",
  8386. "test double",
  8387. "testing"
  8388. ],
  8389. "time": "2020-08-11T18:10:13+00:00"
  8390. },
  8391. {
  8392. "name": "moontoast/math",
  8393. "version": "1.2.1",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/ramsey/moontoast-math.git",
  8397. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8402. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "php": ">=5.3.3",
  8407. "phpseclib/bcmath_compat": ">=1.0.3"
  8408. },
  8409. "require-dev": {
  8410. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8411. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8412. "satooshi/php-coveralls": "^0.6.1",
  8413. "squizlabs/php_codesniffer": "^2.3"
  8414. },
  8415. "type": "library",
  8416. "autoload": {
  8417. "psr-4": {
  8418. "Moontoast\\Math\\": "src/Moontoast/Math",
  8419. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8420. }
  8421. },
  8422. "notification-url": "https://packagist.org/downloads/",
  8423. "license": [
  8424. "Apache-2.0"
  8425. ],
  8426. "authors": [
  8427. {
  8428. "name": "Ben Ramsey",
  8429. "email": "ben@benramsey.com",
  8430. "homepage": "https://benramsey.com"
  8431. }
  8432. ],
  8433. "description": "A mathematics library, providing functionality for large numbers",
  8434. "homepage": "https://github.com/ramsey/moontoast-math",
  8435. "keywords": [
  8436. "bcmath",
  8437. "math"
  8438. ],
  8439. "abandoned": "brick/math",
  8440. "time": "2020-01-05T04:49:34+00:00"
  8441. },
  8442. {
  8443. "name": "myclabs/deep-copy",
  8444. "version": "1.10.1",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/myclabs/DeepCopy.git",
  8448. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8453. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8454. "shasum": ""
  8455. },
  8456. "require": {
  8457. "php": "^7.1 || ^8.0"
  8458. },
  8459. "replace": {
  8460. "myclabs/deep-copy": "self.version"
  8461. },
  8462. "require-dev": {
  8463. "doctrine/collections": "^1.0",
  8464. "doctrine/common": "^2.6",
  8465. "phpunit/phpunit": "^7.1"
  8466. },
  8467. "type": "library",
  8468. "autoload": {
  8469. "psr-4": {
  8470. "DeepCopy\\": "src/DeepCopy/"
  8471. },
  8472. "files": [
  8473. "src/DeepCopy/deep_copy.php"
  8474. ]
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "MIT"
  8479. ],
  8480. "description": "Create deep copies (clones) of your objects",
  8481. "keywords": [
  8482. "clone",
  8483. "copy",
  8484. "duplicate",
  8485. "object",
  8486. "object graph"
  8487. ],
  8488. "funding": [
  8489. {
  8490. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8491. "type": "tidelift"
  8492. }
  8493. ],
  8494. "time": "2020-06-29T13:22:24+00:00"
  8495. },
  8496. {
  8497. "name": "nunomaduro/collision",
  8498. "version": "v4.2.0",
  8499. "source": {
  8500. "type": "git",
  8501. "url": "https://github.com/nunomaduro/collision.git",
  8502. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  8503. },
  8504. "dist": {
  8505. "type": "zip",
  8506. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  8507. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  8508. "shasum": ""
  8509. },
  8510. "require": {
  8511. "facade/ignition-contracts": "^1.0",
  8512. "filp/whoops": "^2.4",
  8513. "php": "^7.2.5",
  8514. "symfony/console": "^5.0"
  8515. },
  8516. "require-dev": {
  8517. "facade/ignition": "^2.0",
  8518. "fideloper/proxy": "^4.2",
  8519. "friendsofphp/php-cs-fixer": "^2.16",
  8520. "fruitcake/laravel-cors": "^1.0",
  8521. "laravel/framework": "^7.0",
  8522. "laravel/tinker": "^2.0",
  8523. "nunomaduro/larastan": "^0.5",
  8524. "orchestra/testbench": "^5.0",
  8525. "phpstan/phpstan": "^0.12.3",
  8526. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8527. },
  8528. "type": "library",
  8529. "extra": {
  8530. "laravel": {
  8531. "providers": [
  8532. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8533. ]
  8534. }
  8535. },
  8536. "autoload": {
  8537. "psr-4": {
  8538. "NunoMaduro\\Collision\\": "src/"
  8539. }
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "MIT"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Nuno Maduro",
  8548. "email": "enunomaduro@gmail.com"
  8549. }
  8550. ],
  8551. "description": "Cli error handling for console/command-line PHP applications.",
  8552. "keywords": [
  8553. "artisan",
  8554. "cli",
  8555. "command-line",
  8556. "console",
  8557. "error",
  8558. "handling",
  8559. "laravel",
  8560. "laravel-zero",
  8561. "php",
  8562. "symfony"
  8563. ],
  8564. "funding": [
  8565. {
  8566. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8567. "type": "custom"
  8568. },
  8569. {
  8570. "url": "https://github.com/nunomaduro",
  8571. "type": "github"
  8572. },
  8573. {
  8574. "url": "https://www.patreon.com/nunomaduro",
  8575. "type": "patreon"
  8576. }
  8577. ],
  8578. "time": "2020-04-04T19:56:08+00:00"
  8579. },
  8580. {
  8581. "name": "phar-io/manifest",
  8582. "version": "1.0.3",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/phar-io/manifest.git",
  8586. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8591. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "ext-dom": "*",
  8596. "ext-phar": "*",
  8597. "phar-io/version": "^2.0",
  8598. "php": "^5.6 || ^7.0"
  8599. },
  8600. "type": "library",
  8601. "extra": {
  8602. "branch-alias": {
  8603. "dev-master": "1.0.x-dev"
  8604. }
  8605. },
  8606. "autoload": {
  8607. "classmap": [
  8608. "src/"
  8609. ]
  8610. },
  8611. "notification-url": "https://packagist.org/downloads/",
  8612. "license": [
  8613. "BSD-3-Clause"
  8614. ],
  8615. "authors": [
  8616. {
  8617. "name": "Arne Blankerts",
  8618. "email": "arne@blankerts.de",
  8619. "role": "Developer"
  8620. },
  8621. {
  8622. "name": "Sebastian Heuer",
  8623. "email": "sebastian@phpeople.de",
  8624. "role": "Developer"
  8625. },
  8626. {
  8627. "name": "Sebastian Bergmann",
  8628. "email": "sebastian@phpunit.de",
  8629. "role": "Developer"
  8630. }
  8631. ],
  8632. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8633. "time": "2018-07-08T19:23:20+00:00"
  8634. },
  8635. {
  8636. "name": "phar-io/version",
  8637. "version": "2.0.1",
  8638. "source": {
  8639. "type": "git",
  8640. "url": "https://github.com/phar-io/version.git",
  8641. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8642. },
  8643. "dist": {
  8644. "type": "zip",
  8645. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8646. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8647. "shasum": ""
  8648. },
  8649. "require": {
  8650. "php": "^5.6 || ^7.0"
  8651. },
  8652. "type": "library",
  8653. "autoload": {
  8654. "classmap": [
  8655. "src/"
  8656. ]
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "BSD-3-Clause"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Arne Blankerts",
  8665. "email": "arne@blankerts.de",
  8666. "role": "Developer"
  8667. },
  8668. {
  8669. "name": "Sebastian Heuer",
  8670. "email": "sebastian@phpeople.de",
  8671. "role": "Developer"
  8672. },
  8673. {
  8674. "name": "Sebastian Bergmann",
  8675. "email": "sebastian@phpunit.de",
  8676. "role": "Developer"
  8677. }
  8678. ],
  8679. "description": "Library for handling version information and constraints",
  8680. "time": "2018-07-08T19:19:57+00:00"
  8681. },
  8682. {
  8683. "name": "phpdocumentor/reflection-common",
  8684. "version": "2.2.0",
  8685. "source": {
  8686. "type": "git",
  8687. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8688. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8689. },
  8690. "dist": {
  8691. "type": "zip",
  8692. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8693. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8694. "shasum": ""
  8695. },
  8696. "require": {
  8697. "php": "^7.2 || ^8.0"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-2.x": "2.x-dev"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "psr-4": {
  8707. "phpDocumentor\\Reflection\\": "src/"
  8708. }
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "MIT"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Jaap van Otterdijk",
  8717. "email": "opensource@ijaap.nl"
  8718. }
  8719. ],
  8720. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8721. "homepage": "http://www.phpdoc.org",
  8722. "keywords": [
  8723. "FQSEN",
  8724. "phpDocumentor",
  8725. "phpdoc",
  8726. "reflection",
  8727. "static analysis"
  8728. ],
  8729. "time": "2020-06-27T09:03:43+00:00"
  8730. },
  8731. {
  8732. "name": "phpdocumentor/reflection-docblock",
  8733. "version": "5.2.2",
  8734. "source": {
  8735. "type": "git",
  8736. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8737. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8738. },
  8739. "dist": {
  8740. "type": "zip",
  8741. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8742. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8743. "shasum": ""
  8744. },
  8745. "require": {
  8746. "ext-filter": "*",
  8747. "php": "^7.2 || ^8.0",
  8748. "phpdocumentor/reflection-common": "^2.2",
  8749. "phpdocumentor/type-resolver": "^1.3",
  8750. "webmozart/assert": "^1.9.1"
  8751. },
  8752. "require-dev": {
  8753. "mockery/mockery": "~1.3.2"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-master": "5.x-dev"
  8759. }
  8760. },
  8761. "autoload": {
  8762. "psr-4": {
  8763. "phpDocumentor\\Reflection\\": "src"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Mike van Riel",
  8773. "email": "me@mikevanriel.com"
  8774. },
  8775. {
  8776. "name": "Jaap van Otterdijk",
  8777. "email": "account@ijaap.nl"
  8778. }
  8779. ],
  8780. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8781. "time": "2020-09-03T19:13:55+00:00"
  8782. },
  8783. {
  8784. "name": "phpdocumentor/type-resolver",
  8785. "version": "1.4.0",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8789. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8794. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": "^7.2 || ^8.0",
  8799. "phpdocumentor/reflection-common": "^2.0"
  8800. },
  8801. "require-dev": {
  8802. "ext-tokenizer": "*"
  8803. },
  8804. "type": "library",
  8805. "extra": {
  8806. "branch-alias": {
  8807. "dev-1.x": "1.x-dev"
  8808. }
  8809. },
  8810. "autoload": {
  8811. "psr-4": {
  8812. "phpDocumentor\\Reflection\\": "src"
  8813. }
  8814. },
  8815. "notification-url": "https://packagist.org/downloads/",
  8816. "license": [
  8817. "MIT"
  8818. ],
  8819. "authors": [
  8820. {
  8821. "name": "Mike van Riel",
  8822. "email": "me@mikevanriel.com"
  8823. }
  8824. ],
  8825. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8826. "time": "2020-09-17T18:55:26+00:00"
  8827. },
  8828. {
  8829. "name": "phpseclib/bcmath_compat",
  8830. "version": "1.0.5",
  8831. "source": {
  8832. "type": "git",
  8833. "url": "https://github.com/phpseclib/bcmath_compat.git",
  8834. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  8835. },
  8836. "dist": {
  8837. "type": "zip",
  8838. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  8839. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  8840. "shasum": ""
  8841. },
  8842. "require": {
  8843. "phpseclib/phpseclib": ">=2.0.19"
  8844. },
  8845. "provide": {
  8846. "ext-bcmath": "7.3.5"
  8847. },
  8848. "require-dev": {
  8849. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8850. "squizlabs/php_codesniffer": "^3.0"
  8851. },
  8852. "suggest": {
  8853. "ext-gmp": "Will enable faster math operations"
  8854. },
  8855. "type": "library",
  8856. "autoload": {
  8857. "files": [
  8858. "lib/bcmath.php"
  8859. ],
  8860. "psr-4": {
  8861. "bcmath_compat\\": "src"
  8862. }
  8863. },
  8864. "notification-url": "https://packagist.org/downloads/",
  8865. "license": [
  8866. "MIT"
  8867. ],
  8868. "authors": [
  8869. {
  8870. "name": "Jim Wigginton",
  8871. "email": "terrafrost@php.net",
  8872. "homepage": "http://phpseclib.sourceforge.net"
  8873. }
  8874. ],
  8875. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  8876. "keywords": [
  8877. "BigInteger",
  8878. "bcmath",
  8879. "bigdecimal",
  8880. "math",
  8881. "polyfill"
  8882. ],
  8883. "time": "2020-04-26T16:34:33+00:00"
  8884. },
  8885. {
  8886. "name": "phpseclib/phpseclib",
  8887. "version": "2.0.29",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/phpseclib/phpseclib.git",
  8891. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  8896. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "php": ">=5.3.3"
  8901. },
  8902. "require-dev": {
  8903. "phing/phing": "~2.7",
  8904. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8905. "squizlabs/php_codesniffer": "~2.0"
  8906. },
  8907. "suggest": {
  8908. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  8909. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  8910. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  8911. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  8912. },
  8913. "type": "library",
  8914. "autoload": {
  8915. "files": [
  8916. "phpseclib/bootstrap.php"
  8917. ],
  8918. "psr-4": {
  8919. "phpseclib\\": "phpseclib/"
  8920. }
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Jim Wigginton",
  8929. "email": "terrafrost@php.net",
  8930. "role": "Lead Developer"
  8931. },
  8932. {
  8933. "name": "Patrick Monnerat",
  8934. "email": "pm@datasphere.ch",
  8935. "role": "Developer"
  8936. },
  8937. {
  8938. "name": "Andreas Fischer",
  8939. "email": "bantu@phpbb.com",
  8940. "role": "Developer"
  8941. },
  8942. {
  8943. "name": "Hans-Jürgen Petrich",
  8944. "email": "petrich@tronic-media.com",
  8945. "role": "Developer"
  8946. },
  8947. {
  8948. "name": "Graham Campbell",
  8949. "email": "graham@alt-three.com",
  8950. "role": "Developer"
  8951. }
  8952. ],
  8953. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  8954. "homepage": "http://phpseclib.sourceforge.net",
  8955. "keywords": [
  8956. "BigInteger",
  8957. "aes",
  8958. "asn.1",
  8959. "asn1",
  8960. "blowfish",
  8961. "crypto",
  8962. "cryptography",
  8963. "encryption",
  8964. "rsa",
  8965. "security",
  8966. "sftp",
  8967. "signature",
  8968. "signing",
  8969. "ssh",
  8970. "twofish",
  8971. "x.509",
  8972. "x509"
  8973. ],
  8974. "funding": [
  8975. {
  8976. "url": "https://github.com/terrafrost",
  8977. "type": "github"
  8978. },
  8979. {
  8980. "url": "https://www.patreon.com/phpseclib",
  8981. "type": "patreon"
  8982. },
  8983. {
  8984. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  8985. "type": "tidelift"
  8986. }
  8987. ],
  8988. "time": "2020-09-08T04:24:43+00:00"
  8989. },
  8990. {
  8991. "name": "phpspec/prophecy",
  8992. "version": "1.12.1",
  8993. "source": {
  8994. "type": "git",
  8995. "url": "https://github.com/phpspec/prophecy.git",
  8996. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  8997. },
  8998. "dist": {
  8999. "type": "zip",
  9000. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9001. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9002. "shasum": ""
  9003. },
  9004. "require": {
  9005. "doctrine/instantiator": "^1.2",
  9006. "php": "^7.2 || ~8.0, <8.1",
  9007. "phpdocumentor/reflection-docblock": "^5.2",
  9008. "sebastian/comparator": "^3.0 || ^4.0",
  9009. "sebastian/recursion-context": "^3.0 || ^4.0"
  9010. },
  9011. "require-dev": {
  9012. "phpspec/phpspec": "^6.0",
  9013. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9014. },
  9015. "type": "library",
  9016. "extra": {
  9017. "branch-alias": {
  9018. "dev-master": "1.11.x-dev"
  9019. }
  9020. },
  9021. "autoload": {
  9022. "psr-4": {
  9023. "Prophecy\\": "src/Prophecy"
  9024. }
  9025. },
  9026. "notification-url": "https://packagist.org/downloads/",
  9027. "license": [
  9028. "MIT"
  9029. ],
  9030. "authors": [
  9031. {
  9032. "name": "Konstantin Kudryashov",
  9033. "email": "ever.zet@gmail.com",
  9034. "homepage": "http://everzet.com"
  9035. },
  9036. {
  9037. "name": "Marcello Duarte",
  9038. "email": "marcello.duarte@gmail.com"
  9039. }
  9040. ],
  9041. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9042. "homepage": "https://github.com/phpspec/prophecy",
  9043. "keywords": [
  9044. "Double",
  9045. "Dummy",
  9046. "fake",
  9047. "mock",
  9048. "spy",
  9049. "stub"
  9050. ],
  9051. "time": "2020-09-29T09:10:42+00:00"
  9052. },
  9053. {
  9054. "name": "phpunit/php-code-coverage",
  9055. "version": "7.0.10",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9059. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9064. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "ext-dom": "*",
  9069. "ext-xmlwriter": "*",
  9070. "php": "^7.2",
  9071. "phpunit/php-file-iterator": "^2.0.2",
  9072. "phpunit/php-text-template": "^1.2.1",
  9073. "phpunit/php-token-stream": "^3.1.1",
  9074. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9075. "sebastian/environment": "^4.2.2",
  9076. "sebastian/version": "^2.0.1",
  9077. "theseer/tokenizer": "^1.1.3"
  9078. },
  9079. "require-dev": {
  9080. "phpunit/phpunit": "^8.2.2"
  9081. },
  9082. "suggest": {
  9083. "ext-xdebug": "^2.7.2"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "7.0-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "classmap": [
  9093. "src/"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "BSD-3-Clause"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Sebastian Bergmann",
  9103. "email": "sebastian@phpunit.de",
  9104. "role": "lead"
  9105. }
  9106. ],
  9107. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9108. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9109. "keywords": [
  9110. "coverage",
  9111. "testing",
  9112. "xunit"
  9113. ],
  9114. "time": "2019-11-20T13:55:58+00:00"
  9115. },
  9116. {
  9117. "name": "phpunit/php-file-iterator",
  9118. "version": "2.0.2",
  9119. "source": {
  9120. "type": "git",
  9121. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9122. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  9123. },
  9124. "dist": {
  9125. "type": "zip",
  9126. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  9127. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  9128. "shasum": ""
  9129. },
  9130. "require": {
  9131. "php": "^7.1"
  9132. },
  9133. "require-dev": {
  9134. "phpunit/phpunit": "^7.1"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "2.0.x-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de",
  9155. "role": "lead"
  9156. }
  9157. ],
  9158. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9159. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9160. "keywords": [
  9161. "filesystem",
  9162. "iterator"
  9163. ],
  9164. "time": "2018-09-13T20:33:42+00:00"
  9165. },
  9166. {
  9167. "name": "phpunit/php-text-template",
  9168. "version": "1.2.1",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9172. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9177. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": ">=5.3.3"
  9182. },
  9183. "type": "library",
  9184. "autoload": {
  9185. "classmap": [
  9186. "src/"
  9187. ]
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "BSD-3-Clause"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Sebastian Bergmann",
  9196. "email": "sebastian@phpunit.de",
  9197. "role": "lead"
  9198. }
  9199. ],
  9200. "description": "Simple template engine.",
  9201. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9202. "keywords": [
  9203. "template"
  9204. ],
  9205. "time": "2015-06-21T13:50:34+00:00"
  9206. },
  9207. {
  9208. "name": "phpunit/php-timer",
  9209. "version": "2.1.2",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9213. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  9218. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": "^7.1"
  9223. },
  9224. "require-dev": {
  9225. "phpunit/phpunit": "^7.0"
  9226. },
  9227. "type": "library",
  9228. "extra": {
  9229. "branch-alias": {
  9230. "dev-master": "2.1-dev"
  9231. }
  9232. },
  9233. "autoload": {
  9234. "classmap": [
  9235. "src/"
  9236. ]
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "BSD-3-Clause"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Sebastian Bergmann",
  9245. "email": "sebastian@phpunit.de",
  9246. "role": "lead"
  9247. }
  9248. ],
  9249. "description": "Utility class for timing",
  9250. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9251. "keywords": [
  9252. "timer"
  9253. ],
  9254. "time": "2019-06-07T04:22:29+00:00"
  9255. },
  9256. {
  9257. "name": "phpunit/php-token-stream",
  9258. "version": "3.1.1",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9262. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  9267. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "ext-tokenizer": "*",
  9272. "php": "^7.1"
  9273. },
  9274. "require-dev": {
  9275. "phpunit/phpunit": "^7.0"
  9276. },
  9277. "type": "library",
  9278. "extra": {
  9279. "branch-alias": {
  9280. "dev-master": "3.1-dev"
  9281. }
  9282. },
  9283. "autoload": {
  9284. "classmap": [
  9285. "src/"
  9286. ]
  9287. },
  9288. "notification-url": "https://packagist.org/downloads/",
  9289. "license": [
  9290. "BSD-3-Clause"
  9291. ],
  9292. "authors": [
  9293. {
  9294. "name": "Sebastian Bergmann",
  9295. "email": "sebastian@phpunit.de"
  9296. }
  9297. ],
  9298. "description": "Wrapper around PHP's tokenizer extension.",
  9299. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9300. "keywords": [
  9301. "tokenizer"
  9302. ],
  9303. "abandoned": true,
  9304. "time": "2019-09-17T06:23:10+00:00"
  9305. },
  9306. {
  9307. "name": "phpunit/phpunit",
  9308. "version": "8.5.8",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9312. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9317. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "doctrine/instantiator": "^1.2.0",
  9322. "ext-dom": "*",
  9323. "ext-json": "*",
  9324. "ext-libxml": "*",
  9325. "ext-mbstring": "*",
  9326. "ext-xml": "*",
  9327. "ext-xmlwriter": "*",
  9328. "myclabs/deep-copy": "^1.9.1",
  9329. "phar-io/manifest": "^1.0.3",
  9330. "phar-io/version": "^2.0.1",
  9331. "php": "^7.2",
  9332. "phpspec/prophecy": "^1.8.1",
  9333. "phpunit/php-code-coverage": "^7.0.7",
  9334. "phpunit/php-file-iterator": "^2.0.2",
  9335. "phpunit/php-text-template": "^1.2.1",
  9336. "phpunit/php-timer": "^2.1.2",
  9337. "sebastian/comparator": "^3.0.2",
  9338. "sebastian/diff": "^3.0.2",
  9339. "sebastian/environment": "^4.2.2",
  9340. "sebastian/exporter": "^3.1.1",
  9341. "sebastian/global-state": "^3.0.0",
  9342. "sebastian/object-enumerator": "^3.0.3",
  9343. "sebastian/resource-operations": "^2.0.1",
  9344. "sebastian/type": "^1.1.3",
  9345. "sebastian/version": "^2.0.1"
  9346. },
  9347. "require-dev": {
  9348. "ext-pdo": "*"
  9349. },
  9350. "suggest": {
  9351. "ext-soap": "*",
  9352. "ext-xdebug": "*",
  9353. "phpunit/php-invoker": "^2.0.0"
  9354. },
  9355. "bin": [
  9356. "phpunit"
  9357. ],
  9358. "type": "library",
  9359. "extra": {
  9360. "branch-alias": {
  9361. "dev-master": "8.5-dev"
  9362. }
  9363. },
  9364. "autoload": {
  9365. "classmap": [
  9366. "src/"
  9367. ]
  9368. },
  9369. "notification-url": "https://packagist.org/downloads/",
  9370. "license": [
  9371. "BSD-3-Clause"
  9372. ],
  9373. "authors": [
  9374. {
  9375. "name": "Sebastian Bergmann",
  9376. "email": "sebastian@phpunit.de",
  9377. "role": "lead"
  9378. }
  9379. ],
  9380. "description": "The PHP Unit Testing framework.",
  9381. "homepage": "https://phpunit.de/",
  9382. "keywords": [
  9383. "phpunit",
  9384. "testing",
  9385. "xunit"
  9386. ],
  9387. "funding": [
  9388. {
  9389. "url": "https://phpunit.de/donate.html",
  9390. "type": "custom"
  9391. },
  9392. {
  9393. "url": "https://github.com/sebastianbergmann",
  9394. "type": "github"
  9395. }
  9396. ],
  9397. "time": "2020-06-22T07:06:58+00:00"
  9398. },
  9399. {
  9400. "name": "scrivo/highlight.php",
  9401. "version": "v9.18.1.3",
  9402. "source": {
  9403. "type": "git",
  9404. "url": "https://github.com/scrivo/highlight.php.git",
  9405. "reference": "6a1699707b099081f20a488ac1f92d682181018c"
  9406. },
  9407. "dist": {
  9408. "type": "zip",
  9409. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/6a1699707b099081f20a488ac1f92d682181018c",
  9410. "reference": "6a1699707b099081f20a488ac1f92d682181018c",
  9411. "shasum": ""
  9412. },
  9413. "require": {
  9414. "ext-json": "*",
  9415. "ext-mbstring": "*",
  9416. "php": ">=5.4"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/phpunit": "^4.8|^5.7",
  9420. "sabberworm/php-css-parser": "^8.3",
  9421. "symfony/finder": "^2.8|^3.4",
  9422. "symfony/var-dumper": "^2.8|^3.4"
  9423. },
  9424. "suggest": {
  9425. "ext-dom": "Needed to make use of the features in the utilities namespace"
  9426. },
  9427. "type": "library",
  9428. "autoload": {
  9429. "psr-0": {
  9430. "Highlight\\": "",
  9431. "HighlightUtilities\\": ""
  9432. },
  9433. "files": [
  9434. "HighlightUtilities/functions.php"
  9435. ]
  9436. },
  9437. "notification-url": "https://packagist.org/downloads/",
  9438. "license": [
  9439. "BSD-3-Clause"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Geert Bergman",
  9444. "homepage": "http://www.scrivo.org/",
  9445. "role": "Project Author"
  9446. },
  9447. {
  9448. "name": "Vladimir Jimenez",
  9449. "homepage": "https://allejo.io",
  9450. "role": "Maintainer"
  9451. },
  9452. {
  9453. "name": "Martin Folkers",
  9454. "homepage": "https://twobrain.io",
  9455. "role": "Contributor"
  9456. }
  9457. ],
  9458. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  9459. "keywords": [
  9460. "code",
  9461. "highlight",
  9462. "highlight.js",
  9463. "highlight.php",
  9464. "syntax"
  9465. ],
  9466. "funding": [
  9467. {
  9468. "url": "https://github.com/allejo",
  9469. "type": "github"
  9470. }
  9471. ],
  9472. "time": "2020-10-16T07:43:22+00:00"
  9473. },
  9474. {
  9475. "name": "sebastian/code-unit-reverse-lookup",
  9476. "version": "1.0.1",
  9477. "source": {
  9478. "type": "git",
  9479. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9480. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9481. },
  9482. "dist": {
  9483. "type": "zip",
  9484. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9485. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9486. "shasum": ""
  9487. },
  9488. "require": {
  9489. "php": "^5.6 || ^7.0"
  9490. },
  9491. "require-dev": {
  9492. "phpunit/phpunit": "^5.7 || ^6.0"
  9493. },
  9494. "type": "library",
  9495. "extra": {
  9496. "branch-alias": {
  9497. "dev-master": "1.0.x-dev"
  9498. }
  9499. },
  9500. "autoload": {
  9501. "classmap": [
  9502. "src/"
  9503. ]
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "BSD-3-Clause"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Sebastian Bergmann",
  9512. "email": "sebastian@phpunit.de"
  9513. }
  9514. ],
  9515. "description": "Looks up which function or method a line of code belongs to",
  9516. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9517. "time": "2017-03-04T06:30:41+00:00"
  9518. },
  9519. {
  9520. "name": "sebastian/comparator",
  9521. "version": "3.0.2",
  9522. "source": {
  9523. "type": "git",
  9524. "url": "https://github.com/sebastianbergmann/comparator.git",
  9525. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  9526. },
  9527. "dist": {
  9528. "type": "zip",
  9529. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9530. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9531. "shasum": ""
  9532. },
  9533. "require": {
  9534. "php": "^7.1",
  9535. "sebastian/diff": "^3.0",
  9536. "sebastian/exporter": "^3.1"
  9537. },
  9538. "require-dev": {
  9539. "phpunit/phpunit": "^7.1"
  9540. },
  9541. "type": "library",
  9542. "extra": {
  9543. "branch-alias": {
  9544. "dev-master": "3.0-dev"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "classmap": [
  9549. "src/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "BSD-3-Clause"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Jeff Welch",
  9559. "email": "whatthejeff@gmail.com"
  9560. },
  9561. {
  9562. "name": "Volker Dusch",
  9563. "email": "github@wallbash.com"
  9564. },
  9565. {
  9566. "name": "Bernhard Schussek",
  9567. "email": "bschussek@2bepublished.at"
  9568. },
  9569. {
  9570. "name": "Sebastian Bergmann",
  9571. "email": "sebastian@phpunit.de"
  9572. }
  9573. ],
  9574. "description": "Provides the functionality to compare PHP values for equality",
  9575. "homepage": "https://github.com/sebastianbergmann/comparator",
  9576. "keywords": [
  9577. "comparator",
  9578. "compare",
  9579. "equality"
  9580. ],
  9581. "time": "2018-07-12T15:12:46+00:00"
  9582. },
  9583. {
  9584. "name": "sebastian/diff",
  9585. "version": "3.0.2",
  9586. "source": {
  9587. "type": "git",
  9588. "url": "https://github.com/sebastianbergmann/diff.git",
  9589. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9590. },
  9591. "dist": {
  9592. "type": "zip",
  9593. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9594. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9595. "shasum": ""
  9596. },
  9597. "require": {
  9598. "php": "^7.1"
  9599. },
  9600. "require-dev": {
  9601. "phpunit/phpunit": "^7.5 || ^8.0",
  9602. "symfony/process": "^2 || ^3.3 || ^4"
  9603. },
  9604. "type": "library",
  9605. "extra": {
  9606. "branch-alias": {
  9607. "dev-master": "3.0-dev"
  9608. }
  9609. },
  9610. "autoload": {
  9611. "classmap": [
  9612. "src/"
  9613. ]
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "BSD-3-Clause"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Kore Nordmann",
  9622. "email": "mail@kore-nordmann.de"
  9623. },
  9624. {
  9625. "name": "Sebastian Bergmann",
  9626. "email": "sebastian@phpunit.de"
  9627. }
  9628. ],
  9629. "description": "Diff implementation",
  9630. "homepage": "https://github.com/sebastianbergmann/diff",
  9631. "keywords": [
  9632. "diff",
  9633. "udiff",
  9634. "unidiff",
  9635. "unified diff"
  9636. ],
  9637. "time": "2019-02-04T06:01:07+00:00"
  9638. },
  9639. {
  9640. "name": "sebastian/environment",
  9641. "version": "4.2.3",
  9642. "source": {
  9643. "type": "git",
  9644. "url": "https://github.com/sebastianbergmann/environment.git",
  9645. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  9646. },
  9647. "dist": {
  9648. "type": "zip",
  9649. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9650. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9651. "shasum": ""
  9652. },
  9653. "require": {
  9654. "php": "^7.1"
  9655. },
  9656. "require-dev": {
  9657. "phpunit/phpunit": "^7.5"
  9658. },
  9659. "suggest": {
  9660. "ext-posix": "*"
  9661. },
  9662. "type": "library",
  9663. "extra": {
  9664. "branch-alias": {
  9665. "dev-master": "4.2-dev"
  9666. }
  9667. },
  9668. "autoload": {
  9669. "classmap": [
  9670. "src/"
  9671. ]
  9672. },
  9673. "notification-url": "https://packagist.org/downloads/",
  9674. "license": [
  9675. "BSD-3-Clause"
  9676. ],
  9677. "authors": [
  9678. {
  9679. "name": "Sebastian Bergmann",
  9680. "email": "sebastian@phpunit.de"
  9681. }
  9682. ],
  9683. "description": "Provides functionality to handle HHVM/PHP environments",
  9684. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9685. "keywords": [
  9686. "Xdebug",
  9687. "environment",
  9688. "hhvm"
  9689. ],
  9690. "time": "2019-11-20T08:46:58+00:00"
  9691. },
  9692. {
  9693. "name": "sebastian/exporter",
  9694. "version": "3.1.2",
  9695. "source": {
  9696. "type": "git",
  9697. "url": "https://github.com/sebastianbergmann/exporter.git",
  9698. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9699. },
  9700. "dist": {
  9701. "type": "zip",
  9702. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9703. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9704. "shasum": ""
  9705. },
  9706. "require": {
  9707. "php": "^7.0",
  9708. "sebastian/recursion-context": "^3.0"
  9709. },
  9710. "require-dev": {
  9711. "ext-mbstring": "*",
  9712. "phpunit/phpunit": "^6.0"
  9713. },
  9714. "type": "library",
  9715. "extra": {
  9716. "branch-alias": {
  9717. "dev-master": "3.1.x-dev"
  9718. }
  9719. },
  9720. "autoload": {
  9721. "classmap": [
  9722. "src/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "BSD-3-Clause"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Sebastian Bergmann",
  9732. "email": "sebastian@phpunit.de"
  9733. },
  9734. {
  9735. "name": "Jeff Welch",
  9736. "email": "whatthejeff@gmail.com"
  9737. },
  9738. {
  9739. "name": "Volker Dusch",
  9740. "email": "github@wallbash.com"
  9741. },
  9742. {
  9743. "name": "Adam Harvey",
  9744. "email": "aharvey@php.net"
  9745. },
  9746. {
  9747. "name": "Bernhard Schussek",
  9748. "email": "bschussek@gmail.com"
  9749. }
  9750. ],
  9751. "description": "Provides the functionality to export PHP variables for visualization",
  9752. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9753. "keywords": [
  9754. "export",
  9755. "exporter"
  9756. ],
  9757. "time": "2019-09-14T09:02:43+00:00"
  9758. },
  9759. {
  9760. "name": "sebastian/global-state",
  9761. "version": "3.0.0",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/sebastianbergmann/global-state.git",
  9765. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9770. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9771. "shasum": ""
  9772. },
  9773. "require": {
  9774. "php": "^7.2",
  9775. "sebastian/object-reflector": "^1.1.1",
  9776. "sebastian/recursion-context": "^3.0"
  9777. },
  9778. "require-dev": {
  9779. "ext-dom": "*",
  9780. "phpunit/phpunit": "^8.0"
  9781. },
  9782. "suggest": {
  9783. "ext-uopz": "*"
  9784. },
  9785. "type": "library",
  9786. "extra": {
  9787. "branch-alias": {
  9788. "dev-master": "3.0-dev"
  9789. }
  9790. },
  9791. "autoload": {
  9792. "classmap": [
  9793. "src/"
  9794. ]
  9795. },
  9796. "notification-url": "https://packagist.org/downloads/",
  9797. "license": [
  9798. "BSD-3-Clause"
  9799. ],
  9800. "authors": [
  9801. {
  9802. "name": "Sebastian Bergmann",
  9803. "email": "sebastian@phpunit.de"
  9804. }
  9805. ],
  9806. "description": "Snapshotting of global state",
  9807. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9808. "keywords": [
  9809. "global state"
  9810. ],
  9811. "time": "2019-02-01T05:30:01+00:00"
  9812. },
  9813. {
  9814. "name": "sebastian/object-enumerator",
  9815. "version": "3.0.3",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9819. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9824. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": "^7.0",
  9829. "sebastian/object-reflector": "^1.1.1",
  9830. "sebastian/recursion-context": "^3.0"
  9831. },
  9832. "require-dev": {
  9833. "phpunit/phpunit": "^6.0"
  9834. },
  9835. "type": "library",
  9836. "extra": {
  9837. "branch-alias": {
  9838. "dev-master": "3.0.x-dev"
  9839. }
  9840. },
  9841. "autoload": {
  9842. "classmap": [
  9843. "src/"
  9844. ]
  9845. },
  9846. "notification-url": "https://packagist.org/downloads/",
  9847. "license": [
  9848. "BSD-3-Clause"
  9849. ],
  9850. "authors": [
  9851. {
  9852. "name": "Sebastian Bergmann",
  9853. "email": "sebastian@phpunit.de"
  9854. }
  9855. ],
  9856. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9857. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9858. "time": "2017-08-03T12:35:26+00:00"
  9859. },
  9860. {
  9861. "name": "sebastian/object-reflector",
  9862. "version": "1.1.1",
  9863. "source": {
  9864. "type": "git",
  9865. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9866. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9867. },
  9868. "dist": {
  9869. "type": "zip",
  9870. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9871. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9872. "shasum": ""
  9873. },
  9874. "require": {
  9875. "php": "^7.0"
  9876. },
  9877. "require-dev": {
  9878. "phpunit/phpunit": "^6.0"
  9879. },
  9880. "type": "library",
  9881. "extra": {
  9882. "branch-alias": {
  9883. "dev-master": "1.1-dev"
  9884. }
  9885. },
  9886. "autoload": {
  9887. "classmap": [
  9888. "src/"
  9889. ]
  9890. },
  9891. "notification-url": "https://packagist.org/downloads/",
  9892. "license": [
  9893. "BSD-3-Clause"
  9894. ],
  9895. "authors": [
  9896. {
  9897. "name": "Sebastian Bergmann",
  9898. "email": "sebastian@phpunit.de"
  9899. }
  9900. ],
  9901. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9902. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9903. "time": "2017-03-29T09:07:27+00:00"
  9904. },
  9905. {
  9906. "name": "sebastian/recursion-context",
  9907. "version": "3.0.0",
  9908. "source": {
  9909. "type": "git",
  9910. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9911. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9912. },
  9913. "dist": {
  9914. "type": "zip",
  9915. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9916. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9917. "shasum": ""
  9918. },
  9919. "require": {
  9920. "php": "^7.0"
  9921. },
  9922. "require-dev": {
  9923. "phpunit/phpunit": "^6.0"
  9924. },
  9925. "type": "library",
  9926. "extra": {
  9927. "branch-alias": {
  9928. "dev-master": "3.0.x-dev"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "classmap": [
  9933. "src/"
  9934. ]
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "BSD-3-Clause"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Jeff Welch",
  9943. "email": "whatthejeff@gmail.com"
  9944. },
  9945. {
  9946. "name": "Sebastian Bergmann",
  9947. "email": "sebastian@phpunit.de"
  9948. },
  9949. {
  9950. "name": "Adam Harvey",
  9951. "email": "aharvey@php.net"
  9952. }
  9953. ],
  9954. "description": "Provides functionality to recursively process PHP variables",
  9955. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9956. "time": "2017-03-03T06:23:57+00:00"
  9957. },
  9958. {
  9959. "name": "sebastian/resource-operations",
  9960. "version": "2.0.1",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9964. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9969. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "php": "^7.1"
  9974. },
  9975. "type": "library",
  9976. "extra": {
  9977. "branch-alias": {
  9978. "dev-master": "2.0-dev"
  9979. }
  9980. },
  9981. "autoload": {
  9982. "classmap": [
  9983. "src/"
  9984. ]
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "BSD-3-Clause"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Sebastian Bergmann",
  9993. "email": "sebastian@phpunit.de"
  9994. }
  9995. ],
  9996. "description": "Provides a list of PHP built-in functions that operate on resources",
  9997. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9998. "time": "2018-10-04T04:07:39+00:00"
  9999. },
  10000. {
  10001. "name": "sebastian/type",
  10002. "version": "1.1.3",
  10003. "source": {
  10004. "type": "git",
  10005. "url": "https://github.com/sebastianbergmann/type.git",
  10006. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  10007. },
  10008. "dist": {
  10009. "type": "zip",
  10010. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10011. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10012. "shasum": ""
  10013. },
  10014. "require": {
  10015. "php": "^7.2"
  10016. },
  10017. "require-dev": {
  10018. "phpunit/phpunit": "^8.2"
  10019. },
  10020. "type": "library",
  10021. "extra": {
  10022. "branch-alias": {
  10023. "dev-master": "1.1-dev"
  10024. }
  10025. },
  10026. "autoload": {
  10027. "classmap": [
  10028. "src/"
  10029. ]
  10030. },
  10031. "notification-url": "https://packagist.org/downloads/",
  10032. "license": [
  10033. "BSD-3-Clause"
  10034. ],
  10035. "authors": [
  10036. {
  10037. "name": "Sebastian Bergmann",
  10038. "email": "sebastian@phpunit.de",
  10039. "role": "lead"
  10040. }
  10041. ],
  10042. "description": "Collection of value objects that represent the types of the PHP type system",
  10043. "homepage": "https://github.com/sebastianbergmann/type",
  10044. "time": "2019-07-02T08:10:15+00:00"
  10045. },
  10046. {
  10047. "name": "sebastian/version",
  10048. "version": "2.0.1",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/sebastianbergmann/version.git",
  10052. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10057. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10058. "shasum": ""
  10059. },
  10060. "require": {
  10061. "php": ">=5.6"
  10062. },
  10063. "type": "library",
  10064. "extra": {
  10065. "branch-alias": {
  10066. "dev-master": "2.0.x-dev"
  10067. }
  10068. },
  10069. "autoload": {
  10070. "classmap": [
  10071. "src/"
  10072. ]
  10073. },
  10074. "notification-url": "https://packagist.org/downloads/",
  10075. "license": [
  10076. "BSD-3-Clause"
  10077. ],
  10078. "authors": [
  10079. {
  10080. "name": "Sebastian Bergmann",
  10081. "email": "sebastian@phpunit.de",
  10082. "role": "lead"
  10083. }
  10084. ],
  10085. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10086. "homepage": "https://github.com/sebastianbergmann/version",
  10087. "time": "2016-10-03T07:35:21+00:00"
  10088. },
  10089. {
  10090. "name": "seld/jsonlint",
  10091. "version": "1.8.2",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/Seldaek/jsonlint.git",
  10095. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  10100. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  10101. "shasum": ""
  10102. },
  10103. "require": {
  10104. "php": "^5.3 || ^7.0 || ^8.0"
  10105. },
  10106. "require-dev": {
  10107. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10108. },
  10109. "bin": [
  10110. "bin/jsonlint"
  10111. ],
  10112. "type": "library",
  10113. "autoload": {
  10114. "psr-4": {
  10115. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10116. }
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "MIT"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Jordi Boggiano",
  10125. "email": "j.boggiano@seld.be",
  10126. "homepage": "http://seld.be"
  10127. }
  10128. ],
  10129. "description": "JSON Linter",
  10130. "keywords": [
  10131. "json",
  10132. "linter",
  10133. "parser",
  10134. "validator"
  10135. ],
  10136. "funding": [
  10137. {
  10138. "url": "https://github.com/Seldaek",
  10139. "type": "github"
  10140. },
  10141. {
  10142. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10143. "type": "tidelift"
  10144. }
  10145. ],
  10146. "time": "2020-08-25T06:56:57+00:00"
  10147. },
  10148. {
  10149. "name": "seld/phar-utils",
  10150. "version": "1.1.1",
  10151. "source": {
  10152. "type": "git",
  10153. "url": "https://github.com/Seldaek/phar-utils.git",
  10154. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10155. },
  10156. "dist": {
  10157. "type": "zip",
  10158. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10159. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10160. "shasum": ""
  10161. },
  10162. "require": {
  10163. "php": ">=5.3"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "1.x-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "psr-4": {
  10173. "Seld\\PharUtils\\": "src/"
  10174. }
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "MIT"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Jordi Boggiano",
  10183. "email": "j.boggiano@seld.be"
  10184. }
  10185. ],
  10186. "description": "PHAR file format utilities, for when PHP phars you up",
  10187. "keywords": [
  10188. "phar"
  10189. ],
  10190. "time": "2020-07-07T18:42:57+00:00"
  10191. },
  10192. {
  10193. "name": "symfony/debug",
  10194. "version": "v4.4.15",
  10195. "source": {
  10196. "type": "git",
  10197. "url": "https://github.com/symfony/debug.git",
  10198. "reference": "726b85e69342e767d60e3853b98559a68ff74183"
  10199. },
  10200. "dist": {
  10201. "type": "zip",
  10202. "url": "https://api.github.com/repos/symfony/debug/zipball/726b85e69342e767d60e3853b98559a68ff74183",
  10203. "reference": "726b85e69342e767d60e3853b98559a68ff74183",
  10204. "shasum": ""
  10205. },
  10206. "require": {
  10207. "php": ">=7.1.3",
  10208. "psr/log": "~1.0",
  10209. "symfony/polyfill-php80": "^1.15"
  10210. },
  10211. "conflict": {
  10212. "symfony/http-kernel": "<3.4"
  10213. },
  10214. "require-dev": {
  10215. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10216. },
  10217. "type": "library",
  10218. "extra": {
  10219. "branch-alias": {
  10220. "dev-master": "4.4-dev"
  10221. }
  10222. },
  10223. "autoload": {
  10224. "psr-4": {
  10225. "Symfony\\Component\\Debug\\": ""
  10226. },
  10227. "exclude-from-classmap": [
  10228. "/Tests/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "MIT"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Fabien Potencier",
  10238. "email": "fabien@symfony.com"
  10239. },
  10240. {
  10241. "name": "Symfony Community",
  10242. "homepage": "https://symfony.com/contributors"
  10243. }
  10244. ],
  10245. "description": "Symfony Debug Component",
  10246. "homepage": "https://symfony.com",
  10247. "funding": [
  10248. {
  10249. "url": "https://symfony.com/sponsor",
  10250. "type": "custom"
  10251. },
  10252. {
  10253. "url": "https://github.com/fabpot",
  10254. "type": "github"
  10255. },
  10256. {
  10257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10258. "type": "tidelift"
  10259. }
  10260. ],
  10261. "time": "2020-09-09T05:20:36+00:00"
  10262. },
  10263. {
  10264. "name": "symfony/filesystem",
  10265. "version": "v5.1.7",
  10266. "source": {
  10267. "type": "git",
  10268. "url": "https://github.com/symfony/filesystem.git",
  10269. "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae"
  10270. },
  10271. "dist": {
  10272. "type": "zip",
  10273. "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae",
  10274. "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae",
  10275. "shasum": ""
  10276. },
  10277. "require": {
  10278. "php": ">=7.2.5",
  10279. "symfony/polyfill-ctype": "~1.8"
  10280. },
  10281. "type": "library",
  10282. "extra": {
  10283. "branch-alias": {
  10284. "dev-master": "5.1-dev"
  10285. }
  10286. },
  10287. "autoload": {
  10288. "psr-4": {
  10289. "Symfony\\Component\\Filesystem\\": ""
  10290. },
  10291. "exclude-from-classmap": [
  10292. "/Tests/"
  10293. ]
  10294. },
  10295. "notification-url": "https://packagist.org/downloads/",
  10296. "license": [
  10297. "MIT"
  10298. ],
  10299. "authors": [
  10300. {
  10301. "name": "Fabien Potencier",
  10302. "email": "fabien@symfony.com"
  10303. },
  10304. {
  10305. "name": "Symfony Community",
  10306. "homepage": "https://symfony.com/contributors"
  10307. }
  10308. ],
  10309. "description": "Symfony Filesystem Component",
  10310. "homepage": "https://symfony.com",
  10311. "funding": [
  10312. {
  10313. "url": "https://symfony.com/sponsor",
  10314. "type": "custom"
  10315. },
  10316. {
  10317. "url": "https://github.com/fabpot",
  10318. "type": "github"
  10319. },
  10320. {
  10321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10322. "type": "tidelift"
  10323. }
  10324. ],
  10325. "time": "2020-09-27T14:02:37+00:00"
  10326. },
  10327. {
  10328. "name": "theseer/tokenizer",
  10329. "version": "1.2.0",
  10330. "source": {
  10331. "type": "git",
  10332. "url": "https://github.com/theseer/tokenizer.git",
  10333. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10334. },
  10335. "dist": {
  10336. "type": "zip",
  10337. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10338. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10339. "shasum": ""
  10340. },
  10341. "require": {
  10342. "ext-dom": "*",
  10343. "ext-tokenizer": "*",
  10344. "ext-xmlwriter": "*",
  10345. "php": "^7.2 || ^8.0"
  10346. },
  10347. "type": "library",
  10348. "autoload": {
  10349. "classmap": [
  10350. "src/"
  10351. ]
  10352. },
  10353. "notification-url": "https://packagist.org/downloads/",
  10354. "license": [
  10355. "BSD-3-Clause"
  10356. ],
  10357. "authors": [
  10358. {
  10359. "name": "Arne Blankerts",
  10360. "email": "arne@blankerts.de",
  10361. "role": "Developer"
  10362. }
  10363. ],
  10364. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10365. "funding": [
  10366. {
  10367. "url": "https://github.com/theseer",
  10368. "type": "github"
  10369. }
  10370. ],
  10371. "time": "2020-07-12T23:59:07+00:00"
  10372. },
  10373. {
  10374. "name": "webmozart/assert",
  10375. "version": "1.9.1",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/webmozart/assert.git",
  10379. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10384. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10385. "shasum": ""
  10386. },
  10387. "require": {
  10388. "php": "^5.3.3 || ^7.0 || ^8.0",
  10389. "symfony/polyfill-ctype": "^1.8"
  10390. },
  10391. "conflict": {
  10392. "phpstan/phpstan": "<0.12.20",
  10393. "vimeo/psalm": "<3.9.1"
  10394. },
  10395. "require-dev": {
  10396. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10397. },
  10398. "type": "library",
  10399. "autoload": {
  10400. "psr-4": {
  10401. "Webmozart\\Assert\\": "src/"
  10402. }
  10403. },
  10404. "notification-url": "https://packagist.org/downloads/",
  10405. "license": [
  10406. "MIT"
  10407. ],
  10408. "authors": [
  10409. {
  10410. "name": "Bernhard Schussek",
  10411. "email": "bschussek@gmail.com"
  10412. }
  10413. ],
  10414. "description": "Assertions to validate method input/output with nice error messages.",
  10415. "keywords": [
  10416. "assert",
  10417. "check",
  10418. "validate"
  10419. ],
  10420. "time": "2020-07-08T17:02:28+00:00"
  10421. }
  10422. ],
  10423. "aliases": [],
  10424. "minimum-stability": "dev",
  10425. "stability-flags": [],
  10426. "prefer-stable": true,
  10427. "prefer-lowest": false,
  10428. "platform": {
  10429. "php": "^7.2.5",
  10430. "ext-json": "*",
  10431. "ext-mbstring": "*",
  10432. "ext-openssl": "*",
  10433. "ext-simplexml": "*"
  10434. },
  10435. "platform-dev": [],
  10436. "plugin-api-version": "1.1.0"
  10437. }