composer.lock 470 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027
  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": "2d2e458a1da59e616f87d59326bd802c",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.4.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  20. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.4.0"
  65. },
  66. "time": "2022-07-12T02:52:50+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.31",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  79. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "danielstjules/stringy": "^3.1",
  92. "ext-curl": "*",
  93. "ext-json": "*",
  94. "ext-libxml": "*",
  95. "ext-mbstring": "*",
  96. "ext-openssl": "*",
  97. "ext-simplexml": "*",
  98. "ext-xmlwriter": "*",
  99. "guzzlehttp/guzzle": "^6.3|^7.0",
  100. "mtdowling/jmespath.php": "^2.5",
  101. "php": ">=5.5"
  102. },
  103. "require-dev": {
  104. "composer/composer": "^1.8",
  105. "drupal/coder": "^8.3",
  106. "ext-dom": "*",
  107. "ext-pcre": "*",
  108. "ext-sockets": "*",
  109. "ext-spl": "*",
  110. "league/climate": "^3.2.4",
  111. "mikey179/vfsstream": "^1.6",
  112. "monolog/monolog": "^1.24",
  113. "phpunit/phpunit": "^5.7.27|^6.1",
  114. "psr/cache": "^1.0",
  115. "symfony/dotenv": "^3.4",
  116. "symfony/var-dumper": "^3.4"
  117. },
  118. "suggest": {
  119. "ext-sockets": "To use client-side monitoring"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "files": [
  124. "src/Functions.php"
  125. ],
  126. "psr-4": {
  127. "AlibabaCloud\\Client\\": "src"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2021-05-13T06:26:38+00:00"
  158. },
  159. {
  160. "name": "alibabacloud/iot",
  161. "version": "1.8.958",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/alibabacloud-sdk-php/iot.git",
  165. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/alibabacloud-sdk-php/iot/zipball/1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  170. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "alibabacloud/client": "^1.5",
  181. "php": ">=5.5"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "AlibabaCloud\\Iot\\": ""
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "Apache-2.0"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Alibaba Cloud SDK",
  196. "email": "sdk-team@alibabacloud.com",
  197. "homepage": "http://www.alibabacloud.com"
  198. }
  199. ],
  200. "description": "Alibaba Cloud Iot SDK for PHP",
  201. "homepage": "https://www.alibabacloud.com/",
  202. "keywords": [
  203. "alibaba",
  204. "alibabacloud",
  205. "aliyun",
  206. "cloud",
  207. "iot",
  208. "library",
  209. "sdk"
  210. ],
  211. "support": {
  212. "issues": "https://github.com/alibabacloud-sdk-php/iot/issues",
  213. "source": "https://github.com/alibabacloud-sdk-php/iot"
  214. },
  215. "time": "2021-04-29T09:15:22+00:00"
  216. },
  217. {
  218. "name": "aliyuncs/oss-sdk-php",
  219. "version": "v2.6.0",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  223. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  228. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  229. "shasum": "",
  230. "mirrors": [
  231. {
  232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  233. "preferred": true
  234. }
  235. ]
  236. },
  237. "require": {
  238. "php": ">=5.3"
  239. },
  240. "require-dev": {
  241. "phpunit/phpunit": "*",
  242. "satooshi/php-coveralls": "*"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "OSS\\": "src/OSS"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Aliyuncs",
  257. "homepage": "http://www.aliyun.com"
  258. }
  259. ],
  260. "description": "Aliyun OSS SDK for PHP",
  261. "homepage": "http://www.aliyun.com/product/oss/",
  262. "support": {
  263. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  264. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.6.0"
  265. },
  266. "time": "2022-08-03T08:06:01+00:00"
  267. },
  268. {
  269. "name": "api-ecosystem-for-laravel/dingo-api",
  270. "version": "v3.1.1",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/api-ecosystem-for-laravel/dingo-api.git",
  274. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/api-ecosystem-for-laravel/dingo-api/zipball/ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  279. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  280. "shasum": "",
  281. "mirrors": [
  282. {
  283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  284. "preferred": true
  285. }
  286. ]
  287. },
  288. "require": {
  289. "dingo/blueprint": "^0.4",
  290. "illuminate/routing": "^7.0|^8.0",
  291. "illuminate/support": "^7.0|^8.0",
  292. "league/fractal": "^0.19",
  293. "php": "^7.2.5|^8.0"
  294. },
  295. "require-dev": {
  296. "friendsofphp/php-cs-fixer": "~2",
  297. "illuminate/auth": "^7.0|^8.0",
  298. "illuminate/cache": "^7.0|^8.0",
  299. "illuminate/console": "^7.0|^8.0",
  300. "illuminate/database": "^7.0|^8.0",
  301. "illuminate/events": "^7.0|^8.0",
  302. "illuminate/filesystem": "^7.0|^8.0",
  303. "illuminate/log": "^7.0|^8.0",
  304. "illuminate/pagination": "^7.0|^8.0",
  305. "laravel/lumen-framework": "^7.0|^8.0",
  306. "mockery/mockery": "~1.0",
  307. "php-open-source-saver/jwt-auth": "^1.4",
  308. "phpunit/phpunit": "^8.5|^9.0",
  309. "squizlabs/php_codesniffer": "~2.0"
  310. },
  311. "suggest": {
  312. "php-open-source-saver/jwt-auth": "Protect your API with JSON Web Tokens."
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "2.0-dev"
  318. },
  319. "laravel": {
  320. "providers": [
  321. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  322. ],
  323. "aliases": {
  324. "API": "Dingo\\Api\\Facade\\API"
  325. }
  326. }
  327. },
  328. "autoload": {
  329. "files": [
  330. "src/helpers.php"
  331. ],
  332. "psr-4": {
  333. "Dingo\\Api\\": "src/"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "BSD-3-Clause"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Jason Lewis",
  343. "email": "jason.lewis1991@gmail.com"
  344. }
  345. ],
  346. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  347. "keywords": [
  348. "api",
  349. "dingo",
  350. "laravel",
  351. "restful"
  352. ],
  353. "support": {
  354. "issues": "https://github.com/api-ecosystem-for-laravel/dingo-api/issues",
  355. "source": "https://github.com/api-ecosystem-for-laravel/dingo-api/tree/v3.1.1"
  356. },
  357. "time": "2022-01-30T13:37:55+00:00"
  358. },
  359. {
  360. "name": "asm89/stack-cors",
  361. "version": "v2.1.1",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/asm89/stack-cors.git",
  365. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  370. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  371. "shasum": "",
  372. "mirrors": [
  373. {
  374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  375. "preferred": true
  376. }
  377. ]
  378. },
  379. "require": {
  380. "php": "^7.2|^8.0",
  381. "symfony/http-foundation": "^4|^5|^6",
  382. "symfony/http-kernel": "^4|^5|^6"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "^7|^9",
  386. "squizlabs/php_codesniffer": "^3.5"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "2.1-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Asm89\\Stack\\": "src/"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Alexander",
  406. "email": "iam.asm89@gmail.com"
  407. }
  408. ],
  409. "description": "Cross-origin resource sharing library and stack middleware",
  410. "homepage": "https://github.com/asm89/stack-cors",
  411. "keywords": [
  412. "cors",
  413. "stack"
  414. ],
  415. "support": {
  416. "issues": "https://github.com/asm89/stack-cors/issues",
  417. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  418. },
  419. "time": "2022-01-18T09:12:03+00:00"
  420. },
  421. {
  422. "name": "barryvdh/laravel-snappy",
  423. "version": "v0.4.8",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/barryvdh/laravel-snappy.git",
  427. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  432. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  433. "shasum": "",
  434. "mirrors": [
  435. {
  436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  437. "preferred": true
  438. }
  439. ]
  440. },
  441. "require": {
  442. "illuminate/filesystem": "^5.5|^6|^7|^8",
  443. "illuminate/support": "^5.5|^6|^7|^8",
  444. "knplabs/knp-snappy": "^1",
  445. "php": ">=7"
  446. },
  447. "type": "library",
  448. "extra": {
  449. "branch-alias": {
  450. "dev-master": "0.4-dev"
  451. },
  452. "laravel": {
  453. "providers": [
  454. "Barryvdh\\Snappy\\ServiceProvider"
  455. ],
  456. "aliases": {
  457. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  458. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  459. }
  460. }
  461. },
  462. "autoload": {
  463. "psr-4": {
  464. "Barryvdh\\Snappy\\": "src/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Barry vd. Heuvel",
  474. "email": "barryvdh@gmail.com"
  475. }
  476. ],
  477. "description": "Snappy PDF/Image for Laravel",
  478. "keywords": [
  479. "image",
  480. "laravel",
  481. "pdf",
  482. "snappy",
  483. "wkhtmltoimage",
  484. "wkhtmltopdf"
  485. ],
  486. "support": {
  487. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  488. "source": "https://github.com/barryvdh/laravel-snappy/tree/master"
  489. },
  490. "time": "2020-09-07T12:33:10+00:00"
  491. },
  492. {
  493. "name": "box/spout",
  494. "version": "v3.3.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/box/spout.git",
  498. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  503. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  504. "shasum": "",
  505. "mirrors": [
  506. {
  507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  508. "preferred": true
  509. }
  510. ]
  511. },
  512. "require": {
  513. "ext-dom": "*",
  514. "ext-xmlreader": "*",
  515. "ext-zip": "*",
  516. "php": ">=7.2.0"
  517. },
  518. "require-dev": {
  519. "friendsofphp/php-cs-fixer": "^2",
  520. "phpunit/phpunit": "^8"
  521. },
  522. "suggest": {
  523. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  524. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "branch-alias": {
  529. "dev-master": "3.1.x-dev"
  530. }
  531. },
  532. "autoload": {
  533. "psr-4": {
  534. "Box\\Spout\\": "src/Spout"
  535. }
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "Apache-2.0"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Adrien Loison",
  544. "email": "adrien@box.com"
  545. }
  546. ],
  547. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  548. "homepage": "https://www.github.com/box/spout",
  549. "keywords": [
  550. "OOXML",
  551. "csv",
  552. "excel",
  553. "memory",
  554. "odf",
  555. "ods",
  556. "office",
  557. "open",
  558. "php",
  559. "read",
  560. "scale",
  561. "spreadsheet",
  562. "stream",
  563. "write",
  564. "xlsx"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/box/spout/issues",
  568. "source": "https://github.com/box/spout/tree/v3.3.0"
  569. },
  570. "abandoned": true,
  571. "time": "2021-05-14T21:18:09+00:00"
  572. },
  573. {
  574. "name": "brick/math",
  575. "version": "0.10.1",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/brick/math.git",
  579. "reference": "de846578401f4e58f911b3afeb62ced56365ed87"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/brick/math/zipball/de846578401f4e58f911b3afeb62ced56365ed87",
  584. "reference": "de846578401f4e58f911b3afeb62ced56365ed87",
  585. "shasum": "",
  586. "mirrors": [
  587. {
  588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  589. "preferred": true
  590. }
  591. ]
  592. },
  593. "require": {
  594. "ext-json": "*",
  595. "php": "^7.4 || ^8.0"
  596. },
  597. "require-dev": {
  598. "php-coveralls/php-coveralls": "^2.2",
  599. "phpunit/phpunit": "^9.0",
  600. "vimeo/psalm": "4.25.0"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Brick\\Math\\": "src/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "description": "Arbitrary-precision arithmetic library",
  613. "keywords": [
  614. "Arbitrary-precision",
  615. "BigInteger",
  616. "BigRational",
  617. "arithmetic",
  618. "bigdecimal",
  619. "bignum",
  620. "brick",
  621. "math"
  622. ],
  623. "support": {
  624. "issues": "https://github.com/brick/math/issues",
  625. "source": "https://github.com/brick/math/tree/0.10.1"
  626. },
  627. "funding": [
  628. {
  629. "url": "https://github.com/BenMorel",
  630. "type": "github"
  631. }
  632. ],
  633. "time": "2022-08-01T22:54:31+00:00"
  634. },
  635. {
  636. "name": "clagiordano/weblibs-configmanager",
  637. "version": "v1.2.0",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  641. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  646. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  647. "shasum": "",
  648. "mirrors": [
  649. {
  650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  651. "preferred": true
  652. }
  653. ]
  654. },
  655. "require": {
  656. "php": ">=5.4"
  657. },
  658. "require-dev": {
  659. "clagiordano/phpunit-result-printer": "^1",
  660. "phpunit/phpunit": "^4.8"
  661. },
  662. "type": "library",
  663. "autoload": {
  664. "psr-4": {
  665. "clagiordano\\weblibs\\configmanager\\": "src/"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "LGPL-3.0-or-later"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Claudio Giordano",
  675. "email": "claudio.giordano@autistici.org",
  676. "role": "Developer"
  677. }
  678. ],
  679. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  680. "keywords": [
  681. "clagiordano",
  682. "configuration",
  683. "manager",
  684. "tool",
  685. "weblibs"
  686. ],
  687. "support": {
  688. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  689. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  690. },
  691. "time": "2021-05-18T17:55:57+00:00"
  692. },
  693. {
  694. "name": "danielstjules/stringy",
  695. "version": "3.1.0",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/danielstjules/Stringy.git",
  699. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  704. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "php": ">=5.4.0",
  715. "symfony/polyfill-mbstring": "~1.1"
  716. },
  717. "require-dev": {
  718. "phpunit/phpunit": "~4.0"
  719. },
  720. "type": "library",
  721. "autoload": {
  722. "files": [
  723. "src/Create.php"
  724. ],
  725. "psr-4": {
  726. "Stringy\\": "src/"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "MIT"
  732. ],
  733. "authors": [
  734. {
  735. "name": "Daniel St. Jules",
  736. "email": "danielst.jules@gmail.com",
  737. "homepage": "http://www.danielstjules.com"
  738. }
  739. ],
  740. "description": "A string manipulation library with multibyte support",
  741. "homepage": "https://github.com/danielstjules/Stringy",
  742. "keywords": [
  743. "UTF",
  744. "helpers",
  745. "manipulation",
  746. "methods",
  747. "multibyte",
  748. "string",
  749. "utf-8",
  750. "utility",
  751. "utils"
  752. ],
  753. "support": {
  754. "issues": "https://github.com/danielstjules/Stringy/issues",
  755. "source": "https://github.com/danielstjules/Stringy"
  756. },
  757. "time": "2017-06-12T01:10:27+00:00"
  758. },
  759. {
  760. "name": "dcat/easy-excel",
  761. "version": "1.1.0",
  762. "source": {
  763. "type": "git",
  764. "url": "https://github.com/jqhph/easy-excel.git",
  765. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  766. },
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  770. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  771. "shasum": "",
  772. "mirrors": [
  773. {
  774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  775. "preferred": true
  776. }
  777. ]
  778. },
  779. "require": {
  780. "box/spout": "~3",
  781. "league/flysystem": "~1|~2|~3",
  782. "php": ">=7.1.0"
  783. },
  784. "require-dev": {
  785. "friendsofphp/php-cs-fixer": "^2",
  786. "phpunit/phpunit": "~7|~8.0"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "Dcat\\EasyExcel\\": "src/"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "MIT"
  797. ],
  798. "authors": [
  799. {
  800. "name": "jqh",
  801. "email": "841324345@qq.com"
  802. }
  803. ],
  804. "description": "使用简单实用的语义化接口快速读写Excel文件",
  805. "homepage": "https://github.com/jqhph/easy-excel",
  806. "keywords": [
  807. "box spout",
  808. "csv",
  809. "easy excel",
  810. "excel",
  811. "ods",
  812. "office",
  813. "read",
  814. "spreadsheet",
  815. "stream",
  816. "xlsx"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/jqhph/easy-excel/issues",
  820. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  821. },
  822. "time": "2022-03-03T03:04:13+00:00"
  823. },
  824. {
  825. "name": "dcat/laravel-admin",
  826. "version": "2.2.2-beta",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/jqhph/dcat-admin.git",
  830. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/150f46486871b5ca57992f7eed3787e0c1c49bef",
  835. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef",
  836. "shasum": "",
  837. "mirrors": [
  838. {
  839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  840. "preferred": true
  841. }
  842. ]
  843. },
  844. "require": {
  845. "doctrine/dbal": "^2.6|^3.0",
  846. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  847. "php": ">=7.1.0",
  848. "spatie/eloquent-sortable": "3.*|4.*"
  849. },
  850. "require-dev": {
  851. "fzaninotto/faker": "^1.4",
  852. "laravel/dusk": "~5.9|~6",
  853. "mockery/mockery": "^1.0",
  854. "phpstan/phpstan": "^0.12.0",
  855. "phpunit/phpunit": "^7.5|~9"
  856. },
  857. "type": "library",
  858. "extra": {
  859. "laravel": {
  860. "providers": [
  861. "Dcat\\Admin\\AdminServiceProvider"
  862. ]
  863. }
  864. },
  865. "autoload": {
  866. "files": [
  867. "src/Support/helpers.php"
  868. ],
  869. "psr-4": {
  870. "Dcat\\Admin\\": "src/"
  871. }
  872. },
  873. "notification-url": "https://packagist.org/downloads/",
  874. "license": [
  875. "MIT"
  876. ],
  877. "authors": [
  878. {
  879. "name": "jqh",
  880. "email": "841324345@qq.com"
  881. }
  882. ],
  883. "description": "dcat admin",
  884. "homepage": "https://github.com/jqhph/dcat-admin",
  885. "keywords": [
  886. "admin",
  887. "dcat",
  888. "form",
  889. "grid",
  890. "laravel",
  891. "laravel admin"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/jqhph/dcat-admin/issues",
  895. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.2-beta"
  896. },
  897. "time": "2022-06-27T14:42:39+00:00"
  898. },
  899. {
  900. "name": "dflydev/dot-access-data",
  901. "version": "v3.0.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  905. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  910. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "php": "^7.1 || ^8.0"
  921. },
  922. "require-dev": {
  923. "phpstan/phpstan": "^0.12.42",
  924. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  925. "scrutinizer/ocular": "1.6.0",
  926. "squizlabs/php_codesniffer": "^3.5",
  927. "vimeo/psalm": "^3.14"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-main": "3.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "psr-4": {
  937. "Dflydev\\DotAccessData\\": "src/"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Dragonfly Development Inc.",
  947. "email": "info@dflydev.com",
  948. "homepage": "http://dflydev.com"
  949. },
  950. {
  951. "name": "Beau Simensen",
  952. "email": "beau@dflydev.com",
  953. "homepage": "http://beausimensen.com"
  954. },
  955. {
  956. "name": "Carlos Frutos",
  957. "email": "carlos@kiwing.it",
  958. "homepage": "https://github.com/cfrutos"
  959. },
  960. {
  961. "name": "Colin O'Dell",
  962. "email": "colinodell@gmail.com",
  963. "homepage": "https://www.colinodell.com"
  964. }
  965. ],
  966. "description": "Given a deep data structure, access data by dot notation.",
  967. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  968. "keywords": [
  969. "access",
  970. "data",
  971. "dot",
  972. "notation"
  973. ],
  974. "support": {
  975. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  976. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  977. },
  978. "time": "2021-08-13T13:06:58+00:00"
  979. },
  980. {
  981. "name": "dingo/blueprint",
  982. "version": "v0.4.3",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/dingo/blueprint.git",
  986. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  991. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  992. "shasum": "",
  993. "mirrors": [
  994. {
  995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  996. "preferred": true
  997. }
  998. ]
  999. },
  1000. "require": {
  1001. "doctrine/annotations": "~1.2",
  1002. "illuminate/filesystem": "^7.0|^8.0",
  1003. "illuminate/support": "^7.0|^8.0",
  1004. "php": "^7.2.5|^8.0",
  1005. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1006. },
  1007. "require-dev": {
  1008. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1009. "squizlabs/php_codesniffer": "~2.0"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "0.2-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Dingo\\Blueprint\\": "src"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "BSD-3-Clause"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Jason Lewis",
  1029. "email": "jason.lewis1991@gmail.com"
  1030. }
  1031. ],
  1032. "description": "API Blueprint documentation generator.",
  1033. "keywords": [
  1034. "api",
  1035. "blueprint",
  1036. "dingo",
  1037. "docs",
  1038. "laravel"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/dingo/blueprint/issues",
  1042. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1043. },
  1044. "time": "2021-04-30T11:20:38+00:00"
  1045. },
  1046. {
  1047. "name": "doctrine/annotations",
  1048. "version": "1.13.3",
  1049. "source": {
  1050. "type": "git",
  1051. "url": "https://github.com/doctrine/annotations.git",
  1052. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1053. },
  1054. "dist": {
  1055. "type": "zip",
  1056. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1057. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1058. "shasum": "",
  1059. "mirrors": [
  1060. {
  1061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1062. "preferred": true
  1063. }
  1064. ]
  1065. },
  1066. "require": {
  1067. "doctrine/lexer": "1.*",
  1068. "ext-tokenizer": "*",
  1069. "php": "^7.1 || ^8.0",
  1070. "psr/cache": "^1 || ^2 || ^3"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/cache": "^1.11 || ^2.0",
  1074. "doctrine/coding-standard": "^6.0 || ^8.1",
  1075. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1076. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1077. "symfony/cache": "^4.4 || ^5.2",
  1078. "vimeo/psalm": "^4.10"
  1079. },
  1080. "type": "library",
  1081. "autoload": {
  1082. "psr-4": {
  1083. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1084. }
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "MIT"
  1089. ],
  1090. "authors": [
  1091. {
  1092. "name": "Guilherme Blanco",
  1093. "email": "guilhermeblanco@gmail.com"
  1094. },
  1095. {
  1096. "name": "Roman Borschel",
  1097. "email": "roman@code-factory.org"
  1098. },
  1099. {
  1100. "name": "Benjamin Eberlei",
  1101. "email": "kontakt@beberlei.de"
  1102. },
  1103. {
  1104. "name": "Jonathan Wage",
  1105. "email": "jonwage@gmail.com"
  1106. },
  1107. {
  1108. "name": "Johannes Schmitt",
  1109. "email": "schmittjoh@gmail.com"
  1110. }
  1111. ],
  1112. "description": "Docblock Annotations Parser",
  1113. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1114. "keywords": [
  1115. "annotations",
  1116. "docblock",
  1117. "parser"
  1118. ],
  1119. "support": {
  1120. "issues": "https://github.com/doctrine/annotations/issues",
  1121. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1122. },
  1123. "time": "2022-07-02T10:48:51+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/cache",
  1127. "version": "2.2.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/cache.git",
  1131. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1136. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1137. "shasum": "",
  1138. "mirrors": [
  1139. {
  1140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1141. "preferred": true
  1142. }
  1143. ]
  1144. },
  1145. "require": {
  1146. "php": "~7.1 || ^8.0"
  1147. },
  1148. "conflict": {
  1149. "doctrine/common": ">2.2,<2.4"
  1150. },
  1151. "require-dev": {
  1152. "cache/integration-tests": "dev-master",
  1153. "doctrine/coding-standard": "^9",
  1154. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1155. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1156. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1157. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1158. },
  1159. "type": "library",
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Guilherme Blanco",
  1172. "email": "guilhermeblanco@gmail.com"
  1173. },
  1174. {
  1175. "name": "Roman Borschel",
  1176. "email": "roman@code-factory.org"
  1177. },
  1178. {
  1179. "name": "Benjamin Eberlei",
  1180. "email": "kontakt@beberlei.de"
  1181. },
  1182. {
  1183. "name": "Jonathan Wage",
  1184. "email": "jonwage@gmail.com"
  1185. },
  1186. {
  1187. "name": "Johannes Schmitt",
  1188. "email": "schmittjoh@gmail.com"
  1189. }
  1190. ],
  1191. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1192. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1193. "keywords": [
  1194. "abstraction",
  1195. "apcu",
  1196. "cache",
  1197. "caching",
  1198. "couchdb",
  1199. "memcached",
  1200. "php",
  1201. "redis",
  1202. "xcache"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/doctrine/cache/issues",
  1206. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1207. },
  1208. "funding": [
  1209. {
  1210. "url": "https://www.doctrine-project.org/sponsorship.html",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.patreon.com/phpdoctrine",
  1215. "type": "patreon"
  1216. },
  1217. {
  1218. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1219. "type": "tidelift"
  1220. }
  1221. ],
  1222. "time": "2022-05-20T20:07:39+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/dbal",
  1226. "version": "3.4.1",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/dbal.git",
  1230. "reference": "94e016428884227245fb1219e0de7d8b86ca16d7"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/dbal/zipball/94e016428884227245fb1219e0de7d8b86ca16d7",
  1235. "reference": "94e016428884227245fb1219e0de7d8b86ca16d7",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "composer-runtime-api": "^2",
  1246. "doctrine/cache": "^1.11|^2.0",
  1247. "doctrine/deprecations": "^0.5.3|^1",
  1248. "doctrine/event-manager": "^1.0",
  1249. "php": "^7.4 || ^8.0",
  1250. "psr/cache": "^1|^2|^3",
  1251. "psr/log": "^1|^2|^3"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "9.0.0",
  1255. "jetbrains/phpstorm-stubs": "2022.1",
  1256. "phpstan/phpstan": "1.8.2",
  1257. "phpstan/phpstan-strict-rules": "^1.3",
  1258. "phpunit/phpunit": "9.5.21",
  1259. "psalm/plugin-phpunit": "0.17.0",
  1260. "squizlabs/php_codesniffer": "3.7.1",
  1261. "symfony/cache": "^5.4|^6.0",
  1262. "symfony/console": "^4.4|^5.4|^6.0",
  1263. "vimeo/psalm": "4.24.0"
  1264. },
  1265. "suggest": {
  1266. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1267. },
  1268. "bin": [
  1269. "bin/doctrine-dbal"
  1270. ],
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\DBAL\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Roman Borschel",
  1288. "email": "roman@code-factory.org"
  1289. },
  1290. {
  1291. "name": "Benjamin Eberlei",
  1292. "email": "kontakt@beberlei.de"
  1293. },
  1294. {
  1295. "name": "Jonathan Wage",
  1296. "email": "jonwage@gmail.com"
  1297. }
  1298. ],
  1299. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1300. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1301. "keywords": [
  1302. "abstraction",
  1303. "database",
  1304. "db2",
  1305. "dbal",
  1306. "mariadb",
  1307. "mssql",
  1308. "mysql",
  1309. "oci8",
  1310. "oracle",
  1311. "pdo",
  1312. "pgsql",
  1313. "postgresql",
  1314. "queryobject",
  1315. "sasql",
  1316. "sql",
  1317. "sqlite",
  1318. "sqlserver",
  1319. "sqlsrv"
  1320. ],
  1321. "support": {
  1322. "issues": "https://github.com/doctrine/dbal/issues",
  1323. "source": "https://github.com/doctrine/dbal/tree/3.4.1"
  1324. },
  1325. "funding": [
  1326. {
  1327. "url": "https://www.doctrine-project.org/sponsorship.html",
  1328. "type": "custom"
  1329. },
  1330. {
  1331. "url": "https://www.patreon.com/phpdoctrine",
  1332. "type": "patreon"
  1333. },
  1334. {
  1335. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1336. "type": "tidelift"
  1337. }
  1338. ],
  1339. "time": "2022-08-16T18:37:46+00:00"
  1340. },
  1341. {
  1342. "name": "doctrine/deprecations",
  1343. "version": "v1.0.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/doctrine/deprecations.git",
  1347. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1352. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "php": "^7.1|^8.0"
  1363. },
  1364. "require-dev": {
  1365. "doctrine/coding-standard": "^9",
  1366. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1367. "psr/log": "^1|^2|^3"
  1368. },
  1369. "suggest": {
  1370. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1371. },
  1372. "type": "library",
  1373. "autoload": {
  1374. "psr-4": {
  1375. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1376. }
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "MIT"
  1381. ],
  1382. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1383. "homepage": "https://www.doctrine-project.org/",
  1384. "support": {
  1385. "issues": "https://github.com/doctrine/deprecations/issues",
  1386. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1387. },
  1388. "time": "2022-05-02T15:47:09+00:00"
  1389. },
  1390. {
  1391. "name": "doctrine/event-manager",
  1392. "version": "1.1.1",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/doctrine/event-manager.git",
  1396. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1401. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1402. "shasum": "",
  1403. "mirrors": [
  1404. {
  1405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1406. "preferred": true
  1407. }
  1408. ]
  1409. },
  1410. "require": {
  1411. "php": "^7.1 || ^8.0"
  1412. },
  1413. "conflict": {
  1414. "doctrine/common": "<2.9@dev"
  1415. },
  1416. "require-dev": {
  1417. "doctrine/coding-standard": "^6.0",
  1418. "phpunit/phpunit": "^7.0"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-master": "1.0.x-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Guilherme Blanco",
  1438. "email": "guilhermeblanco@gmail.com"
  1439. },
  1440. {
  1441. "name": "Roman Borschel",
  1442. "email": "roman@code-factory.org"
  1443. },
  1444. {
  1445. "name": "Benjamin Eberlei",
  1446. "email": "kontakt@beberlei.de"
  1447. },
  1448. {
  1449. "name": "Jonathan Wage",
  1450. "email": "jonwage@gmail.com"
  1451. },
  1452. {
  1453. "name": "Johannes Schmitt",
  1454. "email": "schmittjoh@gmail.com"
  1455. },
  1456. {
  1457. "name": "Marco Pivetta",
  1458. "email": "ocramius@gmail.com"
  1459. }
  1460. ],
  1461. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1462. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1463. "keywords": [
  1464. "event",
  1465. "event dispatcher",
  1466. "event manager",
  1467. "event system",
  1468. "events"
  1469. ],
  1470. "support": {
  1471. "issues": "https://github.com/doctrine/event-manager/issues",
  1472. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://www.doctrine-project.org/sponsorship.html",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://www.patreon.com/phpdoctrine",
  1481. "type": "patreon"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "time": "2020-05-29T18:28:51+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/inflector",
  1492. "version": "2.0.4",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/inflector.git",
  1496. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1501. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1502. "shasum": "",
  1503. "mirrors": [
  1504. {
  1505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1506. "preferred": true
  1507. }
  1508. ]
  1509. },
  1510. "require": {
  1511. "php": "^7.2 || ^8.0"
  1512. },
  1513. "require-dev": {
  1514. "doctrine/coding-standard": "^8.2",
  1515. "phpstan/phpstan": "^0.12",
  1516. "phpstan/phpstan-phpunit": "^0.12",
  1517. "phpstan/phpstan-strict-rules": "^0.12",
  1518. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1519. "vimeo/psalm": "^4.10"
  1520. },
  1521. "type": "library",
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Guilherme Blanco",
  1534. "email": "guilhermeblanco@gmail.com"
  1535. },
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Jonathan Wage",
  1546. "email": "jonwage@gmail.com"
  1547. },
  1548. {
  1549. "name": "Johannes Schmitt",
  1550. "email": "schmittjoh@gmail.com"
  1551. }
  1552. ],
  1553. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1554. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1555. "keywords": [
  1556. "inflection",
  1557. "inflector",
  1558. "lowercase",
  1559. "manipulation",
  1560. "php",
  1561. "plural",
  1562. "singular",
  1563. "strings",
  1564. "uppercase",
  1565. "words"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/doctrine/inflector/issues",
  1569. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://www.doctrine-project.org/sponsorship.html",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://www.patreon.com/phpdoctrine",
  1578. "type": "patreon"
  1579. },
  1580. {
  1581. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1582. "type": "tidelift"
  1583. }
  1584. ],
  1585. "time": "2021-10-22T20:16:43+00:00"
  1586. },
  1587. {
  1588. "name": "doctrine/lexer",
  1589. "version": "1.2.3",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/doctrine/lexer.git",
  1593. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1598. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1599. "shasum": "",
  1600. "mirrors": [
  1601. {
  1602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1603. "preferred": true
  1604. }
  1605. ]
  1606. },
  1607. "require": {
  1608. "php": "^7.1 || ^8.0"
  1609. },
  1610. "require-dev": {
  1611. "doctrine/coding-standard": "^9.0",
  1612. "phpstan/phpstan": "^1.3",
  1613. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1614. "vimeo/psalm": "^4.11"
  1615. },
  1616. "type": "library",
  1617. "autoload": {
  1618. "psr-4": {
  1619. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1620. }
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Guilherme Blanco",
  1629. "email": "guilhermeblanco@gmail.com"
  1630. },
  1631. {
  1632. "name": "Roman Borschel",
  1633. "email": "roman@code-factory.org"
  1634. },
  1635. {
  1636. "name": "Johannes Schmitt",
  1637. "email": "schmittjoh@gmail.com"
  1638. }
  1639. ],
  1640. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1641. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1642. "keywords": [
  1643. "annotations",
  1644. "docblock",
  1645. "lexer",
  1646. "parser",
  1647. "php"
  1648. ],
  1649. "support": {
  1650. "issues": "https://github.com/doctrine/lexer/issues",
  1651. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1652. },
  1653. "funding": [
  1654. {
  1655. "url": "https://www.doctrine-project.org/sponsorship.html",
  1656. "type": "custom"
  1657. },
  1658. {
  1659. "url": "https://www.patreon.com/phpdoctrine",
  1660. "type": "patreon"
  1661. },
  1662. {
  1663. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1664. "type": "tidelift"
  1665. }
  1666. ],
  1667. "time": "2022-02-28T11:07:21+00:00"
  1668. },
  1669. {
  1670. "name": "dragonmantank/cron-expression",
  1671. "version": "v3.3.1",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/dragonmantank/cron-expression.git",
  1675. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1680. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1681. "shasum": "",
  1682. "mirrors": [
  1683. {
  1684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1685. "preferred": true
  1686. }
  1687. ]
  1688. },
  1689. "require": {
  1690. "php": "^7.2|^8.0",
  1691. "webmozart/assert": "^1.0"
  1692. },
  1693. "replace": {
  1694. "mtdowling/cron-expression": "^1.0"
  1695. },
  1696. "require-dev": {
  1697. "phpstan/extension-installer": "^1.0",
  1698. "phpstan/phpstan": "^1.0",
  1699. "phpstan/phpstan-webmozart-assert": "^1.0",
  1700. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1701. },
  1702. "type": "library",
  1703. "autoload": {
  1704. "psr-4": {
  1705. "Cron\\": "src/Cron/"
  1706. }
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "MIT"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "Chris Tankersley",
  1715. "email": "chris@ctankersley.com",
  1716. "homepage": "https://github.com/dragonmantank"
  1717. }
  1718. ],
  1719. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1720. "keywords": [
  1721. "cron",
  1722. "schedule"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1726. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://github.com/dragonmantank",
  1731. "type": "github"
  1732. }
  1733. ],
  1734. "time": "2022-01-18T15:43:28+00:00"
  1735. },
  1736. {
  1737. "name": "easywechat-composer/easywechat-composer",
  1738. "version": "1.4.1",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1742. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1747. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1748. "shasum": "",
  1749. "mirrors": [
  1750. {
  1751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1752. "preferred": true
  1753. }
  1754. ]
  1755. },
  1756. "require": {
  1757. "composer-plugin-api": "^1.0 || ^2.0",
  1758. "php": ">=7.0"
  1759. },
  1760. "require-dev": {
  1761. "composer/composer": "^1.0 || ^2.0",
  1762. "phpunit/phpunit": "^6.5 || ^7.0"
  1763. },
  1764. "type": "composer-plugin",
  1765. "extra": {
  1766. "class": "EasyWeChatComposer\\Plugin"
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "EasyWeChatComposer\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "张铭阳",
  1780. "email": "mingyoungcheung@gmail.com"
  1781. }
  1782. ],
  1783. "description": "The composer plugin for EasyWeChat",
  1784. "support": {
  1785. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1786. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1787. },
  1788. "time": "2021-07-05T04:03:22+00:00"
  1789. },
  1790. {
  1791. "name": "egulias/email-validator",
  1792. "version": "2.1.25",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/egulias/EmailValidator.git",
  1796. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1801. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "doctrine/lexer": "^1.0.1",
  1812. "php": ">=5.5",
  1813. "symfony/polyfill-intl-idn": "^1.10"
  1814. },
  1815. "require-dev": {
  1816. "dominicsayers/isemail": "^3.0.7",
  1817. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1818. "satooshi/php-coveralls": "^1.0.1"
  1819. },
  1820. "suggest": {
  1821. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "2.1.x-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Egulias\\EmailValidator\\": "src"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Eduardo Gulias Davis"
  1841. }
  1842. ],
  1843. "description": "A library for validating emails against several RFCs",
  1844. "homepage": "https://github.com/egulias/EmailValidator",
  1845. "keywords": [
  1846. "email",
  1847. "emailvalidation",
  1848. "emailvalidator",
  1849. "validation",
  1850. "validator"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/egulias/EmailValidator/issues",
  1854. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1855. },
  1856. "funding": [
  1857. {
  1858. "url": "https://github.com/egulias",
  1859. "type": "github"
  1860. }
  1861. ],
  1862. "time": "2020-12-29T14:50:06+00:00"
  1863. },
  1864. {
  1865. "name": "fruitcake/laravel-cors",
  1866. "version": "v2.2.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/fruitcake/laravel-cors.git",
  1870. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1875. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1876. "shasum": "",
  1877. "mirrors": [
  1878. {
  1879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1880. "preferred": true
  1881. }
  1882. ]
  1883. },
  1884. "require": {
  1885. "asm89/stack-cors": "^2.0.1",
  1886. "illuminate/contracts": "^6|^7|^8|^9",
  1887. "illuminate/support": "^6|^7|^8|^9",
  1888. "php": ">=7.2"
  1889. },
  1890. "require-dev": {
  1891. "laravel/framework": "^6|^7.24|^8",
  1892. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1893. "phpunit/phpunit": "^6|^7|^8|^9",
  1894. "squizlabs/php_codesniffer": "^3.5"
  1895. },
  1896. "type": "library",
  1897. "extra": {
  1898. "branch-alias": {
  1899. "dev-master": "2.1-dev"
  1900. },
  1901. "laravel": {
  1902. "providers": [
  1903. "Fruitcake\\Cors\\CorsServiceProvider"
  1904. ]
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Fruitcake\\Cors\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Fruitcake",
  1919. "homepage": "https://fruitcake.nl"
  1920. },
  1921. {
  1922. "name": "Barry vd. Heuvel",
  1923. "email": "barryvdh@gmail.com"
  1924. }
  1925. ],
  1926. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1927. "keywords": [
  1928. "api",
  1929. "cors",
  1930. "crossdomain",
  1931. "laravel"
  1932. ],
  1933. "support": {
  1934. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1935. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1936. },
  1937. "funding": [
  1938. {
  1939. "url": "https://fruitcake.nl",
  1940. "type": "custom"
  1941. },
  1942. {
  1943. "url": "https://github.com/barryvdh",
  1944. "type": "github"
  1945. }
  1946. ],
  1947. "time": "2022-02-23T14:25:13+00:00"
  1948. },
  1949. {
  1950. "name": "giggsey/libphonenumber-for-php",
  1951. "version": "8.12.53",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1955. "reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/2e39201ca4b88c1ec0594cd78128d21e94929d04",
  1960. "reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04",
  1961. "shasum": "",
  1962. "mirrors": [
  1963. {
  1964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1965. "preferred": true
  1966. }
  1967. ]
  1968. },
  1969. "require": {
  1970. "giggsey/locale": "^1.7|^2.0",
  1971. "php": ">=5.3.2",
  1972. "symfony/polyfill-mbstring": "^1.17"
  1973. },
  1974. "require-dev": {
  1975. "pear/pear-core-minimal": "^1.9",
  1976. "pear/pear_exception": "^1.0",
  1977. "pear/versioncontrol_git": "^0.5",
  1978. "phing/phing": "^2.7",
  1979. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1980. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  1981. "symfony/phpunit-bridge": "^4.2 || ^5"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "8.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "libphonenumber\\": "src/"
  1992. },
  1993. "exclude-from-classmap": [
  1994. "/src/data/",
  1995. "/src/carrier/data/",
  1996. "/src/geocoding/data/",
  1997. "/src/timezone/data/"
  1998. ]
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "Apache-2.0"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Joshua Gigg",
  2007. "email": "giggsey@gmail.com",
  2008. "homepage": "https://giggsey.com/"
  2009. }
  2010. ],
  2011. "description": "PHP Port of Google's libphonenumber",
  2012. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  2013. "keywords": [
  2014. "geocoding",
  2015. "geolocation",
  2016. "libphonenumber",
  2017. "mobile",
  2018. "phonenumber",
  2019. "validation"
  2020. ],
  2021. "support": {
  2022. "irc": "irc://irc.appliedirc.com/lobby",
  2023. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  2024. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2025. },
  2026. "time": "2022-08-08T06:53:30+00:00"
  2027. },
  2028. {
  2029. "name": "giggsey/locale",
  2030. "version": "2.2",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/giggsey/Locale.git",
  2034. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/giggsey/Locale/zipball/9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2039. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2040. "shasum": "",
  2041. "mirrors": [
  2042. {
  2043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2044. "preferred": true
  2045. }
  2046. ]
  2047. },
  2048. "require": {
  2049. "php": ">=7.2"
  2050. },
  2051. "require-dev": {
  2052. "ext-json": "*",
  2053. "pear/pear-core-minimal": "^1.9",
  2054. "pear/pear_exception": "^1.0",
  2055. "pear/versioncontrol_git": "^0.5",
  2056. "phing/phing": "^2.7",
  2057. "php-coveralls/php-coveralls": "^2.0",
  2058. "phpunit/phpunit": "^8.5|^9.5",
  2059. "symfony/console": "^5.0",
  2060. "symfony/filesystem": "^5.0",
  2061. "symfony/finder": "^5.0",
  2062. "symfony/process": "^5.0"
  2063. },
  2064. "type": "library",
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Giggsey\\Locale\\": "src/"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "Joshua Gigg",
  2077. "email": "giggsey@gmail.com",
  2078. "homepage": "https://giggsey.com/"
  2079. }
  2080. ],
  2081. "description": "Locale functions required by libphonenumber-for-php",
  2082. "support": {
  2083. "issues": "https://github.com/giggsey/Locale/issues",
  2084. "source": "https://github.com/giggsey/Locale/tree/2.2"
  2085. },
  2086. "time": "2022-04-06T07:33:59+00:00"
  2087. },
  2088. {
  2089. "name": "graham-campbell/result-type",
  2090. "version": "v1.0.4",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2094. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2099. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2100. "shasum": "",
  2101. "mirrors": [
  2102. {
  2103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2104. "preferred": true
  2105. }
  2106. ]
  2107. },
  2108. "require": {
  2109. "php": "^7.0 || ^8.0",
  2110. "phpoption/phpoption": "^1.8"
  2111. },
  2112. "require-dev": {
  2113. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2114. },
  2115. "type": "library",
  2116. "autoload": {
  2117. "psr-4": {
  2118. "GrahamCampbell\\ResultType\\": "src/"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Graham Campbell",
  2128. "email": "hello@gjcampbell.co.uk",
  2129. "homepage": "https://github.com/GrahamCampbell"
  2130. }
  2131. ],
  2132. "description": "An Implementation Of The Result Type",
  2133. "keywords": [
  2134. "Graham Campbell",
  2135. "GrahamCampbell",
  2136. "Result Type",
  2137. "Result-Type",
  2138. "result"
  2139. ],
  2140. "support": {
  2141. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2142. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2143. },
  2144. "funding": [
  2145. {
  2146. "url": "https://github.com/GrahamCampbell",
  2147. "type": "github"
  2148. },
  2149. {
  2150. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2151. "type": "tidelift"
  2152. }
  2153. ],
  2154. "time": "2021-11-21T21:41:47+00:00"
  2155. },
  2156. {
  2157. "name": "guzzlehttp/guzzle",
  2158. "version": "7.4.5",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/guzzle/guzzle.git",
  2162. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2167. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2168. "shasum": "",
  2169. "mirrors": [
  2170. {
  2171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2172. "preferred": true
  2173. }
  2174. ]
  2175. },
  2176. "require": {
  2177. "ext-json": "*",
  2178. "guzzlehttp/promises": "^1.5",
  2179. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2180. "php": "^7.2.5 || ^8.0",
  2181. "psr/http-client": "^1.0",
  2182. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2183. },
  2184. "provide": {
  2185. "psr/http-client-implementation": "1.0"
  2186. },
  2187. "require-dev": {
  2188. "bamarni/composer-bin-plugin": "^1.4.1",
  2189. "ext-curl": "*",
  2190. "php-http/client-integration-tests": "^3.0",
  2191. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2192. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2193. },
  2194. "suggest": {
  2195. "ext-curl": "Required for CURL handler support",
  2196. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2197. "psr/log": "Required for using the Log middleware"
  2198. },
  2199. "type": "library",
  2200. "extra": {
  2201. "branch-alias": {
  2202. "dev-master": "7.4-dev"
  2203. }
  2204. },
  2205. "autoload": {
  2206. "files": [
  2207. "src/functions_include.php"
  2208. ],
  2209. "psr-4": {
  2210. "GuzzleHttp\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "Graham Campbell",
  2220. "email": "hello@gjcampbell.co.uk",
  2221. "homepage": "https://github.com/GrahamCampbell"
  2222. },
  2223. {
  2224. "name": "Michael Dowling",
  2225. "email": "mtdowling@gmail.com",
  2226. "homepage": "https://github.com/mtdowling"
  2227. },
  2228. {
  2229. "name": "Jeremy Lindblom",
  2230. "email": "jeremeamia@gmail.com",
  2231. "homepage": "https://github.com/jeremeamia"
  2232. },
  2233. {
  2234. "name": "George Mponos",
  2235. "email": "gmponos@gmail.com",
  2236. "homepage": "https://github.com/gmponos"
  2237. },
  2238. {
  2239. "name": "Tobias Nyholm",
  2240. "email": "tobias.nyholm@gmail.com",
  2241. "homepage": "https://github.com/Nyholm"
  2242. },
  2243. {
  2244. "name": "Márk Sági-Kazár",
  2245. "email": "mark.sagikazar@gmail.com",
  2246. "homepage": "https://github.com/sagikazarmark"
  2247. },
  2248. {
  2249. "name": "Tobias Schultze",
  2250. "email": "webmaster@tubo-world.de",
  2251. "homepage": "https://github.com/Tobion"
  2252. }
  2253. ],
  2254. "description": "Guzzle is a PHP HTTP client library",
  2255. "keywords": [
  2256. "client",
  2257. "curl",
  2258. "framework",
  2259. "http",
  2260. "http client",
  2261. "psr-18",
  2262. "psr-7",
  2263. "rest",
  2264. "web service"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/guzzle/guzzle/issues",
  2268. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  2269. },
  2270. "funding": [
  2271. {
  2272. "url": "https://github.com/GrahamCampbell",
  2273. "type": "github"
  2274. },
  2275. {
  2276. "url": "https://github.com/Nyholm",
  2277. "type": "github"
  2278. },
  2279. {
  2280. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2281. "type": "tidelift"
  2282. }
  2283. ],
  2284. "time": "2022-06-20T22:16:13+00:00"
  2285. },
  2286. {
  2287. "name": "guzzlehttp/promises",
  2288. "version": "1.5.1",
  2289. "source": {
  2290. "type": "git",
  2291. "url": "https://github.com/guzzle/promises.git",
  2292. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2293. },
  2294. "dist": {
  2295. "type": "zip",
  2296. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2297. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2298. "shasum": "",
  2299. "mirrors": [
  2300. {
  2301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2302. "preferred": true
  2303. }
  2304. ]
  2305. },
  2306. "require": {
  2307. "php": ">=5.5"
  2308. },
  2309. "require-dev": {
  2310. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2311. },
  2312. "type": "library",
  2313. "extra": {
  2314. "branch-alias": {
  2315. "dev-master": "1.5-dev"
  2316. }
  2317. },
  2318. "autoload": {
  2319. "files": [
  2320. "src/functions_include.php"
  2321. ],
  2322. "psr-4": {
  2323. "GuzzleHttp\\Promise\\": "src/"
  2324. }
  2325. },
  2326. "notification-url": "https://packagist.org/downloads/",
  2327. "license": [
  2328. "MIT"
  2329. ],
  2330. "authors": [
  2331. {
  2332. "name": "Graham Campbell",
  2333. "email": "hello@gjcampbell.co.uk",
  2334. "homepage": "https://github.com/GrahamCampbell"
  2335. },
  2336. {
  2337. "name": "Michael Dowling",
  2338. "email": "mtdowling@gmail.com",
  2339. "homepage": "https://github.com/mtdowling"
  2340. },
  2341. {
  2342. "name": "Tobias Nyholm",
  2343. "email": "tobias.nyholm@gmail.com",
  2344. "homepage": "https://github.com/Nyholm"
  2345. },
  2346. {
  2347. "name": "Tobias Schultze",
  2348. "email": "webmaster@tubo-world.de",
  2349. "homepage": "https://github.com/Tobion"
  2350. }
  2351. ],
  2352. "description": "Guzzle promises library",
  2353. "keywords": [
  2354. "promise"
  2355. ],
  2356. "support": {
  2357. "issues": "https://github.com/guzzle/promises/issues",
  2358. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2359. },
  2360. "funding": [
  2361. {
  2362. "url": "https://github.com/GrahamCampbell",
  2363. "type": "github"
  2364. },
  2365. {
  2366. "url": "https://github.com/Nyholm",
  2367. "type": "github"
  2368. },
  2369. {
  2370. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2371. "type": "tidelift"
  2372. }
  2373. ],
  2374. "time": "2021-10-22T20:56:57+00:00"
  2375. },
  2376. {
  2377. "name": "guzzlehttp/psr7",
  2378. "version": "2.4.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://github.com/guzzle/psr7.git",
  2382. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2387. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2388. "shasum": "",
  2389. "mirrors": [
  2390. {
  2391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2392. "preferred": true
  2393. }
  2394. ]
  2395. },
  2396. "require": {
  2397. "php": "^7.2.5 || ^8.0",
  2398. "psr/http-factory": "^1.0",
  2399. "psr/http-message": "^1.0",
  2400. "ralouphie/getallheaders": "^3.0"
  2401. },
  2402. "provide": {
  2403. "psr/http-factory-implementation": "1.0",
  2404. "psr/http-message-implementation": "1.0"
  2405. },
  2406. "require-dev": {
  2407. "bamarni/composer-bin-plugin": "^1.4.1",
  2408. "http-interop/http-factory-tests": "^0.9",
  2409. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2410. },
  2411. "suggest": {
  2412. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "2.4-dev"
  2418. }
  2419. },
  2420. "autoload": {
  2421. "psr-4": {
  2422. "GuzzleHttp\\Psr7\\": "src/"
  2423. }
  2424. },
  2425. "notification-url": "https://packagist.org/downloads/",
  2426. "license": [
  2427. "MIT"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Graham Campbell",
  2432. "email": "hello@gjcampbell.co.uk",
  2433. "homepage": "https://github.com/GrahamCampbell"
  2434. },
  2435. {
  2436. "name": "Michael Dowling",
  2437. "email": "mtdowling@gmail.com",
  2438. "homepage": "https://github.com/mtdowling"
  2439. },
  2440. {
  2441. "name": "George Mponos",
  2442. "email": "gmponos@gmail.com",
  2443. "homepage": "https://github.com/gmponos"
  2444. },
  2445. {
  2446. "name": "Tobias Nyholm",
  2447. "email": "tobias.nyholm@gmail.com",
  2448. "homepage": "https://github.com/Nyholm"
  2449. },
  2450. {
  2451. "name": "Márk Sági-Kazár",
  2452. "email": "mark.sagikazar@gmail.com",
  2453. "homepage": "https://github.com/sagikazarmark"
  2454. },
  2455. {
  2456. "name": "Tobias Schultze",
  2457. "email": "webmaster@tubo-world.de",
  2458. "homepage": "https://github.com/Tobion"
  2459. },
  2460. {
  2461. "name": "Márk Sági-Kazár",
  2462. "email": "mark.sagikazar@gmail.com",
  2463. "homepage": "https://sagikazarmark.hu"
  2464. }
  2465. ],
  2466. "description": "PSR-7 message implementation that also provides common utility methods",
  2467. "keywords": [
  2468. "http",
  2469. "message",
  2470. "psr-7",
  2471. "request",
  2472. "response",
  2473. "stream",
  2474. "uri",
  2475. "url"
  2476. ],
  2477. "support": {
  2478. "issues": "https://github.com/guzzle/psr7/issues",
  2479. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2480. },
  2481. "funding": [
  2482. {
  2483. "url": "https://github.com/GrahamCampbell",
  2484. "type": "github"
  2485. },
  2486. {
  2487. "url": "https://github.com/Nyholm",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2022-06-20T21:43:11+00:00"
  2496. },
  2497. {
  2498. "name": "h4cc/wkhtmltopdf-amd64",
  2499. "version": "0.12.4",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  2503. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2508. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "bin": [
  2518. "bin/wkhtmltopdf-amd64"
  2519. ],
  2520. "type": "library",
  2521. "autoload": {
  2522. "psr-4": {
  2523. "h4cc\\WKHTMLToPDF\\": ""
  2524. }
  2525. },
  2526. "notification-url": "https://packagist.org/downloads/",
  2527. "license": [
  2528. "LGPL Version 3"
  2529. ],
  2530. "authors": [
  2531. {
  2532. "name": "Julius Beckmann",
  2533. "email": "github@h4cc.de"
  2534. }
  2535. ],
  2536. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  2537. "homepage": "http://wkhtmltopdf.org/",
  2538. "keywords": [
  2539. "binary",
  2540. "convert",
  2541. "pdf",
  2542. "snapshot",
  2543. "thumbnail",
  2544. "wkhtmltopdf"
  2545. ],
  2546. "support": {
  2547. "issues": "https://github.com/h4cc/wkhtmltopdf-amd64/issues",
  2548. "source": "https://github.com/h4cc/wkhtmltopdf-amd64/tree/master"
  2549. },
  2550. "time": "2018-01-15T06:57:33+00:00"
  2551. },
  2552. {
  2553. "name": "h4cc/wkhtmltopdf-i386",
  2554. "version": "0.12.4",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  2558. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2563. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2564. "shasum": "",
  2565. "mirrors": [
  2566. {
  2567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2568. "preferred": true
  2569. }
  2570. ]
  2571. },
  2572. "bin": [
  2573. "bin/wkhtmltopdf-i386"
  2574. ],
  2575. "type": "library",
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "LGPL Version 3"
  2579. ],
  2580. "authors": [
  2581. {
  2582. "name": "Julius Beckmann",
  2583. "email": "github@h4cc.de"
  2584. }
  2585. ],
  2586. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  2587. "homepage": "http://wkhtmltopdf.org/",
  2588. "keywords": [
  2589. "binary",
  2590. "convert",
  2591. "pdf",
  2592. "snapshot",
  2593. "thumbnail",
  2594. "wkhtmltopdf"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/h4cc/wkhtmltopdf-i386/issues",
  2598. "source": "https://github.com/h4cc/wkhtmltopdf-i386/tree/master"
  2599. },
  2600. "time": "2018-01-15T07:18:15+00:00"
  2601. },
  2602. {
  2603. "name": "iidestiny/flysystem-oss",
  2604. "version": "2.7",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2608. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2613. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2614. "shasum": "",
  2615. "mirrors": [
  2616. {
  2617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2618. "preferred": true
  2619. }
  2620. ]
  2621. },
  2622. "require": {
  2623. "aliyuncs/oss-sdk-php": "^2.4",
  2624. "ext-curl": "*",
  2625. "ext-json": "*",
  2626. "ext-openssl": "*",
  2627. "league/flysystem": "^1.0",
  2628. "nesbot/carbon": "^1.24.1 || ^2.0",
  2629. "php": "^7.0 || ^8.0"
  2630. },
  2631. "require-dev": {
  2632. "mockery/mockery": "^1.2",
  2633. "phpunit/phpunit": "^6.5",
  2634. "symfony/var-dumper": "^3.4"
  2635. },
  2636. "type": "library",
  2637. "autoload": {
  2638. "psr-4": {
  2639. "Iidestiny\\Flysystem\\Oss\\": "src"
  2640. }
  2641. },
  2642. "notification-url": "https://packagist.org/downloads/",
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "iidestiny",
  2649. "email": "iidestiny@vip.qq.com"
  2650. }
  2651. ],
  2652. "description": "Flysystem adapter for the Oss storage.",
  2653. "keywords": [
  2654. "alioss",
  2655. "laravel",
  2656. "oss",
  2657. "阿里oss"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2661. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2662. },
  2663. "time": "2021-06-14T10:18:58+00:00"
  2664. },
  2665. {
  2666. "name": "iidestiny/laravel-filesystem-oss",
  2667. "version": "2.1",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2671. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2676. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2677. "shasum": "",
  2678. "mirrors": [
  2679. {
  2680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2681. "preferred": true
  2682. }
  2683. ]
  2684. },
  2685. "require": {
  2686. "iidestiny/flysystem-oss": "~2.0",
  2687. "php": "^7.0|^8.0"
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "laravel": {
  2692. "providers": [
  2693. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2694. ]
  2695. }
  2696. },
  2697. "autoload": {
  2698. "psr-4": {
  2699. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "iidestiny",
  2709. "email": "iidestiny@vip.qq.com"
  2710. }
  2711. ],
  2712. "description": "Oss storage filesystem for Laravel.",
  2713. "support": {
  2714. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2715. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2716. },
  2717. "time": "2020-11-30T06:17:22+00:00"
  2718. },
  2719. {
  2720. "name": "jormin/laravel-ddoc",
  2721. "version": "v1.1.5",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/jormin/laravel-ddoc.git",
  2725. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2730. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "barryvdh/laravel-snappy": "^0.4.0",
  2741. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  2742. "h4cc/wkhtmltopdf-i386": "0.12.x",
  2743. "php": ">=5.6",
  2744. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  2745. },
  2746. "require-dev": {
  2747. "phpunit/phpunit": "~4.0||~5.0",
  2748. "squizlabs/php_codesniffer": "^2.3"
  2749. },
  2750. "type": "library",
  2751. "extra": {
  2752. "branch-alias": {
  2753. "dev-master": "1.1.x-dev"
  2754. },
  2755. "laravel": {
  2756. "providers": [
  2757. "Jormin\\DDoc\\DDocServiceProvider"
  2758. ]
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-4": {
  2763. "Jormin\\DDoc\\": "src"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Jormin",
  2773. "email": "jorminxee@gmail.com",
  2774. "homepage": "https://blog.lerzen.com",
  2775. "role": "Developer"
  2776. }
  2777. ],
  2778. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  2779. "homepage": "https://github.com/jormin/laravel-ddoc",
  2780. "keywords": [
  2781. "DDoc",
  2782. "Jormin",
  2783. "laravel"
  2784. ],
  2785. "support": {
  2786. "issues": "https://github.com/jormin/laravel-ddoc/issues",
  2787. "source": "https://github.com/jormin/laravel-ddoc/tree/v1.1.5"
  2788. },
  2789. "time": "2021-09-07T04:26:43+00:00"
  2790. },
  2791. {
  2792. "name": "jpush/jpush",
  2793. "version": "v3.6.8",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2797. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2802. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2803. "shasum": "",
  2804. "mirrors": [
  2805. {
  2806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2807. "preferred": true
  2808. }
  2809. ]
  2810. },
  2811. "require": {
  2812. "ext-curl": "*",
  2813. "php": ">=5.3.3"
  2814. },
  2815. "require-dev": {
  2816. "phpunit/phpunit": "*"
  2817. },
  2818. "type": "library",
  2819. "autoload": {
  2820. "psr-4": {
  2821. "JPush\\": "src/JPush/"
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "JPush",
  2831. "email": "support@jpush.cn",
  2832. "homepage": "https://www.jpush.cn/",
  2833. "role": "Developer"
  2834. }
  2835. ],
  2836. "description": "JPush API PHP Client",
  2837. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2838. "support": {
  2839. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2840. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  2841. },
  2842. "time": "2021-08-12T07:43:39+00:00"
  2843. },
  2844. {
  2845. "name": "knplabs/knp-snappy",
  2846. "version": "v1.4.1",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/KnpLabs/snappy.git",
  2850. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
  2855. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
  2856. "shasum": "",
  2857. "mirrors": [
  2858. {
  2859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2860. "preferred": true
  2861. }
  2862. ]
  2863. },
  2864. "require": {
  2865. "php": ">=7.1",
  2866. "psr/log": "^1.0||^2.0||^3.0",
  2867. "symfony/process": "~3.4||~4.3||~5.0||~6.0"
  2868. },
  2869. "require-dev": {
  2870. "friendsofphp/php-cs-fixer": "^2.16||^3.0",
  2871. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2872. "phpstan/phpstan": "^0.12.7",
  2873. "phpstan/phpstan-phpunit": "^0.12.6",
  2874. "phpunit/phpunit": "~7.4||~8.5"
  2875. },
  2876. "suggest": {
  2877. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2878. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2879. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2880. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2881. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "1.x-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Knp\\Snappy\\": "src/Knp/Snappy"
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "KNP Labs Team",
  2901. "homepage": "http://knplabs.com"
  2902. },
  2903. {
  2904. "name": "Symfony Community",
  2905. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2906. }
  2907. ],
  2908. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2909. "homepage": "http://github.com/KnpLabs/snappy",
  2910. "keywords": [
  2911. "knp",
  2912. "knplabs",
  2913. "pdf",
  2914. "snapshot",
  2915. "thumbnail",
  2916. "wkhtmltopdf"
  2917. ],
  2918. "support": {
  2919. "issues": "https://github.com/KnpLabs/snappy/issues",
  2920. "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
  2921. },
  2922. "time": "2022-01-07T13:03:38+00:00"
  2923. },
  2924. {
  2925. "name": "laravel-lang/lang",
  2926. "version": "3.0.62",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/Laravel-Lang/lang.git",
  2930. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2935. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2936. "shasum": "",
  2937. "mirrors": [
  2938. {
  2939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2940. "preferred": true
  2941. }
  2942. ]
  2943. },
  2944. "require-dev": {
  2945. "friendsofphp/php-cs-fixer": "^2.10"
  2946. },
  2947. "suggest": {
  2948. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2949. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2950. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2951. "overtrue/laravel-lang": "Command to add languages in your project"
  2952. },
  2953. "type": "library",
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "authors": [
  2959. {
  2960. "name": "caouecs",
  2961. "email": "caouecs@caouecs.net"
  2962. }
  2963. ],
  2964. "description": "Languages for Laravel",
  2965. "keywords": [
  2966. "lang",
  2967. "languages",
  2968. "laravel",
  2969. "lpm"
  2970. ],
  2971. "support": {
  2972. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2973. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  2974. },
  2975. "time": "2019-03-17T10:36:46+00:00"
  2976. },
  2977. {
  2978. "name": "laravel/framework",
  2979. "version": "v8.83.23",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/laravel/framework.git",
  2983. "reference": "bdc707f8b9bcad289b24cd182d98ec7480ac4491"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/laravel/framework/zipball/bdc707f8b9bcad289b24cd182d98ec7480ac4491",
  2988. "reference": "bdc707f8b9bcad289b24cd182d98ec7480ac4491",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "doctrine/inflector": "^1.4|^2.0",
  2999. "dragonmantank/cron-expression": "^3.0.2",
  3000. "egulias/email-validator": "^2.1.10",
  3001. "ext-json": "*",
  3002. "ext-mbstring": "*",
  3003. "ext-openssl": "*",
  3004. "laravel/serializable-closure": "^1.0",
  3005. "league/commonmark": "^1.3|^2.0.2",
  3006. "league/flysystem": "^1.1",
  3007. "monolog/monolog": "^2.0",
  3008. "nesbot/carbon": "^2.53.1",
  3009. "opis/closure": "^3.6",
  3010. "php": "^7.3|^8.0",
  3011. "psr/container": "^1.0",
  3012. "psr/log": "^1.0|^2.0",
  3013. "psr/simple-cache": "^1.0",
  3014. "ramsey/uuid": "^4.2.2",
  3015. "swiftmailer/swiftmailer": "^6.3",
  3016. "symfony/console": "^5.4",
  3017. "symfony/error-handler": "^5.4",
  3018. "symfony/finder": "^5.4",
  3019. "symfony/http-foundation": "^5.4",
  3020. "symfony/http-kernel": "^5.4",
  3021. "symfony/mime": "^5.4",
  3022. "symfony/process": "^5.4",
  3023. "symfony/routing": "^5.4",
  3024. "symfony/var-dumper": "^5.4",
  3025. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3026. "vlucas/phpdotenv": "^5.4.1",
  3027. "voku/portable-ascii": "^1.6.1"
  3028. },
  3029. "conflict": {
  3030. "tightenco/collect": "<5.5.33"
  3031. },
  3032. "provide": {
  3033. "psr/container-implementation": "1.0",
  3034. "psr/simple-cache-implementation": "1.0"
  3035. },
  3036. "replace": {
  3037. "illuminate/auth": "self.version",
  3038. "illuminate/broadcasting": "self.version",
  3039. "illuminate/bus": "self.version",
  3040. "illuminate/cache": "self.version",
  3041. "illuminate/collections": "self.version",
  3042. "illuminate/config": "self.version",
  3043. "illuminate/console": "self.version",
  3044. "illuminate/container": "self.version",
  3045. "illuminate/contracts": "self.version",
  3046. "illuminate/cookie": "self.version",
  3047. "illuminate/database": "self.version",
  3048. "illuminate/encryption": "self.version",
  3049. "illuminate/events": "self.version",
  3050. "illuminate/filesystem": "self.version",
  3051. "illuminate/hashing": "self.version",
  3052. "illuminate/http": "self.version",
  3053. "illuminate/log": "self.version",
  3054. "illuminate/macroable": "self.version",
  3055. "illuminate/mail": "self.version",
  3056. "illuminate/notifications": "self.version",
  3057. "illuminate/pagination": "self.version",
  3058. "illuminate/pipeline": "self.version",
  3059. "illuminate/queue": "self.version",
  3060. "illuminate/redis": "self.version",
  3061. "illuminate/routing": "self.version",
  3062. "illuminate/session": "self.version",
  3063. "illuminate/support": "self.version",
  3064. "illuminate/testing": "self.version",
  3065. "illuminate/translation": "self.version",
  3066. "illuminate/validation": "self.version",
  3067. "illuminate/view": "self.version"
  3068. },
  3069. "require-dev": {
  3070. "aws/aws-sdk-php": "^3.198.1",
  3071. "doctrine/dbal": "^2.13.3|^3.1.4",
  3072. "filp/whoops": "^2.14.3",
  3073. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3074. "league/flysystem-cached-adapter": "^1.0",
  3075. "mockery/mockery": "^1.4.4",
  3076. "orchestra/testbench-core": "^6.27",
  3077. "pda/pheanstalk": "^4.0",
  3078. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3079. "predis/predis": "^1.1.9",
  3080. "symfony/cache": "^5.4"
  3081. },
  3082. "suggest": {
  3083. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3084. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3085. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3086. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3087. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3088. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3089. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3090. "ext-memcached": "Required to use the memcache cache driver.",
  3091. "ext-pcntl": "Required to use all features of the queue worker.",
  3092. "ext-posix": "Required to use all features of the queue worker.",
  3093. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3094. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3095. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3096. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3097. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3098. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3099. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3100. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3101. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3102. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3103. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3104. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3105. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3106. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3107. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3108. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3109. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3110. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3111. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3112. },
  3113. "type": "library",
  3114. "extra": {
  3115. "branch-alias": {
  3116. "dev-master": "8.x-dev"
  3117. }
  3118. },
  3119. "autoload": {
  3120. "files": [
  3121. "src/Illuminate/Collections/helpers.php",
  3122. "src/Illuminate/Events/functions.php",
  3123. "src/Illuminate/Foundation/helpers.php",
  3124. "src/Illuminate/Support/helpers.php"
  3125. ],
  3126. "psr-4": {
  3127. "Illuminate\\": "src/Illuminate/",
  3128. "Illuminate\\Support\\": [
  3129. "src/Illuminate/Macroable/",
  3130. "src/Illuminate/Collections/"
  3131. ]
  3132. }
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Taylor Otwell",
  3141. "email": "taylor@laravel.com"
  3142. }
  3143. ],
  3144. "description": "The Laravel Framework.",
  3145. "homepage": "https://laravel.com",
  3146. "keywords": [
  3147. "framework",
  3148. "laravel"
  3149. ],
  3150. "support": {
  3151. "issues": "https://github.com/laravel/framework/issues",
  3152. "source": "https://github.com/laravel/framework"
  3153. },
  3154. "time": "2022-07-26T13:30:00+00:00"
  3155. },
  3156. {
  3157. "name": "laravel/sanctum",
  3158. "version": "v2.15.1",
  3159. "source": {
  3160. "type": "git",
  3161. "url": "https://github.com/laravel/sanctum.git",
  3162. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3163. },
  3164. "dist": {
  3165. "type": "zip",
  3166. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3167. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3168. "shasum": "",
  3169. "mirrors": [
  3170. {
  3171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3172. "preferred": true
  3173. }
  3174. ]
  3175. },
  3176. "require": {
  3177. "ext-json": "*",
  3178. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3179. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3180. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3181. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3182. "php": "^7.2|^8.0"
  3183. },
  3184. "require-dev": {
  3185. "mockery/mockery": "^1.0",
  3186. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3187. "phpunit/phpunit": "^8.0|^9.3"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-master": "2.x-dev"
  3193. },
  3194. "laravel": {
  3195. "providers": [
  3196. "Laravel\\Sanctum\\SanctumServiceProvider"
  3197. ]
  3198. }
  3199. },
  3200. "autoload": {
  3201. "psr-4": {
  3202. "Laravel\\Sanctum\\": "src/"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "Taylor Otwell",
  3212. "email": "taylor@laravel.com"
  3213. }
  3214. ],
  3215. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3216. "keywords": [
  3217. "auth",
  3218. "laravel",
  3219. "sanctum"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/laravel/sanctum/issues",
  3223. "source": "https://github.com/laravel/sanctum"
  3224. },
  3225. "time": "2022-04-08T13:39:49+00:00"
  3226. },
  3227. {
  3228. "name": "laravel/serializable-closure",
  3229. "version": "v1.2.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/laravel/serializable-closure.git",
  3233. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  3238. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": "^7.3|^8.0"
  3249. },
  3250. "require-dev": {
  3251. "pestphp/pest": "^1.18",
  3252. "phpstan/phpstan": "^0.12.98",
  3253. "symfony/var-dumper": "^5.3"
  3254. },
  3255. "type": "library",
  3256. "extra": {
  3257. "branch-alias": {
  3258. "dev-master": "1.x-dev"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "psr-4": {
  3263. "Laravel\\SerializableClosure\\": "src/"
  3264. }
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Taylor Otwell",
  3273. "email": "taylor@laravel.com"
  3274. },
  3275. {
  3276. "name": "Nuno Maduro",
  3277. "email": "nuno@laravel.com"
  3278. }
  3279. ],
  3280. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3281. "keywords": [
  3282. "closure",
  3283. "laravel",
  3284. "serializable"
  3285. ],
  3286. "support": {
  3287. "issues": "https://github.com/laravel/serializable-closure/issues",
  3288. "source": "https://github.com/laravel/serializable-closure"
  3289. },
  3290. "time": "2022-05-16T17:09:47+00:00"
  3291. },
  3292. {
  3293. "name": "laravel/socialite",
  3294. "version": "v5.5.4",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/laravel/socialite.git",
  3298. "reference": "3eec261bf83690dd85812587457f093e3156dca6"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/laravel/socialite/zipball/3eec261bf83690dd85812587457f093e3156dca6",
  3303. "reference": "3eec261bf83690dd85812587457f093e3156dca6",
  3304. "shasum": "",
  3305. "mirrors": [
  3306. {
  3307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3308. "preferred": true
  3309. }
  3310. ]
  3311. },
  3312. "require": {
  3313. "ext-json": "*",
  3314. "guzzlehttp/guzzle": "^6.0|^7.0",
  3315. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3316. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3317. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3318. "league/oauth1-client": "^1.10.1",
  3319. "php": "^7.2|^8.0"
  3320. },
  3321. "require-dev": {
  3322. "mockery/mockery": "^1.0",
  3323. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3324. "phpunit/phpunit": "^8.0|^9.3"
  3325. },
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "5.x-dev"
  3330. },
  3331. "laravel": {
  3332. "providers": [
  3333. "Laravel\\Socialite\\SocialiteServiceProvider"
  3334. ],
  3335. "aliases": {
  3336. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3337. }
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Laravel\\Socialite\\": "src/"
  3343. }
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Taylor Otwell",
  3352. "email": "taylor@laravel.com"
  3353. }
  3354. ],
  3355. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3356. "homepage": "https://laravel.com",
  3357. "keywords": [
  3358. "laravel",
  3359. "oauth"
  3360. ],
  3361. "support": {
  3362. "issues": "https://github.com/laravel/socialite/issues",
  3363. "source": "https://github.com/laravel/socialite"
  3364. },
  3365. "time": "2022-08-08T13:27:06+00:00"
  3366. },
  3367. {
  3368. "name": "laravel/tinker",
  3369. "version": "v2.7.2",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/laravel/tinker.git",
  3373. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3378. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3379. "shasum": "",
  3380. "mirrors": [
  3381. {
  3382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3383. "preferred": true
  3384. }
  3385. ]
  3386. },
  3387. "require": {
  3388. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3389. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3390. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3391. "php": "^7.2.5|^8.0",
  3392. "psy/psysh": "^0.10.4|^0.11.1",
  3393. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3394. },
  3395. "require-dev": {
  3396. "mockery/mockery": "~1.3.3|^1.4.2",
  3397. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3398. },
  3399. "suggest": {
  3400. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3401. },
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-master": "2.x-dev"
  3406. },
  3407. "laravel": {
  3408. "providers": [
  3409. "Laravel\\Tinker\\TinkerServiceProvider"
  3410. ]
  3411. }
  3412. },
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Laravel\\Tinker\\": "src/"
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Taylor Otwell",
  3425. "email": "taylor@laravel.com"
  3426. }
  3427. ],
  3428. "description": "Powerful REPL for the Laravel framework.",
  3429. "keywords": [
  3430. "REPL",
  3431. "Tinker",
  3432. "laravel",
  3433. "psysh"
  3434. ],
  3435. "support": {
  3436. "issues": "https://github.com/laravel/tinker/issues",
  3437. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3438. },
  3439. "time": "2022-03-23T12:38:24+00:00"
  3440. },
  3441. {
  3442. "name": "lcobucci/clock",
  3443. "version": "2.2.0",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/lcobucci/clock.git",
  3447. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  3452. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  3453. "shasum": "",
  3454. "mirrors": [
  3455. {
  3456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3457. "preferred": true
  3458. }
  3459. ]
  3460. },
  3461. "require": {
  3462. "php": "^8.0",
  3463. "stella-maris/clock": "^0.1.4"
  3464. },
  3465. "require-dev": {
  3466. "infection/infection": "^0.26",
  3467. "lcobucci/coding-standard": "^8.0",
  3468. "phpstan/extension-installer": "^1.1",
  3469. "phpstan/phpstan": "^0.12",
  3470. "phpstan/phpstan-deprecation-rules": "^0.12",
  3471. "phpstan/phpstan-phpunit": "^0.12",
  3472. "phpstan/phpstan-strict-rules": "^0.12",
  3473. "phpunit/phpunit": "^9.5"
  3474. },
  3475. "type": "library",
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Lcobucci\\Clock\\": "src"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Luís Cobucci",
  3488. "email": "lcobucci@gmail.com"
  3489. }
  3490. ],
  3491. "description": "Yet another clock abstraction",
  3492. "support": {
  3493. "issues": "https://github.com/lcobucci/clock/issues",
  3494. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3495. },
  3496. "funding": [
  3497. {
  3498. "url": "https://github.com/lcobucci",
  3499. "type": "github"
  3500. },
  3501. {
  3502. "url": "https://www.patreon.com/lcobucci",
  3503. "type": "patreon"
  3504. }
  3505. ],
  3506. "time": "2022-04-19T19:34:17+00:00"
  3507. },
  3508. {
  3509. "name": "lcobucci/jwt",
  3510. "version": "4.2.1",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/lcobucci/jwt.git",
  3514. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3519. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3520. "shasum": "",
  3521. "mirrors": [
  3522. {
  3523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3524. "preferred": true
  3525. }
  3526. ]
  3527. },
  3528. "require": {
  3529. "ext-hash": "*",
  3530. "ext-json": "*",
  3531. "ext-mbstring": "*",
  3532. "ext-openssl": "*",
  3533. "ext-sodium": "*",
  3534. "lcobucci/clock": "^2.0",
  3535. "php": "^7.4 || ^8.0"
  3536. },
  3537. "require-dev": {
  3538. "infection/infection": "^0.21",
  3539. "lcobucci/coding-standard": "^6.0",
  3540. "mikey179/vfsstream": "^1.6.7",
  3541. "phpbench/phpbench": "^1.2",
  3542. "phpstan/extension-installer": "^1.0",
  3543. "phpstan/phpstan": "^1.4",
  3544. "phpstan/phpstan-deprecation-rules": "^1.0",
  3545. "phpstan/phpstan-phpunit": "^1.0",
  3546. "phpstan/phpstan-strict-rules": "^1.0",
  3547. "phpunit/php-invoker": "^3.1",
  3548. "phpunit/phpunit": "^9.5"
  3549. },
  3550. "type": "library",
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Lcobucci\\JWT\\": "src"
  3554. }
  3555. },
  3556. "notification-url": "https://packagist.org/downloads/",
  3557. "license": [
  3558. "BSD-3-Clause"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "Luís Cobucci",
  3563. "email": "lcobucci@gmail.com",
  3564. "role": "Developer"
  3565. }
  3566. ],
  3567. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3568. "keywords": [
  3569. "JWS",
  3570. "jwt"
  3571. ],
  3572. "support": {
  3573. "issues": "https://github.com/lcobucci/jwt/issues",
  3574. "source": "https://github.com/lcobucci/jwt/tree/4.2.1"
  3575. },
  3576. "funding": [
  3577. {
  3578. "url": "https://github.com/lcobucci",
  3579. "type": "github"
  3580. },
  3581. {
  3582. "url": "https://www.patreon.com/lcobucci",
  3583. "type": "patreon"
  3584. }
  3585. ],
  3586. "time": "2022-08-19T23:14:07+00:00"
  3587. },
  3588. {
  3589. "name": "league/commonmark",
  3590. "version": "2.3.4",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/thephpleague/commonmark.git",
  3594. "reference": "155ec1c95626b16fda0889cf15904d24890a60d5"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/155ec1c95626b16fda0889cf15904d24890a60d5",
  3599. "reference": "155ec1c95626b16fda0889cf15904d24890a60d5",
  3600. "shasum": "",
  3601. "mirrors": [
  3602. {
  3603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3604. "preferred": true
  3605. }
  3606. ]
  3607. },
  3608. "require": {
  3609. "ext-mbstring": "*",
  3610. "league/config": "^1.1.1",
  3611. "php": "^7.4 || ^8.0",
  3612. "psr/event-dispatcher": "^1.0",
  3613. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3614. "symfony/polyfill-php80": "^1.16"
  3615. },
  3616. "require-dev": {
  3617. "cebe/markdown": "^1.0",
  3618. "commonmark/cmark": "0.30.0",
  3619. "commonmark/commonmark.js": "0.30.0",
  3620. "composer/package-versions-deprecated": "^1.8",
  3621. "embed/embed": "^4.4",
  3622. "erusev/parsedown": "^1.0",
  3623. "ext-json": "*",
  3624. "github/gfm": "0.29.0",
  3625. "michelf/php-markdown": "^1.4",
  3626. "nyholm/psr7": "^1.5",
  3627. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3628. "phpunit/phpunit": "^9.5.5",
  3629. "scrutinizer/ocular": "^1.8.1",
  3630. "symfony/finder": "^5.3",
  3631. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3632. "unleashedtech/php-coding-standard": "^3.1",
  3633. "vimeo/psalm": "^4.7.3"
  3634. },
  3635. "suggest": {
  3636. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3637. },
  3638. "type": "library",
  3639. "extra": {
  3640. "branch-alias": {
  3641. "dev-main": "2.4-dev"
  3642. }
  3643. },
  3644. "autoload": {
  3645. "psr-4": {
  3646. "League\\CommonMark\\": "src"
  3647. }
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "BSD-3-Clause"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "Colin O'Dell",
  3656. "email": "colinodell@gmail.com",
  3657. "homepage": "https://www.colinodell.com",
  3658. "role": "Lead Developer"
  3659. }
  3660. ],
  3661. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3662. "homepage": "https://commonmark.thephpleague.com",
  3663. "keywords": [
  3664. "commonmark",
  3665. "flavored",
  3666. "gfm",
  3667. "github",
  3668. "github-flavored",
  3669. "markdown",
  3670. "md",
  3671. "parser"
  3672. ],
  3673. "support": {
  3674. "docs": "https://commonmark.thephpleague.com/",
  3675. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3676. "issues": "https://github.com/thephpleague/commonmark/issues",
  3677. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3678. "source": "https://github.com/thephpleague/commonmark"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://www.colinodell.com/sponsor",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://www.paypal.me/colinpodell/10.00",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://github.com/colinodell",
  3691. "type": "github"
  3692. },
  3693. {
  3694. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3695. "type": "tidelift"
  3696. }
  3697. ],
  3698. "time": "2022-07-17T16:25:47+00:00"
  3699. },
  3700. {
  3701. "name": "league/config",
  3702. "version": "v1.1.1",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/thephpleague/config.git",
  3706. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3711. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3712. "shasum": "",
  3713. "mirrors": [
  3714. {
  3715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3716. "preferred": true
  3717. }
  3718. ]
  3719. },
  3720. "require": {
  3721. "dflydev/dot-access-data": "^3.0.1",
  3722. "nette/schema": "^1.2",
  3723. "php": "^7.4 || ^8.0"
  3724. },
  3725. "require-dev": {
  3726. "phpstan/phpstan": "^0.12.90",
  3727. "phpunit/phpunit": "^9.5.5",
  3728. "scrutinizer/ocular": "^1.8.1",
  3729. "unleashedtech/php-coding-standard": "^3.1",
  3730. "vimeo/psalm": "^4.7.3"
  3731. },
  3732. "type": "library",
  3733. "extra": {
  3734. "branch-alias": {
  3735. "dev-main": "1.2-dev"
  3736. }
  3737. },
  3738. "autoload": {
  3739. "psr-4": {
  3740. "League\\Config\\": "src"
  3741. }
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "BSD-3-Clause"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "Colin O'Dell",
  3750. "email": "colinodell@gmail.com",
  3751. "homepage": "https://www.colinodell.com",
  3752. "role": "Lead Developer"
  3753. }
  3754. ],
  3755. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3756. "homepage": "https://config.thephpleague.com",
  3757. "keywords": [
  3758. "array",
  3759. "config",
  3760. "configuration",
  3761. "dot",
  3762. "dot-access",
  3763. "nested",
  3764. "schema"
  3765. ],
  3766. "support": {
  3767. "docs": "https://config.thephpleague.com/",
  3768. "issues": "https://github.com/thephpleague/config/issues",
  3769. "rss": "https://github.com/thephpleague/config/releases.atom",
  3770. "source": "https://github.com/thephpleague/config"
  3771. },
  3772. "funding": [
  3773. {
  3774. "url": "https://www.colinodell.com/sponsor",
  3775. "type": "custom"
  3776. },
  3777. {
  3778. "url": "https://www.paypal.me/colinpodell/10.00",
  3779. "type": "custom"
  3780. },
  3781. {
  3782. "url": "https://github.com/colinodell",
  3783. "type": "github"
  3784. }
  3785. ],
  3786. "time": "2021-08-14T12:15:32+00:00"
  3787. },
  3788. {
  3789. "name": "league/flysystem",
  3790. "version": "1.1.9",
  3791. "source": {
  3792. "type": "git",
  3793. "url": "https://github.com/thephpleague/flysystem.git",
  3794. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3795. },
  3796. "dist": {
  3797. "type": "zip",
  3798. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3799. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3800. "shasum": "",
  3801. "mirrors": [
  3802. {
  3803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3804. "preferred": true
  3805. }
  3806. ]
  3807. },
  3808. "require": {
  3809. "ext-fileinfo": "*",
  3810. "league/mime-type-detection": "^1.3",
  3811. "php": "^7.2.5 || ^8.0"
  3812. },
  3813. "conflict": {
  3814. "league/flysystem-sftp": "<1.0.6"
  3815. },
  3816. "require-dev": {
  3817. "phpspec/prophecy": "^1.11.1",
  3818. "phpunit/phpunit": "^8.5.8"
  3819. },
  3820. "suggest": {
  3821. "ext-ftp": "Allows you to use FTP server storage",
  3822. "ext-openssl": "Allows you to use FTPS server storage",
  3823. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3824. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3825. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3826. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3827. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3828. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3829. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3830. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3831. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3832. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3833. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3834. },
  3835. "type": "library",
  3836. "extra": {
  3837. "branch-alias": {
  3838. "dev-master": "1.1-dev"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "psr-4": {
  3843. "League\\Flysystem\\": "src/"
  3844. }
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Frank de Jonge",
  3853. "email": "info@frenky.net"
  3854. }
  3855. ],
  3856. "description": "Filesystem abstraction: Many filesystems, one API.",
  3857. "keywords": [
  3858. "Cloud Files",
  3859. "WebDAV",
  3860. "abstraction",
  3861. "aws",
  3862. "cloud",
  3863. "copy.com",
  3864. "dropbox",
  3865. "file systems",
  3866. "files",
  3867. "filesystem",
  3868. "filesystems",
  3869. "ftp",
  3870. "rackspace",
  3871. "remote",
  3872. "s3",
  3873. "sftp",
  3874. "storage"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/thephpleague/flysystem/issues",
  3878. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://offset.earth/frankdejonge",
  3883. "type": "other"
  3884. }
  3885. ],
  3886. "time": "2021-12-09T09:40:50+00:00"
  3887. },
  3888. {
  3889. "name": "league/fractal",
  3890. "version": "0.19.2",
  3891. "source": {
  3892. "type": "git",
  3893. "url": "https://github.com/thephpleague/fractal.git",
  3894. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  3895. },
  3896. "dist": {
  3897. "type": "zip",
  3898. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3899. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3900. "shasum": "",
  3901. "mirrors": [
  3902. {
  3903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3904. "preferred": true
  3905. }
  3906. ]
  3907. },
  3908. "require": {
  3909. "php": ">=5.4"
  3910. },
  3911. "require-dev": {
  3912. "doctrine/orm": "^2.5",
  3913. "illuminate/contracts": "~5.0",
  3914. "mockery/mockery": "~0.9",
  3915. "pagerfanta/pagerfanta": "~1.0.0",
  3916. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3917. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3918. "zendframework/zend-paginator": "~2.3"
  3919. },
  3920. "suggest": {
  3921. "illuminate/pagination": "The Illuminate Pagination component.",
  3922. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3923. "zendframework/zend-paginator": "Zend Framework Paginator"
  3924. },
  3925. "type": "library",
  3926. "extra": {
  3927. "branch-alias": {
  3928. "dev-master": "0.13-dev"
  3929. }
  3930. },
  3931. "autoload": {
  3932. "psr-4": {
  3933. "League\\Fractal\\": "src"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Phil Sturgeon",
  3943. "email": "me@philsturgeon.uk",
  3944. "homepage": "http://philsturgeon.uk/",
  3945. "role": "Developer"
  3946. }
  3947. ],
  3948. "description": "Handle the output of complex data structures ready for API output.",
  3949. "homepage": "http://fractal.thephpleague.com/",
  3950. "keywords": [
  3951. "api",
  3952. "json",
  3953. "league",
  3954. "rest"
  3955. ],
  3956. "support": {
  3957. "issues": "https://github.com/thephpleague/fractal/issues",
  3958. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3959. },
  3960. "time": "2020-01-24T23:17:29+00:00"
  3961. },
  3962. {
  3963. "name": "league/mime-type-detection",
  3964. "version": "1.11.0",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3968. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3973. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3974. "shasum": "",
  3975. "mirrors": [
  3976. {
  3977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3978. "preferred": true
  3979. }
  3980. ]
  3981. },
  3982. "require": {
  3983. "ext-fileinfo": "*",
  3984. "php": "^7.2 || ^8.0"
  3985. },
  3986. "require-dev": {
  3987. "friendsofphp/php-cs-fixer": "^3.2",
  3988. "phpstan/phpstan": "^0.12.68",
  3989. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3990. },
  3991. "type": "library",
  3992. "autoload": {
  3993. "psr-4": {
  3994. "League\\MimeTypeDetection\\": "src"
  3995. }
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Frank de Jonge",
  4004. "email": "info@frankdejonge.nl"
  4005. }
  4006. ],
  4007. "description": "Mime-type detection for Flysystem",
  4008. "support": {
  4009. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4010. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4011. },
  4012. "funding": [
  4013. {
  4014. "url": "https://github.com/frankdejonge",
  4015. "type": "github"
  4016. },
  4017. {
  4018. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4019. "type": "tidelift"
  4020. }
  4021. ],
  4022. "time": "2022-04-17T13:12:02+00:00"
  4023. },
  4024. {
  4025. "name": "league/oauth1-client",
  4026. "version": "v1.10.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/thephpleague/oauth1-client.git",
  4030. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4035. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4036. "shasum": "",
  4037. "mirrors": [
  4038. {
  4039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4040. "preferred": true
  4041. }
  4042. ]
  4043. },
  4044. "require": {
  4045. "ext-json": "*",
  4046. "ext-openssl": "*",
  4047. "guzzlehttp/guzzle": "^6.0|^7.0",
  4048. "guzzlehttp/psr7": "^1.7|^2.0",
  4049. "php": ">=7.1||>=8.0"
  4050. },
  4051. "require-dev": {
  4052. "ext-simplexml": "*",
  4053. "friendsofphp/php-cs-fixer": "^2.17",
  4054. "mockery/mockery": "^1.3.3",
  4055. "phpstan/phpstan": "^0.12.42",
  4056. "phpunit/phpunit": "^7.5||9.5"
  4057. },
  4058. "suggest": {
  4059. "ext-simplexml": "For decoding XML-based responses."
  4060. },
  4061. "type": "library",
  4062. "extra": {
  4063. "branch-alias": {
  4064. "dev-master": "1.0-dev",
  4065. "dev-develop": "2.0-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "League\\OAuth1\\Client\\": "src/"
  4071. }
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "MIT"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "Ben Corlett",
  4080. "email": "bencorlett@me.com",
  4081. "homepage": "http://www.webcomm.com.au",
  4082. "role": "Developer"
  4083. }
  4084. ],
  4085. "description": "OAuth 1.0 Client Library",
  4086. "keywords": [
  4087. "Authentication",
  4088. "SSO",
  4089. "authorization",
  4090. "bitbucket",
  4091. "identity",
  4092. "idp",
  4093. "oauth",
  4094. "oauth1",
  4095. "single sign on",
  4096. "trello",
  4097. "tumblr",
  4098. "twitter"
  4099. ],
  4100. "support": {
  4101. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4102. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4103. },
  4104. "time": "2022-04-15T14:02:14+00:00"
  4105. },
  4106. {
  4107. "name": "monolog/monolog",
  4108. "version": "2.8.0",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://github.com/Seldaek/monolog.git",
  4112. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  4117. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  4118. "shasum": "",
  4119. "mirrors": [
  4120. {
  4121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4122. "preferred": true
  4123. }
  4124. ]
  4125. },
  4126. "require": {
  4127. "php": ">=7.2",
  4128. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4129. },
  4130. "provide": {
  4131. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4132. },
  4133. "require-dev": {
  4134. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4135. "doctrine/couchdb": "~1.0@dev",
  4136. "elasticsearch/elasticsearch": "^7 || ^8",
  4137. "ext-json": "*",
  4138. "graylog2/gelf-php": "^1.4.2",
  4139. "guzzlehttp/guzzle": "^7.4",
  4140. "guzzlehttp/psr7": "^2.2",
  4141. "mongodb/mongodb": "^1.8",
  4142. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4143. "phpspec/prophecy": "^1.15",
  4144. "phpstan/phpstan": "^0.12.91",
  4145. "phpunit/phpunit": "^8.5.14",
  4146. "predis/predis": "^1.1 || ^2.0",
  4147. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4148. "ruflin/elastica": "^7",
  4149. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4150. "symfony/mailer": "^5.4 || ^6",
  4151. "symfony/mime": "^5.4 || ^6"
  4152. },
  4153. "suggest": {
  4154. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4155. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4156. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4157. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4158. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4159. "ext-mbstring": "Allow to work properly with unicode symbols",
  4160. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4161. "ext-openssl": "Required to send log messages using SSL",
  4162. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4163. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4164. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4165. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4166. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4167. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4168. },
  4169. "type": "library",
  4170. "extra": {
  4171. "branch-alias": {
  4172. "dev-main": "2.x-dev"
  4173. }
  4174. },
  4175. "autoload": {
  4176. "psr-4": {
  4177. "Monolog\\": "src/Monolog"
  4178. }
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "Jordi Boggiano",
  4187. "email": "j.boggiano@seld.be",
  4188. "homepage": "https://seld.be"
  4189. }
  4190. ],
  4191. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4192. "homepage": "https://github.com/Seldaek/monolog",
  4193. "keywords": [
  4194. "log",
  4195. "logging",
  4196. "psr-3"
  4197. ],
  4198. "support": {
  4199. "issues": "https://github.com/Seldaek/monolog/issues",
  4200. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  4201. },
  4202. "funding": [
  4203. {
  4204. "url": "https://github.com/Seldaek",
  4205. "type": "github"
  4206. },
  4207. {
  4208. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4209. "type": "tidelift"
  4210. }
  4211. ],
  4212. "time": "2022-07-24T11:55:47+00:00"
  4213. },
  4214. {
  4215. "name": "mtdowling/jmespath.php",
  4216. "version": "2.6.1",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/jmespath/jmespath.php.git",
  4220. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4225. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "php": "^5.4 || ^7.0 || ^8.0",
  4236. "symfony/polyfill-mbstring": "^1.17"
  4237. },
  4238. "require-dev": {
  4239. "composer/xdebug-handler": "^1.4 || ^2.0",
  4240. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4241. },
  4242. "bin": [
  4243. "bin/jp.php"
  4244. ],
  4245. "type": "library",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "2.6-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "files": [
  4253. "src/JmesPath.php"
  4254. ],
  4255. "psr-4": {
  4256. "JmesPath\\": "src/"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Michael Dowling",
  4266. "email": "mtdowling@gmail.com",
  4267. "homepage": "https://github.com/mtdowling"
  4268. }
  4269. ],
  4270. "description": "Declaratively specify how to extract elements from a JSON document",
  4271. "keywords": [
  4272. "json",
  4273. "jsonpath"
  4274. ],
  4275. "support": {
  4276. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4277. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4278. },
  4279. "time": "2021-06-14T00:11:39+00:00"
  4280. },
  4281. {
  4282. "name": "namshi/jose",
  4283. "version": "7.2.3",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/namshi/jose.git",
  4287. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4292. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4293. "shasum": "",
  4294. "mirrors": [
  4295. {
  4296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4297. "preferred": true
  4298. }
  4299. ]
  4300. },
  4301. "require": {
  4302. "ext-date": "*",
  4303. "ext-hash": "*",
  4304. "ext-json": "*",
  4305. "ext-pcre": "*",
  4306. "ext-spl": "*",
  4307. "php": ">=5.5",
  4308. "symfony/polyfill-php56": "^1.0"
  4309. },
  4310. "require-dev": {
  4311. "phpseclib/phpseclib": "^2.0",
  4312. "phpunit/phpunit": "^4.5|^5.0",
  4313. "satooshi/php-coveralls": "^1.0"
  4314. },
  4315. "suggest": {
  4316. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4317. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4318. },
  4319. "type": "library",
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "MIT"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Alessandro Nadalin",
  4332. "email": "alessandro.nadalin@gmail.com"
  4333. },
  4334. {
  4335. "name": "Alessandro Cinelli (cirpo)",
  4336. "email": "alessandro.cinelli@gmail.com"
  4337. }
  4338. ],
  4339. "description": "JSON Object Signing and Encryption library for PHP.",
  4340. "keywords": [
  4341. "JSON Web Signature",
  4342. "JSON Web Token",
  4343. "JWS",
  4344. "json",
  4345. "jwt",
  4346. "token"
  4347. ],
  4348. "support": {
  4349. "issues": "https://github.com/namshi/jose/issues",
  4350. "source": "https://github.com/namshi/jose/tree/master"
  4351. },
  4352. "time": "2016-12-05T07:27:31+00:00"
  4353. },
  4354. {
  4355. "name": "nesbot/carbon",
  4356. "version": "2.61.0",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/briannesbitt/Carbon.git",
  4360. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  4365. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  4366. "shasum": "",
  4367. "mirrors": [
  4368. {
  4369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4370. "preferred": true
  4371. }
  4372. ]
  4373. },
  4374. "require": {
  4375. "ext-json": "*",
  4376. "php": "^7.1.8 || ^8.0",
  4377. "symfony/polyfill-mbstring": "^1.0",
  4378. "symfony/polyfill-php80": "^1.16",
  4379. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4380. },
  4381. "require-dev": {
  4382. "doctrine/dbal": "^2.0 || ^3.0",
  4383. "doctrine/orm": "^2.7",
  4384. "friendsofphp/php-cs-fixer": "^3.0",
  4385. "kylekatarnls/multi-tester": "^2.0",
  4386. "ondrejmirtes/better-reflection": "*",
  4387. "phpmd/phpmd": "^2.9",
  4388. "phpstan/extension-installer": "^1.0",
  4389. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4390. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4391. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4392. "squizlabs/php_codesniffer": "^3.4"
  4393. },
  4394. "bin": [
  4395. "bin/carbon"
  4396. ],
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-3.x": "3.x-dev",
  4401. "dev-master": "2.x-dev"
  4402. },
  4403. "laravel": {
  4404. "providers": [
  4405. "Carbon\\Laravel\\ServiceProvider"
  4406. ]
  4407. },
  4408. "phpstan": {
  4409. "includes": [
  4410. "extension.neon"
  4411. ]
  4412. }
  4413. },
  4414. "autoload": {
  4415. "psr-4": {
  4416. "Carbon\\": "src/Carbon/"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Brian Nesbitt",
  4426. "email": "brian@nesbot.com",
  4427. "homepage": "https://markido.com"
  4428. },
  4429. {
  4430. "name": "kylekatarnls",
  4431. "homepage": "https://github.com/kylekatarnls"
  4432. }
  4433. ],
  4434. "description": "An API extension for DateTime that supports 281 different languages.",
  4435. "homepage": "https://carbon.nesbot.com",
  4436. "keywords": [
  4437. "date",
  4438. "datetime",
  4439. "time"
  4440. ],
  4441. "support": {
  4442. "docs": "https://carbon.nesbot.com/docs",
  4443. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4444. "source": "https://github.com/briannesbitt/Carbon"
  4445. },
  4446. "funding": [
  4447. {
  4448. "url": "https://github.com/sponsors/kylekatarnls",
  4449. "type": "github"
  4450. },
  4451. {
  4452. "url": "https://opencollective.com/Carbon#sponsor",
  4453. "type": "opencollective"
  4454. },
  4455. {
  4456. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4457. "type": "tidelift"
  4458. }
  4459. ],
  4460. "time": "2022-08-06T12:41:24+00:00"
  4461. },
  4462. {
  4463. "name": "nette/schema",
  4464. "version": "v1.2.2",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/nette/schema.git",
  4468. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4473. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4474. "shasum": "",
  4475. "mirrors": [
  4476. {
  4477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4478. "preferred": true
  4479. }
  4480. ]
  4481. },
  4482. "require": {
  4483. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4484. "php": ">=7.1 <8.2"
  4485. },
  4486. "require-dev": {
  4487. "nette/tester": "^2.3 || ^2.4",
  4488. "phpstan/phpstan-nette": "^0.12",
  4489. "tracy/tracy": "^2.7"
  4490. },
  4491. "type": "library",
  4492. "extra": {
  4493. "branch-alias": {
  4494. "dev-master": "1.2-dev"
  4495. }
  4496. },
  4497. "autoload": {
  4498. "classmap": [
  4499. "src/"
  4500. ]
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "BSD-3-Clause",
  4505. "GPL-2.0-only",
  4506. "GPL-3.0-only"
  4507. ],
  4508. "authors": [
  4509. {
  4510. "name": "David Grudl",
  4511. "homepage": "https://davidgrudl.com"
  4512. },
  4513. {
  4514. "name": "Nette Community",
  4515. "homepage": "https://nette.org/contributors"
  4516. }
  4517. ],
  4518. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4519. "homepage": "https://nette.org",
  4520. "keywords": [
  4521. "config",
  4522. "nette"
  4523. ],
  4524. "support": {
  4525. "issues": "https://github.com/nette/schema/issues",
  4526. "source": "https://github.com/nette/schema/tree/v1.2.2"
  4527. },
  4528. "time": "2021-10-15T11:40:02+00:00"
  4529. },
  4530. {
  4531. "name": "nette/utils",
  4532. "version": "v3.2.7",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/nette/utils.git",
  4536. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4541. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4542. "shasum": "",
  4543. "mirrors": [
  4544. {
  4545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4546. "preferred": true
  4547. }
  4548. ]
  4549. },
  4550. "require": {
  4551. "php": ">=7.2 <8.2"
  4552. },
  4553. "conflict": {
  4554. "nette/di": "<3.0.6"
  4555. },
  4556. "require-dev": {
  4557. "nette/tester": "~2.0",
  4558. "phpstan/phpstan": "^1.0",
  4559. "tracy/tracy": "^2.3"
  4560. },
  4561. "suggest": {
  4562. "ext-gd": "to use Image",
  4563. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4564. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4565. "ext-json": "to use Nette\\Utils\\Json",
  4566. "ext-mbstring": "to use Strings::lower() etc...",
  4567. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4568. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4569. },
  4570. "type": "library",
  4571. "extra": {
  4572. "branch-alias": {
  4573. "dev-master": "3.2-dev"
  4574. }
  4575. },
  4576. "autoload": {
  4577. "classmap": [
  4578. "src/"
  4579. ]
  4580. },
  4581. "notification-url": "https://packagist.org/downloads/",
  4582. "license": [
  4583. "BSD-3-Clause",
  4584. "GPL-2.0-only",
  4585. "GPL-3.0-only"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "David Grudl",
  4590. "homepage": "https://davidgrudl.com"
  4591. },
  4592. {
  4593. "name": "Nette Community",
  4594. "homepage": "https://nette.org/contributors"
  4595. }
  4596. ],
  4597. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4598. "homepage": "https://nette.org",
  4599. "keywords": [
  4600. "array",
  4601. "core",
  4602. "datetime",
  4603. "images",
  4604. "json",
  4605. "nette",
  4606. "paginator",
  4607. "password",
  4608. "slugify",
  4609. "string",
  4610. "unicode",
  4611. "utf-8",
  4612. "utility",
  4613. "validation"
  4614. ],
  4615. "support": {
  4616. "issues": "https://github.com/nette/utils/issues",
  4617. "source": "https://github.com/nette/utils/tree/v3.2.7"
  4618. },
  4619. "time": "2022-01-24T11:29:14+00:00"
  4620. },
  4621. {
  4622. "name": "nikic/php-parser",
  4623. "version": "v4.14.0",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/nikic/PHP-Parser.git",
  4627. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4632. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4633. "shasum": "",
  4634. "mirrors": [
  4635. {
  4636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4637. "preferred": true
  4638. }
  4639. ]
  4640. },
  4641. "require": {
  4642. "ext-tokenizer": "*",
  4643. "php": ">=7.0"
  4644. },
  4645. "require-dev": {
  4646. "ircmaxell/php-yacc": "^0.0.7",
  4647. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4648. },
  4649. "bin": [
  4650. "bin/php-parse"
  4651. ],
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "4.9-dev"
  4656. }
  4657. },
  4658. "autoload": {
  4659. "psr-4": {
  4660. "PhpParser\\": "lib/PhpParser"
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "BSD-3-Clause"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Nikita Popov"
  4670. }
  4671. ],
  4672. "description": "A PHP parser written in PHP",
  4673. "keywords": [
  4674. "parser",
  4675. "php"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4679. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  4680. },
  4681. "time": "2022-05-31T20:59:12+00:00"
  4682. },
  4683. {
  4684. "name": "opis/closure",
  4685. "version": "3.6.3",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/opis/closure.git",
  4689. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4694. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4695. "shasum": "",
  4696. "mirrors": [
  4697. {
  4698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4699. "preferred": true
  4700. }
  4701. ]
  4702. },
  4703. "require": {
  4704. "php": "^5.4 || ^7.0 || ^8.0"
  4705. },
  4706. "require-dev": {
  4707. "jeremeamia/superclosure": "^2.0",
  4708. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4709. },
  4710. "type": "library",
  4711. "extra": {
  4712. "branch-alias": {
  4713. "dev-master": "3.6.x-dev"
  4714. }
  4715. },
  4716. "autoload": {
  4717. "files": [
  4718. "functions.php"
  4719. ],
  4720. "psr-4": {
  4721. "Opis\\Closure\\": "src/"
  4722. }
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "MIT"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Marius Sarca",
  4731. "email": "marius.sarca@gmail.com"
  4732. },
  4733. {
  4734. "name": "Sorin Sarca",
  4735. "email": "sarca_sorin@hotmail.com"
  4736. }
  4737. ],
  4738. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4739. "homepage": "https://opis.io/closure",
  4740. "keywords": [
  4741. "anonymous functions",
  4742. "closure",
  4743. "function",
  4744. "serializable",
  4745. "serialization",
  4746. "serialize"
  4747. ],
  4748. "support": {
  4749. "issues": "https://github.com/opis/closure/issues",
  4750. "source": "https://github.com/opis/closure/tree/3.6.3"
  4751. },
  4752. "time": "2022-01-27T09:35:39+00:00"
  4753. },
  4754. {
  4755. "name": "overtrue/easy-sms",
  4756. "version": "2.2.0",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://github.com/overtrue/easy-sms.git",
  4760. "reference": "fda1b6fcde861451ccf54e1071b4e1877455d89a"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/fda1b6fcde861451ccf54e1071b4e1877455d89a",
  4765. "reference": "fda1b6fcde861451ccf54e1071b4e1877455d89a",
  4766. "shasum": "",
  4767. "mirrors": [
  4768. {
  4769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4770. "preferred": true
  4771. }
  4772. ]
  4773. },
  4774. "require": {
  4775. "ext-json": "*",
  4776. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4777. "php": ">=5.6"
  4778. },
  4779. "require-dev": {
  4780. "brainmaestro/composer-git-hooks": "^2.8",
  4781. "jetbrains/phpstorm-attributes": "^1.0",
  4782. "mockery/mockery": "~1.3.3 || ^1.4.2",
  4783. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  4784. },
  4785. "type": "library",
  4786. "extra": {
  4787. "hooks": {
  4788. "pre-commit": [
  4789. "composer check-style",
  4790. "composer psalm",
  4791. "composer test"
  4792. ],
  4793. "pre-push": [
  4794. "composer check-style"
  4795. ]
  4796. }
  4797. },
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Overtrue\\EasySms\\": "src"
  4801. }
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "MIT"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "overtrue",
  4810. "email": "i@overtrue.me"
  4811. }
  4812. ],
  4813. "description": "The easiest way to send short message.",
  4814. "support": {
  4815. "issues": "https://github.com/overtrue/easy-sms/issues",
  4816. "source": "https://github.com/overtrue/easy-sms/tree/2.2.0"
  4817. },
  4818. "funding": [
  4819. {
  4820. "url": "https://github.com/overtrue",
  4821. "type": "github"
  4822. }
  4823. ],
  4824. "time": "2022-03-20T15:13:45+00:00"
  4825. },
  4826. {
  4827. "name": "overtrue/laravel-lang",
  4828. "version": "3.0.19",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://github.com/overtrue/laravel-lang.git",
  4832. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  4837. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  4838. "shasum": "",
  4839. "mirrors": [
  4840. {
  4841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4842. "preferred": true
  4843. }
  4844. ]
  4845. },
  4846. "require": {
  4847. "laravel-lang/lang": "~3.0"
  4848. },
  4849. "type": "library",
  4850. "extra": {
  4851. "laravel": {
  4852. "providers": [
  4853. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4854. ]
  4855. }
  4856. },
  4857. "autoload": {
  4858. "files": [
  4859. "src/helpers.php"
  4860. ],
  4861. "psr-4": {
  4862. "Overtrue\\LaravelLang\\": "src/"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "overtrue",
  4872. "email": "anzhengchao@gmail.com"
  4873. }
  4874. ],
  4875. "description": "List of 52 languages for Laravel 5",
  4876. "keywords": [
  4877. "languages",
  4878. "laravel",
  4879. "overtrue"
  4880. ],
  4881. "support": {
  4882. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4883. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  4884. },
  4885. "funding": [
  4886. {
  4887. "url": "https://www.patreon.com/overtrue",
  4888. "type": "patreon"
  4889. }
  4890. ],
  4891. "time": "2021-04-28T03:36:48+00:00"
  4892. },
  4893. {
  4894. "name": "overtrue/laravel-wechat",
  4895. "version": "5.1.0",
  4896. "source": {
  4897. "type": "git",
  4898. "url": "https://github.com/overtrue/laravel-wechat.git",
  4899. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4900. },
  4901. "dist": {
  4902. "type": "zip",
  4903. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4904. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4905. "shasum": "",
  4906. "mirrors": [
  4907. {
  4908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4909. "preferred": true
  4910. }
  4911. ]
  4912. },
  4913. "require": {
  4914. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4915. "overtrue/wechat": "^4.0"
  4916. },
  4917. "require-dev": {
  4918. "friendsofphp/php-cs-fixer": "^2.16",
  4919. "laravel/framework": "^8.5"
  4920. },
  4921. "type": "library",
  4922. "extra": {
  4923. "laravel": {
  4924. "providers": [
  4925. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4926. ],
  4927. "aliases": {
  4928. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4929. }
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Overtrue\\LaravelWeChat\\": "src/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "overtrue",
  4944. "email": "anzhengchao@gmail.com"
  4945. }
  4946. ],
  4947. "description": "微信 SDK for Laravel",
  4948. "keywords": [
  4949. "laravel",
  4950. "sdk",
  4951. "wechat",
  4952. "weixin"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4956. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4957. },
  4958. "time": "2020-09-27T08:32:30+00:00"
  4959. },
  4960. {
  4961. "name": "overtrue/socialite",
  4962. "version": "2.0.24",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/overtrue/socialite.git",
  4966. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4971. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4972. "shasum": "",
  4973. "mirrors": [
  4974. {
  4975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4976. "preferred": true
  4977. }
  4978. ]
  4979. },
  4980. "require": {
  4981. "ext-json": "*",
  4982. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4983. "php": ">=5.6",
  4984. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4985. },
  4986. "require-dev": {
  4987. "mockery/mockery": "~1.2",
  4988. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  4989. },
  4990. "type": "library",
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Overtrue\\Socialite\\": "src/"
  4994. }
  4995. },
  4996. "notification-url": "https://packagist.org/downloads/",
  4997. "license": [
  4998. "MIT"
  4999. ],
  5000. "authors": [
  5001. {
  5002. "name": "overtrue",
  5003. "email": "anzhengchao@gmail.com"
  5004. }
  5005. ],
  5006. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5007. "keywords": [
  5008. "login",
  5009. "oauth",
  5010. "qq",
  5011. "social",
  5012. "wechat",
  5013. "weibo"
  5014. ],
  5015. "support": {
  5016. "issues": "https://github.com/overtrue/socialite/issues",
  5017. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5018. },
  5019. "funding": [
  5020. {
  5021. "url": "https://www.patreon.com/overtrue",
  5022. "type": "patreon"
  5023. }
  5024. ],
  5025. "time": "2021-05-13T16:04:48+00:00"
  5026. },
  5027. {
  5028. "name": "overtrue/wechat",
  5029. "version": "4.5.0",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/w7corp/easywechat.git",
  5033. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5038. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5039. "shasum": "",
  5040. "mirrors": [
  5041. {
  5042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5043. "preferred": true
  5044. }
  5045. ]
  5046. },
  5047. "require": {
  5048. "easywechat-composer/easywechat-composer": "^1.1",
  5049. "ext-fileinfo": "*",
  5050. "ext-openssl": "*",
  5051. "ext-simplexml": "*",
  5052. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5053. "monolog/monolog": "^1.22 || ^2.0",
  5054. "overtrue/socialite": "~2.0",
  5055. "php": ">=7.2",
  5056. "pimple/pimple": "^3.0",
  5057. "psr/simple-cache": "^1.0",
  5058. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5059. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5060. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5061. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5062. },
  5063. "require-dev": {
  5064. "friendsofphp/php-cs-fixer": "^2.15",
  5065. "mikey179/vfsstream": "^1.6",
  5066. "mockery/mockery": "^1.2.3",
  5067. "phpstan/phpstan": "^0.12.0",
  5068. "phpunit/phpunit": "^7.5"
  5069. },
  5070. "type": "library",
  5071. "autoload": {
  5072. "files": [
  5073. "src/Kernel/Support/Helpers.php",
  5074. "src/Kernel/Helpers.php"
  5075. ],
  5076. "psr-4": {
  5077. "EasyWeChat\\": "src/"
  5078. }
  5079. },
  5080. "notification-url": "https://packagist.org/downloads/",
  5081. "license": [
  5082. "MIT"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "overtrue",
  5087. "email": "anzhengchao@gmail.com"
  5088. }
  5089. ],
  5090. "description": "微信SDK",
  5091. "keywords": [
  5092. "easywechat",
  5093. "sdk",
  5094. "wechat",
  5095. "weixin",
  5096. "weixin-sdk"
  5097. ],
  5098. "support": {
  5099. "issues": "https://github.com/w7corp/easywechat/issues",
  5100. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5101. },
  5102. "funding": [
  5103. {
  5104. "url": "https://github.com/overtrue",
  5105. "type": "github"
  5106. }
  5107. ],
  5108. "abandoned": "w7corp/easywechat",
  5109. "time": "2021-12-27T13:56:47+00:00"
  5110. },
  5111. {
  5112. "name": "php-open-source-saver/jwt-auth",
  5113. "version": "1.4.2",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
  5117. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5fd8c185453d875835c24d4ce50be7396af6ae14",
  5122. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14",
  5123. "shasum": "",
  5124. "mirrors": [
  5125. {
  5126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5127. "preferred": true
  5128. }
  5129. ]
  5130. },
  5131. "require": {
  5132. "ext-json": "*",
  5133. "illuminate/auth": "^6|^7|^8.67|^9",
  5134. "illuminate/contracts": "^6|^7|^8.67|^9",
  5135. "illuminate/http": "^6|^7|^8.67|^9",
  5136. "illuminate/support": "^6|^7|^8.67|^9",
  5137. "lcobucci/jwt": "^4.0",
  5138. "namshi/jose": "^7.0",
  5139. "nesbot/carbon": "^1.0|^2.0",
  5140. "php": "^7.4|^8.0"
  5141. },
  5142. "require-dev": {
  5143. "friendsofphp/php-cs-fixer": "^3",
  5144. "illuminate/console": "^6|^7|^8.67|^9",
  5145. "illuminate/routing": "^6|^7|^8.67|^9",
  5146. "mockery/mockery": "^1.4.4",
  5147. "orchestra/testbench": "^4.18|^5.8|^6.3|^7",
  5148. "phpstan/phpstan": "^1",
  5149. "phpunit/phpunit": "^8.5|^9.4",
  5150. "rector/rector": "^0.12.4",
  5151. "vlucas/phpdotenv": "^5.2.0",
  5152. "yoast/phpunit-polyfills": "^1.0.2"
  5153. },
  5154. "type": "library",
  5155. "extra": {
  5156. "branch-alias": {
  5157. "dev-develop": "1.0-dev"
  5158. },
  5159. "laravel": {
  5160. "aliases": {
  5161. "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
  5162. "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
  5163. },
  5164. "providers": [
  5165. "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
  5166. ]
  5167. }
  5168. },
  5169. "autoload": {
  5170. "psr-4": {
  5171. "PHPOpenSourceSaver\\JWTAuth\\": "src/"
  5172. }
  5173. },
  5174. "notification-url": "https://packagist.org/downloads/",
  5175. "license": [
  5176. "MIT"
  5177. ],
  5178. "authors": [
  5179. {
  5180. "name": "Sean Tymon",
  5181. "email": "tymon148@gmail.com",
  5182. "homepage": "https://tymon.xyz",
  5183. "role": "Forked package creator | Developer"
  5184. },
  5185. {
  5186. "name": "Eric Schricker",
  5187. "email": "eric.schricker@adiutabyte.de",
  5188. "role": "Developer"
  5189. },
  5190. {
  5191. "name": "Fabio William Conceição",
  5192. "email": "messhias@gmail.com",
  5193. "role": "Developer"
  5194. }
  5195. ],
  5196. "description": "JSON Web Token Authentication for Laravel and Lumen",
  5197. "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
  5198. "keywords": [
  5199. "Authentication",
  5200. "JSON Web Token",
  5201. "auth",
  5202. "jwt",
  5203. "laravel"
  5204. ],
  5205. "support": {
  5206. "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
  5207. "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
  5208. },
  5209. "time": "2022-04-22T06:31:30+00:00"
  5210. },
  5211. {
  5212. "name": "phpdocumentor/reflection-common",
  5213. "version": "2.2.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5217. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5222. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5223. "shasum": "",
  5224. "mirrors": [
  5225. {
  5226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5227. "preferred": true
  5228. }
  5229. ]
  5230. },
  5231. "require": {
  5232. "php": "^7.2 || ^8.0"
  5233. },
  5234. "type": "library",
  5235. "extra": {
  5236. "branch-alias": {
  5237. "dev-2.x": "2.x-dev"
  5238. }
  5239. },
  5240. "autoload": {
  5241. "psr-4": {
  5242. "phpDocumentor\\Reflection\\": "src/"
  5243. }
  5244. },
  5245. "notification-url": "https://packagist.org/downloads/",
  5246. "license": [
  5247. "MIT"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Jaap van Otterdijk",
  5252. "email": "opensource@ijaap.nl"
  5253. }
  5254. ],
  5255. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5256. "homepage": "http://www.phpdoc.org",
  5257. "keywords": [
  5258. "FQSEN",
  5259. "phpDocumentor",
  5260. "phpdoc",
  5261. "reflection",
  5262. "static analysis"
  5263. ],
  5264. "support": {
  5265. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5266. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5267. },
  5268. "time": "2020-06-27T09:03:43+00:00"
  5269. },
  5270. {
  5271. "name": "phpdocumentor/reflection-docblock",
  5272. "version": "5.3.0",
  5273. "source": {
  5274. "type": "git",
  5275. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5276. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5277. },
  5278. "dist": {
  5279. "type": "zip",
  5280. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5281. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5282. "shasum": "",
  5283. "mirrors": [
  5284. {
  5285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5286. "preferred": true
  5287. }
  5288. ]
  5289. },
  5290. "require": {
  5291. "ext-filter": "*",
  5292. "php": "^7.2 || ^8.0",
  5293. "phpdocumentor/reflection-common": "^2.2",
  5294. "phpdocumentor/type-resolver": "^1.3",
  5295. "webmozart/assert": "^1.9.1"
  5296. },
  5297. "require-dev": {
  5298. "mockery/mockery": "~1.3.2",
  5299. "psalm/phar": "^4.8"
  5300. },
  5301. "type": "library",
  5302. "extra": {
  5303. "branch-alias": {
  5304. "dev-master": "5.x-dev"
  5305. }
  5306. },
  5307. "autoload": {
  5308. "psr-4": {
  5309. "phpDocumentor\\Reflection\\": "src"
  5310. }
  5311. },
  5312. "notification-url": "https://packagist.org/downloads/",
  5313. "license": [
  5314. "MIT"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Mike van Riel",
  5319. "email": "me@mikevanriel.com"
  5320. },
  5321. {
  5322. "name": "Jaap van Otterdijk",
  5323. "email": "account@ijaap.nl"
  5324. }
  5325. ],
  5326. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5327. "support": {
  5328. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5329. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5330. },
  5331. "time": "2021-10-19T17:43:47+00:00"
  5332. },
  5333. {
  5334. "name": "phpdocumentor/type-resolver",
  5335. "version": "1.6.1",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5339. "reference": "77a32518733312af16a44300404e945338981de3"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5344. "reference": "77a32518733312af16a44300404e945338981de3",
  5345. "shasum": "",
  5346. "mirrors": [
  5347. {
  5348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5349. "preferred": true
  5350. }
  5351. ]
  5352. },
  5353. "require": {
  5354. "php": "^7.2 || ^8.0",
  5355. "phpdocumentor/reflection-common": "^2.0"
  5356. },
  5357. "require-dev": {
  5358. "ext-tokenizer": "*",
  5359. "psalm/phar": "^4.8"
  5360. },
  5361. "type": "library",
  5362. "extra": {
  5363. "branch-alias": {
  5364. "dev-1.x": "1.x-dev"
  5365. }
  5366. },
  5367. "autoload": {
  5368. "psr-4": {
  5369. "phpDocumentor\\Reflection\\": "src"
  5370. }
  5371. },
  5372. "notification-url": "https://packagist.org/downloads/",
  5373. "license": [
  5374. "MIT"
  5375. ],
  5376. "authors": [
  5377. {
  5378. "name": "Mike van Riel",
  5379. "email": "me@mikevanriel.com"
  5380. }
  5381. ],
  5382. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5383. "support": {
  5384. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5385. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5386. },
  5387. "time": "2022-03-15T21:29:03+00:00"
  5388. },
  5389. {
  5390. "name": "phpoption/phpoption",
  5391. "version": "1.8.1",
  5392. "source": {
  5393. "type": "git",
  5394. "url": "https://github.com/schmittjoh/php-option.git",
  5395. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5396. },
  5397. "dist": {
  5398. "type": "zip",
  5399. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5400. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5401. "shasum": "",
  5402. "mirrors": [
  5403. {
  5404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5405. "preferred": true
  5406. }
  5407. ]
  5408. },
  5409. "require": {
  5410. "php": "^7.0 || ^8.0"
  5411. },
  5412. "require-dev": {
  5413. "bamarni/composer-bin-plugin": "^1.4.1",
  5414. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-master": "1.8-dev"
  5420. }
  5421. },
  5422. "autoload": {
  5423. "psr-4": {
  5424. "PhpOption\\": "src/PhpOption/"
  5425. }
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "Apache-2.0"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Johannes M. Schmitt",
  5434. "email": "schmittjoh@gmail.com",
  5435. "homepage": "https://github.com/schmittjoh"
  5436. },
  5437. {
  5438. "name": "Graham Campbell",
  5439. "email": "hello@gjcampbell.co.uk",
  5440. "homepage": "https://github.com/GrahamCampbell"
  5441. }
  5442. ],
  5443. "description": "Option Type for PHP",
  5444. "keywords": [
  5445. "language",
  5446. "option",
  5447. "php",
  5448. "type"
  5449. ],
  5450. "support": {
  5451. "issues": "https://github.com/schmittjoh/php-option/issues",
  5452. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://github.com/GrahamCampbell",
  5457. "type": "github"
  5458. },
  5459. {
  5460. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5461. "type": "tidelift"
  5462. }
  5463. ],
  5464. "time": "2021-12-04T23:24:31+00:00"
  5465. },
  5466. {
  5467. "name": "pimple/pimple",
  5468. "version": "v3.5.0",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/silexphp/Pimple.git",
  5472. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5477. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5478. "shasum": "",
  5479. "mirrors": [
  5480. {
  5481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5482. "preferred": true
  5483. }
  5484. ]
  5485. },
  5486. "require": {
  5487. "php": ">=7.2.5",
  5488. "psr/container": "^1.1 || ^2.0"
  5489. },
  5490. "require-dev": {
  5491. "symfony/phpunit-bridge": "^5.4@dev"
  5492. },
  5493. "type": "library",
  5494. "extra": {
  5495. "branch-alias": {
  5496. "dev-master": "3.4.x-dev"
  5497. }
  5498. },
  5499. "autoload": {
  5500. "psr-0": {
  5501. "Pimple": "src/"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Fabien Potencier",
  5511. "email": "fabien@symfony.com"
  5512. }
  5513. ],
  5514. "description": "Pimple, a simple Dependency Injection Container",
  5515. "homepage": "https://pimple.symfony.com",
  5516. "keywords": [
  5517. "container",
  5518. "dependency injection"
  5519. ],
  5520. "support": {
  5521. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5522. },
  5523. "time": "2021-10-28T11:13:42+00:00"
  5524. },
  5525. {
  5526. "name": "prettus/l5-repository",
  5527. "version": "2.8.0",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/andersao/l5-repository.git",
  5531. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5536. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5537. "shasum": "",
  5538. "mirrors": [
  5539. {
  5540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5541. "preferred": true
  5542. }
  5543. ]
  5544. },
  5545. "require": {
  5546. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5547. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5548. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5549. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5550. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5551. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5552. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5553. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5554. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5555. },
  5556. "suggest": {
  5557. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5558. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5559. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5560. },
  5561. "type": "library",
  5562. "extra": {
  5563. "laravel": {
  5564. "providers": [
  5565. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5566. ]
  5567. }
  5568. },
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "Anderson Andrade",
  5581. "email": "contato@andersonandra.de",
  5582. "homepage": "http://andersonandra.de",
  5583. "role": "Developer"
  5584. }
  5585. ],
  5586. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5587. "homepage": "http://andersao.github.io/l5-repository",
  5588. "keywords": [
  5589. "cache",
  5590. "eloquent",
  5591. "laravel",
  5592. "model",
  5593. "repository"
  5594. ],
  5595. "support": {
  5596. "docs": "http://andersao.github.io/l5-repository",
  5597. "email": "contato@andersonandra.de",
  5598. "issues": "https://github.com/andersao/l5-repository/issues",
  5599. "source": "https://github.com/andersao/l5-repository",
  5600. "wiki": "https://github.com/andersao/l5-repository"
  5601. },
  5602. "time": "2022-02-21T11:19:35+00:00"
  5603. },
  5604. {
  5605. "name": "prettus/laravel-validation",
  5606. "version": "1.4.0",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/andersao/laravel-validator.git",
  5610. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5615. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5616. "shasum": "",
  5617. "mirrors": [
  5618. {
  5619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5620. "preferred": true
  5621. }
  5622. ]
  5623. },
  5624. "require": {
  5625. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5626. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5627. "php": ">=5.4.0"
  5628. },
  5629. "type": "library",
  5630. "autoload": {
  5631. "psr-4": {
  5632. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5633. }
  5634. },
  5635. "notification-url": "https://packagist.org/downloads/",
  5636. "authors": [
  5637. {
  5638. "name": "Anderson Andrade",
  5639. "email": "contato@andersonandra.de",
  5640. "homepage": "http://andersonandra.de",
  5641. "role": "Developer"
  5642. }
  5643. ],
  5644. "description": "Laravel Validation Service",
  5645. "homepage": "http://andersao.github.io/laravel-validation",
  5646. "keywords": [
  5647. "laravel",
  5648. "service",
  5649. "validation"
  5650. ],
  5651. "support": {
  5652. "docs": "http://andersao.github.io/laravel-validation",
  5653. "email": "contato@andersonandra.de",
  5654. "issues": "https://github.com/andersao/laravel-validation/issues",
  5655. "source": "https://github.com/andersao/laravel-validation",
  5656. "wiki": "https://github.com/andersao/laravel-validation"
  5657. },
  5658. "time": "2022-02-21T11:18:30+00:00"
  5659. },
  5660. {
  5661. "name": "psr/cache",
  5662. "version": "2.0.0",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/php-fig/cache.git",
  5666. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5671. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5672. "shasum": "",
  5673. "mirrors": [
  5674. {
  5675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5676. "preferred": true
  5677. }
  5678. ]
  5679. },
  5680. "require": {
  5681. "php": ">=8.0.0"
  5682. },
  5683. "type": "library",
  5684. "extra": {
  5685. "branch-alias": {
  5686. "dev-master": "1.0.x-dev"
  5687. }
  5688. },
  5689. "autoload": {
  5690. "psr-4": {
  5691. "Psr\\Cache\\": "src/"
  5692. }
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "PHP-FIG",
  5701. "homepage": "https://www.php-fig.org/"
  5702. }
  5703. ],
  5704. "description": "Common interface for caching libraries",
  5705. "keywords": [
  5706. "cache",
  5707. "psr",
  5708. "psr-6"
  5709. ],
  5710. "support": {
  5711. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5712. },
  5713. "time": "2021-02-03T23:23:37+00:00"
  5714. },
  5715. {
  5716. "name": "psr/container",
  5717. "version": "1.1.2",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/php-fig/container.git",
  5721. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5726. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5727. "shasum": "",
  5728. "mirrors": [
  5729. {
  5730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5731. "preferred": true
  5732. }
  5733. ]
  5734. },
  5735. "require": {
  5736. "php": ">=7.4.0"
  5737. },
  5738. "type": "library",
  5739. "autoload": {
  5740. "psr-4": {
  5741. "Psr\\Container\\": "src/"
  5742. }
  5743. },
  5744. "notification-url": "https://packagist.org/downloads/",
  5745. "license": [
  5746. "MIT"
  5747. ],
  5748. "authors": [
  5749. {
  5750. "name": "PHP-FIG",
  5751. "homepage": "https://www.php-fig.org/"
  5752. }
  5753. ],
  5754. "description": "Common Container Interface (PHP FIG PSR-11)",
  5755. "homepage": "https://github.com/php-fig/container",
  5756. "keywords": [
  5757. "PSR-11",
  5758. "container",
  5759. "container-interface",
  5760. "container-interop",
  5761. "psr"
  5762. ],
  5763. "support": {
  5764. "issues": "https://github.com/php-fig/container/issues",
  5765. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5766. },
  5767. "time": "2021-11-05T16:50:12+00:00"
  5768. },
  5769. {
  5770. "name": "psr/event-dispatcher",
  5771. "version": "1.0.0",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/php-fig/event-dispatcher.git",
  5775. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5780. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5781. "shasum": "",
  5782. "mirrors": [
  5783. {
  5784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5785. "preferred": true
  5786. }
  5787. ]
  5788. },
  5789. "require": {
  5790. "php": ">=7.2.0"
  5791. },
  5792. "type": "library",
  5793. "extra": {
  5794. "branch-alias": {
  5795. "dev-master": "1.0.x-dev"
  5796. }
  5797. },
  5798. "autoload": {
  5799. "psr-4": {
  5800. "Psr\\EventDispatcher\\": "src/"
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "PHP-FIG",
  5810. "homepage": "http://www.php-fig.org/"
  5811. }
  5812. ],
  5813. "description": "Standard interfaces for event handling.",
  5814. "keywords": [
  5815. "events",
  5816. "psr",
  5817. "psr-14"
  5818. ],
  5819. "support": {
  5820. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5821. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5822. },
  5823. "time": "2019-01-08T18:20:26+00:00"
  5824. },
  5825. {
  5826. "name": "psr/http-client",
  5827. "version": "1.0.1",
  5828. "source": {
  5829. "type": "git",
  5830. "url": "https://github.com/php-fig/http-client.git",
  5831. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5832. },
  5833. "dist": {
  5834. "type": "zip",
  5835. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5836. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5837. "shasum": "",
  5838. "mirrors": [
  5839. {
  5840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5841. "preferred": true
  5842. }
  5843. ]
  5844. },
  5845. "require": {
  5846. "php": "^7.0 || ^8.0",
  5847. "psr/http-message": "^1.0"
  5848. },
  5849. "type": "library",
  5850. "extra": {
  5851. "branch-alias": {
  5852. "dev-master": "1.0.x-dev"
  5853. }
  5854. },
  5855. "autoload": {
  5856. "psr-4": {
  5857. "Psr\\Http\\Client\\": "src/"
  5858. }
  5859. },
  5860. "notification-url": "https://packagist.org/downloads/",
  5861. "license": [
  5862. "MIT"
  5863. ],
  5864. "authors": [
  5865. {
  5866. "name": "PHP-FIG",
  5867. "homepage": "http://www.php-fig.org/"
  5868. }
  5869. ],
  5870. "description": "Common interface for HTTP clients",
  5871. "homepage": "https://github.com/php-fig/http-client",
  5872. "keywords": [
  5873. "http",
  5874. "http-client",
  5875. "psr",
  5876. "psr-18"
  5877. ],
  5878. "support": {
  5879. "source": "https://github.com/php-fig/http-client/tree/master"
  5880. },
  5881. "time": "2020-06-29T06:28:15+00:00"
  5882. },
  5883. {
  5884. "name": "psr/http-factory",
  5885. "version": "1.0.1",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/php-fig/http-factory.git",
  5889. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5894. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5895. "shasum": "",
  5896. "mirrors": [
  5897. {
  5898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5899. "preferred": true
  5900. }
  5901. ]
  5902. },
  5903. "require": {
  5904. "php": ">=7.0.0",
  5905. "psr/http-message": "^1.0"
  5906. },
  5907. "type": "library",
  5908. "extra": {
  5909. "branch-alias": {
  5910. "dev-master": "1.0.x-dev"
  5911. }
  5912. },
  5913. "autoload": {
  5914. "psr-4": {
  5915. "Psr\\Http\\Message\\": "src/"
  5916. }
  5917. },
  5918. "notification-url": "https://packagist.org/downloads/",
  5919. "license": [
  5920. "MIT"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "PHP-FIG",
  5925. "homepage": "http://www.php-fig.org/"
  5926. }
  5927. ],
  5928. "description": "Common interfaces for PSR-7 HTTP message factories",
  5929. "keywords": [
  5930. "factory",
  5931. "http",
  5932. "message",
  5933. "psr",
  5934. "psr-17",
  5935. "psr-7",
  5936. "request",
  5937. "response"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/php-fig/http-factory/tree/master"
  5941. },
  5942. "time": "2019-04-30T12:38:16+00:00"
  5943. },
  5944. {
  5945. "name": "psr/http-message",
  5946. "version": "1.0.1",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/php-fig/http-message.git",
  5950. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5955. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5956. "shasum": "",
  5957. "mirrors": [
  5958. {
  5959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5960. "preferred": true
  5961. }
  5962. ]
  5963. },
  5964. "require": {
  5965. "php": ">=5.3.0"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "1.0.x-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "psr-4": {
  5975. "Psr\\Http\\Message\\": "src/"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "PHP-FIG",
  5985. "homepage": "http://www.php-fig.org/"
  5986. }
  5987. ],
  5988. "description": "Common interface for HTTP messages",
  5989. "homepage": "https://github.com/php-fig/http-message",
  5990. "keywords": [
  5991. "http",
  5992. "http-message",
  5993. "psr",
  5994. "psr-7",
  5995. "request",
  5996. "response"
  5997. ],
  5998. "support": {
  5999. "source": "https://github.com/php-fig/http-message/tree/master"
  6000. },
  6001. "time": "2016-08-06T14:39:51+00:00"
  6002. },
  6003. {
  6004. "name": "psr/log",
  6005. "version": "2.0.0",
  6006. "source": {
  6007. "type": "git",
  6008. "url": "https://github.com/php-fig/log.git",
  6009. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6010. },
  6011. "dist": {
  6012. "type": "zip",
  6013. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6014. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6015. "shasum": "",
  6016. "mirrors": [
  6017. {
  6018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6019. "preferred": true
  6020. }
  6021. ]
  6022. },
  6023. "require": {
  6024. "php": ">=8.0.0"
  6025. },
  6026. "type": "library",
  6027. "extra": {
  6028. "branch-alias": {
  6029. "dev-master": "2.0.x-dev"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "psr-4": {
  6034. "Psr\\Log\\": "src"
  6035. }
  6036. },
  6037. "notification-url": "https://packagist.org/downloads/",
  6038. "license": [
  6039. "MIT"
  6040. ],
  6041. "authors": [
  6042. {
  6043. "name": "PHP-FIG",
  6044. "homepage": "https://www.php-fig.org/"
  6045. }
  6046. ],
  6047. "description": "Common interface for logging libraries",
  6048. "homepage": "https://github.com/php-fig/log",
  6049. "keywords": [
  6050. "log",
  6051. "psr",
  6052. "psr-3"
  6053. ],
  6054. "support": {
  6055. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6056. },
  6057. "time": "2021-07-14T16:41:46+00:00"
  6058. },
  6059. {
  6060. "name": "psr/simple-cache",
  6061. "version": "1.0.1",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/php-fig/simple-cache.git",
  6065. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6070. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6071. "shasum": "",
  6072. "mirrors": [
  6073. {
  6074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6075. "preferred": true
  6076. }
  6077. ]
  6078. },
  6079. "require": {
  6080. "php": ">=5.3.0"
  6081. },
  6082. "type": "library",
  6083. "extra": {
  6084. "branch-alias": {
  6085. "dev-master": "1.0.x-dev"
  6086. }
  6087. },
  6088. "autoload": {
  6089. "psr-4": {
  6090. "Psr\\SimpleCache\\": "src/"
  6091. }
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "PHP-FIG",
  6100. "homepage": "http://www.php-fig.org/"
  6101. }
  6102. ],
  6103. "description": "Common interfaces for simple caching",
  6104. "keywords": [
  6105. "cache",
  6106. "caching",
  6107. "psr",
  6108. "psr-16",
  6109. "simple-cache"
  6110. ],
  6111. "support": {
  6112. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6113. },
  6114. "time": "2017-10-23T01:57:42+00:00"
  6115. },
  6116. {
  6117. "name": "psy/psysh",
  6118. "version": "v0.11.8",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/bobthecow/psysh.git",
  6122. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/f455acf3645262ae389b10e9beba0c358aa6994e",
  6127. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e",
  6128. "shasum": "",
  6129. "mirrors": [
  6130. {
  6131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6132. "preferred": true
  6133. }
  6134. ]
  6135. },
  6136. "require": {
  6137. "ext-json": "*",
  6138. "ext-tokenizer": "*",
  6139. "nikic/php-parser": "^4.0 || ^3.1",
  6140. "php": "^8.0 || ^7.0.8",
  6141. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6142. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6143. },
  6144. "conflict": {
  6145. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6146. },
  6147. "require-dev": {
  6148. "bamarni/composer-bin-plugin": "^1.2"
  6149. },
  6150. "suggest": {
  6151. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6152. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6153. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6154. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6155. },
  6156. "bin": [
  6157. "bin/psysh"
  6158. ],
  6159. "type": "library",
  6160. "extra": {
  6161. "branch-alias": {
  6162. "dev-main": "0.11.x-dev"
  6163. }
  6164. },
  6165. "autoload": {
  6166. "files": [
  6167. "src/functions.php"
  6168. ],
  6169. "psr-4": {
  6170. "Psy\\": "src/"
  6171. }
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Justin Hileman",
  6180. "email": "justin@justinhileman.info",
  6181. "homepage": "http://justinhileman.com"
  6182. }
  6183. ],
  6184. "description": "An interactive shell for modern PHP.",
  6185. "homepage": "http://psysh.org",
  6186. "keywords": [
  6187. "REPL",
  6188. "console",
  6189. "interactive",
  6190. "shell"
  6191. ],
  6192. "support": {
  6193. "issues": "https://github.com/bobthecow/psysh/issues",
  6194. "source": "https://github.com/bobthecow/psysh/tree/v0.11.8"
  6195. },
  6196. "time": "2022-07-28T14:25:11+00:00"
  6197. },
  6198. {
  6199. "name": "ralouphie/getallheaders",
  6200. "version": "3.0.3",
  6201. "source": {
  6202. "type": "git",
  6203. "url": "https://github.com/ralouphie/getallheaders.git",
  6204. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6205. },
  6206. "dist": {
  6207. "type": "zip",
  6208. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6209. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6210. "shasum": "",
  6211. "mirrors": [
  6212. {
  6213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6214. "preferred": true
  6215. }
  6216. ]
  6217. },
  6218. "require": {
  6219. "php": ">=5.6"
  6220. },
  6221. "require-dev": {
  6222. "php-coveralls/php-coveralls": "^2.1",
  6223. "phpunit/phpunit": "^5 || ^6.5"
  6224. },
  6225. "type": "library",
  6226. "autoload": {
  6227. "files": [
  6228. "src/getallheaders.php"
  6229. ]
  6230. },
  6231. "notification-url": "https://packagist.org/downloads/",
  6232. "license": [
  6233. "MIT"
  6234. ],
  6235. "authors": [
  6236. {
  6237. "name": "Ralph Khattar",
  6238. "email": "ralph.khattar@gmail.com"
  6239. }
  6240. ],
  6241. "description": "A polyfill for getallheaders.",
  6242. "support": {
  6243. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6244. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6245. },
  6246. "time": "2019-03-08T08:55:37+00:00"
  6247. },
  6248. {
  6249. "name": "ramsey/collection",
  6250. "version": "1.2.2",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/ramsey/collection.git",
  6254. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6259. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6260. "shasum": "",
  6261. "mirrors": [
  6262. {
  6263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6264. "preferred": true
  6265. }
  6266. ]
  6267. },
  6268. "require": {
  6269. "php": "^7.3 || ^8",
  6270. "symfony/polyfill-php81": "^1.23"
  6271. },
  6272. "require-dev": {
  6273. "captainhook/captainhook": "^5.3",
  6274. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6275. "ergebnis/composer-normalize": "^2.6",
  6276. "fakerphp/faker": "^1.5",
  6277. "hamcrest/hamcrest-php": "^2",
  6278. "jangregor/phpstan-prophecy": "^0.8",
  6279. "mockery/mockery": "^1.3",
  6280. "phpspec/prophecy-phpunit": "^2.0",
  6281. "phpstan/extension-installer": "^1",
  6282. "phpstan/phpstan": "^0.12.32",
  6283. "phpstan/phpstan-mockery": "^0.12.5",
  6284. "phpstan/phpstan-phpunit": "^0.12.11",
  6285. "phpunit/phpunit": "^8.5 || ^9",
  6286. "psy/psysh": "^0.10.4",
  6287. "slevomat/coding-standard": "^6.3",
  6288. "squizlabs/php_codesniffer": "^3.5",
  6289. "vimeo/psalm": "^4.4"
  6290. },
  6291. "type": "library",
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Ramsey\\Collection\\": "src/"
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Ben Ramsey",
  6304. "email": "ben@benramsey.com",
  6305. "homepage": "https://benramsey.com"
  6306. }
  6307. ],
  6308. "description": "A PHP library for representing and manipulating collections.",
  6309. "keywords": [
  6310. "array",
  6311. "collection",
  6312. "hash",
  6313. "map",
  6314. "queue",
  6315. "set"
  6316. ],
  6317. "support": {
  6318. "issues": "https://github.com/ramsey/collection/issues",
  6319. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6320. },
  6321. "funding": [
  6322. {
  6323. "url": "https://github.com/ramsey",
  6324. "type": "github"
  6325. },
  6326. {
  6327. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6328. "type": "tidelift"
  6329. }
  6330. ],
  6331. "time": "2021-10-10T03:01:02+00:00"
  6332. },
  6333. {
  6334. "name": "ramsey/uuid",
  6335. "version": "4.4.0",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/ramsey/uuid.git",
  6339. "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/ramsey/uuid/zipball/373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
  6344. "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
  6345. "shasum": "",
  6346. "mirrors": [
  6347. {
  6348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6349. "preferred": true
  6350. }
  6351. ]
  6352. },
  6353. "require": {
  6354. "brick/math": "^0.8 || ^0.9 || ^0.10",
  6355. "ext-ctype": "*",
  6356. "ext-json": "*",
  6357. "php": "^8.0",
  6358. "ramsey/collection": "^1.0"
  6359. },
  6360. "replace": {
  6361. "rhumsaa/uuid": "self.version"
  6362. },
  6363. "require-dev": {
  6364. "captainhook/captainhook": "^5.10",
  6365. "captainhook/plugin-composer": "^5.3",
  6366. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6367. "doctrine/annotations": "^1.8",
  6368. "ergebnis/composer-normalize": "^2.15",
  6369. "mockery/mockery": "^1.3",
  6370. "paragonie/random-lib": "^2",
  6371. "php-mock/php-mock": "^2.2",
  6372. "php-mock/php-mock-mockery": "^1.3",
  6373. "php-parallel-lint/php-parallel-lint": "^1.1",
  6374. "phpbench/phpbench": "^1.0",
  6375. "phpstan/extension-installer": "^1.0",
  6376. "phpstan/phpstan": "^0.12",
  6377. "phpstan/phpstan-mockery": "^0.12",
  6378. "phpstan/phpstan-phpunit": "^0.12",
  6379. "phpunit/phpunit": "^8.5 || ^9",
  6380. "slevomat/coding-standard": "^7.0",
  6381. "squizlabs/php_codesniffer": "^3.5",
  6382. "vimeo/psalm": "^4.9"
  6383. },
  6384. "suggest": {
  6385. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6386. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6387. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6388. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6389. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6390. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6391. },
  6392. "type": "library",
  6393. "extra": {
  6394. "captainhook": {
  6395. "force-install": true
  6396. }
  6397. },
  6398. "autoload": {
  6399. "files": [
  6400. "src/functions.php"
  6401. ],
  6402. "psr-4": {
  6403. "Ramsey\\Uuid\\": "src/"
  6404. }
  6405. },
  6406. "notification-url": "https://packagist.org/downloads/",
  6407. "license": [
  6408. "MIT"
  6409. ],
  6410. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6411. "keywords": [
  6412. "guid",
  6413. "identifier",
  6414. "uuid"
  6415. ],
  6416. "support": {
  6417. "issues": "https://github.com/ramsey/uuid/issues",
  6418. "source": "https://github.com/ramsey/uuid/tree/4.4.0"
  6419. },
  6420. "funding": [
  6421. {
  6422. "url": "https://github.com/ramsey",
  6423. "type": "github"
  6424. },
  6425. {
  6426. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6427. "type": "tidelift"
  6428. }
  6429. ],
  6430. "time": "2022-08-05T17:58:37+00:00"
  6431. },
  6432. {
  6433. "name": "socialiteproviders/facebook",
  6434. "version": "4.1.0",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6438. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6443. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6444. "shasum": "",
  6445. "mirrors": [
  6446. {
  6447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6448. "preferred": true
  6449. }
  6450. ]
  6451. },
  6452. "require": {
  6453. "ext-json": "*",
  6454. "php": "^7.2 || ^8.0",
  6455. "socialiteproviders/manager": "~4.0"
  6456. },
  6457. "type": "library",
  6458. "autoload": {
  6459. "psr-4": {
  6460. "SocialiteProviders\\Facebook\\": ""
  6461. }
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "MIT"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Oleksandr Prypkhan (Alex Wells)",
  6470. "email": "autaut03@googlemail.com"
  6471. }
  6472. ],
  6473. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6474. "support": {
  6475. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6476. },
  6477. "time": "2020-12-01T23:10:59+00:00"
  6478. },
  6479. {
  6480. "name": "socialiteproviders/manager",
  6481. "version": "v4.1.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/SocialiteProviders/Manager.git",
  6485. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6490. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6491. "shasum": "",
  6492. "mirrors": [
  6493. {
  6494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6495. "preferred": true
  6496. }
  6497. ]
  6498. },
  6499. "require": {
  6500. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6501. "laravel/socialite": "~4.0 || ~5.0",
  6502. "php": "^7.2 || ^8.0"
  6503. },
  6504. "require-dev": {
  6505. "mockery/mockery": "^1.2",
  6506. "phpunit/phpunit": "^6.0 || ^9.0"
  6507. },
  6508. "type": "library",
  6509. "extra": {
  6510. "laravel": {
  6511. "providers": [
  6512. "SocialiteProviders\\Manager\\ServiceProvider"
  6513. ]
  6514. }
  6515. },
  6516. "autoload": {
  6517. "psr-4": {
  6518. "SocialiteProviders\\Manager\\": "src/"
  6519. }
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "MIT"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Andy Wendt",
  6528. "email": "andy@awendt.com"
  6529. },
  6530. {
  6531. "name": "Anton Komarev",
  6532. "email": "a.komarev@cybercog.su"
  6533. },
  6534. {
  6535. "name": "Miguel Piedrafita",
  6536. "email": "soy@miguelpiedrafita.com"
  6537. },
  6538. {
  6539. "name": "atymic",
  6540. "email": "atymicq@gmail.com",
  6541. "homepage": "https://atymic.dev"
  6542. }
  6543. ],
  6544. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6545. "homepage": "https://socialiteproviders.com",
  6546. "keywords": [
  6547. "laravel",
  6548. "manager",
  6549. "oauth",
  6550. "providers",
  6551. "socialite"
  6552. ],
  6553. "support": {
  6554. "issues": "https://github.com/socialiteproviders/manager/issues",
  6555. "source": "https://github.com/socialiteproviders/manager"
  6556. },
  6557. "time": "2022-01-23T22:40:23+00:00"
  6558. },
  6559. {
  6560. "name": "socialiteproviders/weixin",
  6561. "version": "4.1.0",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6565. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6570. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6571. "shasum": "",
  6572. "mirrors": [
  6573. {
  6574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6575. "preferred": true
  6576. }
  6577. ]
  6578. },
  6579. "require": {
  6580. "ext-json": "*",
  6581. "php": "^7.2 || ^8.0",
  6582. "socialiteproviders/manager": "~4.0"
  6583. },
  6584. "type": "library",
  6585. "autoload": {
  6586. "psr-4": {
  6587. "SocialiteProviders\\Weixin\\": ""
  6588. }
  6589. },
  6590. "notification-url": "https://packagist.org/downloads/",
  6591. "license": [
  6592. "MIT"
  6593. ],
  6594. "authors": [
  6595. {
  6596. "name": "xyxu",
  6597. "email": "techxu@gmail.com"
  6598. },
  6599. {
  6600. "name": "xiami",
  6601. "email": "jhdxr@php.net"
  6602. }
  6603. ],
  6604. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6605. "support": {
  6606. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6607. },
  6608. "time": "2020-12-01T23:10:59+00:00"
  6609. },
  6610. {
  6611. "name": "spatie/eloquent-sortable",
  6612. "version": "4.0.1",
  6613. "source": {
  6614. "type": "git",
  6615. "url": "https://github.com/spatie/eloquent-sortable.git",
  6616. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  6617. },
  6618. "dist": {
  6619. "type": "zip",
  6620. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6621. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6622. "shasum": "",
  6623. "mirrors": [
  6624. {
  6625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6626. "preferred": true
  6627. }
  6628. ]
  6629. },
  6630. "require": {
  6631. "illuminate/database": "^8.0|^9.0",
  6632. "illuminate/support": "^8.0|^9.0",
  6633. "php": "^8.0",
  6634. "spatie/laravel-package-tools": "^1.9"
  6635. },
  6636. "require-dev": {
  6637. "orchestra/testbench": "^6.0|^7.0",
  6638. "phpunit/phpunit": "^9.5"
  6639. },
  6640. "type": "library",
  6641. "extra": {
  6642. "laravel": {
  6643. "providers": [
  6644. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6645. ]
  6646. }
  6647. },
  6648. "autoload": {
  6649. "psr-4": {
  6650. "Spatie\\EloquentSortable\\": "src/"
  6651. }
  6652. },
  6653. "notification-url": "https://packagist.org/downloads/",
  6654. "license": [
  6655. "MIT"
  6656. ],
  6657. "authors": [
  6658. {
  6659. "name": "Freek Van der Herten",
  6660. "email": "freek@spatie.be"
  6661. }
  6662. ],
  6663. "description": "Sortable behaviour for eloquent models",
  6664. "homepage": "https://github.com/spatie/eloquent-sortable",
  6665. "keywords": [
  6666. "behaviour",
  6667. "eloquent",
  6668. "laravel",
  6669. "model",
  6670. "sort",
  6671. "sortable"
  6672. ],
  6673. "support": {
  6674. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6675. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://spatie.be/open-source/support-us",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/spatie",
  6684. "type": "github"
  6685. }
  6686. ],
  6687. "time": "2022-01-21T08:32:41+00:00"
  6688. },
  6689. {
  6690. "name": "spatie/laravel-package-tools",
  6691. "version": "1.12.1",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/spatie/laravel-package-tools.git",
  6695. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357",
  6700. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357",
  6701. "shasum": "",
  6702. "mirrors": [
  6703. {
  6704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6705. "preferred": true
  6706. }
  6707. ]
  6708. },
  6709. "require": {
  6710. "illuminate/contracts": "^7.0|^8.0|^9.0",
  6711. "php": "^7.4|^8.0"
  6712. },
  6713. "require-dev": {
  6714. "mockery/mockery": "^1.4",
  6715. "orchestra/testbench": "^5.0|^6.23|^7.0",
  6716. "phpunit/phpunit": "^9.4",
  6717. "spatie/test-time": "^1.2"
  6718. },
  6719. "type": "library",
  6720. "autoload": {
  6721. "psr-4": {
  6722. "Spatie\\LaravelPackageTools\\": "src"
  6723. }
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Freek Van der Herten",
  6732. "email": "freek@spatie.be",
  6733. "role": "Developer"
  6734. }
  6735. ],
  6736. "description": "Tools for creating Laravel packages",
  6737. "homepage": "https://github.com/spatie/laravel-package-tools",
  6738. "keywords": [
  6739. "laravel-package-tools",
  6740. "spatie"
  6741. ],
  6742. "support": {
  6743. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6744. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://github.com/spatie",
  6749. "type": "github"
  6750. }
  6751. ],
  6752. "time": "2022-06-28T14:29:26+00:00"
  6753. },
  6754. {
  6755. "name": "stella-maris/clock",
  6756. "version": "0.1.5",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "git@gitlab.com:stella-maris/clock.git",
  6760. "reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=447879c53ca0b2a762cdbfba5e76ccf4deca9158",
  6765. "reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158",
  6766. "shasum": "",
  6767. "mirrors": [
  6768. {
  6769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6770. "preferred": true
  6771. }
  6772. ]
  6773. },
  6774. "require": {
  6775. "php": "^7.0|^8.0"
  6776. },
  6777. "type": "library",
  6778. "autoload": {
  6779. "psr-4": {
  6780. "StellaMaris\\Clock\\": "src"
  6781. }
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "MIT"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Andreas Heigl",
  6790. "role": "Maintainer"
  6791. }
  6792. ],
  6793. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6794. "homepage": "https://gitlab.com/stella-maris/clock",
  6795. "keywords": [
  6796. "clock",
  6797. "datetime",
  6798. "point in time",
  6799. "psr20"
  6800. ],
  6801. "time": "2022-08-05T07:21:25+00:00"
  6802. },
  6803. {
  6804. "name": "stomp-php/stomp-php",
  6805. "version": "5.0.0",
  6806. "source": {
  6807. "type": "git",
  6808. "url": "https://github.com/stomp-php/stomp-php.git",
  6809. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  6810. },
  6811. "dist": {
  6812. "type": "zip",
  6813. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6814. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6815. "shasum": "",
  6816. "mirrors": [
  6817. {
  6818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6819. "preferred": true
  6820. }
  6821. ]
  6822. },
  6823. "require": {
  6824. "php": "^7.3|^8.0"
  6825. },
  6826. "require-dev": {
  6827. "phpunit/phpunit": "^9.5"
  6828. },
  6829. "type": "library",
  6830. "autoload": {
  6831. "psr-4": {
  6832. "Stomp\\": "src/"
  6833. }
  6834. },
  6835. "notification-url": "https://packagist.org/downloads/",
  6836. "license": [
  6837. "Apache-2.0"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "Dejan Bosnanac",
  6842. "email": "dejan@nighttale.net",
  6843. "homepage": "http://www.nighttale.net"
  6844. },
  6845. {
  6846. "name": "Sören Rohweder",
  6847. "email": "s.rohweder@blage.net",
  6848. "homepage": "http://www.monofone.de"
  6849. },
  6850. {
  6851. "name": "Jens Radtke",
  6852. "email": "swefl@fin-sn.de",
  6853. "homepage": "http://www.fin-sn.de"
  6854. }
  6855. ],
  6856. "description": "stomp support for PHP",
  6857. "homepage": "http://github.com/stomp-php/stomp-php",
  6858. "keywords": [
  6859. "activeMQ",
  6860. "apollomq",
  6861. "jms",
  6862. "messaging",
  6863. "rabbitmq",
  6864. "stomp"
  6865. ],
  6866. "support": {
  6867. "issues": "https://github.com/stomp-php/stomp-php/issues",
  6868. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  6869. },
  6870. "funding": [
  6871. {
  6872. "url": "https://github.com/jmglsn",
  6873. "type": "github"
  6874. },
  6875. {
  6876. "url": "https://github.com/staabm",
  6877. "type": "github"
  6878. }
  6879. ],
  6880. "time": "2021-02-02T19:25:59+00:00"
  6881. },
  6882. {
  6883. "name": "swiftmailer/swiftmailer",
  6884. "version": "v6.3.0",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6888. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6893. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6894. "shasum": "",
  6895. "mirrors": [
  6896. {
  6897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6898. "preferred": true
  6899. }
  6900. ]
  6901. },
  6902. "require": {
  6903. "egulias/email-validator": "^2.0|^3.1",
  6904. "php": ">=7.0.0",
  6905. "symfony/polyfill-iconv": "^1.0",
  6906. "symfony/polyfill-intl-idn": "^1.10",
  6907. "symfony/polyfill-mbstring": "^1.0"
  6908. },
  6909. "require-dev": {
  6910. "mockery/mockery": "^1.0",
  6911. "symfony/phpunit-bridge": "^4.4|^5.4"
  6912. },
  6913. "suggest": {
  6914. "ext-intl": "Needed to support internationalized email addresses"
  6915. },
  6916. "type": "library",
  6917. "extra": {
  6918. "branch-alias": {
  6919. "dev-master": "6.2-dev"
  6920. }
  6921. },
  6922. "autoload": {
  6923. "files": [
  6924. "lib/swift_required.php"
  6925. ]
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Chris Corbyn"
  6934. },
  6935. {
  6936. "name": "Fabien Potencier",
  6937. "email": "fabien@symfony.com"
  6938. }
  6939. ],
  6940. "description": "Swiftmailer, free feature-rich PHP mailer",
  6941. "homepage": "https://swiftmailer.symfony.com",
  6942. "keywords": [
  6943. "email",
  6944. "mail",
  6945. "mailer"
  6946. ],
  6947. "support": {
  6948. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6949. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6950. },
  6951. "funding": [
  6952. {
  6953. "url": "https://github.com/fabpot",
  6954. "type": "github"
  6955. },
  6956. {
  6957. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6958. "type": "tidelift"
  6959. }
  6960. ],
  6961. "abandoned": "symfony/mailer",
  6962. "time": "2021-10-18T15:26:12+00:00"
  6963. },
  6964. {
  6965. "name": "symfony/cache",
  6966. "version": "v5.4.11",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/symfony/cache.git",
  6970. "reference": "5a0fff46df349f0db3fe242263451fddf5277362"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/symfony/cache/zipball/5a0fff46df349f0db3fe242263451fddf5277362",
  6975. "reference": "5a0fff46df349f0db3fe242263451fddf5277362",
  6976. "shasum": "",
  6977. "mirrors": [
  6978. {
  6979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6980. "preferred": true
  6981. }
  6982. ]
  6983. },
  6984. "require": {
  6985. "php": ">=7.2.5",
  6986. "psr/cache": "^1.0|^2.0",
  6987. "psr/log": "^1.1|^2|^3",
  6988. "symfony/cache-contracts": "^1.1.7|^2",
  6989. "symfony/deprecation-contracts": "^2.1|^3",
  6990. "symfony/polyfill-php73": "^1.9",
  6991. "symfony/polyfill-php80": "^1.16",
  6992. "symfony/service-contracts": "^1.1|^2|^3",
  6993. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6994. },
  6995. "conflict": {
  6996. "doctrine/dbal": "<2.13.1",
  6997. "symfony/dependency-injection": "<4.4",
  6998. "symfony/http-kernel": "<4.4",
  6999. "symfony/var-dumper": "<4.4"
  7000. },
  7001. "provide": {
  7002. "psr/cache-implementation": "1.0|2.0",
  7003. "psr/simple-cache-implementation": "1.0|2.0",
  7004. "symfony/cache-implementation": "1.0|2.0"
  7005. },
  7006. "require-dev": {
  7007. "cache/integration-tests": "dev-master",
  7008. "doctrine/cache": "^1.6|^2.0",
  7009. "doctrine/dbal": "^2.13.1|^3.0",
  7010. "predis/predis": "^1.1",
  7011. "psr/simple-cache": "^1.0|^2.0",
  7012. "symfony/config": "^4.4|^5.0|^6.0",
  7013. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7014. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7015. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7016. "symfony/messenger": "^4.4|^5.0|^6.0",
  7017. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7018. },
  7019. "type": "library",
  7020. "autoload": {
  7021. "psr-4": {
  7022. "Symfony\\Component\\Cache\\": ""
  7023. },
  7024. "exclude-from-classmap": [
  7025. "/Tests/"
  7026. ]
  7027. },
  7028. "notification-url": "https://packagist.org/downloads/",
  7029. "license": [
  7030. "MIT"
  7031. ],
  7032. "authors": [
  7033. {
  7034. "name": "Nicolas Grekas",
  7035. "email": "p@tchwork.com"
  7036. },
  7037. {
  7038. "name": "Symfony Community",
  7039. "homepage": "https://symfony.com/contributors"
  7040. }
  7041. ],
  7042. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7043. "homepage": "https://symfony.com",
  7044. "keywords": [
  7045. "caching",
  7046. "psr6"
  7047. ],
  7048. "support": {
  7049. "source": "https://github.com/symfony/cache/tree/v5.4.11"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://symfony.com/sponsor",
  7054. "type": "custom"
  7055. },
  7056. {
  7057. "url": "https://github.com/fabpot",
  7058. "type": "github"
  7059. },
  7060. {
  7061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7062. "type": "tidelift"
  7063. }
  7064. ],
  7065. "time": "2022-07-28T15:25:17+00:00"
  7066. },
  7067. {
  7068. "name": "symfony/cache-contracts",
  7069. "version": "v2.5.2",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/symfony/cache-contracts.git",
  7073. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7078. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7079. "shasum": "",
  7080. "mirrors": [
  7081. {
  7082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7083. "preferred": true
  7084. }
  7085. ]
  7086. },
  7087. "require": {
  7088. "php": ">=7.2.5",
  7089. "psr/cache": "^1.0|^2.0|^3.0"
  7090. },
  7091. "suggest": {
  7092. "symfony/cache-implementation": ""
  7093. },
  7094. "type": "library",
  7095. "extra": {
  7096. "branch-alias": {
  7097. "dev-main": "2.5-dev"
  7098. },
  7099. "thanks": {
  7100. "name": "symfony/contracts",
  7101. "url": "https://github.com/symfony/contracts"
  7102. }
  7103. },
  7104. "autoload": {
  7105. "psr-4": {
  7106. "Symfony\\Contracts\\Cache\\": ""
  7107. }
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Nicolas Grekas",
  7116. "email": "p@tchwork.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Generic abstractions related to caching",
  7124. "homepage": "https://symfony.com",
  7125. "keywords": [
  7126. "abstractions",
  7127. "contracts",
  7128. "decoupling",
  7129. "interfaces",
  7130. "interoperability",
  7131. "standards"
  7132. ],
  7133. "support": {
  7134. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7135. },
  7136. "funding": [
  7137. {
  7138. "url": "https://symfony.com/sponsor",
  7139. "type": "custom"
  7140. },
  7141. {
  7142. "url": "https://github.com/fabpot",
  7143. "type": "github"
  7144. },
  7145. {
  7146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7147. "type": "tidelift"
  7148. }
  7149. ],
  7150. "time": "2022-01-02T09:53:40+00:00"
  7151. },
  7152. {
  7153. "name": "symfony/console",
  7154. "version": "v5.4.11",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/symfony/console.git",
  7158. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/symfony/console/zipball/535846c7ee6bc4dd027ca0d93220601456734b10",
  7163. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10",
  7164. "shasum": "",
  7165. "mirrors": [
  7166. {
  7167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7168. "preferred": true
  7169. }
  7170. ]
  7171. },
  7172. "require": {
  7173. "php": ">=7.2.5",
  7174. "symfony/deprecation-contracts": "^2.1|^3",
  7175. "symfony/polyfill-mbstring": "~1.0",
  7176. "symfony/polyfill-php73": "^1.9",
  7177. "symfony/polyfill-php80": "^1.16",
  7178. "symfony/service-contracts": "^1.1|^2|^3",
  7179. "symfony/string": "^5.1|^6.0"
  7180. },
  7181. "conflict": {
  7182. "psr/log": ">=3",
  7183. "symfony/dependency-injection": "<4.4",
  7184. "symfony/dotenv": "<5.1",
  7185. "symfony/event-dispatcher": "<4.4",
  7186. "symfony/lock": "<4.4",
  7187. "symfony/process": "<4.4"
  7188. },
  7189. "provide": {
  7190. "psr/log-implementation": "1.0|2.0"
  7191. },
  7192. "require-dev": {
  7193. "psr/log": "^1|^2",
  7194. "symfony/config": "^4.4|^5.0|^6.0",
  7195. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7196. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7197. "symfony/lock": "^4.4|^5.0|^6.0",
  7198. "symfony/process": "^4.4|^5.0|^6.0",
  7199. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7200. },
  7201. "suggest": {
  7202. "psr/log": "For using the console logger",
  7203. "symfony/event-dispatcher": "",
  7204. "symfony/lock": "",
  7205. "symfony/process": ""
  7206. },
  7207. "type": "library",
  7208. "autoload": {
  7209. "psr-4": {
  7210. "Symfony\\Component\\Console\\": ""
  7211. },
  7212. "exclude-from-classmap": [
  7213. "/Tests/"
  7214. ]
  7215. },
  7216. "notification-url": "https://packagist.org/downloads/",
  7217. "license": [
  7218. "MIT"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "Fabien Potencier",
  7223. "email": "fabien@symfony.com"
  7224. },
  7225. {
  7226. "name": "Symfony Community",
  7227. "homepage": "https://symfony.com/contributors"
  7228. }
  7229. ],
  7230. "description": "Eases the creation of beautiful and testable command line interfaces",
  7231. "homepage": "https://symfony.com",
  7232. "keywords": [
  7233. "cli",
  7234. "command line",
  7235. "console",
  7236. "terminal"
  7237. ],
  7238. "support": {
  7239. "source": "https://github.com/symfony/console/tree/v5.4.11"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://symfony.com/sponsor",
  7244. "type": "custom"
  7245. },
  7246. {
  7247. "url": "https://github.com/fabpot",
  7248. "type": "github"
  7249. },
  7250. {
  7251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7252. "type": "tidelift"
  7253. }
  7254. ],
  7255. "time": "2022-07-22T10:42:43+00:00"
  7256. },
  7257. {
  7258. "name": "symfony/css-selector",
  7259. "version": "v6.0.11",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/symfony/css-selector.git",
  7263. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  7268. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  7269. "shasum": "",
  7270. "mirrors": [
  7271. {
  7272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7273. "preferred": true
  7274. }
  7275. ]
  7276. },
  7277. "require": {
  7278. "php": ">=8.0.2"
  7279. },
  7280. "type": "library",
  7281. "autoload": {
  7282. "psr-4": {
  7283. "Symfony\\Component\\CssSelector\\": ""
  7284. },
  7285. "exclude-from-classmap": [
  7286. "/Tests/"
  7287. ]
  7288. },
  7289. "notification-url": "https://packagist.org/downloads/",
  7290. "license": [
  7291. "MIT"
  7292. ],
  7293. "authors": [
  7294. {
  7295. "name": "Fabien Potencier",
  7296. "email": "fabien@symfony.com"
  7297. },
  7298. {
  7299. "name": "Jean-François Simon",
  7300. "email": "jeanfrancois.simon@sensiolabs.com"
  7301. },
  7302. {
  7303. "name": "Symfony Community",
  7304. "homepage": "https://symfony.com/contributors"
  7305. }
  7306. ],
  7307. "description": "Converts CSS selectors to XPath expressions",
  7308. "homepage": "https://symfony.com",
  7309. "support": {
  7310. "source": "https://github.com/symfony/css-selector/tree/v6.0.11"
  7311. },
  7312. "funding": [
  7313. {
  7314. "url": "https://symfony.com/sponsor",
  7315. "type": "custom"
  7316. },
  7317. {
  7318. "url": "https://github.com/fabpot",
  7319. "type": "github"
  7320. },
  7321. {
  7322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7323. "type": "tidelift"
  7324. }
  7325. ],
  7326. "time": "2022-06-27T17:10:44+00:00"
  7327. },
  7328. {
  7329. "name": "symfony/deprecation-contracts",
  7330. "version": "v3.0.2",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://github.com/symfony/deprecation-contracts.git",
  7334. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7339. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7340. "shasum": "",
  7341. "mirrors": [
  7342. {
  7343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7344. "preferred": true
  7345. }
  7346. ]
  7347. },
  7348. "require": {
  7349. "php": ">=8.0.2"
  7350. },
  7351. "type": "library",
  7352. "extra": {
  7353. "branch-alias": {
  7354. "dev-main": "3.0-dev"
  7355. },
  7356. "thanks": {
  7357. "name": "symfony/contracts",
  7358. "url": "https://github.com/symfony/contracts"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "files": [
  7363. "function.php"
  7364. ]
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "license": [
  7368. "MIT"
  7369. ],
  7370. "authors": [
  7371. {
  7372. "name": "Nicolas Grekas",
  7373. "email": "p@tchwork.com"
  7374. },
  7375. {
  7376. "name": "Symfony Community",
  7377. "homepage": "https://symfony.com/contributors"
  7378. }
  7379. ],
  7380. "description": "A generic function and convention to trigger deprecation notices",
  7381. "homepage": "https://symfony.com",
  7382. "support": {
  7383. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7384. },
  7385. "funding": [
  7386. {
  7387. "url": "https://symfony.com/sponsor",
  7388. "type": "custom"
  7389. },
  7390. {
  7391. "url": "https://github.com/fabpot",
  7392. "type": "github"
  7393. },
  7394. {
  7395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7396. "type": "tidelift"
  7397. }
  7398. ],
  7399. "time": "2022-01-02T09:55:41+00:00"
  7400. },
  7401. {
  7402. "name": "symfony/error-handler",
  7403. "version": "v5.4.11",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/symfony/error-handler.git",
  7407. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  7412. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  7413. "shasum": "",
  7414. "mirrors": [
  7415. {
  7416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7417. "preferred": true
  7418. }
  7419. ]
  7420. },
  7421. "require": {
  7422. "php": ">=7.2.5",
  7423. "psr/log": "^1|^2|^3",
  7424. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7425. },
  7426. "require-dev": {
  7427. "symfony/deprecation-contracts": "^2.1|^3",
  7428. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7429. "symfony/serializer": "^4.4|^5.0|^6.0"
  7430. },
  7431. "bin": [
  7432. "Resources/bin/patch-type-declarations"
  7433. ],
  7434. "type": "library",
  7435. "autoload": {
  7436. "psr-4": {
  7437. "Symfony\\Component\\ErrorHandler\\": ""
  7438. },
  7439. "exclude-from-classmap": [
  7440. "/Tests/"
  7441. ]
  7442. },
  7443. "notification-url": "https://packagist.org/downloads/",
  7444. "license": [
  7445. "MIT"
  7446. ],
  7447. "authors": [
  7448. {
  7449. "name": "Fabien Potencier",
  7450. "email": "fabien@symfony.com"
  7451. },
  7452. {
  7453. "name": "Symfony Community",
  7454. "homepage": "https://symfony.com/contributors"
  7455. }
  7456. ],
  7457. "description": "Provides tools to manage errors and ease debugging PHP code",
  7458. "homepage": "https://symfony.com",
  7459. "support": {
  7460. "source": "https://github.com/symfony/error-handler/tree/v5.4.11"
  7461. },
  7462. "funding": [
  7463. {
  7464. "url": "https://symfony.com/sponsor",
  7465. "type": "custom"
  7466. },
  7467. {
  7468. "url": "https://github.com/fabpot",
  7469. "type": "github"
  7470. },
  7471. {
  7472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7473. "type": "tidelift"
  7474. }
  7475. ],
  7476. "time": "2022-07-29T07:37:50+00:00"
  7477. },
  7478. {
  7479. "name": "symfony/event-dispatcher",
  7480. "version": "v5.4.9",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/symfony/event-dispatcher.git",
  7484. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7489. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7490. "shasum": "",
  7491. "mirrors": [
  7492. {
  7493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7494. "preferred": true
  7495. }
  7496. ]
  7497. },
  7498. "require": {
  7499. "php": ">=7.2.5",
  7500. "symfony/deprecation-contracts": "^2.1|^3",
  7501. "symfony/event-dispatcher-contracts": "^2|^3",
  7502. "symfony/polyfill-php80": "^1.16"
  7503. },
  7504. "conflict": {
  7505. "symfony/dependency-injection": "<4.4"
  7506. },
  7507. "provide": {
  7508. "psr/event-dispatcher-implementation": "1.0",
  7509. "symfony/event-dispatcher-implementation": "2.0"
  7510. },
  7511. "require-dev": {
  7512. "psr/log": "^1|^2|^3",
  7513. "symfony/config": "^4.4|^5.0|^6.0",
  7514. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7515. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7516. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7517. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7518. "symfony/service-contracts": "^1.1|^2|^3",
  7519. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7520. },
  7521. "suggest": {
  7522. "symfony/dependency-injection": "",
  7523. "symfony/http-kernel": ""
  7524. },
  7525. "type": "library",
  7526. "autoload": {
  7527. "psr-4": {
  7528. "Symfony\\Component\\EventDispatcher\\": ""
  7529. },
  7530. "exclude-from-classmap": [
  7531. "/Tests/"
  7532. ]
  7533. },
  7534. "notification-url": "https://packagist.org/downloads/",
  7535. "license": [
  7536. "MIT"
  7537. ],
  7538. "authors": [
  7539. {
  7540. "name": "Fabien Potencier",
  7541. "email": "fabien@symfony.com"
  7542. },
  7543. {
  7544. "name": "Symfony Community",
  7545. "homepage": "https://symfony.com/contributors"
  7546. }
  7547. ],
  7548. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7549. "homepage": "https://symfony.com",
  7550. "support": {
  7551. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7552. },
  7553. "funding": [
  7554. {
  7555. "url": "https://symfony.com/sponsor",
  7556. "type": "custom"
  7557. },
  7558. {
  7559. "url": "https://github.com/fabpot",
  7560. "type": "github"
  7561. },
  7562. {
  7563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7564. "type": "tidelift"
  7565. }
  7566. ],
  7567. "time": "2022-05-05T16:45:39+00:00"
  7568. },
  7569. {
  7570. "name": "symfony/event-dispatcher-contracts",
  7571. "version": "v3.0.2",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7575. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7580. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7581. "shasum": "",
  7582. "mirrors": [
  7583. {
  7584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7585. "preferred": true
  7586. }
  7587. ]
  7588. },
  7589. "require": {
  7590. "php": ">=8.0.2",
  7591. "psr/event-dispatcher": "^1"
  7592. },
  7593. "suggest": {
  7594. "symfony/event-dispatcher-implementation": ""
  7595. },
  7596. "type": "library",
  7597. "extra": {
  7598. "branch-alias": {
  7599. "dev-main": "3.0-dev"
  7600. },
  7601. "thanks": {
  7602. "name": "symfony/contracts",
  7603. "url": "https://github.com/symfony/contracts"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "psr-4": {
  7608. "Symfony\\Contracts\\EventDispatcher\\": ""
  7609. }
  7610. },
  7611. "notification-url": "https://packagist.org/downloads/",
  7612. "license": [
  7613. "MIT"
  7614. ],
  7615. "authors": [
  7616. {
  7617. "name": "Nicolas Grekas",
  7618. "email": "p@tchwork.com"
  7619. },
  7620. {
  7621. "name": "Symfony Community",
  7622. "homepage": "https://symfony.com/contributors"
  7623. }
  7624. ],
  7625. "description": "Generic abstractions related to dispatching event",
  7626. "homepage": "https://symfony.com",
  7627. "keywords": [
  7628. "abstractions",
  7629. "contracts",
  7630. "decoupling",
  7631. "interfaces",
  7632. "interoperability",
  7633. "standards"
  7634. ],
  7635. "support": {
  7636. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7637. },
  7638. "funding": [
  7639. {
  7640. "url": "https://symfony.com/sponsor",
  7641. "type": "custom"
  7642. },
  7643. {
  7644. "url": "https://github.com/fabpot",
  7645. "type": "github"
  7646. },
  7647. {
  7648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7649. "type": "tidelift"
  7650. }
  7651. ],
  7652. "time": "2022-01-02T09:55:41+00:00"
  7653. },
  7654. {
  7655. "name": "symfony/finder",
  7656. "version": "v5.4.11",
  7657. "source": {
  7658. "type": "git",
  7659. "url": "https://github.com/symfony/finder.git",
  7660. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  7661. },
  7662. "dist": {
  7663. "type": "zip",
  7664. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  7665. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  7666. "shasum": "",
  7667. "mirrors": [
  7668. {
  7669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7670. "preferred": true
  7671. }
  7672. ]
  7673. },
  7674. "require": {
  7675. "php": ">=7.2.5",
  7676. "symfony/deprecation-contracts": "^2.1|^3",
  7677. "symfony/polyfill-php80": "^1.16"
  7678. },
  7679. "type": "library",
  7680. "autoload": {
  7681. "psr-4": {
  7682. "Symfony\\Component\\Finder\\": ""
  7683. },
  7684. "exclude-from-classmap": [
  7685. "/Tests/"
  7686. ]
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Fabien Potencier",
  7695. "email": "fabien@symfony.com"
  7696. },
  7697. {
  7698. "name": "Symfony Community",
  7699. "homepage": "https://symfony.com/contributors"
  7700. }
  7701. ],
  7702. "description": "Finds files and directories via an intuitive fluent interface",
  7703. "homepage": "https://symfony.com",
  7704. "support": {
  7705. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  7706. },
  7707. "funding": [
  7708. {
  7709. "url": "https://symfony.com/sponsor",
  7710. "type": "custom"
  7711. },
  7712. {
  7713. "url": "https://github.com/fabpot",
  7714. "type": "github"
  7715. },
  7716. {
  7717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7718. "type": "tidelift"
  7719. }
  7720. ],
  7721. "time": "2022-07-29T07:37:50+00:00"
  7722. },
  7723. {
  7724. "name": "symfony/http-foundation",
  7725. "version": "v5.4.11",
  7726. "source": {
  7727. "type": "git",
  7728. "url": "https://github.com/symfony/http-foundation.git",
  7729. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389"
  7730. },
  7731. "dist": {
  7732. "type": "zip",
  7733. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0a5868e0999e9d47859ba3d918548ff6943e6389",
  7734. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389",
  7735. "shasum": "",
  7736. "mirrors": [
  7737. {
  7738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7739. "preferred": true
  7740. }
  7741. ]
  7742. },
  7743. "require": {
  7744. "php": ">=7.2.5",
  7745. "symfony/deprecation-contracts": "^2.1|^3",
  7746. "symfony/polyfill-mbstring": "~1.1",
  7747. "symfony/polyfill-php80": "^1.16"
  7748. },
  7749. "require-dev": {
  7750. "predis/predis": "~1.0",
  7751. "symfony/cache": "^4.4|^5.0|^6.0",
  7752. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7753. "symfony/mime": "^4.4|^5.0|^6.0"
  7754. },
  7755. "suggest": {
  7756. "symfony/mime": "To use the file extension guesser"
  7757. },
  7758. "type": "library",
  7759. "autoload": {
  7760. "psr-4": {
  7761. "Symfony\\Component\\HttpFoundation\\": ""
  7762. },
  7763. "exclude-from-classmap": [
  7764. "/Tests/"
  7765. ]
  7766. },
  7767. "notification-url": "https://packagist.org/downloads/",
  7768. "license": [
  7769. "MIT"
  7770. ],
  7771. "authors": [
  7772. {
  7773. "name": "Fabien Potencier",
  7774. "email": "fabien@symfony.com"
  7775. },
  7776. {
  7777. "name": "Symfony Community",
  7778. "homepage": "https://symfony.com/contributors"
  7779. }
  7780. ],
  7781. "description": "Defines an object-oriented layer for the HTTP specification",
  7782. "homepage": "https://symfony.com",
  7783. "support": {
  7784. "source": "https://github.com/symfony/http-foundation/tree/v5.4.11"
  7785. },
  7786. "funding": [
  7787. {
  7788. "url": "https://symfony.com/sponsor",
  7789. "type": "custom"
  7790. },
  7791. {
  7792. "url": "https://github.com/fabpot",
  7793. "type": "github"
  7794. },
  7795. {
  7796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7797. "type": "tidelift"
  7798. }
  7799. ],
  7800. "time": "2022-07-20T13:00:38+00:00"
  7801. },
  7802. {
  7803. "name": "symfony/http-kernel",
  7804. "version": "v5.4.11",
  7805. "source": {
  7806. "type": "git",
  7807. "url": "https://github.com/symfony/http-kernel.git",
  7808. "reference": "4fd590a2ef3f62560dbbf6cea511995dd77321ee"
  7809. },
  7810. "dist": {
  7811. "type": "zip",
  7812. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4fd590a2ef3f62560dbbf6cea511995dd77321ee",
  7813. "reference": "4fd590a2ef3f62560dbbf6cea511995dd77321ee",
  7814. "shasum": "",
  7815. "mirrors": [
  7816. {
  7817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7818. "preferred": true
  7819. }
  7820. ]
  7821. },
  7822. "require": {
  7823. "php": ">=7.2.5",
  7824. "psr/log": "^1|^2",
  7825. "symfony/deprecation-contracts": "^2.1|^3",
  7826. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7827. "symfony/event-dispatcher": "^5.0|^6.0",
  7828. "symfony/http-foundation": "^5.3.7|^6.0",
  7829. "symfony/polyfill-ctype": "^1.8",
  7830. "symfony/polyfill-php73": "^1.9",
  7831. "symfony/polyfill-php80": "^1.16"
  7832. },
  7833. "conflict": {
  7834. "symfony/browser-kit": "<5.4",
  7835. "symfony/cache": "<5.0",
  7836. "symfony/config": "<5.0",
  7837. "symfony/console": "<4.4",
  7838. "symfony/dependency-injection": "<5.3",
  7839. "symfony/doctrine-bridge": "<5.0",
  7840. "symfony/form": "<5.0",
  7841. "symfony/http-client": "<5.0",
  7842. "symfony/mailer": "<5.0",
  7843. "symfony/messenger": "<5.0",
  7844. "symfony/translation": "<5.0",
  7845. "symfony/twig-bridge": "<5.0",
  7846. "symfony/validator": "<5.0",
  7847. "twig/twig": "<2.13"
  7848. },
  7849. "provide": {
  7850. "psr/log-implementation": "1.0|2.0"
  7851. },
  7852. "require-dev": {
  7853. "psr/cache": "^1.0|^2.0|^3.0",
  7854. "symfony/browser-kit": "^5.4|^6.0",
  7855. "symfony/config": "^5.0|^6.0",
  7856. "symfony/console": "^4.4|^5.0|^6.0",
  7857. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7858. "symfony/dependency-injection": "^5.3|^6.0",
  7859. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7860. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7861. "symfony/finder": "^4.4|^5.0|^6.0",
  7862. "symfony/http-client-contracts": "^1.1|^2|^3",
  7863. "symfony/process": "^4.4|^5.0|^6.0",
  7864. "symfony/routing": "^4.4|^5.0|^6.0",
  7865. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7866. "symfony/translation": "^4.4|^5.0|^6.0",
  7867. "symfony/translation-contracts": "^1.1|^2|^3",
  7868. "twig/twig": "^2.13|^3.0.4"
  7869. },
  7870. "suggest": {
  7871. "symfony/browser-kit": "",
  7872. "symfony/config": "",
  7873. "symfony/console": "",
  7874. "symfony/dependency-injection": ""
  7875. },
  7876. "type": "library",
  7877. "autoload": {
  7878. "psr-4": {
  7879. "Symfony\\Component\\HttpKernel\\": ""
  7880. },
  7881. "exclude-from-classmap": [
  7882. "/Tests/"
  7883. ]
  7884. },
  7885. "notification-url": "https://packagist.org/downloads/",
  7886. "license": [
  7887. "MIT"
  7888. ],
  7889. "authors": [
  7890. {
  7891. "name": "Fabien Potencier",
  7892. "email": "fabien@symfony.com"
  7893. },
  7894. {
  7895. "name": "Symfony Community",
  7896. "homepage": "https://symfony.com/contributors"
  7897. }
  7898. ],
  7899. "description": "Provides a structured process for converting a Request into a Response",
  7900. "homepage": "https://symfony.com",
  7901. "support": {
  7902. "source": "https://github.com/symfony/http-kernel/tree/v5.4.11"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://symfony.com/sponsor",
  7907. "type": "custom"
  7908. },
  7909. {
  7910. "url": "https://github.com/fabpot",
  7911. "type": "github"
  7912. },
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2022-07-29T12:30:22+00:00"
  7919. },
  7920. {
  7921. "name": "symfony/mime",
  7922. "version": "v5.4.11",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/symfony/mime.git",
  7926. "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/symfony/mime/zipball/3cd175cdcdb6db2e589e837dd46aff41027d9830",
  7931. "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830",
  7932. "shasum": "",
  7933. "mirrors": [
  7934. {
  7935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7936. "preferred": true
  7937. }
  7938. ]
  7939. },
  7940. "require": {
  7941. "php": ">=7.2.5",
  7942. "symfony/deprecation-contracts": "^2.1|^3",
  7943. "symfony/polyfill-intl-idn": "^1.10",
  7944. "symfony/polyfill-mbstring": "^1.0",
  7945. "symfony/polyfill-php80": "^1.16"
  7946. },
  7947. "conflict": {
  7948. "egulias/email-validator": "~3.0.0",
  7949. "phpdocumentor/reflection-docblock": "<3.2.2",
  7950. "phpdocumentor/type-resolver": "<1.4.0",
  7951. "symfony/mailer": "<4.4"
  7952. },
  7953. "require-dev": {
  7954. "egulias/email-validator": "^2.1.10|^3.1",
  7955. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7956. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7957. "symfony/property-access": "^4.4|^5.1|^6.0",
  7958. "symfony/property-info": "^4.4|^5.1|^6.0",
  7959. "symfony/serializer": "^5.2|^6.0"
  7960. },
  7961. "type": "library",
  7962. "autoload": {
  7963. "psr-4": {
  7964. "Symfony\\Component\\Mime\\": ""
  7965. },
  7966. "exclude-from-classmap": [
  7967. "/Tests/"
  7968. ]
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "MIT"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Fabien Potencier",
  7977. "email": "fabien@symfony.com"
  7978. },
  7979. {
  7980. "name": "Symfony Community",
  7981. "homepage": "https://symfony.com/contributors"
  7982. }
  7983. ],
  7984. "description": "Allows manipulating MIME messages",
  7985. "homepage": "https://symfony.com",
  7986. "keywords": [
  7987. "mime",
  7988. "mime-type"
  7989. ],
  7990. "support": {
  7991. "source": "https://github.com/symfony/mime/tree/v5.4.11"
  7992. },
  7993. "funding": [
  7994. {
  7995. "url": "https://symfony.com/sponsor",
  7996. "type": "custom"
  7997. },
  7998. {
  7999. "url": "https://github.com/fabpot",
  8000. "type": "github"
  8001. },
  8002. {
  8003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8004. "type": "tidelift"
  8005. }
  8006. ],
  8007. "time": "2022-07-20T11:34:24+00:00"
  8008. },
  8009. {
  8010. "name": "symfony/polyfill-ctype",
  8011. "version": "v1.26.0",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/symfony/polyfill-ctype.git",
  8015. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8020. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8021. "shasum": "",
  8022. "mirrors": [
  8023. {
  8024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8025. "preferred": true
  8026. }
  8027. ]
  8028. },
  8029. "require": {
  8030. "php": ">=7.1"
  8031. },
  8032. "provide": {
  8033. "ext-ctype": "*"
  8034. },
  8035. "suggest": {
  8036. "ext-ctype": "For best performance"
  8037. },
  8038. "type": "library",
  8039. "extra": {
  8040. "branch-alias": {
  8041. "dev-main": "1.26-dev"
  8042. },
  8043. "thanks": {
  8044. "name": "symfony/polyfill",
  8045. "url": "https://github.com/symfony/polyfill"
  8046. }
  8047. },
  8048. "autoload": {
  8049. "files": [
  8050. "bootstrap.php"
  8051. ],
  8052. "psr-4": {
  8053. "Symfony\\Polyfill\\Ctype\\": ""
  8054. }
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "MIT"
  8059. ],
  8060. "authors": [
  8061. {
  8062. "name": "Gert de Pagter",
  8063. "email": "BackEndTea@gmail.com"
  8064. },
  8065. {
  8066. "name": "Symfony Community",
  8067. "homepage": "https://symfony.com/contributors"
  8068. }
  8069. ],
  8070. "description": "Symfony polyfill for ctype functions",
  8071. "homepage": "https://symfony.com",
  8072. "keywords": [
  8073. "compatibility",
  8074. "ctype",
  8075. "polyfill",
  8076. "portable"
  8077. ],
  8078. "support": {
  8079. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8080. },
  8081. "funding": [
  8082. {
  8083. "url": "https://symfony.com/sponsor",
  8084. "type": "custom"
  8085. },
  8086. {
  8087. "url": "https://github.com/fabpot",
  8088. "type": "github"
  8089. },
  8090. {
  8091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8092. "type": "tidelift"
  8093. }
  8094. ],
  8095. "time": "2022-05-24T11:49:31+00:00"
  8096. },
  8097. {
  8098. "name": "symfony/polyfill-iconv",
  8099. "version": "v1.26.0",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/symfony/polyfill-iconv.git",
  8103. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8108. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8109. "shasum": "",
  8110. "mirrors": [
  8111. {
  8112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8113. "preferred": true
  8114. }
  8115. ]
  8116. },
  8117. "require": {
  8118. "php": ">=7.1"
  8119. },
  8120. "provide": {
  8121. "ext-iconv": "*"
  8122. },
  8123. "suggest": {
  8124. "ext-iconv": "For best performance"
  8125. },
  8126. "type": "library",
  8127. "extra": {
  8128. "branch-alias": {
  8129. "dev-main": "1.26-dev"
  8130. },
  8131. "thanks": {
  8132. "name": "symfony/polyfill",
  8133. "url": "https://github.com/symfony/polyfill"
  8134. }
  8135. },
  8136. "autoload": {
  8137. "files": [
  8138. "bootstrap.php"
  8139. ],
  8140. "psr-4": {
  8141. "Symfony\\Polyfill\\Iconv\\": ""
  8142. }
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "MIT"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Nicolas Grekas",
  8151. "email": "p@tchwork.com"
  8152. },
  8153. {
  8154. "name": "Symfony Community",
  8155. "homepage": "https://symfony.com/contributors"
  8156. }
  8157. ],
  8158. "description": "Symfony polyfill for the Iconv extension",
  8159. "homepage": "https://symfony.com",
  8160. "keywords": [
  8161. "compatibility",
  8162. "iconv",
  8163. "polyfill",
  8164. "portable",
  8165. "shim"
  8166. ],
  8167. "support": {
  8168. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8169. },
  8170. "funding": [
  8171. {
  8172. "url": "https://symfony.com/sponsor",
  8173. "type": "custom"
  8174. },
  8175. {
  8176. "url": "https://github.com/fabpot",
  8177. "type": "github"
  8178. },
  8179. {
  8180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8181. "type": "tidelift"
  8182. }
  8183. ],
  8184. "time": "2022-05-24T11:49:31+00:00"
  8185. },
  8186. {
  8187. "name": "symfony/polyfill-intl-grapheme",
  8188. "version": "v1.26.0",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8192. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8197. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8198. "shasum": "",
  8199. "mirrors": [
  8200. {
  8201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8202. "preferred": true
  8203. }
  8204. ]
  8205. },
  8206. "require": {
  8207. "php": ">=7.1"
  8208. },
  8209. "suggest": {
  8210. "ext-intl": "For best performance"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-main": "1.26-dev"
  8216. },
  8217. "thanks": {
  8218. "name": "symfony/polyfill",
  8219. "url": "https://github.com/symfony/polyfill"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "files": [
  8224. "bootstrap.php"
  8225. ],
  8226. "psr-4": {
  8227. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8228. }
  8229. },
  8230. "notification-url": "https://packagist.org/downloads/",
  8231. "license": [
  8232. "MIT"
  8233. ],
  8234. "authors": [
  8235. {
  8236. "name": "Nicolas Grekas",
  8237. "email": "p@tchwork.com"
  8238. },
  8239. {
  8240. "name": "Symfony Community",
  8241. "homepage": "https://symfony.com/contributors"
  8242. }
  8243. ],
  8244. "description": "Symfony polyfill for intl's grapheme_* functions",
  8245. "homepage": "https://symfony.com",
  8246. "keywords": [
  8247. "compatibility",
  8248. "grapheme",
  8249. "intl",
  8250. "polyfill",
  8251. "portable",
  8252. "shim"
  8253. ],
  8254. "support": {
  8255. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8256. },
  8257. "funding": [
  8258. {
  8259. "url": "https://symfony.com/sponsor",
  8260. "type": "custom"
  8261. },
  8262. {
  8263. "url": "https://github.com/fabpot",
  8264. "type": "github"
  8265. },
  8266. {
  8267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8268. "type": "tidelift"
  8269. }
  8270. ],
  8271. "time": "2022-05-24T11:49:31+00:00"
  8272. },
  8273. {
  8274. "name": "symfony/polyfill-intl-idn",
  8275. "version": "v1.26.0",
  8276. "source": {
  8277. "type": "git",
  8278. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8279. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8280. },
  8281. "dist": {
  8282. "type": "zip",
  8283. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8284. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8285. "shasum": "",
  8286. "mirrors": [
  8287. {
  8288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8289. "preferred": true
  8290. }
  8291. ]
  8292. },
  8293. "require": {
  8294. "php": ">=7.1",
  8295. "symfony/polyfill-intl-normalizer": "^1.10",
  8296. "symfony/polyfill-php72": "^1.10"
  8297. },
  8298. "suggest": {
  8299. "ext-intl": "For best performance"
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "branch-alias": {
  8304. "dev-main": "1.26-dev"
  8305. },
  8306. "thanks": {
  8307. "name": "symfony/polyfill",
  8308. "url": "https://github.com/symfony/polyfill"
  8309. }
  8310. },
  8311. "autoload": {
  8312. "files": [
  8313. "bootstrap.php"
  8314. ],
  8315. "psr-4": {
  8316. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8317. }
  8318. },
  8319. "notification-url": "https://packagist.org/downloads/",
  8320. "license": [
  8321. "MIT"
  8322. ],
  8323. "authors": [
  8324. {
  8325. "name": "Laurent Bassin",
  8326. "email": "laurent@bassin.info"
  8327. },
  8328. {
  8329. "name": "Trevor Rowbotham",
  8330. "email": "trevor.rowbotham@pm.me"
  8331. },
  8332. {
  8333. "name": "Symfony Community",
  8334. "homepage": "https://symfony.com/contributors"
  8335. }
  8336. ],
  8337. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8338. "homepage": "https://symfony.com",
  8339. "keywords": [
  8340. "compatibility",
  8341. "idn",
  8342. "intl",
  8343. "polyfill",
  8344. "portable",
  8345. "shim"
  8346. ],
  8347. "support": {
  8348. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8349. },
  8350. "funding": [
  8351. {
  8352. "url": "https://symfony.com/sponsor",
  8353. "type": "custom"
  8354. },
  8355. {
  8356. "url": "https://github.com/fabpot",
  8357. "type": "github"
  8358. },
  8359. {
  8360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8361. "type": "tidelift"
  8362. }
  8363. ],
  8364. "time": "2022-05-24T11:49:31+00:00"
  8365. },
  8366. {
  8367. "name": "symfony/polyfill-intl-normalizer",
  8368. "version": "v1.26.0",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8372. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8377. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8378. "shasum": "",
  8379. "mirrors": [
  8380. {
  8381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8382. "preferred": true
  8383. }
  8384. ]
  8385. },
  8386. "require": {
  8387. "php": ">=7.1"
  8388. },
  8389. "suggest": {
  8390. "ext-intl": "For best performance"
  8391. },
  8392. "type": "library",
  8393. "extra": {
  8394. "branch-alias": {
  8395. "dev-main": "1.26-dev"
  8396. },
  8397. "thanks": {
  8398. "name": "symfony/polyfill",
  8399. "url": "https://github.com/symfony/polyfill"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "files": [
  8404. "bootstrap.php"
  8405. ],
  8406. "psr-4": {
  8407. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8408. },
  8409. "classmap": [
  8410. "Resources/stubs"
  8411. ]
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Nicolas Grekas",
  8420. "email": "p@tchwork.com"
  8421. },
  8422. {
  8423. "name": "Symfony Community",
  8424. "homepage": "https://symfony.com/contributors"
  8425. }
  8426. ],
  8427. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8428. "homepage": "https://symfony.com",
  8429. "keywords": [
  8430. "compatibility",
  8431. "intl",
  8432. "normalizer",
  8433. "polyfill",
  8434. "portable",
  8435. "shim"
  8436. ],
  8437. "support": {
  8438. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8439. },
  8440. "funding": [
  8441. {
  8442. "url": "https://symfony.com/sponsor",
  8443. "type": "custom"
  8444. },
  8445. {
  8446. "url": "https://github.com/fabpot",
  8447. "type": "github"
  8448. },
  8449. {
  8450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8451. "type": "tidelift"
  8452. }
  8453. ],
  8454. "time": "2022-05-24T11:49:31+00:00"
  8455. },
  8456. {
  8457. "name": "symfony/polyfill-mbstring",
  8458. "version": "v1.26.0",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8462. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8467. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8468. "shasum": "",
  8469. "mirrors": [
  8470. {
  8471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8472. "preferred": true
  8473. }
  8474. ]
  8475. },
  8476. "require": {
  8477. "php": ">=7.1"
  8478. },
  8479. "provide": {
  8480. "ext-mbstring": "*"
  8481. },
  8482. "suggest": {
  8483. "ext-mbstring": "For best performance"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "branch-alias": {
  8488. "dev-main": "1.26-dev"
  8489. },
  8490. "thanks": {
  8491. "name": "symfony/polyfill",
  8492. "url": "https://github.com/symfony/polyfill"
  8493. }
  8494. },
  8495. "autoload": {
  8496. "files": [
  8497. "bootstrap.php"
  8498. ],
  8499. "psr-4": {
  8500. "Symfony\\Polyfill\\Mbstring\\": ""
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Nicolas Grekas",
  8510. "email": "p@tchwork.com"
  8511. },
  8512. {
  8513. "name": "Symfony Community",
  8514. "homepage": "https://symfony.com/contributors"
  8515. }
  8516. ],
  8517. "description": "Symfony polyfill for the Mbstring extension",
  8518. "homepage": "https://symfony.com",
  8519. "keywords": [
  8520. "compatibility",
  8521. "mbstring",
  8522. "polyfill",
  8523. "portable",
  8524. "shim"
  8525. ],
  8526. "support": {
  8527. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8528. },
  8529. "funding": [
  8530. {
  8531. "url": "https://symfony.com/sponsor",
  8532. "type": "custom"
  8533. },
  8534. {
  8535. "url": "https://github.com/fabpot",
  8536. "type": "github"
  8537. },
  8538. {
  8539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8540. "type": "tidelift"
  8541. }
  8542. ],
  8543. "time": "2022-05-24T11:49:31+00:00"
  8544. },
  8545. {
  8546. "name": "symfony/polyfill-php56",
  8547. "version": "v1.20.0",
  8548. "source": {
  8549. "type": "git",
  8550. "url": "https://github.com/symfony/polyfill-php56.git",
  8551. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8552. },
  8553. "dist": {
  8554. "type": "zip",
  8555. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8556. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8557. "shasum": "",
  8558. "mirrors": [
  8559. {
  8560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8561. "preferred": true
  8562. }
  8563. ]
  8564. },
  8565. "require": {
  8566. "php": ">=7.1"
  8567. },
  8568. "type": "metapackage",
  8569. "extra": {
  8570. "branch-alias": {
  8571. "dev-main": "1.20-dev"
  8572. },
  8573. "thanks": {
  8574. "name": "symfony/polyfill",
  8575. "url": "https://github.com/symfony/polyfill"
  8576. }
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Nicolas Grekas",
  8585. "email": "p@tchwork.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "https://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8593. "homepage": "https://symfony.com",
  8594. "keywords": [
  8595. "compatibility",
  8596. "polyfill",
  8597. "portable",
  8598. "shim"
  8599. ],
  8600. "support": {
  8601. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8602. },
  8603. "funding": [
  8604. {
  8605. "url": "https://symfony.com/sponsor",
  8606. "type": "custom"
  8607. },
  8608. {
  8609. "url": "https://github.com/fabpot",
  8610. "type": "github"
  8611. },
  8612. {
  8613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8614. "type": "tidelift"
  8615. }
  8616. ],
  8617. "time": "2020-10-23T14:02:19+00:00"
  8618. },
  8619. {
  8620. "name": "symfony/polyfill-php72",
  8621. "version": "v1.26.0",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/symfony/polyfill-php72.git",
  8625. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8630. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8631. "shasum": "",
  8632. "mirrors": [
  8633. {
  8634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8635. "preferred": true
  8636. }
  8637. ]
  8638. },
  8639. "require": {
  8640. "php": ">=7.1"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-main": "1.26-dev"
  8646. },
  8647. "thanks": {
  8648. "name": "symfony/polyfill",
  8649. "url": "https://github.com/symfony/polyfill"
  8650. }
  8651. },
  8652. "autoload": {
  8653. "files": [
  8654. "bootstrap.php"
  8655. ],
  8656. "psr-4": {
  8657. "Symfony\\Polyfill\\Php72\\": ""
  8658. }
  8659. },
  8660. "notification-url": "https://packagist.org/downloads/",
  8661. "license": [
  8662. "MIT"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Nicolas Grekas",
  8667. "email": "p@tchwork.com"
  8668. },
  8669. {
  8670. "name": "Symfony Community",
  8671. "homepage": "https://symfony.com/contributors"
  8672. }
  8673. ],
  8674. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8675. "homepage": "https://symfony.com",
  8676. "keywords": [
  8677. "compatibility",
  8678. "polyfill",
  8679. "portable",
  8680. "shim"
  8681. ],
  8682. "support": {
  8683. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  8684. },
  8685. "funding": [
  8686. {
  8687. "url": "https://symfony.com/sponsor",
  8688. "type": "custom"
  8689. },
  8690. {
  8691. "url": "https://github.com/fabpot",
  8692. "type": "github"
  8693. },
  8694. {
  8695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8696. "type": "tidelift"
  8697. }
  8698. ],
  8699. "time": "2022-05-24T11:49:31+00:00"
  8700. },
  8701. {
  8702. "name": "symfony/polyfill-php73",
  8703. "version": "v1.26.0",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/symfony/polyfill-php73.git",
  8707. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8712. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8713. "shasum": "",
  8714. "mirrors": [
  8715. {
  8716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8717. "preferred": true
  8718. }
  8719. ]
  8720. },
  8721. "require": {
  8722. "php": ">=7.1"
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-main": "1.26-dev"
  8728. },
  8729. "thanks": {
  8730. "name": "symfony/polyfill",
  8731. "url": "https://github.com/symfony/polyfill"
  8732. }
  8733. },
  8734. "autoload": {
  8735. "files": [
  8736. "bootstrap.php"
  8737. ],
  8738. "psr-4": {
  8739. "Symfony\\Polyfill\\Php73\\": ""
  8740. },
  8741. "classmap": [
  8742. "Resources/stubs"
  8743. ]
  8744. },
  8745. "notification-url": "https://packagist.org/downloads/",
  8746. "license": [
  8747. "MIT"
  8748. ],
  8749. "authors": [
  8750. {
  8751. "name": "Nicolas Grekas",
  8752. "email": "p@tchwork.com"
  8753. },
  8754. {
  8755. "name": "Symfony Community",
  8756. "homepage": "https://symfony.com/contributors"
  8757. }
  8758. ],
  8759. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8760. "homepage": "https://symfony.com",
  8761. "keywords": [
  8762. "compatibility",
  8763. "polyfill",
  8764. "portable",
  8765. "shim"
  8766. ],
  8767. "support": {
  8768. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  8769. },
  8770. "funding": [
  8771. {
  8772. "url": "https://symfony.com/sponsor",
  8773. "type": "custom"
  8774. },
  8775. {
  8776. "url": "https://github.com/fabpot",
  8777. "type": "github"
  8778. },
  8779. {
  8780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8781. "type": "tidelift"
  8782. }
  8783. ],
  8784. "time": "2022-05-24T11:49:31+00:00"
  8785. },
  8786. {
  8787. "name": "symfony/polyfill-php80",
  8788. "version": "v1.26.0",
  8789. "source": {
  8790. "type": "git",
  8791. "url": "https://github.com/symfony/polyfill-php80.git",
  8792. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8793. },
  8794. "dist": {
  8795. "type": "zip",
  8796. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8797. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8798. "shasum": "",
  8799. "mirrors": [
  8800. {
  8801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8802. "preferred": true
  8803. }
  8804. ]
  8805. },
  8806. "require": {
  8807. "php": ">=7.1"
  8808. },
  8809. "type": "library",
  8810. "extra": {
  8811. "branch-alias": {
  8812. "dev-main": "1.26-dev"
  8813. },
  8814. "thanks": {
  8815. "name": "symfony/polyfill",
  8816. "url": "https://github.com/symfony/polyfill"
  8817. }
  8818. },
  8819. "autoload": {
  8820. "files": [
  8821. "bootstrap.php"
  8822. ],
  8823. "psr-4": {
  8824. "Symfony\\Polyfill\\Php80\\": ""
  8825. },
  8826. "classmap": [
  8827. "Resources/stubs"
  8828. ]
  8829. },
  8830. "notification-url": "https://packagist.org/downloads/",
  8831. "license": [
  8832. "MIT"
  8833. ],
  8834. "authors": [
  8835. {
  8836. "name": "Ion Bazan",
  8837. "email": "ion.bazan@gmail.com"
  8838. },
  8839. {
  8840. "name": "Nicolas Grekas",
  8841. "email": "p@tchwork.com"
  8842. },
  8843. {
  8844. "name": "Symfony Community",
  8845. "homepage": "https://symfony.com/contributors"
  8846. }
  8847. ],
  8848. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8849. "homepage": "https://symfony.com",
  8850. "keywords": [
  8851. "compatibility",
  8852. "polyfill",
  8853. "portable",
  8854. "shim"
  8855. ],
  8856. "support": {
  8857. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://symfony.com/sponsor",
  8862. "type": "custom"
  8863. },
  8864. {
  8865. "url": "https://github.com/fabpot",
  8866. "type": "github"
  8867. },
  8868. {
  8869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8870. "type": "tidelift"
  8871. }
  8872. ],
  8873. "time": "2022-05-10T07:21:04+00:00"
  8874. },
  8875. {
  8876. "name": "symfony/polyfill-php81",
  8877. "version": "v1.26.0",
  8878. "source": {
  8879. "type": "git",
  8880. "url": "https://github.com/symfony/polyfill-php81.git",
  8881. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  8882. },
  8883. "dist": {
  8884. "type": "zip",
  8885. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8886. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8887. "shasum": "",
  8888. "mirrors": [
  8889. {
  8890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8891. "preferred": true
  8892. }
  8893. ]
  8894. },
  8895. "require": {
  8896. "php": ">=7.1"
  8897. },
  8898. "type": "library",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-main": "1.26-dev"
  8902. },
  8903. "thanks": {
  8904. "name": "symfony/polyfill",
  8905. "url": "https://github.com/symfony/polyfill"
  8906. }
  8907. },
  8908. "autoload": {
  8909. "files": [
  8910. "bootstrap.php"
  8911. ],
  8912. "psr-4": {
  8913. "Symfony\\Polyfill\\Php81\\": ""
  8914. },
  8915. "classmap": [
  8916. "Resources/stubs"
  8917. ]
  8918. },
  8919. "notification-url": "https://packagist.org/downloads/",
  8920. "license": [
  8921. "MIT"
  8922. ],
  8923. "authors": [
  8924. {
  8925. "name": "Nicolas Grekas",
  8926. "email": "p@tchwork.com"
  8927. },
  8928. {
  8929. "name": "Symfony Community",
  8930. "homepage": "https://symfony.com/contributors"
  8931. }
  8932. ],
  8933. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8934. "homepage": "https://symfony.com",
  8935. "keywords": [
  8936. "compatibility",
  8937. "polyfill",
  8938. "portable",
  8939. "shim"
  8940. ],
  8941. "support": {
  8942. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://symfony.com/sponsor",
  8947. "type": "custom"
  8948. },
  8949. {
  8950. "url": "https://github.com/fabpot",
  8951. "type": "github"
  8952. },
  8953. {
  8954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8955. "type": "tidelift"
  8956. }
  8957. ],
  8958. "time": "2022-05-24T11:49:31+00:00"
  8959. },
  8960. {
  8961. "name": "symfony/process",
  8962. "version": "v5.4.11",
  8963. "source": {
  8964. "type": "git",
  8965. "url": "https://github.com/symfony/process.git",
  8966. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  8967. },
  8968. "dist": {
  8969. "type": "zip",
  8970. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  8971. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  8972. "shasum": "",
  8973. "mirrors": [
  8974. {
  8975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8976. "preferred": true
  8977. }
  8978. ]
  8979. },
  8980. "require": {
  8981. "php": ">=7.2.5",
  8982. "symfony/polyfill-php80": "^1.16"
  8983. },
  8984. "type": "library",
  8985. "autoload": {
  8986. "psr-4": {
  8987. "Symfony\\Component\\Process\\": ""
  8988. },
  8989. "exclude-from-classmap": [
  8990. "/Tests/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Fabien Potencier",
  9000. "email": "fabien@symfony.com"
  9001. },
  9002. {
  9003. "name": "Symfony Community",
  9004. "homepage": "https://symfony.com/contributors"
  9005. }
  9006. ],
  9007. "description": "Executes commands in sub-processes",
  9008. "homepage": "https://symfony.com",
  9009. "support": {
  9010. "source": "https://github.com/symfony/process/tree/v5.4.11"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://symfony.com/sponsor",
  9015. "type": "custom"
  9016. },
  9017. {
  9018. "url": "https://github.com/fabpot",
  9019. "type": "github"
  9020. },
  9021. {
  9022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9023. "type": "tidelift"
  9024. }
  9025. ],
  9026. "time": "2022-06-27T16:58:25+00:00"
  9027. },
  9028. {
  9029. "name": "symfony/psr-http-message-bridge",
  9030. "version": "v2.1.2",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9034. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9039. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9040. "shasum": "",
  9041. "mirrors": [
  9042. {
  9043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9044. "preferred": true
  9045. }
  9046. ]
  9047. },
  9048. "require": {
  9049. "php": ">=7.1",
  9050. "psr/http-message": "^1.0",
  9051. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9052. },
  9053. "require-dev": {
  9054. "nyholm/psr7": "^1.1",
  9055. "psr/log": "^1.1 || ^2 || ^3",
  9056. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9057. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9058. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9059. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9060. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9061. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9062. },
  9063. "suggest": {
  9064. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9065. },
  9066. "type": "symfony-bridge",
  9067. "extra": {
  9068. "branch-alias": {
  9069. "dev-main": "2.1-dev"
  9070. }
  9071. },
  9072. "autoload": {
  9073. "psr-4": {
  9074. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9075. },
  9076. "exclude-from-classmap": [
  9077. "/Tests/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Fabien Potencier",
  9087. "email": "fabien@symfony.com"
  9088. },
  9089. {
  9090. "name": "Symfony Community",
  9091. "homepage": "http://symfony.com/contributors"
  9092. }
  9093. ],
  9094. "description": "PSR HTTP message bridge",
  9095. "homepage": "http://symfony.com",
  9096. "keywords": [
  9097. "http",
  9098. "http-message",
  9099. "psr-17",
  9100. "psr-7"
  9101. ],
  9102. "support": {
  9103. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9104. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9105. },
  9106. "funding": [
  9107. {
  9108. "url": "https://symfony.com/sponsor",
  9109. "type": "custom"
  9110. },
  9111. {
  9112. "url": "https://github.com/fabpot",
  9113. "type": "github"
  9114. },
  9115. {
  9116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9117. "type": "tidelift"
  9118. }
  9119. ],
  9120. "time": "2021-11-05T13:13:39+00:00"
  9121. },
  9122. {
  9123. "name": "symfony/routing",
  9124. "version": "v5.4.11",
  9125. "source": {
  9126. "type": "git",
  9127. "url": "https://github.com/symfony/routing.git",
  9128. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  9129. },
  9130. "dist": {
  9131. "type": "zip",
  9132. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  9133. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  9134. "shasum": "",
  9135. "mirrors": [
  9136. {
  9137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9138. "preferred": true
  9139. }
  9140. ]
  9141. },
  9142. "require": {
  9143. "php": ">=7.2.5",
  9144. "symfony/deprecation-contracts": "^2.1|^3",
  9145. "symfony/polyfill-php80": "^1.16"
  9146. },
  9147. "conflict": {
  9148. "doctrine/annotations": "<1.12",
  9149. "symfony/config": "<5.3",
  9150. "symfony/dependency-injection": "<4.4",
  9151. "symfony/yaml": "<4.4"
  9152. },
  9153. "require-dev": {
  9154. "doctrine/annotations": "^1.12",
  9155. "psr/log": "^1|^2|^3",
  9156. "symfony/config": "^5.3|^6.0",
  9157. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9158. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9159. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9160. "symfony/yaml": "^4.4|^5.0|^6.0"
  9161. },
  9162. "suggest": {
  9163. "symfony/config": "For using the all-in-one router or any loader",
  9164. "symfony/expression-language": "For using expression matching",
  9165. "symfony/http-foundation": "For using a Symfony Request object",
  9166. "symfony/yaml": "For using the YAML loader"
  9167. },
  9168. "type": "library",
  9169. "autoload": {
  9170. "psr-4": {
  9171. "Symfony\\Component\\Routing\\": ""
  9172. },
  9173. "exclude-from-classmap": [
  9174. "/Tests/"
  9175. ]
  9176. },
  9177. "notification-url": "https://packagist.org/downloads/",
  9178. "license": [
  9179. "MIT"
  9180. ],
  9181. "authors": [
  9182. {
  9183. "name": "Fabien Potencier",
  9184. "email": "fabien@symfony.com"
  9185. },
  9186. {
  9187. "name": "Symfony Community",
  9188. "homepage": "https://symfony.com/contributors"
  9189. }
  9190. ],
  9191. "description": "Maps an HTTP request to a set of configuration variables",
  9192. "homepage": "https://symfony.com",
  9193. "keywords": [
  9194. "router",
  9195. "routing",
  9196. "uri",
  9197. "url"
  9198. ],
  9199. "support": {
  9200. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  9201. },
  9202. "funding": [
  9203. {
  9204. "url": "https://symfony.com/sponsor",
  9205. "type": "custom"
  9206. },
  9207. {
  9208. "url": "https://github.com/fabpot",
  9209. "type": "github"
  9210. },
  9211. {
  9212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9213. "type": "tidelift"
  9214. }
  9215. ],
  9216. "time": "2022-07-20T13:00:38+00:00"
  9217. },
  9218. {
  9219. "name": "symfony/service-contracts",
  9220. "version": "v2.5.2",
  9221. "source": {
  9222. "type": "git",
  9223. "url": "https://github.com/symfony/service-contracts.git",
  9224. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9225. },
  9226. "dist": {
  9227. "type": "zip",
  9228. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9229. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9230. "shasum": "",
  9231. "mirrors": [
  9232. {
  9233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9234. "preferred": true
  9235. }
  9236. ]
  9237. },
  9238. "require": {
  9239. "php": ">=7.2.5",
  9240. "psr/container": "^1.1",
  9241. "symfony/deprecation-contracts": "^2.1|^3"
  9242. },
  9243. "conflict": {
  9244. "ext-psr": "<1.1|>=2"
  9245. },
  9246. "suggest": {
  9247. "symfony/service-implementation": ""
  9248. },
  9249. "type": "library",
  9250. "extra": {
  9251. "branch-alias": {
  9252. "dev-main": "2.5-dev"
  9253. },
  9254. "thanks": {
  9255. "name": "symfony/contracts",
  9256. "url": "https://github.com/symfony/contracts"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "psr-4": {
  9261. "Symfony\\Contracts\\Service\\": ""
  9262. }
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "MIT"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Nicolas Grekas",
  9271. "email": "p@tchwork.com"
  9272. },
  9273. {
  9274. "name": "Symfony Community",
  9275. "homepage": "https://symfony.com/contributors"
  9276. }
  9277. ],
  9278. "description": "Generic abstractions related to writing services",
  9279. "homepage": "https://symfony.com",
  9280. "keywords": [
  9281. "abstractions",
  9282. "contracts",
  9283. "decoupling",
  9284. "interfaces",
  9285. "interoperability",
  9286. "standards"
  9287. ],
  9288. "support": {
  9289. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://symfony.com/sponsor",
  9294. "type": "custom"
  9295. },
  9296. {
  9297. "url": "https://github.com/fabpot",
  9298. "type": "github"
  9299. },
  9300. {
  9301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9302. "type": "tidelift"
  9303. }
  9304. ],
  9305. "time": "2022-05-30T19:17:29+00:00"
  9306. },
  9307. {
  9308. "name": "symfony/string",
  9309. "version": "v6.0.11",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/symfony/string.git",
  9313. "reference": "042b6bf0f6ccca6d456a0572eb788cfb8b1ff809"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/symfony/string/zipball/042b6bf0f6ccca6d456a0572eb788cfb8b1ff809",
  9318. "reference": "042b6bf0f6ccca6d456a0572eb788cfb8b1ff809",
  9319. "shasum": "",
  9320. "mirrors": [
  9321. {
  9322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9323. "preferred": true
  9324. }
  9325. ]
  9326. },
  9327. "require": {
  9328. "php": ">=8.0.2",
  9329. "symfony/polyfill-ctype": "~1.8",
  9330. "symfony/polyfill-intl-grapheme": "~1.0",
  9331. "symfony/polyfill-intl-normalizer": "~1.0",
  9332. "symfony/polyfill-mbstring": "~1.0"
  9333. },
  9334. "conflict": {
  9335. "symfony/translation-contracts": "<2.0"
  9336. },
  9337. "require-dev": {
  9338. "symfony/error-handler": "^5.4|^6.0",
  9339. "symfony/http-client": "^5.4|^6.0",
  9340. "symfony/translation-contracts": "^2.0|^3.0",
  9341. "symfony/var-exporter": "^5.4|^6.0"
  9342. },
  9343. "type": "library",
  9344. "autoload": {
  9345. "files": [
  9346. "Resources/functions.php"
  9347. ],
  9348. "psr-4": {
  9349. "Symfony\\Component\\String\\": ""
  9350. },
  9351. "exclude-from-classmap": [
  9352. "/Tests/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "MIT"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Nicolas Grekas",
  9362. "email": "p@tchwork.com"
  9363. },
  9364. {
  9365. "name": "Symfony Community",
  9366. "homepage": "https://symfony.com/contributors"
  9367. }
  9368. ],
  9369. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9370. "homepage": "https://symfony.com",
  9371. "keywords": [
  9372. "grapheme",
  9373. "i18n",
  9374. "string",
  9375. "unicode",
  9376. "utf-8",
  9377. "utf8"
  9378. ],
  9379. "support": {
  9380. "source": "https://github.com/symfony/string/tree/v6.0.11"
  9381. },
  9382. "funding": [
  9383. {
  9384. "url": "https://symfony.com/sponsor",
  9385. "type": "custom"
  9386. },
  9387. {
  9388. "url": "https://github.com/fabpot",
  9389. "type": "github"
  9390. },
  9391. {
  9392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9393. "type": "tidelift"
  9394. }
  9395. ],
  9396. "time": "2022-07-27T15:50:26+00:00"
  9397. },
  9398. {
  9399. "name": "symfony/translation",
  9400. "version": "v6.0.11",
  9401. "source": {
  9402. "type": "git",
  9403. "url": "https://github.com/symfony/translation.git",
  9404. "reference": "55ffbe4b690156100af1ae42e1f94c5873085bca"
  9405. },
  9406. "dist": {
  9407. "type": "zip",
  9408. "url": "https://api.github.com/repos/symfony/translation/zipball/55ffbe4b690156100af1ae42e1f94c5873085bca",
  9409. "reference": "55ffbe4b690156100af1ae42e1f94c5873085bca",
  9410. "shasum": "",
  9411. "mirrors": [
  9412. {
  9413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9414. "preferred": true
  9415. }
  9416. ]
  9417. },
  9418. "require": {
  9419. "php": ">=8.0.2",
  9420. "symfony/polyfill-mbstring": "~1.0",
  9421. "symfony/translation-contracts": "^2.3|^3.0"
  9422. },
  9423. "conflict": {
  9424. "symfony/config": "<5.4",
  9425. "symfony/console": "<5.4",
  9426. "symfony/dependency-injection": "<5.4",
  9427. "symfony/http-kernel": "<5.4",
  9428. "symfony/twig-bundle": "<5.4",
  9429. "symfony/yaml": "<5.4"
  9430. },
  9431. "provide": {
  9432. "symfony/translation-implementation": "2.3|3.0"
  9433. },
  9434. "require-dev": {
  9435. "psr/log": "^1|^2|^3",
  9436. "symfony/config": "^5.4|^6.0",
  9437. "symfony/console": "^5.4|^6.0",
  9438. "symfony/dependency-injection": "^5.4|^6.0",
  9439. "symfony/finder": "^5.4|^6.0",
  9440. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9441. "symfony/http-kernel": "^5.4|^6.0",
  9442. "symfony/intl": "^5.4|^6.0",
  9443. "symfony/polyfill-intl-icu": "^1.21",
  9444. "symfony/service-contracts": "^1.1.2|^2|^3",
  9445. "symfony/yaml": "^5.4|^6.0"
  9446. },
  9447. "suggest": {
  9448. "psr/log-implementation": "To use logging capability in translator",
  9449. "symfony/config": "",
  9450. "symfony/yaml": ""
  9451. },
  9452. "type": "library",
  9453. "autoload": {
  9454. "files": [
  9455. "Resources/functions.php"
  9456. ],
  9457. "psr-4": {
  9458. "Symfony\\Component\\Translation\\": ""
  9459. },
  9460. "exclude-from-classmap": [
  9461. "/Tests/"
  9462. ]
  9463. },
  9464. "notification-url": "https://packagist.org/downloads/",
  9465. "license": [
  9466. "MIT"
  9467. ],
  9468. "authors": [
  9469. {
  9470. "name": "Fabien Potencier",
  9471. "email": "fabien@symfony.com"
  9472. },
  9473. {
  9474. "name": "Symfony Community",
  9475. "homepage": "https://symfony.com/contributors"
  9476. }
  9477. ],
  9478. "description": "Provides tools to internationalize your application",
  9479. "homepage": "https://symfony.com",
  9480. "support": {
  9481. "source": "https://github.com/symfony/translation/tree/v6.0.11"
  9482. },
  9483. "funding": [
  9484. {
  9485. "url": "https://symfony.com/sponsor",
  9486. "type": "custom"
  9487. },
  9488. {
  9489. "url": "https://github.com/fabpot",
  9490. "type": "github"
  9491. },
  9492. {
  9493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9494. "type": "tidelift"
  9495. }
  9496. ],
  9497. "time": "2022-07-20T13:45:53+00:00"
  9498. },
  9499. {
  9500. "name": "symfony/translation-contracts",
  9501. "version": "v3.0.2",
  9502. "source": {
  9503. "type": "git",
  9504. "url": "https://github.com/symfony/translation-contracts.git",
  9505. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9506. },
  9507. "dist": {
  9508. "type": "zip",
  9509. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9510. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9511. "shasum": "",
  9512. "mirrors": [
  9513. {
  9514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9515. "preferred": true
  9516. }
  9517. ]
  9518. },
  9519. "require": {
  9520. "php": ">=8.0.2"
  9521. },
  9522. "suggest": {
  9523. "symfony/translation-implementation": ""
  9524. },
  9525. "type": "library",
  9526. "extra": {
  9527. "branch-alias": {
  9528. "dev-main": "3.0-dev"
  9529. },
  9530. "thanks": {
  9531. "name": "symfony/contracts",
  9532. "url": "https://github.com/symfony/contracts"
  9533. }
  9534. },
  9535. "autoload": {
  9536. "psr-4": {
  9537. "Symfony\\Contracts\\Translation\\": ""
  9538. }
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "MIT"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Nicolas Grekas",
  9547. "email": "p@tchwork.com"
  9548. },
  9549. {
  9550. "name": "Symfony Community",
  9551. "homepage": "https://symfony.com/contributors"
  9552. }
  9553. ],
  9554. "description": "Generic abstractions related to translation",
  9555. "homepage": "https://symfony.com",
  9556. "keywords": [
  9557. "abstractions",
  9558. "contracts",
  9559. "decoupling",
  9560. "interfaces",
  9561. "interoperability",
  9562. "standards"
  9563. ],
  9564. "support": {
  9565. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9566. },
  9567. "funding": [
  9568. {
  9569. "url": "https://symfony.com/sponsor",
  9570. "type": "custom"
  9571. },
  9572. {
  9573. "url": "https://github.com/fabpot",
  9574. "type": "github"
  9575. },
  9576. {
  9577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9578. "type": "tidelift"
  9579. }
  9580. ],
  9581. "time": "2022-06-27T17:10:44+00:00"
  9582. },
  9583. {
  9584. "name": "symfony/var-dumper",
  9585. "version": "v5.4.11",
  9586. "source": {
  9587. "type": "git",
  9588. "url": "https://github.com/symfony/var-dumper.git",
  9589. "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861"
  9590. },
  9591. "dist": {
  9592. "type": "zip",
  9593. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b8f306d7b8ef34fb3db3305be97ba8e088fb4861",
  9594. "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861",
  9595. "shasum": "",
  9596. "mirrors": [
  9597. {
  9598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9599. "preferred": true
  9600. }
  9601. ]
  9602. },
  9603. "require": {
  9604. "php": ">=7.2.5",
  9605. "symfony/polyfill-mbstring": "~1.0",
  9606. "symfony/polyfill-php80": "^1.16"
  9607. },
  9608. "conflict": {
  9609. "phpunit/phpunit": "<5.4.3",
  9610. "symfony/console": "<4.4"
  9611. },
  9612. "require-dev": {
  9613. "ext-iconv": "*",
  9614. "symfony/console": "^4.4|^5.0|^6.0",
  9615. "symfony/process": "^4.4|^5.0|^6.0",
  9616. "symfony/uid": "^5.1|^6.0",
  9617. "twig/twig": "^2.13|^3.0.4"
  9618. },
  9619. "suggest": {
  9620. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9621. "ext-intl": "To show region name in time zone dump",
  9622. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9623. },
  9624. "bin": [
  9625. "Resources/bin/var-dump-server"
  9626. ],
  9627. "type": "library",
  9628. "autoload": {
  9629. "files": [
  9630. "Resources/functions/dump.php"
  9631. ],
  9632. "psr-4": {
  9633. "Symfony\\Component\\VarDumper\\": ""
  9634. },
  9635. "exclude-from-classmap": [
  9636. "/Tests/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "MIT"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Nicolas Grekas",
  9646. "email": "p@tchwork.com"
  9647. },
  9648. {
  9649. "name": "Symfony Community",
  9650. "homepage": "https://symfony.com/contributors"
  9651. }
  9652. ],
  9653. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9654. "homepage": "https://symfony.com",
  9655. "keywords": [
  9656. "debug",
  9657. "dump"
  9658. ],
  9659. "support": {
  9660. "source": "https://github.com/symfony/var-dumper/tree/v5.4.11"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://symfony.com/sponsor",
  9665. "type": "custom"
  9666. },
  9667. {
  9668. "url": "https://github.com/fabpot",
  9669. "type": "github"
  9670. },
  9671. {
  9672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9673. "type": "tidelift"
  9674. }
  9675. ],
  9676. "time": "2022-07-20T13:00:38+00:00"
  9677. },
  9678. {
  9679. "name": "symfony/var-exporter",
  9680. "version": "v6.0.10",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/symfony/var-exporter.git",
  9684. "reference": "e3df004a8d0fb572c420a6915cd23db9254c8366"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/e3df004a8d0fb572c420a6915cd23db9254c8366",
  9689. "reference": "e3df004a8d0fb572c420a6915cd23db9254c8366",
  9690. "shasum": "",
  9691. "mirrors": [
  9692. {
  9693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9694. "preferred": true
  9695. }
  9696. ]
  9697. },
  9698. "require": {
  9699. "php": ">=8.0.2"
  9700. },
  9701. "require-dev": {
  9702. "symfony/var-dumper": "^5.4|^6.0"
  9703. },
  9704. "type": "library",
  9705. "autoload": {
  9706. "psr-4": {
  9707. "Symfony\\Component\\VarExporter\\": ""
  9708. },
  9709. "exclude-from-classmap": [
  9710. "/Tests/"
  9711. ]
  9712. },
  9713. "notification-url": "https://packagist.org/downloads/",
  9714. "license": [
  9715. "MIT"
  9716. ],
  9717. "authors": [
  9718. {
  9719. "name": "Nicolas Grekas",
  9720. "email": "p@tchwork.com"
  9721. },
  9722. {
  9723. "name": "Symfony Community",
  9724. "homepage": "https://symfony.com/contributors"
  9725. }
  9726. ],
  9727. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9728. "homepage": "https://symfony.com",
  9729. "keywords": [
  9730. "clone",
  9731. "construct",
  9732. "export",
  9733. "hydrate",
  9734. "instantiate",
  9735. "serialize"
  9736. ],
  9737. "support": {
  9738. "source": "https://github.com/symfony/var-exporter/tree/v6.0.10"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://symfony.com/sponsor",
  9743. "type": "custom"
  9744. },
  9745. {
  9746. "url": "https://github.com/fabpot",
  9747. "type": "github"
  9748. },
  9749. {
  9750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9751. "type": "tidelift"
  9752. }
  9753. ],
  9754. "time": "2022-05-27T12:57:11+00:00"
  9755. },
  9756. {
  9757. "name": "tencent/tls-sig-api-v2",
  9758. "version": "v1.0",
  9759. "source": {
  9760. "type": "git",
  9761. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  9762. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  9763. },
  9764. "dist": {
  9765. "type": "zip",
  9766. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  9767. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  9768. "shasum": "",
  9769. "mirrors": [
  9770. {
  9771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9772. "preferred": true
  9773. }
  9774. ]
  9775. },
  9776. "require": {
  9777. "php": ">=5.3.0"
  9778. },
  9779. "type": "library",
  9780. "autoload": {
  9781. "psr-4": {
  9782. "Tencent\\": "src/"
  9783. }
  9784. },
  9785. "notification-url": "https://packagist.org/downloads/",
  9786. "license": [
  9787. "MIT"
  9788. ],
  9789. "authors": [
  9790. {
  9791. "name": "weijunyi",
  9792. "email": "weijunyi@tencent.com",
  9793. "role": "Developer"
  9794. }
  9795. ],
  9796. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  9797. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  9798. "keywords": [
  9799. "im",
  9800. "tencent"
  9801. ],
  9802. "support": {
  9803. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  9804. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  9805. },
  9806. "time": "2019-06-20T08:42:03+00:00"
  9807. },
  9808. {
  9809. "name": "tencentcloud/tencentcloud-sdk-php",
  9810. "version": "3.0.707",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  9814. "reference": "8ebf5f8439e5ae0a752dd6ca5efcff337e9311a5"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/8ebf5f8439e5ae0a752dd6ca5efcff337e9311a5",
  9819. "reference": "8ebf5f8439e5ae0a752dd6ca5efcff337e9311a5",
  9820. "shasum": "",
  9821. "mirrors": [
  9822. {
  9823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9824. "preferred": true
  9825. }
  9826. ]
  9827. },
  9828. "require": {
  9829. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9830. "php": ">=5.6.0"
  9831. },
  9832. "type": "library",
  9833. "autoload": {
  9834. "psr-4": {
  9835. "TencentCloud\\": "./src/TencentCloud"
  9836. },
  9837. "classmap": [
  9838. "src/QcloudApi/QcloudApi.php"
  9839. ]
  9840. },
  9841. "notification-url": "https://packagist.org/downloads/",
  9842. "license": [
  9843. "Apache-2.0"
  9844. ],
  9845. "authors": [
  9846. {
  9847. "name": "coolli",
  9848. "email": "tencentcloudapi@tencent.com",
  9849. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  9850. "role": "Developer"
  9851. }
  9852. ],
  9853. "description": "TencentCloudApi php sdk",
  9854. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  9855. "support": {
  9856. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  9857. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.707"
  9858. },
  9859. "time": "2022-08-18T06:57:42+00:00"
  9860. },
  9861. {
  9862. "name": "tijsverkoyen/css-to-inline-styles",
  9863. "version": "2.2.4",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9867. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9872. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9873. "shasum": "",
  9874. "mirrors": [
  9875. {
  9876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9877. "preferred": true
  9878. }
  9879. ]
  9880. },
  9881. "require": {
  9882. "ext-dom": "*",
  9883. "ext-libxml": "*",
  9884. "php": "^5.5 || ^7.0 || ^8.0",
  9885. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9886. },
  9887. "require-dev": {
  9888. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "2.2.x-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "psr-4": {
  9898. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9899. }
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "BSD-3-Clause"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Tijs Verkoyen",
  9908. "email": "css_to_inline_styles@verkoyen.eu",
  9909. "role": "Developer"
  9910. }
  9911. ],
  9912. "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.",
  9913. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9914. "support": {
  9915. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9916. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  9917. },
  9918. "time": "2021-12-08T09:12:39+00:00"
  9919. },
  9920. {
  9921. "name": "vlucas/phpdotenv",
  9922. "version": "v5.4.1",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/vlucas/phpdotenv.git",
  9926. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9931. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9932. "shasum": "",
  9933. "mirrors": [
  9934. {
  9935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9936. "preferred": true
  9937. }
  9938. ]
  9939. },
  9940. "require": {
  9941. "ext-pcre": "*",
  9942. "graham-campbell/result-type": "^1.0.2",
  9943. "php": "^7.1.3 || ^8.0",
  9944. "phpoption/phpoption": "^1.8",
  9945. "symfony/polyfill-ctype": "^1.23",
  9946. "symfony/polyfill-mbstring": "^1.23.1",
  9947. "symfony/polyfill-php80": "^1.23.1"
  9948. },
  9949. "require-dev": {
  9950. "bamarni/composer-bin-plugin": "^1.4.1",
  9951. "ext-filter": "*",
  9952. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  9953. },
  9954. "suggest": {
  9955. "ext-filter": "Required to use the boolean validator."
  9956. },
  9957. "type": "library",
  9958. "extra": {
  9959. "branch-alias": {
  9960. "dev-master": "5.4-dev"
  9961. }
  9962. },
  9963. "autoload": {
  9964. "psr-4": {
  9965. "Dotenv\\": "src/"
  9966. }
  9967. },
  9968. "notification-url": "https://packagist.org/downloads/",
  9969. "license": [
  9970. "BSD-3-Clause"
  9971. ],
  9972. "authors": [
  9973. {
  9974. "name": "Graham Campbell",
  9975. "email": "hello@gjcampbell.co.uk",
  9976. "homepage": "https://github.com/GrahamCampbell"
  9977. },
  9978. {
  9979. "name": "Vance Lucas",
  9980. "email": "vance@vancelucas.com",
  9981. "homepage": "https://github.com/vlucas"
  9982. }
  9983. ],
  9984. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9985. "keywords": [
  9986. "dotenv",
  9987. "env",
  9988. "environment"
  9989. ],
  9990. "support": {
  9991. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9992. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  9993. },
  9994. "funding": [
  9995. {
  9996. "url": "https://github.com/GrahamCampbell",
  9997. "type": "github"
  9998. },
  9999. {
  10000. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10001. "type": "tidelift"
  10002. }
  10003. ],
  10004. "time": "2021-12-12T23:22:04+00:00"
  10005. },
  10006. {
  10007. "name": "voku/portable-ascii",
  10008. "version": "1.6.1",
  10009. "source": {
  10010. "type": "git",
  10011. "url": "https://github.com/voku/portable-ascii.git",
  10012. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10013. },
  10014. "dist": {
  10015. "type": "zip",
  10016. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10017. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10018. "shasum": "",
  10019. "mirrors": [
  10020. {
  10021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10022. "preferred": true
  10023. }
  10024. ]
  10025. },
  10026. "require": {
  10027. "php": ">=7.0.0"
  10028. },
  10029. "require-dev": {
  10030. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10031. },
  10032. "suggest": {
  10033. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10034. },
  10035. "type": "library",
  10036. "autoload": {
  10037. "psr-4": {
  10038. "voku\\": "src/voku/"
  10039. }
  10040. },
  10041. "notification-url": "https://packagist.org/downloads/",
  10042. "license": [
  10043. "MIT"
  10044. ],
  10045. "authors": [
  10046. {
  10047. "name": "Lars Moelleken",
  10048. "homepage": "http://www.moelleken.org/"
  10049. }
  10050. ],
  10051. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10052. "homepage": "https://github.com/voku/portable-ascii",
  10053. "keywords": [
  10054. "ascii",
  10055. "clean",
  10056. "php"
  10057. ],
  10058. "support": {
  10059. "issues": "https://github.com/voku/portable-ascii/issues",
  10060. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://www.paypal.me/moelleken",
  10065. "type": "custom"
  10066. },
  10067. {
  10068. "url": "https://github.com/voku",
  10069. "type": "github"
  10070. },
  10071. {
  10072. "url": "https://opencollective.com/portable-ascii",
  10073. "type": "open_collective"
  10074. },
  10075. {
  10076. "url": "https://www.patreon.com/voku",
  10077. "type": "patreon"
  10078. },
  10079. {
  10080. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10081. "type": "tidelift"
  10082. }
  10083. ],
  10084. "time": "2022-01-24T18:55:24+00:00"
  10085. },
  10086. {
  10087. "name": "webmozart/assert",
  10088. "version": "1.11.0",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/webmozarts/assert.git",
  10092. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10097. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10098. "shasum": "",
  10099. "mirrors": [
  10100. {
  10101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10102. "preferred": true
  10103. }
  10104. ]
  10105. },
  10106. "require": {
  10107. "ext-ctype": "*",
  10108. "php": "^7.2 || ^8.0"
  10109. },
  10110. "conflict": {
  10111. "phpstan/phpstan": "<0.12.20",
  10112. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10113. },
  10114. "require-dev": {
  10115. "phpunit/phpunit": "^8.5.13"
  10116. },
  10117. "type": "library",
  10118. "extra": {
  10119. "branch-alias": {
  10120. "dev-master": "1.10-dev"
  10121. }
  10122. },
  10123. "autoload": {
  10124. "psr-4": {
  10125. "Webmozart\\Assert\\": "src/"
  10126. }
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "MIT"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Bernhard Schussek",
  10135. "email": "bschussek@gmail.com"
  10136. }
  10137. ],
  10138. "description": "Assertions to validate method input/output with nice error messages.",
  10139. "keywords": [
  10140. "assert",
  10141. "check",
  10142. "validate"
  10143. ],
  10144. "support": {
  10145. "issues": "https://github.com/webmozarts/assert/issues",
  10146. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10147. },
  10148. "time": "2022-06-03T18:03:27+00:00"
  10149. },
  10150. {
  10151. "name": "wemersonjanuario/wkhtmltopdf-windows",
  10152. "version": "0.12.2.3",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  10156. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  10161. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  10162. "shasum": "",
  10163. "mirrors": [
  10164. {
  10165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10166. "preferred": true
  10167. }
  10168. ]
  10169. },
  10170. "suggest": {
  10171. "h4cc/wkhtmltopdf-amd64": "*",
  10172. "h4cc/wkhtmltopdf-i386": "*",
  10173. "wemersonjanuario/laravelpdf": "1.0.*"
  10174. },
  10175. "bin": [
  10176. "bin/32bit/wkhtmltopdf.exe",
  10177. "bin/32bit/wkhtmltoimage.exe",
  10178. "bin/64bit/wkhtmltopdf.exe",
  10179. "bin/64bit/wkhtmltoimage.exe"
  10180. ],
  10181. "type": "library",
  10182. "notification-url": "https://packagist.org/downloads/",
  10183. "license": [
  10184. "LGPL Version 3"
  10185. ],
  10186. "authors": [
  10187. {
  10188. "name": "Wemerson Januario",
  10189. "email": "wemerson.januario@gmail.com",
  10190. "homepage": "http://wemersonjanuario.com.br"
  10191. }
  10192. ],
  10193. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  10194. "homepage": "http://wkhtmltopdf.org/",
  10195. "keywords": [
  10196. "binary",
  10197. "convert",
  10198. "htmltoimage",
  10199. "htmltopdf",
  10200. "pdf",
  10201. "snapshot",
  10202. "thumbnail",
  10203. "wkhtmltopdf"
  10204. ],
  10205. "support": {
  10206. "issues": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/issues?state=open",
  10207. "source": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/tree/master"
  10208. },
  10209. "time": "2015-06-30T20:19:22+00:00"
  10210. }
  10211. ],
  10212. "packages-dev": [
  10213. {
  10214. "name": "barryvdh/laravel-ide-helper",
  10215. "version": "v2.12.3",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  10219. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10224. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10225. "shasum": "",
  10226. "mirrors": [
  10227. {
  10228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10229. "preferred": true
  10230. }
  10231. ]
  10232. },
  10233. "require": {
  10234. "barryvdh/reflection-docblock": "^2.0.6",
  10235. "composer/pcre": "^1 || ^2 || ^3",
  10236. "doctrine/dbal": "^2.6 || ^3",
  10237. "ext-json": "*",
  10238. "illuminate/console": "^8 || ^9",
  10239. "illuminate/filesystem": "^8 || ^9",
  10240. "illuminate/support": "^8 || ^9",
  10241. "nikic/php-parser": "^4.7",
  10242. "php": "^7.3 || ^8.0",
  10243. "phpdocumentor/type-resolver": "^1.1.0"
  10244. },
  10245. "require-dev": {
  10246. "ext-pdo_sqlite": "*",
  10247. "friendsofphp/php-cs-fixer": "^2",
  10248. "illuminate/config": "^8 || ^9",
  10249. "illuminate/view": "^8 || ^9",
  10250. "mockery/mockery": "^1.4",
  10251. "orchestra/testbench": "^6 || ^7",
  10252. "phpunit/phpunit": "^8.5 || ^9",
  10253. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  10254. "vimeo/psalm": "^3.12"
  10255. },
  10256. "suggest": {
  10257. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  10258. },
  10259. "type": "library",
  10260. "extra": {
  10261. "branch-alias": {
  10262. "dev-master": "2.12-dev"
  10263. },
  10264. "laravel": {
  10265. "providers": [
  10266. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  10267. ]
  10268. }
  10269. },
  10270. "autoload": {
  10271. "psr-4": {
  10272. "Barryvdh\\LaravelIdeHelper\\": "src"
  10273. }
  10274. },
  10275. "notification-url": "https://packagist.org/downloads/",
  10276. "license": [
  10277. "MIT"
  10278. ],
  10279. "authors": [
  10280. {
  10281. "name": "Barry vd. Heuvel",
  10282. "email": "barryvdh@gmail.com"
  10283. }
  10284. ],
  10285. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  10286. "keywords": [
  10287. "autocomplete",
  10288. "codeintel",
  10289. "helper",
  10290. "ide",
  10291. "laravel",
  10292. "netbeans",
  10293. "phpdoc",
  10294. "phpstorm",
  10295. "sublime"
  10296. ],
  10297. "support": {
  10298. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  10299. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  10300. },
  10301. "funding": [
  10302. {
  10303. "url": "https://fruitcake.nl",
  10304. "type": "custom"
  10305. },
  10306. {
  10307. "url": "https://github.com/barryvdh",
  10308. "type": "github"
  10309. }
  10310. ],
  10311. "time": "2022-03-06T14:33:42+00:00"
  10312. },
  10313. {
  10314. "name": "barryvdh/reflection-docblock",
  10315. "version": "v2.0.6",
  10316. "source": {
  10317. "type": "git",
  10318. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  10319. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  10320. },
  10321. "dist": {
  10322. "type": "zip",
  10323. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10324. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10325. "shasum": "",
  10326. "mirrors": [
  10327. {
  10328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10329. "preferred": true
  10330. }
  10331. ]
  10332. },
  10333. "require": {
  10334. "php": ">=5.3.3"
  10335. },
  10336. "require-dev": {
  10337. "phpunit/phpunit": "~4.0,<4.5"
  10338. },
  10339. "suggest": {
  10340. "dflydev/markdown": "~1.0",
  10341. "erusev/parsedown": "~1.0"
  10342. },
  10343. "type": "library",
  10344. "extra": {
  10345. "branch-alias": {
  10346. "dev-master": "2.0.x-dev"
  10347. }
  10348. },
  10349. "autoload": {
  10350. "psr-0": {
  10351. "Barryvdh": [
  10352. "src/"
  10353. ]
  10354. }
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "MIT"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Mike van Riel",
  10363. "email": "mike.vanriel@naenius.com"
  10364. }
  10365. ],
  10366. "support": {
  10367. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  10368. },
  10369. "time": "2018-12-13T10:34:14+00:00"
  10370. },
  10371. {
  10372. "name": "composer/pcre",
  10373. "version": "3.0.0",
  10374. "source": {
  10375. "type": "git",
  10376. "url": "https://github.com/composer/pcre.git",
  10377. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  10378. },
  10379. "dist": {
  10380. "type": "zip",
  10381. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10382. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10383. "shasum": "",
  10384. "mirrors": [
  10385. {
  10386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10387. "preferred": true
  10388. }
  10389. ]
  10390. },
  10391. "require": {
  10392. "php": "^7.4 || ^8.0"
  10393. },
  10394. "require-dev": {
  10395. "phpstan/phpstan": "^1.3",
  10396. "phpstan/phpstan-strict-rules": "^1.1",
  10397. "symfony/phpunit-bridge": "^5"
  10398. },
  10399. "type": "library",
  10400. "extra": {
  10401. "branch-alias": {
  10402. "dev-main": "3.x-dev"
  10403. }
  10404. },
  10405. "autoload": {
  10406. "psr-4": {
  10407. "Composer\\Pcre\\": "src"
  10408. }
  10409. },
  10410. "notification-url": "https://packagist.org/downloads/",
  10411. "license": [
  10412. "MIT"
  10413. ],
  10414. "authors": [
  10415. {
  10416. "name": "Jordi Boggiano",
  10417. "email": "j.boggiano@seld.be",
  10418. "homepage": "http://seld.be"
  10419. }
  10420. ],
  10421. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  10422. "keywords": [
  10423. "PCRE",
  10424. "preg",
  10425. "regex",
  10426. "regular expression"
  10427. ],
  10428. "support": {
  10429. "issues": "https://github.com/composer/pcre/issues",
  10430. "source": "https://github.com/composer/pcre/tree/3.0.0"
  10431. },
  10432. "funding": [
  10433. {
  10434. "url": "https://packagist.com",
  10435. "type": "custom"
  10436. },
  10437. {
  10438. "url": "https://github.com/composer",
  10439. "type": "github"
  10440. },
  10441. {
  10442. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10443. "type": "tidelift"
  10444. }
  10445. ],
  10446. "time": "2022-02-25T20:21:48+00:00"
  10447. },
  10448. {
  10449. "name": "doctrine/instantiator",
  10450. "version": "1.4.1",
  10451. "source": {
  10452. "type": "git",
  10453. "url": "https://github.com/doctrine/instantiator.git",
  10454. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10455. },
  10456. "dist": {
  10457. "type": "zip",
  10458. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10459. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10460. "shasum": "",
  10461. "mirrors": [
  10462. {
  10463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10464. "preferred": true
  10465. }
  10466. ]
  10467. },
  10468. "require": {
  10469. "php": "^7.1 || ^8.0"
  10470. },
  10471. "require-dev": {
  10472. "doctrine/coding-standard": "^9",
  10473. "ext-pdo": "*",
  10474. "ext-phar": "*",
  10475. "phpbench/phpbench": "^0.16 || ^1",
  10476. "phpstan/phpstan": "^1.4",
  10477. "phpstan/phpstan-phpunit": "^1",
  10478. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10479. "vimeo/psalm": "^4.22"
  10480. },
  10481. "type": "library",
  10482. "autoload": {
  10483. "psr-4": {
  10484. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10485. }
  10486. },
  10487. "notification-url": "https://packagist.org/downloads/",
  10488. "license": [
  10489. "MIT"
  10490. ],
  10491. "authors": [
  10492. {
  10493. "name": "Marco Pivetta",
  10494. "email": "ocramius@gmail.com",
  10495. "homepage": "https://ocramius.github.io/"
  10496. }
  10497. ],
  10498. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10499. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10500. "keywords": [
  10501. "constructor",
  10502. "instantiate"
  10503. ],
  10504. "support": {
  10505. "issues": "https://github.com/doctrine/instantiator/issues",
  10506. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10507. },
  10508. "funding": [
  10509. {
  10510. "url": "https://www.doctrine-project.org/sponsorship.html",
  10511. "type": "custom"
  10512. },
  10513. {
  10514. "url": "https://www.patreon.com/phpdoctrine",
  10515. "type": "patreon"
  10516. },
  10517. {
  10518. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10519. "type": "tidelift"
  10520. }
  10521. ],
  10522. "time": "2022-03-03T08:28:38+00:00"
  10523. },
  10524. {
  10525. "name": "facade/flare-client-php",
  10526. "version": "1.10.0",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/facade/flare-client-php.git",
  10530. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10535. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10536. "shasum": "",
  10537. "mirrors": [
  10538. {
  10539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10540. "preferred": true
  10541. }
  10542. ]
  10543. },
  10544. "require": {
  10545. "facade/ignition-contracts": "~1.0",
  10546. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10547. "php": "^7.1|^8.0",
  10548. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10549. "symfony/mime": "^3.4|^4.0|^5.1",
  10550. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10551. },
  10552. "require-dev": {
  10553. "friendsofphp/php-cs-fixer": "^2.14",
  10554. "phpunit/phpunit": "^7.5",
  10555. "spatie/phpunit-snapshot-assertions": "^2.0"
  10556. },
  10557. "type": "library",
  10558. "extra": {
  10559. "branch-alias": {
  10560. "dev-master": "1.0-dev"
  10561. }
  10562. },
  10563. "autoload": {
  10564. "files": [
  10565. "src/helpers.php"
  10566. ],
  10567. "psr-4": {
  10568. "Facade\\FlareClient\\": "src"
  10569. }
  10570. },
  10571. "notification-url": "https://packagist.org/downloads/",
  10572. "license": [
  10573. "MIT"
  10574. ],
  10575. "description": "Send PHP errors to Flare",
  10576. "homepage": "https://github.com/facade/flare-client-php",
  10577. "keywords": [
  10578. "exception",
  10579. "facade",
  10580. "flare",
  10581. "reporting"
  10582. ],
  10583. "support": {
  10584. "issues": "https://github.com/facade/flare-client-php/issues",
  10585. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  10586. },
  10587. "funding": [
  10588. {
  10589. "url": "https://github.com/spatie",
  10590. "type": "github"
  10591. }
  10592. ],
  10593. "time": "2022-08-09T11:23:57+00:00"
  10594. },
  10595. {
  10596. "name": "facade/ignition",
  10597. "version": "2.17.6",
  10598. "source": {
  10599. "type": "git",
  10600. "url": "https://github.com/facade/ignition.git",
  10601. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  10602. },
  10603. "dist": {
  10604. "type": "zip",
  10605. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10606. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10607. "shasum": "",
  10608. "mirrors": [
  10609. {
  10610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10611. "preferred": true
  10612. }
  10613. ]
  10614. },
  10615. "require": {
  10616. "ext-curl": "*",
  10617. "ext-json": "*",
  10618. "ext-mbstring": "*",
  10619. "facade/flare-client-php": "^1.9.1",
  10620. "facade/ignition-contracts": "^1.0.2",
  10621. "illuminate/support": "^7.0|^8.0",
  10622. "monolog/monolog": "^2.0",
  10623. "php": "^7.2.5|^8.0",
  10624. "symfony/console": "^5.0",
  10625. "symfony/var-dumper": "^5.0"
  10626. },
  10627. "require-dev": {
  10628. "friendsofphp/php-cs-fixer": "^2.14",
  10629. "livewire/livewire": "^2.4",
  10630. "mockery/mockery": "^1.3",
  10631. "orchestra/testbench": "^5.0|^6.0",
  10632. "psalm/plugin-laravel": "^1.2"
  10633. },
  10634. "suggest": {
  10635. "laravel/telescope": "^3.1"
  10636. },
  10637. "type": "library",
  10638. "extra": {
  10639. "branch-alias": {
  10640. "dev-master": "2.x-dev"
  10641. },
  10642. "laravel": {
  10643. "providers": [
  10644. "Facade\\Ignition\\IgnitionServiceProvider"
  10645. ],
  10646. "aliases": {
  10647. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10648. }
  10649. }
  10650. },
  10651. "autoload": {
  10652. "files": [
  10653. "src/helpers.php"
  10654. ],
  10655. "psr-4": {
  10656. "Facade\\Ignition\\": "src"
  10657. }
  10658. },
  10659. "notification-url": "https://packagist.org/downloads/",
  10660. "license": [
  10661. "MIT"
  10662. ],
  10663. "description": "A beautiful error page for Laravel applications.",
  10664. "homepage": "https://github.com/facade/ignition",
  10665. "keywords": [
  10666. "error",
  10667. "flare",
  10668. "laravel",
  10669. "page"
  10670. ],
  10671. "support": {
  10672. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10673. "forum": "https://twitter.com/flareappio",
  10674. "issues": "https://github.com/facade/ignition/issues",
  10675. "source": "https://github.com/facade/ignition"
  10676. },
  10677. "time": "2022-06-30T18:26:59+00:00"
  10678. },
  10679. {
  10680. "name": "facade/ignition-contracts",
  10681. "version": "1.0.2",
  10682. "source": {
  10683. "type": "git",
  10684. "url": "https://github.com/facade/ignition-contracts.git",
  10685. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10686. },
  10687. "dist": {
  10688. "type": "zip",
  10689. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10690. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10691. "shasum": "",
  10692. "mirrors": [
  10693. {
  10694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10695. "preferred": true
  10696. }
  10697. ]
  10698. },
  10699. "require": {
  10700. "php": "^7.3|^8.0"
  10701. },
  10702. "require-dev": {
  10703. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10704. "phpunit/phpunit": "^9.3.11",
  10705. "vimeo/psalm": "^3.17.1"
  10706. },
  10707. "type": "library",
  10708. "autoload": {
  10709. "psr-4": {
  10710. "Facade\\IgnitionContracts\\": "src"
  10711. }
  10712. },
  10713. "notification-url": "https://packagist.org/downloads/",
  10714. "license": [
  10715. "MIT"
  10716. ],
  10717. "authors": [
  10718. {
  10719. "name": "Freek Van der Herten",
  10720. "email": "freek@spatie.be",
  10721. "homepage": "https://flareapp.io",
  10722. "role": "Developer"
  10723. }
  10724. ],
  10725. "description": "Solution contracts for Ignition",
  10726. "homepage": "https://github.com/facade/ignition-contracts",
  10727. "keywords": [
  10728. "contracts",
  10729. "flare",
  10730. "ignition"
  10731. ],
  10732. "support": {
  10733. "issues": "https://github.com/facade/ignition-contracts/issues",
  10734. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10735. },
  10736. "time": "2020-10-16T08:27:54+00:00"
  10737. },
  10738. {
  10739. "name": "fakerphp/faker",
  10740. "version": "v1.19.0",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/FakerPHP/Faker.git",
  10744. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10749. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10750. "shasum": "",
  10751. "mirrors": [
  10752. {
  10753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10754. "preferred": true
  10755. }
  10756. ]
  10757. },
  10758. "require": {
  10759. "php": "^7.1 || ^8.0",
  10760. "psr/container": "^1.0 || ^2.0",
  10761. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10762. },
  10763. "conflict": {
  10764. "fzaninotto/faker": "*"
  10765. },
  10766. "require-dev": {
  10767. "bamarni/composer-bin-plugin": "^1.4.1",
  10768. "doctrine/persistence": "^1.3 || ^2.0",
  10769. "ext-intl": "*",
  10770. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10771. },
  10772. "suggest": {
  10773. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10774. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10775. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10776. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10777. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10778. },
  10779. "type": "library",
  10780. "extra": {
  10781. "branch-alias": {
  10782. "dev-main": "v1.19-dev"
  10783. }
  10784. },
  10785. "autoload": {
  10786. "psr-4": {
  10787. "Faker\\": "src/Faker/"
  10788. }
  10789. },
  10790. "notification-url": "https://packagist.org/downloads/",
  10791. "license": [
  10792. "MIT"
  10793. ],
  10794. "authors": [
  10795. {
  10796. "name": "François Zaninotto"
  10797. }
  10798. ],
  10799. "description": "Faker is a PHP library that generates fake data for you.",
  10800. "keywords": [
  10801. "data",
  10802. "faker",
  10803. "fixtures"
  10804. ],
  10805. "support": {
  10806. "issues": "https://github.com/FakerPHP/Faker/issues",
  10807. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10808. },
  10809. "time": "2022-02-02T17:38:57+00:00"
  10810. },
  10811. {
  10812. "name": "filp/whoops",
  10813. "version": "2.14.5",
  10814. "source": {
  10815. "type": "git",
  10816. "url": "https://github.com/filp/whoops.git",
  10817. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10818. },
  10819. "dist": {
  10820. "type": "zip",
  10821. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10822. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10823. "shasum": "",
  10824. "mirrors": [
  10825. {
  10826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10827. "preferred": true
  10828. }
  10829. ]
  10830. },
  10831. "require": {
  10832. "php": "^5.5.9 || ^7.0 || ^8.0",
  10833. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10834. },
  10835. "require-dev": {
  10836. "mockery/mockery": "^0.9 || ^1.0",
  10837. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10838. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10839. },
  10840. "suggest": {
  10841. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10842. "whoops/soap": "Formats errors as SOAP responses"
  10843. },
  10844. "type": "library",
  10845. "extra": {
  10846. "branch-alias": {
  10847. "dev-master": "2.7-dev"
  10848. }
  10849. },
  10850. "autoload": {
  10851. "psr-4": {
  10852. "Whoops\\": "src/Whoops/"
  10853. }
  10854. },
  10855. "notification-url": "https://packagist.org/downloads/",
  10856. "license": [
  10857. "MIT"
  10858. ],
  10859. "authors": [
  10860. {
  10861. "name": "Filipe Dobreira",
  10862. "homepage": "https://github.com/filp",
  10863. "role": "Developer"
  10864. }
  10865. ],
  10866. "description": "php error handling for cool kids",
  10867. "homepage": "https://filp.github.io/whoops/",
  10868. "keywords": [
  10869. "error",
  10870. "exception",
  10871. "handling",
  10872. "library",
  10873. "throwable",
  10874. "whoops"
  10875. ],
  10876. "support": {
  10877. "issues": "https://github.com/filp/whoops/issues",
  10878. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10879. },
  10880. "funding": [
  10881. {
  10882. "url": "https://github.com/denis-sokolov",
  10883. "type": "github"
  10884. }
  10885. ],
  10886. "time": "2022-01-07T12:00:00+00:00"
  10887. },
  10888. {
  10889. "name": "hamcrest/hamcrest-php",
  10890. "version": "v2.0.1",
  10891. "source": {
  10892. "type": "git",
  10893. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10894. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10895. },
  10896. "dist": {
  10897. "type": "zip",
  10898. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10899. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10900. "shasum": "",
  10901. "mirrors": [
  10902. {
  10903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10904. "preferred": true
  10905. }
  10906. ]
  10907. },
  10908. "require": {
  10909. "php": "^5.3|^7.0|^8.0"
  10910. },
  10911. "replace": {
  10912. "cordoval/hamcrest-php": "*",
  10913. "davedevelopment/hamcrest-php": "*",
  10914. "kodova/hamcrest-php": "*"
  10915. },
  10916. "require-dev": {
  10917. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10918. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10919. },
  10920. "type": "library",
  10921. "extra": {
  10922. "branch-alias": {
  10923. "dev-master": "2.1-dev"
  10924. }
  10925. },
  10926. "autoload": {
  10927. "classmap": [
  10928. "hamcrest"
  10929. ]
  10930. },
  10931. "notification-url": "https://packagist.org/downloads/",
  10932. "license": [
  10933. "BSD-3-Clause"
  10934. ],
  10935. "description": "This is the PHP port of Hamcrest Matchers",
  10936. "keywords": [
  10937. "test"
  10938. ],
  10939. "support": {
  10940. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10941. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10942. },
  10943. "time": "2020-07-09T08:09:16+00:00"
  10944. },
  10945. {
  10946. "name": "laravel/sail",
  10947. "version": "v1.15.3",
  10948. "source": {
  10949. "type": "git",
  10950. "url": "https://github.com/laravel/sail.git",
  10951. "reference": "7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1"
  10952. },
  10953. "dist": {
  10954. "type": "zip",
  10955. "url": "https://api.github.com/repos/laravel/sail/zipball/7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1",
  10956. "reference": "7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1",
  10957. "shasum": "",
  10958. "mirrors": [
  10959. {
  10960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10961. "preferred": true
  10962. }
  10963. ]
  10964. },
  10965. "require": {
  10966. "illuminate/console": "^8.0|^9.0",
  10967. "illuminate/contracts": "^8.0|^9.0",
  10968. "illuminate/support": "^8.0|^9.0",
  10969. "php": "^7.3|^8.0"
  10970. },
  10971. "bin": [
  10972. "bin/sail"
  10973. ],
  10974. "type": "library",
  10975. "extra": {
  10976. "branch-alias": {
  10977. "dev-master": "1.x-dev"
  10978. },
  10979. "laravel": {
  10980. "providers": [
  10981. "Laravel\\Sail\\SailServiceProvider"
  10982. ]
  10983. }
  10984. },
  10985. "autoload": {
  10986. "psr-4": {
  10987. "Laravel\\Sail\\": "src/"
  10988. }
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "MIT"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Taylor Otwell",
  10997. "email": "taylor@laravel.com"
  10998. }
  10999. ],
  11000. "description": "Docker files for running a basic Laravel application.",
  11001. "keywords": [
  11002. "docker",
  11003. "laravel"
  11004. ],
  11005. "support": {
  11006. "issues": "https://github.com/laravel/sail/issues",
  11007. "source": "https://github.com/laravel/sail"
  11008. },
  11009. "time": "2022-08-16T14:53:54+00:00"
  11010. },
  11011. {
  11012. "name": "mockery/mockery",
  11013. "version": "1.5.0",
  11014. "source": {
  11015. "type": "git",
  11016. "url": "https://github.com/mockery/mockery.git",
  11017. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  11018. },
  11019. "dist": {
  11020. "type": "zip",
  11021. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11022. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11023. "shasum": "",
  11024. "mirrors": [
  11025. {
  11026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11027. "preferred": true
  11028. }
  11029. ]
  11030. },
  11031. "require": {
  11032. "hamcrest/hamcrest-php": "^2.0.1",
  11033. "lib-pcre": ">=7.0",
  11034. "php": "^7.3 || ^8.0"
  11035. },
  11036. "conflict": {
  11037. "phpunit/phpunit": "<8.0"
  11038. },
  11039. "require-dev": {
  11040. "phpunit/phpunit": "^8.5 || ^9.3"
  11041. },
  11042. "type": "library",
  11043. "extra": {
  11044. "branch-alias": {
  11045. "dev-master": "1.4.x-dev"
  11046. }
  11047. },
  11048. "autoload": {
  11049. "psr-0": {
  11050. "Mockery": "library/"
  11051. }
  11052. },
  11053. "notification-url": "https://packagist.org/downloads/",
  11054. "license": [
  11055. "BSD-3-Clause"
  11056. ],
  11057. "authors": [
  11058. {
  11059. "name": "Pádraic Brady",
  11060. "email": "padraic.brady@gmail.com",
  11061. "homepage": "http://blog.astrumfutura.com"
  11062. },
  11063. {
  11064. "name": "Dave Marshall",
  11065. "email": "dave.marshall@atstsolutions.co.uk",
  11066. "homepage": "http://davedevelopment.co.uk"
  11067. }
  11068. ],
  11069. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11070. "homepage": "https://github.com/mockery/mockery",
  11071. "keywords": [
  11072. "BDD",
  11073. "TDD",
  11074. "library",
  11075. "mock",
  11076. "mock objects",
  11077. "mockery",
  11078. "stub",
  11079. "test",
  11080. "test double",
  11081. "testing"
  11082. ],
  11083. "support": {
  11084. "issues": "https://github.com/mockery/mockery/issues",
  11085. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  11086. },
  11087. "time": "2022-01-20T13:18:17+00:00"
  11088. },
  11089. {
  11090. "name": "myclabs/deep-copy",
  11091. "version": "1.11.0",
  11092. "source": {
  11093. "type": "git",
  11094. "url": "https://github.com/myclabs/DeepCopy.git",
  11095. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  11096. },
  11097. "dist": {
  11098. "type": "zip",
  11099. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11100. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11101. "shasum": "",
  11102. "mirrors": [
  11103. {
  11104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11105. "preferred": true
  11106. }
  11107. ]
  11108. },
  11109. "require": {
  11110. "php": "^7.1 || ^8.0"
  11111. },
  11112. "conflict": {
  11113. "doctrine/collections": "<1.6.8",
  11114. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  11115. },
  11116. "require-dev": {
  11117. "doctrine/collections": "^1.6.8",
  11118. "doctrine/common": "^2.13.3 || ^3.2.2",
  11119. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11120. },
  11121. "type": "library",
  11122. "autoload": {
  11123. "files": [
  11124. "src/DeepCopy/deep_copy.php"
  11125. ],
  11126. "psr-4": {
  11127. "DeepCopy\\": "src/DeepCopy/"
  11128. }
  11129. },
  11130. "notification-url": "https://packagist.org/downloads/",
  11131. "license": [
  11132. "MIT"
  11133. ],
  11134. "description": "Create deep copies (clones) of your objects",
  11135. "keywords": [
  11136. "clone",
  11137. "copy",
  11138. "duplicate",
  11139. "object",
  11140. "object graph"
  11141. ],
  11142. "support": {
  11143. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11144. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  11145. },
  11146. "funding": [
  11147. {
  11148. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11149. "type": "tidelift"
  11150. }
  11151. ],
  11152. "time": "2022-03-03T13:19:32+00:00"
  11153. },
  11154. {
  11155. "name": "nunomaduro/collision",
  11156. "version": "v5.11.0",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/nunomaduro/collision.git",
  11160. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11165. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11166. "shasum": "",
  11167. "mirrors": [
  11168. {
  11169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11170. "preferred": true
  11171. }
  11172. ]
  11173. },
  11174. "require": {
  11175. "facade/ignition-contracts": "^1.0",
  11176. "filp/whoops": "^2.14.3",
  11177. "php": "^7.3 || ^8.0",
  11178. "symfony/console": "^5.0"
  11179. },
  11180. "require-dev": {
  11181. "brianium/paratest": "^6.1",
  11182. "fideloper/proxy": "^4.4.1",
  11183. "fruitcake/laravel-cors": "^2.0.3",
  11184. "laravel/framework": "8.x-dev",
  11185. "nunomaduro/larastan": "^0.6.2",
  11186. "nunomaduro/mock-final-classes": "^1.0",
  11187. "orchestra/testbench": "^6.0",
  11188. "phpstan/phpstan": "^0.12.64",
  11189. "phpunit/phpunit": "^9.5.0"
  11190. },
  11191. "type": "library",
  11192. "extra": {
  11193. "laravel": {
  11194. "providers": [
  11195. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11196. ]
  11197. }
  11198. },
  11199. "autoload": {
  11200. "psr-4": {
  11201. "NunoMaduro\\Collision\\": "src/"
  11202. }
  11203. },
  11204. "notification-url": "https://packagist.org/downloads/",
  11205. "license": [
  11206. "MIT"
  11207. ],
  11208. "authors": [
  11209. {
  11210. "name": "Nuno Maduro",
  11211. "email": "enunomaduro@gmail.com"
  11212. }
  11213. ],
  11214. "description": "Cli error handling for console/command-line PHP applications.",
  11215. "keywords": [
  11216. "artisan",
  11217. "cli",
  11218. "command-line",
  11219. "console",
  11220. "error",
  11221. "handling",
  11222. "laravel",
  11223. "laravel-zero",
  11224. "php",
  11225. "symfony"
  11226. ],
  11227. "support": {
  11228. "issues": "https://github.com/nunomaduro/collision/issues",
  11229. "source": "https://github.com/nunomaduro/collision"
  11230. },
  11231. "funding": [
  11232. {
  11233. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11234. "type": "custom"
  11235. },
  11236. {
  11237. "url": "https://github.com/nunomaduro",
  11238. "type": "github"
  11239. },
  11240. {
  11241. "url": "https://www.patreon.com/nunomaduro",
  11242. "type": "patreon"
  11243. }
  11244. ],
  11245. "time": "2022-01-10T16:22:52+00:00"
  11246. },
  11247. {
  11248. "name": "phar-io/manifest",
  11249. "version": "2.0.3",
  11250. "source": {
  11251. "type": "git",
  11252. "url": "https://github.com/phar-io/manifest.git",
  11253. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11254. },
  11255. "dist": {
  11256. "type": "zip",
  11257. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11258. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11259. "shasum": "",
  11260. "mirrors": [
  11261. {
  11262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11263. "preferred": true
  11264. }
  11265. ]
  11266. },
  11267. "require": {
  11268. "ext-dom": "*",
  11269. "ext-phar": "*",
  11270. "ext-xmlwriter": "*",
  11271. "phar-io/version": "^3.0.1",
  11272. "php": "^7.2 || ^8.0"
  11273. },
  11274. "type": "library",
  11275. "extra": {
  11276. "branch-alias": {
  11277. "dev-master": "2.0.x-dev"
  11278. }
  11279. },
  11280. "autoload": {
  11281. "classmap": [
  11282. "src/"
  11283. ]
  11284. },
  11285. "notification-url": "https://packagist.org/downloads/",
  11286. "license": [
  11287. "BSD-3-Clause"
  11288. ],
  11289. "authors": [
  11290. {
  11291. "name": "Arne Blankerts",
  11292. "email": "arne@blankerts.de",
  11293. "role": "Developer"
  11294. },
  11295. {
  11296. "name": "Sebastian Heuer",
  11297. "email": "sebastian@phpeople.de",
  11298. "role": "Developer"
  11299. },
  11300. {
  11301. "name": "Sebastian Bergmann",
  11302. "email": "sebastian@phpunit.de",
  11303. "role": "Developer"
  11304. }
  11305. ],
  11306. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11307. "support": {
  11308. "issues": "https://github.com/phar-io/manifest/issues",
  11309. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11310. },
  11311. "time": "2021-07-20T11:28:43+00:00"
  11312. },
  11313. {
  11314. "name": "phar-io/version",
  11315. "version": "3.2.1",
  11316. "source": {
  11317. "type": "git",
  11318. "url": "https://github.com/phar-io/version.git",
  11319. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11320. },
  11321. "dist": {
  11322. "type": "zip",
  11323. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11324. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11325. "shasum": "",
  11326. "mirrors": [
  11327. {
  11328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11329. "preferred": true
  11330. }
  11331. ]
  11332. },
  11333. "require": {
  11334. "php": "^7.2 || ^8.0"
  11335. },
  11336. "type": "library",
  11337. "autoload": {
  11338. "classmap": [
  11339. "src/"
  11340. ]
  11341. },
  11342. "notification-url": "https://packagist.org/downloads/",
  11343. "license": [
  11344. "BSD-3-Clause"
  11345. ],
  11346. "authors": [
  11347. {
  11348. "name": "Arne Blankerts",
  11349. "email": "arne@blankerts.de",
  11350. "role": "Developer"
  11351. },
  11352. {
  11353. "name": "Sebastian Heuer",
  11354. "email": "sebastian@phpeople.de",
  11355. "role": "Developer"
  11356. },
  11357. {
  11358. "name": "Sebastian Bergmann",
  11359. "email": "sebastian@phpunit.de",
  11360. "role": "Developer"
  11361. }
  11362. ],
  11363. "description": "Library for handling version information and constraints",
  11364. "support": {
  11365. "issues": "https://github.com/phar-io/version/issues",
  11366. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11367. },
  11368. "time": "2022-02-21T01:04:05+00:00"
  11369. },
  11370. {
  11371. "name": "phpspec/prophecy",
  11372. "version": "v1.15.0",
  11373. "source": {
  11374. "type": "git",
  11375. "url": "https://github.com/phpspec/prophecy.git",
  11376. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11377. },
  11378. "dist": {
  11379. "type": "zip",
  11380. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11381. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11382. "shasum": "",
  11383. "mirrors": [
  11384. {
  11385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11386. "preferred": true
  11387. }
  11388. ]
  11389. },
  11390. "require": {
  11391. "doctrine/instantiator": "^1.2",
  11392. "php": "^7.2 || ~8.0, <8.2",
  11393. "phpdocumentor/reflection-docblock": "^5.2",
  11394. "sebastian/comparator": "^3.0 || ^4.0",
  11395. "sebastian/recursion-context": "^3.0 || ^4.0"
  11396. },
  11397. "require-dev": {
  11398. "phpspec/phpspec": "^6.0 || ^7.0",
  11399. "phpunit/phpunit": "^8.0 || ^9.0"
  11400. },
  11401. "type": "library",
  11402. "extra": {
  11403. "branch-alias": {
  11404. "dev-master": "1.x-dev"
  11405. }
  11406. },
  11407. "autoload": {
  11408. "psr-4": {
  11409. "Prophecy\\": "src/Prophecy"
  11410. }
  11411. },
  11412. "notification-url": "https://packagist.org/downloads/",
  11413. "license": [
  11414. "MIT"
  11415. ],
  11416. "authors": [
  11417. {
  11418. "name": "Konstantin Kudryashov",
  11419. "email": "ever.zet@gmail.com",
  11420. "homepage": "http://everzet.com"
  11421. },
  11422. {
  11423. "name": "Marcello Duarte",
  11424. "email": "marcello.duarte@gmail.com"
  11425. }
  11426. ],
  11427. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11428. "homepage": "https://github.com/phpspec/prophecy",
  11429. "keywords": [
  11430. "Double",
  11431. "Dummy",
  11432. "fake",
  11433. "mock",
  11434. "spy",
  11435. "stub"
  11436. ],
  11437. "support": {
  11438. "issues": "https://github.com/phpspec/prophecy/issues",
  11439. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11440. },
  11441. "time": "2021-12-08T12:19:24+00:00"
  11442. },
  11443. {
  11444. "name": "phpunit/php-code-coverage",
  11445. "version": "9.2.16",
  11446. "source": {
  11447. "type": "git",
  11448. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11449. "reference": "2593003befdcc10db5e213f9f28814f5aa8ac073"
  11450. },
  11451. "dist": {
  11452. "type": "zip",
  11453. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2593003befdcc10db5e213f9f28814f5aa8ac073",
  11454. "reference": "2593003befdcc10db5e213f9f28814f5aa8ac073",
  11455. "shasum": "",
  11456. "mirrors": [
  11457. {
  11458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11459. "preferred": true
  11460. }
  11461. ]
  11462. },
  11463. "require": {
  11464. "ext-dom": "*",
  11465. "ext-libxml": "*",
  11466. "ext-xmlwriter": "*",
  11467. "nikic/php-parser": "^4.14",
  11468. "php": ">=7.3",
  11469. "phpunit/php-file-iterator": "^3.0.3",
  11470. "phpunit/php-text-template": "^2.0.2",
  11471. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11472. "sebastian/complexity": "^2.0",
  11473. "sebastian/environment": "^5.1.2",
  11474. "sebastian/lines-of-code": "^1.0.3",
  11475. "sebastian/version": "^3.0.1",
  11476. "theseer/tokenizer": "^1.2.0"
  11477. },
  11478. "require-dev": {
  11479. "phpunit/phpunit": "^9.3"
  11480. },
  11481. "suggest": {
  11482. "ext-pcov": "*",
  11483. "ext-xdebug": "*"
  11484. },
  11485. "type": "library",
  11486. "extra": {
  11487. "branch-alias": {
  11488. "dev-master": "9.2-dev"
  11489. }
  11490. },
  11491. "autoload": {
  11492. "classmap": [
  11493. "src/"
  11494. ]
  11495. },
  11496. "notification-url": "https://packagist.org/downloads/",
  11497. "license": [
  11498. "BSD-3-Clause"
  11499. ],
  11500. "authors": [
  11501. {
  11502. "name": "Sebastian Bergmann",
  11503. "email": "sebastian@phpunit.de",
  11504. "role": "lead"
  11505. }
  11506. ],
  11507. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11508. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11509. "keywords": [
  11510. "coverage",
  11511. "testing",
  11512. "xunit"
  11513. ],
  11514. "support": {
  11515. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11516. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.16"
  11517. },
  11518. "funding": [
  11519. {
  11520. "url": "https://github.com/sebastianbergmann",
  11521. "type": "github"
  11522. }
  11523. ],
  11524. "time": "2022-08-20T05:26:47+00:00"
  11525. },
  11526. {
  11527. "name": "phpunit/php-file-iterator",
  11528. "version": "3.0.6",
  11529. "source": {
  11530. "type": "git",
  11531. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11532. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11533. },
  11534. "dist": {
  11535. "type": "zip",
  11536. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11537. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11538. "shasum": "",
  11539. "mirrors": [
  11540. {
  11541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11542. "preferred": true
  11543. }
  11544. ]
  11545. },
  11546. "require": {
  11547. "php": ">=7.3"
  11548. },
  11549. "require-dev": {
  11550. "phpunit/phpunit": "^9.3"
  11551. },
  11552. "type": "library",
  11553. "extra": {
  11554. "branch-alias": {
  11555. "dev-master": "3.0-dev"
  11556. }
  11557. },
  11558. "autoload": {
  11559. "classmap": [
  11560. "src/"
  11561. ]
  11562. },
  11563. "notification-url": "https://packagist.org/downloads/",
  11564. "license": [
  11565. "BSD-3-Clause"
  11566. ],
  11567. "authors": [
  11568. {
  11569. "name": "Sebastian Bergmann",
  11570. "email": "sebastian@phpunit.de",
  11571. "role": "lead"
  11572. }
  11573. ],
  11574. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11575. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11576. "keywords": [
  11577. "filesystem",
  11578. "iterator"
  11579. ],
  11580. "support": {
  11581. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11582. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11583. },
  11584. "funding": [
  11585. {
  11586. "url": "https://github.com/sebastianbergmann",
  11587. "type": "github"
  11588. }
  11589. ],
  11590. "time": "2021-12-02T12:48:52+00:00"
  11591. },
  11592. {
  11593. "name": "phpunit/php-invoker",
  11594. "version": "3.1.1",
  11595. "source": {
  11596. "type": "git",
  11597. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11598. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11599. },
  11600. "dist": {
  11601. "type": "zip",
  11602. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11603. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11604. "shasum": "",
  11605. "mirrors": [
  11606. {
  11607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11608. "preferred": true
  11609. }
  11610. ]
  11611. },
  11612. "require": {
  11613. "php": ">=7.3"
  11614. },
  11615. "require-dev": {
  11616. "ext-pcntl": "*",
  11617. "phpunit/phpunit": "^9.3"
  11618. },
  11619. "suggest": {
  11620. "ext-pcntl": "*"
  11621. },
  11622. "type": "library",
  11623. "extra": {
  11624. "branch-alias": {
  11625. "dev-master": "3.1-dev"
  11626. }
  11627. },
  11628. "autoload": {
  11629. "classmap": [
  11630. "src/"
  11631. ]
  11632. },
  11633. "notification-url": "https://packagist.org/downloads/",
  11634. "license": [
  11635. "BSD-3-Clause"
  11636. ],
  11637. "authors": [
  11638. {
  11639. "name": "Sebastian Bergmann",
  11640. "email": "sebastian@phpunit.de",
  11641. "role": "lead"
  11642. }
  11643. ],
  11644. "description": "Invoke callables with a timeout",
  11645. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11646. "keywords": [
  11647. "process"
  11648. ],
  11649. "support": {
  11650. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11651. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11652. },
  11653. "funding": [
  11654. {
  11655. "url": "https://github.com/sebastianbergmann",
  11656. "type": "github"
  11657. }
  11658. ],
  11659. "time": "2020-09-28T05:58:55+00:00"
  11660. },
  11661. {
  11662. "name": "phpunit/php-text-template",
  11663. "version": "2.0.4",
  11664. "source": {
  11665. "type": "git",
  11666. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11667. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11668. },
  11669. "dist": {
  11670. "type": "zip",
  11671. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11672. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11673. "shasum": "",
  11674. "mirrors": [
  11675. {
  11676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11677. "preferred": true
  11678. }
  11679. ]
  11680. },
  11681. "require": {
  11682. "php": ">=7.3"
  11683. },
  11684. "require-dev": {
  11685. "phpunit/phpunit": "^9.3"
  11686. },
  11687. "type": "library",
  11688. "extra": {
  11689. "branch-alias": {
  11690. "dev-master": "2.0-dev"
  11691. }
  11692. },
  11693. "autoload": {
  11694. "classmap": [
  11695. "src/"
  11696. ]
  11697. },
  11698. "notification-url": "https://packagist.org/downloads/",
  11699. "license": [
  11700. "BSD-3-Clause"
  11701. ],
  11702. "authors": [
  11703. {
  11704. "name": "Sebastian Bergmann",
  11705. "email": "sebastian@phpunit.de",
  11706. "role": "lead"
  11707. }
  11708. ],
  11709. "description": "Simple template engine.",
  11710. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11711. "keywords": [
  11712. "template"
  11713. ],
  11714. "support": {
  11715. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11716. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11717. },
  11718. "funding": [
  11719. {
  11720. "url": "https://github.com/sebastianbergmann",
  11721. "type": "github"
  11722. }
  11723. ],
  11724. "time": "2020-10-26T05:33:50+00:00"
  11725. },
  11726. {
  11727. "name": "phpunit/php-timer",
  11728. "version": "5.0.3",
  11729. "source": {
  11730. "type": "git",
  11731. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11732. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11733. },
  11734. "dist": {
  11735. "type": "zip",
  11736. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11737. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11738. "shasum": "",
  11739. "mirrors": [
  11740. {
  11741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11742. "preferred": true
  11743. }
  11744. ]
  11745. },
  11746. "require": {
  11747. "php": ">=7.3"
  11748. },
  11749. "require-dev": {
  11750. "phpunit/phpunit": "^9.3"
  11751. },
  11752. "type": "library",
  11753. "extra": {
  11754. "branch-alias": {
  11755. "dev-master": "5.0-dev"
  11756. }
  11757. },
  11758. "autoload": {
  11759. "classmap": [
  11760. "src/"
  11761. ]
  11762. },
  11763. "notification-url": "https://packagist.org/downloads/",
  11764. "license": [
  11765. "BSD-3-Clause"
  11766. ],
  11767. "authors": [
  11768. {
  11769. "name": "Sebastian Bergmann",
  11770. "email": "sebastian@phpunit.de",
  11771. "role": "lead"
  11772. }
  11773. ],
  11774. "description": "Utility class for timing",
  11775. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11776. "keywords": [
  11777. "timer"
  11778. ],
  11779. "support": {
  11780. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11781. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11782. },
  11783. "funding": [
  11784. {
  11785. "url": "https://github.com/sebastianbergmann",
  11786. "type": "github"
  11787. }
  11788. ],
  11789. "time": "2020-10-26T13:16:10+00:00"
  11790. },
  11791. {
  11792. "name": "phpunit/phpunit",
  11793. "version": "9.5.22",
  11794. "source": {
  11795. "type": "git",
  11796. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11797. "reference": "e329ac6e8744f461518272612a479fde958752fe"
  11798. },
  11799. "dist": {
  11800. "type": "zip",
  11801. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e329ac6e8744f461518272612a479fde958752fe",
  11802. "reference": "e329ac6e8744f461518272612a479fde958752fe",
  11803. "shasum": "",
  11804. "mirrors": [
  11805. {
  11806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11807. "preferred": true
  11808. }
  11809. ]
  11810. },
  11811. "require": {
  11812. "doctrine/instantiator": "^1.3.1",
  11813. "ext-dom": "*",
  11814. "ext-json": "*",
  11815. "ext-libxml": "*",
  11816. "ext-mbstring": "*",
  11817. "ext-xml": "*",
  11818. "ext-xmlwriter": "*",
  11819. "myclabs/deep-copy": "^1.10.1",
  11820. "phar-io/manifest": "^2.0.3",
  11821. "phar-io/version": "^3.0.2",
  11822. "php": ">=7.3",
  11823. "phpspec/prophecy": "^1.12.1",
  11824. "phpunit/php-code-coverage": "^9.2.13",
  11825. "phpunit/php-file-iterator": "^3.0.5",
  11826. "phpunit/php-invoker": "^3.1.1",
  11827. "phpunit/php-text-template": "^2.0.3",
  11828. "phpunit/php-timer": "^5.0.2",
  11829. "sebastian/cli-parser": "^1.0.1",
  11830. "sebastian/code-unit": "^1.0.6",
  11831. "sebastian/comparator": "^4.0.5",
  11832. "sebastian/diff": "^4.0.3",
  11833. "sebastian/environment": "^5.1.3",
  11834. "sebastian/exporter": "^4.0.3",
  11835. "sebastian/global-state": "^5.0.1",
  11836. "sebastian/object-enumerator": "^4.0.3",
  11837. "sebastian/resource-operations": "^3.0.3",
  11838. "sebastian/type": "^3.0",
  11839. "sebastian/version": "^3.0.2"
  11840. },
  11841. "require-dev": {
  11842. "phpspec/prophecy-phpunit": "^2.0.1"
  11843. },
  11844. "suggest": {
  11845. "ext-soap": "*",
  11846. "ext-xdebug": "*"
  11847. },
  11848. "bin": [
  11849. "phpunit"
  11850. ],
  11851. "type": "library",
  11852. "extra": {
  11853. "branch-alias": {
  11854. "dev-master": "9.5-dev"
  11855. }
  11856. },
  11857. "autoload": {
  11858. "files": [
  11859. "src/Framework/Assert/Functions.php"
  11860. ],
  11861. "classmap": [
  11862. "src/"
  11863. ]
  11864. },
  11865. "notification-url": "https://packagist.org/downloads/",
  11866. "license": [
  11867. "BSD-3-Clause"
  11868. ],
  11869. "authors": [
  11870. {
  11871. "name": "Sebastian Bergmann",
  11872. "email": "sebastian@phpunit.de",
  11873. "role": "lead"
  11874. }
  11875. ],
  11876. "description": "The PHP Unit Testing framework.",
  11877. "homepage": "https://phpunit.de/",
  11878. "keywords": [
  11879. "phpunit",
  11880. "testing",
  11881. "xunit"
  11882. ],
  11883. "support": {
  11884. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11885. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.22"
  11886. },
  11887. "funding": [
  11888. {
  11889. "url": "https://phpunit.de/sponsors.html",
  11890. "type": "custom"
  11891. },
  11892. {
  11893. "url": "https://github.com/sebastianbergmann",
  11894. "type": "github"
  11895. }
  11896. ],
  11897. "time": "2022-08-20T08:25:46+00:00"
  11898. },
  11899. {
  11900. "name": "sebastian/cli-parser",
  11901. "version": "1.0.1",
  11902. "source": {
  11903. "type": "git",
  11904. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11905. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11906. },
  11907. "dist": {
  11908. "type": "zip",
  11909. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11910. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11911. "shasum": "",
  11912. "mirrors": [
  11913. {
  11914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11915. "preferred": true
  11916. }
  11917. ]
  11918. },
  11919. "require": {
  11920. "php": ">=7.3"
  11921. },
  11922. "require-dev": {
  11923. "phpunit/phpunit": "^9.3"
  11924. },
  11925. "type": "library",
  11926. "extra": {
  11927. "branch-alias": {
  11928. "dev-master": "1.0-dev"
  11929. }
  11930. },
  11931. "autoload": {
  11932. "classmap": [
  11933. "src/"
  11934. ]
  11935. },
  11936. "notification-url": "https://packagist.org/downloads/",
  11937. "license": [
  11938. "BSD-3-Clause"
  11939. ],
  11940. "authors": [
  11941. {
  11942. "name": "Sebastian Bergmann",
  11943. "email": "sebastian@phpunit.de",
  11944. "role": "lead"
  11945. }
  11946. ],
  11947. "description": "Library for parsing CLI options",
  11948. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11949. "support": {
  11950. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11951. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11952. },
  11953. "funding": [
  11954. {
  11955. "url": "https://github.com/sebastianbergmann",
  11956. "type": "github"
  11957. }
  11958. ],
  11959. "time": "2020-09-28T06:08:49+00:00"
  11960. },
  11961. {
  11962. "name": "sebastian/code-unit",
  11963. "version": "1.0.8",
  11964. "source": {
  11965. "type": "git",
  11966. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11967. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11968. },
  11969. "dist": {
  11970. "type": "zip",
  11971. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11972. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11973. "shasum": "",
  11974. "mirrors": [
  11975. {
  11976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11977. "preferred": true
  11978. }
  11979. ]
  11980. },
  11981. "require": {
  11982. "php": ">=7.3"
  11983. },
  11984. "require-dev": {
  11985. "phpunit/phpunit": "^9.3"
  11986. },
  11987. "type": "library",
  11988. "extra": {
  11989. "branch-alias": {
  11990. "dev-master": "1.0-dev"
  11991. }
  11992. },
  11993. "autoload": {
  11994. "classmap": [
  11995. "src/"
  11996. ]
  11997. },
  11998. "notification-url": "https://packagist.org/downloads/",
  11999. "license": [
  12000. "BSD-3-Clause"
  12001. ],
  12002. "authors": [
  12003. {
  12004. "name": "Sebastian Bergmann",
  12005. "email": "sebastian@phpunit.de",
  12006. "role": "lead"
  12007. }
  12008. ],
  12009. "description": "Collection of value objects that represent the PHP code units",
  12010. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12011. "support": {
  12012. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12013. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12014. },
  12015. "funding": [
  12016. {
  12017. "url": "https://github.com/sebastianbergmann",
  12018. "type": "github"
  12019. }
  12020. ],
  12021. "time": "2020-10-26T13:08:54+00:00"
  12022. },
  12023. {
  12024. "name": "sebastian/code-unit-reverse-lookup",
  12025. "version": "2.0.3",
  12026. "source": {
  12027. "type": "git",
  12028. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12029. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12030. },
  12031. "dist": {
  12032. "type": "zip",
  12033. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12034. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12035. "shasum": "",
  12036. "mirrors": [
  12037. {
  12038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12039. "preferred": true
  12040. }
  12041. ]
  12042. },
  12043. "require": {
  12044. "php": ">=7.3"
  12045. },
  12046. "require-dev": {
  12047. "phpunit/phpunit": "^9.3"
  12048. },
  12049. "type": "library",
  12050. "extra": {
  12051. "branch-alias": {
  12052. "dev-master": "2.0-dev"
  12053. }
  12054. },
  12055. "autoload": {
  12056. "classmap": [
  12057. "src/"
  12058. ]
  12059. },
  12060. "notification-url": "https://packagist.org/downloads/",
  12061. "license": [
  12062. "BSD-3-Clause"
  12063. ],
  12064. "authors": [
  12065. {
  12066. "name": "Sebastian Bergmann",
  12067. "email": "sebastian@phpunit.de"
  12068. }
  12069. ],
  12070. "description": "Looks up which function or method a line of code belongs to",
  12071. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12072. "support": {
  12073. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12074. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12075. },
  12076. "funding": [
  12077. {
  12078. "url": "https://github.com/sebastianbergmann",
  12079. "type": "github"
  12080. }
  12081. ],
  12082. "time": "2020-09-28T05:30:19+00:00"
  12083. },
  12084. {
  12085. "name": "sebastian/comparator",
  12086. "version": "4.0.6",
  12087. "source": {
  12088. "type": "git",
  12089. "url": "https://github.com/sebastianbergmann/comparator.git",
  12090. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  12091. },
  12092. "dist": {
  12093. "type": "zip",
  12094. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  12095. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  12096. "shasum": "",
  12097. "mirrors": [
  12098. {
  12099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12100. "preferred": true
  12101. }
  12102. ]
  12103. },
  12104. "require": {
  12105. "php": ">=7.3",
  12106. "sebastian/diff": "^4.0",
  12107. "sebastian/exporter": "^4.0"
  12108. },
  12109. "require-dev": {
  12110. "phpunit/phpunit": "^9.3"
  12111. },
  12112. "type": "library",
  12113. "extra": {
  12114. "branch-alias": {
  12115. "dev-master": "4.0-dev"
  12116. }
  12117. },
  12118. "autoload": {
  12119. "classmap": [
  12120. "src/"
  12121. ]
  12122. },
  12123. "notification-url": "https://packagist.org/downloads/",
  12124. "license": [
  12125. "BSD-3-Clause"
  12126. ],
  12127. "authors": [
  12128. {
  12129. "name": "Sebastian Bergmann",
  12130. "email": "sebastian@phpunit.de"
  12131. },
  12132. {
  12133. "name": "Jeff Welch",
  12134. "email": "whatthejeff@gmail.com"
  12135. },
  12136. {
  12137. "name": "Volker Dusch",
  12138. "email": "github@wallbash.com"
  12139. },
  12140. {
  12141. "name": "Bernhard Schussek",
  12142. "email": "bschussek@2bepublished.at"
  12143. }
  12144. ],
  12145. "description": "Provides the functionality to compare PHP values for equality",
  12146. "homepage": "https://github.com/sebastianbergmann/comparator",
  12147. "keywords": [
  12148. "comparator",
  12149. "compare",
  12150. "equality"
  12151. ],
  12152. "support": {
  12153. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12154. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  12155. },
  12156. "funding": [
  12157. {
  12158. "url": "https://github.com/sebastianbergmann",
  12159. "type": "github"
  12160. }
  12161. ],
  12162. "time": "2020-10-26T15:49:45+00:00"
  12163. },
  12164. {
  12165. "name": "sebastian/complexity",
  12166. "version": "2.0.2",
  12167. "source": {
  12168. "type": "git",
  12169. "url": "https://github.com/sebastianbergmann/complexity.git",
  12170. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12171. },
  12172. "dist": {
  12173. "type": "zip",
  12174. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12175. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12176. "shasum": "",
  12177. "mirrors": [
  12178. {
  12179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12180. "preferred": true
  12181. }
  12182. ]
  12183. },
  12184. "require": {
  12185. "nikic/php-parser": "^4.7",
  12186. "php": ">=7.3"
  12187. },
  12188. "require-dev": {
  12189. "phpunit/phpunit": "^9.3"
  12190. },
  12191. "type": "library",
  12192. "extra": {
  12193. "branch-alias": {
  12194. "dev-master": "2.0-dev"
  12195. }
  12196. },
  12197. "autoload": {
  12198. "classmap": [
  12199. "src/"
  12200. ]
  12201. },
  12202. "notification-url": "https://packagist.org/downloads/",
  12203. "license": [
  12204. "BSD-3-Clause"
  12205. ],
  12206. "authors": [
  12207. {
  12208. "name": "Sebastian Bergmann",
  12209. "email": "sebastian@phpunit.de",
  12210. "role": "lead"
  12211. }
  12212. ],
  12213. "description": "Library for calculating the complexity of PHP code units",
  12214. "homepage": "https://github.com/sebastianbergmann/complexity",
  12215. "support": {
  12216. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12217. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12218. },
  12219. "funding": [
  12220. {
  12221. "url": "https://github.com/sebastianbergmann",
  12222. "type": "github"
  12223. }
  12224. ],
  12225. "time": "2020-10-26T15:52:27+00:00"
  12226. },
  12227. {
  12228. "name": "sebastian/diff",
  12229. "version": "4.0.4",
  12230. "source": {
  12231. "type": "git",
  12232. "url": "https://github.com/sebastianbergmann/diff.git",
  12233. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12234. },
  12235. "dist": {
  12236. "type": "zip",
  12237. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12238. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12239. "shasum": "",
  12240. "mirrors": [
  12241. {
  12242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12243. "preferred": true
  12244. }
  12245. ]
  12246. },
  12247. "require": {
  12248. "php": ">=7.3"
  12249. },
  12250. "require-dev": {
  12251. "phpunit/phpunit": "^9.3",
  12252. "symfony/process": "^4.2 || ^5"
  12253. },
  12254. "type": "library",
  12255. "extra": {
  12256. "branch-alias": {
  12257. "dev-master": "4.0-dev"
  12258. }
  12259. },
  12260. "autoload": {
  12261. "classmap": [
  12262. "src/"
  12263. ]
  12264. },
  12265. "notification-url": "https://packagist.org/downloads/",
  12266. "license": [
  12267. "BSD-3-Clause"
  12268. ],
  12269. "authors": [
  12270. {
  12271. "name": "Sebastian Bergmann",
  12272. "email": "sebastian@phpunit.de"
  12273. },
  12274. {
  12275. "name": "Kore Nordmann",
  12276. "email": "mail@kore-nordmann.de"
  12277. }
  12278. ],
  12279. "description": "Diff implementation",
  12280. "homepage": "https://github.com/sebastianbergmann/diff",
  12281. "keywords": [
  12282. "diff",
  12283. "udiff",
  12284. "unidiff",
  12285. "unified diff"
  12286. ],
  12287. "support": {
  12288. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12289. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12290. },
  12291. "funding": [
  12292. {
  12293. "url": "https://github.com/sebastianbergmann",
  12294. "type": "github"
  12295. }
  12296. ],
  12297. "time": "2020-10-26T13:10:38+00:00"
  12298. },
  12299. {
  12300. "name": "sebastian/environment",
  12301. "version": "5.1.4",
  12302. "source": {
  12303. "type": "git",
  12304. "url": "https://github.com/sebastianbergmann/environment.git",
  12305. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12306. },
  12307. "dist": {
  12308. "type": "zip",
  12309. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12310. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12311. "shasum": "",
  12312. "mirrors": [
  12313. {
  12314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12315. "preferred": true
  12316. }
  12317. ]
  12318. },
  12319. "require": {
  12320. "php": ">=7.3"
  12321. },
  12322. "require-dev": {
  12323. "phpunit/phpunit": "^9.3"
  12324. },
  12325. "suggest": {
  12326. "ext-posix": "*"
  12327. },
  12328. "type": "library",
  12329. "extra": {
  12330. "branch-alias": {
  12331. "dev-master": "5.1-dev"
  12332. }
  12333. },
  12334. "autoload": {
  12335. "classmap": [
  12336. "src/"
  12337. ]
  12338. },
  12339. "notification-url": "https://packagist.org/downloads/",
  12340. "license": [
  12341. "BSD-3-Clause"
  12342. ],
  12343. "authors": [
  12344. {
  12345. "name": "Sebastian Bergmann",
  12346. "email": "sebastian@phpunit.de"
  12347. }
  12348. ],
  12349. "description": "Provides functionality to handle HHVM/PHP environments",
  12350. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12351. "keywords": [
  12352. "Xdebug",
  12353. "environment",
  12354. "hhvm"
  12355. ],
  12356. "support": {
  12357. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12358. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12359. },
  12360. "funding": [
  12361. {
  12362. "url": "https://github.com/sebastianbergmann",
  12363. "type": "github"
  12364. }
  12365. ],
  12366. "time": "2022-04-03T09:37:03+00:00"
  12367. },
  12368. {
  12369. "name": "sebastian/exporter",
  12370. "version": "4.0.4",
  12371. "source": {
  12372. "type": "git",
  12373. "url": "https://github.com/sebastianbergmann/exporter.git",
  12374. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12375. },
  12376. "dist": {
  12377. "type": "zip",
  12378. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12379. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12380. "shasum": "",
  12381. "mirrors": [
  12382. {
  12383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12384. "preferred": true
  12385. }
  12386. ]
  12387. },
  12388. "require": {
  12389. "php": ">=7.3",
  12390. "sebastian/recursion-context": "^4.0"
  12391. },
  12392. "require-dev": {
  12393. "ext-mbstring": "*",
  12394. "phpunit/phpunit": "^9.3"
  12395. },
  12396. "type": "library",
  12397. "extra": {
  12398. "branch-alias": {
  12399. "dev-master": "4.0-dev"
  12400. }
  12401. },
  12402. "autoload": {
  12403. "classmap": [
  12404. "src/"
  12405. ]
  12406. },
  12407. "notification-url": "https://packagist.org/downloads/",
  12408. "license": [
  12409. "BSD-3-Clause"
  12410. ],
  12411. "authors": [
  12412. {
  12413. "name": "Sebastian Bergmann",
  12414. "email": "sebastian@phpunit.de"
  12415. },
  12416. {
  12417. "name": "Jeff Welch",
  12418. "email": "whatthejeff@gmail.com"
  12419. },
  12420. {
  12421. "name": "Volker Dusch",
  12422. "email": "github@wallbash.com"
  12423. },
  12424. {
  12425. "name": "Adam Harvey",
  12426. "email": "aharvey@php.net"
  12427. },
  12428. {
  12429. "name": "Bernhard Schussek",
  12430. "email": "bschussek@gmail.com"
  12431. }
  12432. ],
  12433. "description": "Provides the functionality to export PHP variables for visualization",
  12434. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12435. "keywords": [
  12436. "export",
  12437. "exporter"
  12438. ],
  12439. "support": {
  12440. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12441. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12442. },
  12443. "funding": [
  12444. {
  12445. "url": "https://github.com/sebastianbergmann",
  12446. "type": "github"
  12447. }
  12448. ],
  12449. "time": "2021-11-11T14:18:36+00:00"
  12450. },
  12451. {
  12452. "name": "sebastian/global-state",
  12453. "version": "5.0.5",
  12454. "source": {
  12455. "type": "git",
  12456. "url": "https://github.com/sebastianbergmann/global-state.git",
  12457. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12458. },
  12459. "dist": {
  12460. "type": "zip",
  12461. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12462. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12463. "shasum": "",
  12464. "mirrors": [
  12465. {
  12466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12467. "preferred": true
  12468. }
  12469. ]
  12470. },
  12471. "require": {
  12472. "php": ">=7.3",
  12473. "sebastian/object-reflector": "^2.0",
  12474. "sebastian/recursion-context": "^4.0"
  12475. },
  12476. "require-dev": {
  12477. "ext-dom": "*",
  12478. "phpunit/phpunit": "^9.3"
  12479. },
  12480. "suggest": {
  12481. "ext-uopz": "*"
  12482. },
  12483. "type": "library",
  12484. "extra": {
  12485. "branch-alias": {
  12486. "dev-master": "5.0-dev"
  12487. }
  12488. },
  12489. "autoload": {
  12490. "classmap": [
  12491. "src/"
  12492. ]
  12493. },
  12494. "notification-url": "https://packagist.org/downloads/",
  12495. "license": [
  12496. "BSD-3-Clause"
  12497. ],
  12498. "authors": [
  12499. {
  12500. "name": "Sebastian Bergmann",
  12501. "email": "sebastian@phpunit.de"
  12502. }
  12503. ],
  12504. "description": "Snapshotting of global state",
  12505. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12506. "keywords": [
  12507. "global state"
  12508. ],
  12509. "support": {
  12510. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12511. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12512. },
  12513. "funding": [
  12514. {
  12515. "url": "https://github.com/sebastianbergmann",
  12516. "type": "github"
  12517. }
  12518. ],
  12519. "time": "2022-02-14T08:28:10+00:00"
  12520. },
  12521. {
  12522. "name": "sebastian/lines-of-code",
  12523. "version": "1.0.3",
  12524. "source": {
  12525. "type": "git",
  12526. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12527. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12528. },
  12529. "dist": {
  12530. "type": "zip",
  12531. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12532. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12533. "shasum": "",
  12534. "mirrors": [
  12535. {
  12536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12537. "preferred": true
  12538. }
  12539. ]
  12540. },
  12541. "require": {
  12542. "nikic/php-parser": "^4.6",
  12543. "php": ">=7.3"
  12544. },
  12545. "require-dev": {
  12546. "phpunit/phpunit": "^9.3"
  12547. },
  12548. "type": "library",
  12549. "extra": {
  12550. "branch-alias": {
  12551. "dev-master": "1.0-dev"
  12552. }
  12553. },
  12554. "autoload": {
  12555. "classmap": [
  12556. "src/"
  12557. ]
  12558. },
  12559. "notification-url": "https://packagist.org/downloads/",
  12560. "license": [
  12561. "BSD-3-Clause"
  12562. ],
  12563. "authors": [
  12564. {
  12565. "name": "Sebastian Bergmann",
  12566. "email": "sebastian@phpunit.de",
  12567. "role": "lead"
  12568. }
  12569. ],
  12570. "description": "Library for counting the lines of code in PHP source code",
  12571. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12572. "support": {
  12573. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12574. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12575. },
  12576. "funding": [
  12577. {
  12578. "url": "https://github.com/sebastianbergmann",
  12579. "type": "github"
  12580. }
  12581. ],
  12582. "time": "2020-11-28T06:42:11+00:00"
  12583. },
  12584. {
  12585. "name": "sebastian/object-enumerator",
  12586. "version": "4.0.4",
  12587. "source": {
  12588. "type": "git",
  12589. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12590. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12591. },
  12592. "dist": {
  12593. "type": "zip",
  12594. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12595. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12596. "shasum": "",
  12597. "mirrors": [
  12598. {
  12599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12600. "preferred": true
  12601. }
  12602. ]
  12603. },
  12604. "require": {
  12605. "php": ">=7.3",
  12606. "sebastian/object-reflector": "^2.0",
  12607. "sebastian/recursion-context": "^4.0"
  12608. },
  12609. "require-dev": {
  12610. "phpunit/phpunit": "^9.3"
  12611. },
  12612. "type": "library",
  12613. "extra": {
  12614. "branch-alias": {
  12615. "dev-master": "4.0-dev"
  12616. }
  12617. },
  12618. "autoload": {
  12619. "classmap": [
  12620. "src/"
  12621. ]
  12622. },
  12623. "notification-url": "https://packagist.org/downloads/",
  12624. "license": [
  12625. "BSD-3-Clause"
  12626. ],
  12627. "authors": [
  12628. {
  12629. "name": "Sebastian Bergmann",
  12630. "email": "sebastian@phpunit.de"
  12631. }
  12632. ],
  12633. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12634. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12635. "support": {
  12636. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12637. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12638. },
  12639. "funding": [
  12640. {
  12641. "url": "https://github.com/sebastianbergmann",
  12642. "type": "github"
  12643. }
  12644. ],
  12645. "time": "2020-10-26T13:12:34+00:00"
  12646. },
  12647. {
  12648. "name": "sebastian/object-reflector",
  12649. "version": "2.0.4",
  12650. "source": {
  12651. "type": "git",
  12652. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12653. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12654. },
  12655. "dist": {
  12656. "type": "zip",
  12657. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12658. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12659. "shasum": "",
  12660. "mirrors": [
  12661. {
  12662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12663. "preferred": true
  12664. }
  12665. ]
  12666. },
  12667. "require": {
  12668. "php": ">=7.3"
  12669. },
  12670. "require-dev": {
  12671. "phpunit/phpunit": "^9.3"
  12672. },
  12673. "type": "library",
  12674. "extra": {
  12675. "branch-alias": {
  12676. "dev-master": "2.0-dev"
  12677. }
  12678. },
  12679. "autoload": {
  12680. "classmap": [
  12681. "src/"
  12682. ]
  12683. },
  12684. "notification-url": "https://packagist.org/downloads/",
  12685. "license": [
  12686. "BSD-3-Clause"
  12687. ],
  12688. "authors": [
  12689. {
  12690. "name": "Sebastian Bergmann",
  12691. "email": "sebastian@phpunit.de"
  12692. }
  12693. ],
  12694. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12695. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12696. "support": {
  12697. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12698. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12699. },
  12700. "funding": [
  12701. {
  12702. "url": "https://github.com/sebastianbergmann",
  12703. "type": "github"
  12704. }
  12705. ],
  12706. "time": "2020-10-26T13:14:26+00:00"
  12707. },
  12708. {
  12709. "name": "sebastian/recursion-context",
  12710. "version": "4.0.4",
  12711. "source": {
  12712. "type": "git",
  12713. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12714. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12715. },
  12716. "dist": {
  12717. "type": "zip",
  12718. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12719. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12720. "shasum": "",
  12721. "mirrors": [
  12722. {
  12723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12724. "preferred": true
  12725. }
  12726. ]
  12727. },
  12728. "require": {
  12729. "php": ">=7.3"
  12730. },
  12731. "require-dev": {
  12732. "phpunit/phpunit": "^9.3"
  12733. },
  12734. "type": "library",
  12735. "extra": {
  12736. "branch-alias": {
  12737. "dev-master": "4.0-dev"
  12738. }
  12739. },
  12740. "autoload": {
  12741. "classmap": [
  12742. "src/"
  12743. ]
  12744. },
  12745. "notification-url": "https://packagist.org/downloads/",
  12746. "license": [
  12747. "BSD-3-Clause"
  12748. ],
  12749. "authors": [
  12750. {
  12751. "name": "Sebastian Bergmann",
  12752. "email": "sebastian@phpunit.de"
  12753. },
  12754. {
  12755. "name": "Jeff Welch",
  12756. "email": "whatthejeff@gmail.com"
  12757. },
  12758. {
  12759. "name": "Adam Harvey",
  12760. "email": "aharvey@php.net"
  12761. }
  12762. ],
  12763. "description": "Provides functionality to recursively process PHP variables",
  12764. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12765. "support": {
  12766. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12767. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12768. },
  12769. "funding": [
  12770. {
  12771. "url": "https://github.com/sebastianbergmann",
  12772. "type": "github"
  12773. }
  12774. ],
  12775. "time": "2020-10-26T13:17:30+00:00"
  12776. },
  12777. {
  12778. "name": "sebastian/resource-operations",
  12779. "version": "3.0.3",
  12780. "source": {
  12781. "type": "git",
  12782. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12783. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12784. },
  12785. "dist": {
  12786. "type": "zip",
  12787. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12788. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12789. "shasum": "",
  12790. "mirrors": [
  12791. {
  12792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12793. "preferred": true
  12794. }
  12795. ]
  12796. },
  12797. "require": {
  12798. "php": ">=7.3"
  12799. },
  12800. "require-dev": {
  12801. "phpunit/phpunit": "^9.0"
  12802. },
  12803. "type": "library",
  12804. "extra": {
  12805. "branch-alias": {
  12806. "dev-master": "3.0-dev"
  12807. }
  12808. },
  12809. "autoload": {
  12810. "classmap": [
  12811. "src/"
  12812. ]
  12813. },
  12814. "notification-url": "https://packagist.org/downloads/",
  12815. "license": [
  12816. "BSD-3-Clause"
  12817. ],
  12818. "authors": [
  12819. {
  12820. "name": "Sebastian Bergmann",
  12821. "email": "sebastian@phpunit.de"
  12822. }
  12823. ],
  12824. "description": "Provides a list of PHP built-in functions that operate on resources",
  12825. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12826. "support": {
  12827. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12828. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12829. },
  12830. "funding": [
  12831. {
  12832. "url": "https://github.com/sebastianbergmann",
  12833. "type": "github"
  12834. }
  12835. ],
  12836. "time": "2020-09-28T06:45:17+00:00"
  12837. },
  12838. {
  12839. "name": "sebastian/type",
  12840. "version": "3.0.0",
  12841. "source": {
  12842. "type": "git",
  12843. "url": "https://github.com/sebastianbergmann/type.git",
  12844. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  12845. },
  12846. "dist": {
  12847. "type": "zip",
  12848. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12849. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12850. "shasum": "",
  12851. "mirrors": [
  12852. {
  12853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12854. "preferred": true
  12855. }
  12856. ]
  12857. },
  12858. "require": {
  12859. "php": ">=7.3"
  12860. },
  12861. "require-dev": {
  12862. "phpunit/phpunit": "^9.5"
  12863. },
  12864. "type": "library",
  12865. "extra": {
  12866. "branch-alias": {
  12867. "dev-master": "3.0-dev"
  12868. }
  12869. },
  12870. "autoload": {
  12871. "classmap": [
  12872. "src/"
  12873. ]
  12874. },
  12875. "notification-url": "https://packagist.org/downloads/",
  12876. "license": [
  12877. "BSD-3-Clause"
  12878. ],
  12879. "authors": [
  12880. {
  12881. "name": "Sebastian Bergmann",
  12882. "email": "sebastian@phpunit.de",
  12883. "role": "lead"
  12884. }
  12885. ],
  12886. "description": "Collection of value objects that represent the types of the PHP type system",
  12887. "homepage": "https://github.com/sebastianbergmann/type",
  12888. "support": {
  12889. "issues": "https://github.com/sebastianbergmann/type/issues",
  12890. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  12891. },
  12892. "funding": [
  12893. {
  12894. "url": "https://github.com/sebastianbergmann",
  12895. "type": "github"
  12896. }
  12897. ],
  12898. "time": "2022-03-15T09:54:48+00:00"
  12899. },
  12900. {
  12901. "name": "sebastian/version",
  12902. "version": "3.0.2",
  12903. "source": {
  12904. "type": "git",
  12905. "url": "https://github.com/sebastianbergmann/version.git",
  12906. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12907. },
  12908. "dist": {
  12909. "type": "zip",
  12910. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12911. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12912. "shasum": "",
  12913. "mirrors": [
  12914. {
  12915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12916. "preferred": true
  12917. }
  12918. ]
  12919. },
  12920. "require": {
  12921. "php": ">=7.3"
  12922. },
  12923. "type": "library",
  12924. "extra": {
  12925. "branch-alias": {
  12926. "dev-master": "3.0-dev"
  12927. }
  12928. },
  12929. "autoload": {
  12930. "classmap": [
  12931. "src/"
  12932. ]
  12933. },
  12934. "notification-url": "https://packagist.org/downloads/",
  12935. "license": [
  12936. "BSD-3-Clause"
  12937. ],
  12938. "authors": [
  12939. {
  12940. "name": "Sebastian Bergmann",
  12941. "email": "sebastian@phpunit.de",
  12942. "role": "lead"
  12943. }
  12944. ],
  12945. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12946. "homepage": "https://github.com/sebastianbergmann/version",
  12947. "support": {
  12948. "issues": "https://github.com/sebastianbergmann/version/issues",
  12949. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12950. },
  12951. "funding": [
  12952. {
  12953. "url": "https://github.com/sebastianbergmann",
  12954. "type": "github"
  12955. }
  12956. ],
  12957. "time": "2020-09-28T06:39:44+00:00"
  12958. },
  12959. {
  12960. "name": "theseer/tokenizer",
  12961. "version": "1.2.1",
  12962. "source": {
  12963. "type": "git",
  12964. "url": "https://github.com/theseer/tokenizer.git",
  12965. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12966. },
  12967. "dist": {
  12968. "type": "zip",
  12969. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12970. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12971. "shasum": "",
  12972. "mirrors": [
  12973. {
  12974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12975. "preferred": true
  12976. }
  12977. ]
  12978. },
  12979. "require": {
  12980. "ext-dom": "*",
  12981. "ext-tokenizer": "*",
  12982. "ext-xmlwriter": "*",
  12983. "php": "^7.2 || ^8.0"
  12984. },
  12985. "type": "library",
  12986. "autoload": {
  12987. "classmap": [
  12988. "src/"
  12989. ]
  12990. },
  12991. "notification-url": "https://packagist.org/downloads/",
  12992. "license": [
  12993. "BSD-3-Clause"
  12994. ],
  12995. "authors": [
  12996. {
  12997. "name": "Arne Blankerts",
  12998. "email": "arne@blankerts.de",
  12999. "role": "Developer"
  13000. }
  13001. ],
  13002. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13003. "support": {
  13004. "issues": "https://github.com/theseer/tokenizer/issues",
  13005. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13006. },
  13007. "funding": [
  13008. {
  13009. "url": "https://github.com/theseer",
  13010. "type": "github"
  13011. }
  13012. ],
  13013. "time": "2021-07-28T10:34:58+00:00"
  13014. }
  13015. ],
  13016. "aliases": [],
  13017. "minimum-stability": "dev",
  13018. "stability-flags": [],
  13019. "prefer-stable": true,
  13020. "prefer-lowest": false,
  13021. "platform": {
  13022. "php": "^7.3|^8.0",
  13023. "ext-json": "*"
  13024. },
  13025. "platform-dev": [],
  13026. "plugin-api-version": "2.0.0"
  13027. }