composer.lock 290 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159
  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": "1545f8a7db7eba587d85838702310386",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  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. "time": "2019-01-01T23:59:15+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/client",
  66. "version": "1.5.29",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  70. "reference": "2d0137828ef5c44664dcb8cc90eac4f545dd3301"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/2d0137828ef5c44664dcb8cc90eac4f545dd3301",
  75. "reference": "2d0137828ef5c44664dcb8cc90eac4f545dd3301",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "clagiordano/weblibs-configmanager": "^1.0",
  87. "danielstjules/stringy": "^3.1",
  88. "ext-curl": "*",
  89. "ext-json": "*",
  90. "ext-libxml": "*",
  91. "ext-mbstring": "*",
  92. "ext-openssl": "*",
  93. "ext-simplexml": "*",
  94. "ext-xmlwriter": "*",
  95. "guzzlehttp/guzzle": "^6.3|^7.0",
  96. "mtdowling/jmespath.php": "^2.5",
  97. "php": ">=5.5"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "league/climate": "^3.2.4",
  107. "mikey179/vfsstream": "^1.6",
  108. "monolog/monolog": "^1.24",
  109. "phpunit/phpunit": "^5.7.27",
  110. "psr/cache": "^1.0",
  111. "symfony/dotenv": "^3.4",
  112. "symfony/var-dumper": "^3.4"
  113. },
  114. "suggest": {
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "time": "2020-08-03T06:19:07+00:00"
  150. },
  151. {
  152. "name": "alibabacloud/iot",
  153. "version": "1.8.482",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/alibabacloud-sdk-php/iot.git",
  157. "reference": "e86bf8467237ed6b642fba2fada48827246c6340"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/alibabacloud-sdk-php/iot/zipball/e86bf8467237ed6b642fba2fada48827246c6340",
  162. "reference": "e86bf8467237ed6b642fba2fada48827246c6340",
  163. "shasum": "",
  164. "mirrors": [
  165. {
  166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  167. "preferred": true
  168. }
  169. ]
  170. },
  171. "require": {
  172. "alibabacloud/client": "^1.5",
  173. "php": ">=5.5"
  174. },
  175. "type": "library",
  176. "autoload": {
  177. "psr-4": {
  178. "AlibabaCloud\\Iot\\": ""
  179. }
  180. },
  181. "notification-url": "https://packagist.org/downloads/",
  182. "license": [
  183. "Apache-2.0"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Alibaba Cloud SDK",
  188. "email": "sdk-team@alibabacloud.com",
  189. "homepage": "http://www.alibabacloud.com"
  190. }
  191. ],
  192. "description": "Alibaba Cloud Iot SDK for PHP",
  193. "homepage": "https://www.alibabacloud.com/",
  194. "keywords": [
  195. "alibaba",
  196. "alibabacloud",
  197. "aliyun",
  198. "cloud",
  199. "iot",
  200. "library",
  201. "sdk"
  202. ],
  203. "time": "2020-08-06T08:16:28+00:00"
  204. },
  205. {
  206. "name": "cache/adapter-common",
  207. "version": "1.1.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/php-cache/adapter-common.git",
  211. "reference": "6320bb5f5574cb88438059b59f8708da6b6f1d32"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/6320bb5f5574cb88438059b59f8708da6b6f1d32",
  216. "reference": "6320bb5f5574cb88438059b59f8708da6b6f1d32",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "cache/tag-interop": "^1.0",
  227. "php": "^5.6 || ^7.0",
  228. "psr/cache": "^1.0",
  229. "psr/log": "^1.0",
  230. "psr/simple-cache": "^1.0"
  231. },
  232. "require-dev": {
  233. "cache/integration-tests": "^0.16",
  234. "phpunit/phpunit": "^5.7.21"
  235. },
  236. "type": "library",
  237. "extra": {
  238. "branch-alias": {
  239. "dev-master": "1.1-dev"
  240. }
  241. },
  242. "autoload": {
  243. "psr-4": {
  244. "Cache\\Adapter\\Common\\": ""
  245. }
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Aaron Scherer",
  254. "email": "aequasi@gmail.com",
  255. "homepage": "https://github.com/aequasi"
  256. },
  257. {
  258. "name": "Tobias Nyholm",
  259. "email": "tobias.nyholm@gmail.com",
  260. "homepage": "https://github.com/Nyholm"
  261. }
  262. ],
  263. "description": "Common classes for PSR-6 adapters",
  264. "homepage": "http://www.php-cache.com/en/latest/",
  265. "keywords": [
  266. "cache",
  267. "psr-6",
  268. "tag"
  269. ],
  270. "time": "2018-07-08T13:04:33+00:00"
  271. },
  272. {
  273. "name": "cache/filesystem-adapter",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/php-cache/filesystem-adapter.git",
  278. "reference": "d50680b6dabbe39f9831f5fc9efa61c09d936017"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/d50680b6dabbe39f9831f5fc9efa61c09d936017",
  283. "reference": "d50680b6dabbe39f9831f5fc9efa61c09d936017",
  284. "shasum": "",
  285. "mirrors": [
  286. {
  287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  288. "preferred": true
  289. }
  290. ]
  291. },
  292. "require": {
  293. "cache/adapter-common": "^1.0",
  294. "league/flysystem": "^1.0",
  295. "php": "^5.6 || ^7.0",
  296. "psr/cache": "^1.0",
  297. "psr/simple-cache": "^1.0"
  298. },
  299. "provide": {
  300. "psr/cache-implementation": "^1.0"
  301. },
  302. "require-dev": {
  303. "cache/integration-tests": "^0.16",
  304. "phpunit/phpunit": "^5.7.21"
  305. },
  306. "type": "library",
  307. "extra": {
  308. "branch-alias": {
  309. "dev-master": "1.0-dev"
  310. }
  311. },
  312. "autoload": {
  313. "psr-4": {
  314. "Cache\\Adapter\\Filesystem\\": ""
  315. },
  316. "exclude-from-classmap": [
  317. "/Tests/"
  318. ]
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Aaron Scherer",
  327. "email": "aequasi@gmail.com",
  328. "homepage": "https://github.com/aequasi"
  329. },
  330. {
  331. "name": "Tobias Nyholm",
  332. "email": "tobias.nyholm@gmail.com",
  333. "homepage": "https://github.com/Nyholm"
  334. }
  335. ],
  336. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  337. "homepage": "http://www.php-cache.com/en/latest/",
  338. "keywords": [
  339. "cache",
  340. "filesystem",
  341. "psr-6",
  342. "tag"
  343. ],
  344. "time": "2017-07-16T21:09:25+00:00"
  345. },
  346. {
  347. "name": "cache/tag-interop",
  348. "version": "1.0.0",
  349. "source": {
  350. "type": "git",
  351. "url": "https://github.com/php-cache/tag-interop.git",
  352. "reference": "c7496dd81530f538af27b4f2713cde97bc292832"
  353. },
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/c7496dd81530f538af27b4f2713cde97bc292832",
  357. "reference": "c7496dd81530f538af27b4f2713cde97bc292832",
  358. "shasum": "",
  359. "mirrors": [
  360. {
  361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  362. "preferred": true
  363. }
  364. ]
  365. },
  366. "require": {
  367. "php": "^5.5 || ^7.0",
  368. "psr/cache": "^1.0"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "2.0-dev"
  374. }
  375. },
  376. "autoload": {
  377. "psr-4": {
  378. "Cache\\TagInterop\\": ""
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Tobias Nyholm",
  388. "email": "tobias.nyholm@gmail.com",
  389. "homepage": "https://github.com/Nyholm"
  390. },
  391. {
  392. "name": "Nicolas Grekas",
  393. "email": "p@tchwork.com",
  394. "homepage": "https://github.com/nicolas-grekas"
  395. }
  396. ],
  397. "description": "Framework interoperable interfaces for tags",
  398. "homepage": "http://www.php-cache.com/en/latest/",
  399. "keywords": [
  400. "cache",
  401. "psr",
  402. "psr6",
  403. "tag"
  404. ],
  405. "time": "2017-03-13T09:14:27+00:00"
  406. },
  407. {
  408. "name": "clagiordano/weblibs-configmanager",
  409. "version": "v1.1.0",
  410. "source": {
  411. "type": "git",
  412. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  413. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  414. },
  415. "dist": {
  416. "type": "zip",
  417. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  418. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  419. "shasum": "",
  420. "mirrors": [
  421. {
  422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  423. "preferred": true
  424. }
  425. ]
  426. },
  427. "require": {
  428. "php": ">=5.4"
  429. },
  430. "require-dev": {
  431. "clagiordano/phpunit-result-printer": "^1",
  432. "phpunit/phpunit": "^4.8"
  433. },
  434. "type": "library",
  435. "autoload": {
  436. "psr-4": {
  437. "clagiordano\\weblibs\\configmanager\\": "src/"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "LGPL-3.0-or-later"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Claudio Giordano",
  447. "email": "claudio.giordano@autistici.org",
  448. "role": "Developer"
  449. }
  450. ],
  451. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  452. "keywords": [
  453. "clagiordano",
  454. "configuration",
  455. "manager",
  456. "tool",
  457. "weblibs"
  458. ],
  459. "time": "2020-07-20T20:39:25+00:00"
  460. },
  461. {
  462. "name": "cyd622/laravel-admin-ext-echarts",
  463. "version": "v1.0.1",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/cyd622/laravel-admin-ext-echarts.git",
  467. "reference": "4311388d499a9f1c68f5c645a6e9352f36fa6e92"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/cyd622/laravel-admin-ext-echarts/zipball/4311388d499a9f1c68f5c645a6e9352f36fa6e92",
  472. "reference": "4311388d499a9f1c68f5c645a6e9352f36fa6e92",
  473. "shasum": "",
  474. "mirrors": [
  475. {
  476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  477. "preferred": true
  478. }
  479. ]
  480. },
  481. "require": {
  482. "encore/laravel-admin": "~1.6",
  483. "php": ">=7.0.0"
  484. },
  485. "require-dev": {
  486. "phpunit/phpunit": "~6.0"
  487. },
  488. "type": "library",
  489. "extra": {
  490. "laravel": {
  491. "providers": [
  492. "Encore\\Admin\\Widgets\\Echarts\\EchartsServiceProvider"
  493. ]
  494. }
  495. },
  496. "autoload": {
  497. "psr-4": {
  498. "Encore\\Admin\\Widgets\\Echarts\\": "src/"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "cyd622",
  508. "email": "luffywang622@gmail.com"
  509. }
  510. ],
  511. "description": "Use Echarts in laravel-admin",
  512. "homepage": "https://github.com/cyd622/laravel-admin-ext-echarts",
  513. "keywords": [
  514. "echarts",
  515. "extension",
  516. "laravel-admin"
  517. ],
  518. "time": "2019-04-10T08:24:24+00:00"
  519. },
  520. {
  521. "name": "danielstjules/stringy",
  522. "version": "3.1.0",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/danielstjules/Stringy.git",
  526. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  531. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  532. "shasum": "",
  533. "mirrors": [
  534. {
  535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  536. "preferred": true
  537. }
  538. ]
  539. },
  540. "require": {
  541. "php": ">=5.4.0",
  542. "symfony/polyfill-mbstring": "~1.1"
  543. },
  544. "require-dev": {
  545. "phpunit/phpunit": "~4.0"
  546. },
  547. "type": "library",
  548. "autoload": {
  549. "psr-4": {
  550. "Stringy\\": "src/"
  551. },
  552. "files": [
  553. "src/Create.php"
  554. ]
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Daniel St. Jules",
  563. "email": "danielst.jules@gmail.com",
  564. "homepage": "http://www.danielstjules.com"
  565. }
  566. ],
  567. "description": "A string manipulation library with multibyte support",
  568. "homepage": "https://github.com/danielstjules/Stringy",
  569. "keywords": [
  570. "UTF",
  571. "helpers",
  572. "manipulation",
  573. "methods",
  574. "multibyte",
  575. "string",
  576. "utf-8",
  577. "utility",
  578. "utils"
  579. ],
  580. "time": "2017-06-12T01:10:27+00:00"
  581. },
  582. {
  583. "name": "dnoegel/php-xdg-base-dir",
  584. "version": "v0.1.1",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  588. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  593. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  594. "shasum": "",
  595. "mirrors": [
  596. {
  597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  598. "preferred": true
  599. }
  600. ]
  601. },
  602. "require": {
  603. "php": ">=5.3.2"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "XdgBaseDir\\": "src/"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "description": "implementation of xdg base directory specification for php",
  619. "time": "2019-12-04T15:06:13+00:00"
  620. },
  621. {
  622. "name": "doctrine/cache",
  623. "version": "1.10.2",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/doctrine/cache.git",
  627. "reference": "13e3381b25847283a91948d04640543941309727"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  632. "reference": "13e3381b25847283a91948d04640543941309727",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "php": "~7.1 || ^8.0"
  643. },
  644. "conflict": {
  645. "doctrine/common": ">2.2,<2.4"
  646. },
  647. "require-dev": {
  648. "alcaeus/mongo-php-adapter": "^1.1",
  649. "doctrine/coding-standard": "^6.0",
  650. "mongodb/mongodb": "^1.1",
  651. "phpunit/phpunit": "^7.0",
  652. "predis/predis": "~1.0"
  653. },
  654. "suggest": {
  655. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "branch-alias": {
  660. "dev-master": "1.9.x-dev"
  661. }
  662. },
  663. "autoload": {
  664. "psr-4": {
  665. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Guilherme Blanco",
  675. "email": "guilhermeblanco@gmail.com"
  676. },
  677. {
  678. "name": "Roman Borschel",
  679. "email": "roman@code-factory.org"
  680. },
  681. {
  682. "name": "Benjamin Eberlei",
  683. "email": "kontakt@beberlei.de"
  684. },
  685. {
  686. "name": "Jonathan Wage",
  687. "email": "jonwage@gmail.com"
  688. },
  689. {
  690. "name": "Johannes Schmitt",
  691. "email": "schmittjoh@gmail.com"
  692. }
  693. ],
  694. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  695. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  696. "keywords": [
  697. "abstraction",
  698. "apcu",
  699. "cache",
  700. "caching",
  701. "couchdb",
  702. "memcached",
  703. "php",
  704. "redis",
  705. "xcache"
  706. ],
  707. "time": "2020-07-07T18:54:01+00:00"
  708. },
  709. {
  710. "name": "doctrine/dbal",
  711. "version": "2.10.2",
  712. "source": {
  713. "type": "git",
  714. "url": "https://github.com/doctrine/dbal.git",
  715. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8"
  716. },
  717. "dist": {
  718. "type": "zip",
  719. "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  720. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  721. "shasum": "",
  722. "mirrors": [
  723. {
  724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  725. "preferred": true
  726. }
  727. ]
  728. },
  729. "require": {
  730. "doctrine/cache": "^1.0",
  731. "doctrine/event-manager": "^1.0",
  732. "ext-pdo": "*",
  733. "php": "^7.2"
  734. },
  735. "require-dev": {
  736. "doctrine/coding-standard": "^6.0",
  737. "jetbrains/phpstorm-stubs": "^2019.1",
  738. "nikic/php-parser": "^4.4",
  739. "phpstan/phpstan": "^0.12",
  740. "phpunit/phpunit": "^8.4.1",
  741. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  742. "vimeo/psalm": "^3.11"
  743. },
  744. "suggest": {
  745. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  746. },
  747. "bin": [
  748. "bin/doctrine-dbal"
  749. ],
  750. "type": "library",
  751. "extra": {
  752. "branch-alias": {
  753. "dev-master": "2.10.x-dev",
  754. "dev-develop": "3.0.x-dev"
  755. }
  756. },
  757. "autoload": {
  758. "psr-4": {
  759. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  760. }
  761. },
  762. "notification-url": "https://packagist.org/downloads/",
  763. "license": [
  764. "MIT"
  765. ],
  766. "authors": [
  767. {
  768. "name": "Guilherme Blanco",
  769. "email": "guilhermeblanco@gmail.com"
  770. },
  771. {
  772. "name": "Roman Borschel",
  773. "email": "roman@code-factory.org"
  774. },
  775. {
  776. "name": "Benjamin Eberlei",
  777. "email": "kontakt@beberlei.de"
  778. },
  779. {
  780. "name": "Jonathan Wage",
  781. "email": "jonwage@gmail.com"
  782. }
  783. ],
  784. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  785. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  786. "keywords": [
  787. "abstraction",
  788. "database",
  789. "db2",
  790. "dbal",
  791. "mariadb",
  792. "mssql",
  793. "mysql",
  794. "oci8",
  795. "oracle",
  796. "pdo",
  797. "pgsql",
  798. "postgresql",
  799. "queryobject",
  800. "sasql",
  801. "sql",
  802. "sqlanywhere",
  803. "sqlite",
  804. "sqlserver",
  805. "sqlsrv"
  806. ],
  807. "time": "2020-04-20T17:19:26+00:00"
  808. },
  809. {
  810. "name": "doctrine/event-manager",
  811. "version": "1.1.1",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/doctrine/event-manager.git",
  815. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  820. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  821. "shasum": "",
  822. "mirrors": [
  823. {
  824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  825. "preferred": true
  826. }
  827. ]
  828. },
  829. "require": {
  830. "php": "^7.1 || ^8.0"
  831. },
  832. "conflict": {
  833. "doctrine/common": "<2.9@dev"
  834. },
  835. "require-dev": {
  836. "doctrine/coding-standard": "^6.0",
  837. "phpunit/phpunit": "^7.0"
  838. },
  839. "type": "library",
  840. "extra": {
  841. "branch-alias": {
  842. "dev-master": "1.0.x-dev"
  843. }
  844. },
  845. "autoload": {
  846. "psr-4": {
  847. "Doctrine\\Common\\": "lib/Doctrine/Common"
  848. }
  849. },
  850. "notification-url": "https://packagist.org/downloads/",
  851. "license": [
  852. "MIT"
  853. ],
  854. "authors": [
  855. {
  856. "name": "Guilherme Blanco",
  857. "email": "guilhermeblanco@gmail.com"
  858. },
  859. {
  860. "name": "Roman Borschel",
  861. "email": "roman@code-factory.org"
  862. },
  863. {
  864. "name": "Benjamin Eberlei",
  865. "email": "kontakt@beberlei.de"
  866. },
  867. {
  868. "name": "Jonathan Wage",
  869. "email": "jonwage@gmail.com"
  870. },
  871. {
  872. "name": "Johannes Schmitt",
  873. "email": "schmittjoh@gmail.com"
  874. },
  875. {
  876. "name": "Marco Pivetta",
  877. "email": "ocramius@gmail.com"
  878. }
  879. ],
  880. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  881. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  882. "keywords": [
  883. "event",
  884. "event dispatcher",
  885. "event manager",
  886. "event system",
  887. "events"
  888. ],
  889. "time": "2020-05-29T18:28:51+00:00"
  890. },
  891. {
  892. "name": "doctrine/inflector",
  893. "version": "2.0.3",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/doctrine/inflector.git",
  897. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  902. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  903. "shasum": "",
  904. "mirrors": [
  905. {
  906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  907. "preferred": true
  908. }
  909. ]
  910. },
  911. "require": {
  912. "php": "^7.2 || ^8.0"
  913. },
  914. "require-dev": {
  915. "doctrine/coding-standard": "^7.0",
  916. "phpstan/phpstan": "^0.11",
  917. "phpstan/phpstan-phpunit": "^0.11",
  918. "phpstan/phpstan-strict-rules": "^0.11",
  919. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-master": "2.0.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Guilherme Blanco",
  939. "email": "guilhermeblanco@gmail.com"
  940. },
  941. {
  942. "name": "Roman Borschel",
  943. "email": "roman@code-factory.org"
  944. },
  945. {
  946. "name": "Benjamin Eberlei",
  947. "email": "kontakt@beberlei.de"
  948. },
  949. {
  950. "name": "Jonathan Wage",
  951. "email": "jonwage@gmail.com"
  952. },
  953. {
  954. "name": "Johannes Schmitt",
  955. "email": "schmittjoh@gmail.com"
  956. }
  957. ],
  958. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  959. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  960. "keywords": [
  961. "inflection",
  962. "inflector",
  963. "lowercase",
  964. "manipulation",
  965. "php",
  966. "plural",
  967. "singular",
  968. "strings",
  969. "uppercase",
  970. "words"
  971. ],
  972. "time": "2020-05-29T15:13:26+00:00"
  973. },
  974. {
  975. "name": "doctrine/lexer",
  976. "version": "1.2.1",
  977. "source": {
  978. "type": "git",
  979. "url": "https://github.com/doctrine/lexer.git",
  980. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  981. },
  982. "dist": {
  983. "type": "zip",
  984. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  985. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  986. "shasum": "",
  987. "mirrors": [
  988. {
  989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  990. "preferred": true
  991. }
  992. ]
  993. },
  994. "require": {
  995. "php": "^7.2 || ^8.0"
  996. },
  997. "require-dev": {
  998. "doctrine/coding-standard": "^6.0",
  999. "phpstan/phpstan": "^0.11.8",
  1000. "phpunit/phpunit": "^8.2"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "branch-alias": {
  1005. "dev-master": "1.2.x-dev"
  1006. }
  1007. },
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "authors": [
  1018. {
  1019. "name": "Guilherme Blanco",
  1020. "email": "guilhermeblanco@gmail.com"
  1021. },
  1022. {
  1023. "name": "Roman Borschel",
  1024. "email": "roman@code-factory.org"
  1025. },
  1026. {
  1027. "name": "Johannes Schmitt",
  1028. "email": "schmittjoh@gmail.com"
  1029. }
  1030. ],
  1031. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1032. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1033. "keywords": [
  1034. "annotations",
  1035. "docblock",
  1036. "lexer",
  1037. "parser",
  1038. "php"
  1039. ],
  1040. "time": "2020-05-25T17:44:05+00:00"
  1041. },
  1042. {
  1043. "name": "dragonmantank/cron-expression",
  1044. "version": "v2.3.0",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/dragonmantank/cron-expression.git",
  1048. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  1053. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  1054. "shasum": "",
  1055. "mirrors": [
  1056. {
  1057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1058. "preferred": true
  1059. }
  1060. ]
  1061. },
  1062. "require": {
  1063. "php": "^7.0"
  1064. },
  1065. "require-dev": {
  1066. "phpunit/phpunit": "^6.4|^7.0"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "2.3-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Cron\\": "src/Cron/"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Michael Dowling",
  1086. "email": "mtdowling@gmail.com",
  1087. "homepage": "https://github.com/mtdowling"
  1088. },
  1089. {
  1090. "name": "Chris Tankersley",
  1091. "email": "chris@ctankersley.com",
  1092. "homepage": "https://github.com/dragonmantank"
  1093. }
  1094. ],
  1095. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1096. "keywords": [
  1097. "cron",
  1098. "schedule"
  1099. ],
  1100. "time": "2019-03-31T00:38:28+00:00"
  1101. },
  1102. {
  1103. "name": "egulias/email-validator",
  1104. "version": "2.1.19",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/egulias/EmailValidator.git",
  1108. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c",
  1113. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c",
  1114. "shasum": "",
  1115. "mirrors": [
  1116. {
  1117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1118. "preferred": true
  1119. }
  1120. ]
  1121. },
  1122. "require": {
  1123. "doctrine/lexer": "^1.0.1",
  1124. "php": ">=5.5",
  1125. "symfony/polyfill-intl-idn": "^1.10"
  1126. },
  1127. "require-dev": {
  1128. "dominicsayers/isemail": "^3.0.7",
  1129. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1130. "satooshi/php-coveralls": "^1.0.1"
  1131. },
  1132. "suggest": {
  1133. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1134. },
  1135. "type": "library",
  1136. "extra": {
  1137. "branch-alias": {
  1138. "dev-master": "2.1.x-dev"
  1139. }
  1140. },
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Egulias\\EmailValidator\\": "src"
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "authors": [
  1151. {
  1152. "name": "Eduardo Gulias Davis"
  1153. }
  1154. ],
  1155. "description": "A library for validating emails against several RFCs",
  1156. "homepage": "https://github.com/egulias/EmailValidator",
  1157. "keywords": [
  1158. "email",
  1159. "emailvalidation",
  1160. "emailvalidator",
  1161. "validation",
  1162. "validator"
  1163. ],
  1164. "time": "2020-08-08T21:28:19+00:00"
  1165. },
  1166. {
  1167. "name": "encore/laravel-admin",
  1168. "version": "v1.8.2",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/z-song/laravel-admin.git",
  1172. "reference": "72cf0f69a7873bd4e45404292ce14a16db7f9606"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/72cf0f69a7873bd4e45404292ce14a16db7f9606",
  1177. "reference": "72cf0f69a7873bd4e45404292ce14a16db7f9606",
  1178. "shasum": "",
  1179. "mirrors": [
  1180. {
  1181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1182. "preferred": true
  1183. }
  1184. ]
  1185. },
  1186. "require": {
  1187. "doctrine/dbal": "2.*",
  1188. "laravel/framework": ">=5.5",
  1189. "php": ">=7.0.0",
  1190. "symfony/dom-crawler": "~3.1|~4.0|~5.0"
  1191. },
  1192. "require-dev": {
  1193. "fzaninotto/faker": "~1.4",
  1194. "intervention/image": "~2.3",
  1195. "laravel/browser-kit-testing": "^6.0",
  1196. "laravel/laravel": ">=5.5",
  1197. "spatie/phpunit-watcher": "^1.22.0"
  1198. },
  1199. "suggest": {
  1200. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  1201. "spatie/eloquent-sortable": "Required to built orderable gird."
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "laravel": {
  1206. "providers": [
  1207. "Encore\\Admin\\AdminServiceProvider"
  1208. ],
  1209. "aliases": {
  1210. "Admin": "Encore\\Admin\\Facades\\Admin"
  1211. }
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Encore\\Admin\\": "src/"
  1217. },
  1218. "files": [
  1219. "src/helpers.php"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "authors": [
  1227. {
  1228. "name": "zsong",
  1229. "email": "zosong@126.com"
  1230. }
  1231. ],
  1232. "description": "laravel admin",
  1233. "homepage": "https://github.com/z-song/laravel-admin",
  1234. "keywords": [
  1235. "admin",
  1236. "form",
  1237. "grid",
  1238. "laravel"
  1239. ],
  1240. "time": "2020-08-24T07:43:25+00:00"
  1241. },
  1242. {
  1243. "name": "fideloper/proxy",
  1244. "version": "4.4.0",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/fideloper/TrustedProxy.git",
  1248. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  1253. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  1254. "shasum": "",
  1255. "mirrors": [
  1256. {
  1257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1258. "preferred": true
  1259. }
  1260. ]
  1261. },
  1262. "require": {
  1263. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  1264. "php": ">=5.4.0"
  1265. },
  1266. "require-dev": {
  1267. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  1268. "mockery/mockery": "^1.0",
  1269. "phpunit/phpunit": "^6.0"
  1270. },
  1271. "type": "library",
  1272. "extra": {
  1273. "laravel": {
  1274. "providers": [
  1275. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1276. ]
  1277. }
  1278. },
  1279. "autoload": {
  1280. "psr-4": {
  1281. "Fideloper\\Proxy\\": "src/"
  1282. }
  1283. },
  1284. "notification-url": "https://packagist.org/downloads/",
  1285. "license": [
  1286. "MIT"
  1287. ],
  1288. "authors": [
  1289. {
  1290. "name": "Chris Fidao",
  1291. "email": "fideloper@gmail.com"
  1292. }
  1293. ],
  1294. "description": "Set trusted proxies for Laravel",
  1295. "keywords": [
  1296. "load balancing",
  1297. "proxy",
  1298. "trusted proxy"
  1299. ],
  1300. "time": "2020-06-23T01:36:47+00:00"
  1301. },
  1302. {
  1303. "name": "guzzlehttp/guzzle",
  1304. "version": "6.5.5",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/guzzle/guzzle.git",
  1308. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1313. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1314. "shasum": "",
  1315. "mirrors": [
  1316. {
  1317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1318. "preferred": true
  1319. }
  1320. ]
  1321. },
  1322. "require": {
  1323. "ext-json": "*",
  1324. "guzzlehttp/promises": "^1.0",
  1325. "guzzlehttp/psr7": "^1.6.1",
  1326. "php": ">=5.5",
  1327. "symfony/polyfill-intl-idn": "^1.17.0"
  1328. },
  1329. "require-dev": {
  1330. "ext-curl": "*",
  1331. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1332. "psr/log": "^1.1"
  1333. },
  1334. "suggest": {
  1335. "psr/log": "Required for using the Log middleware"
  1336. },
  1337. "type": "library",
  1338. "extra": {
  1339. "branch-alias": {
  1340. "dev-master": "6.5-dev"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "psr-4": {
  1345. "GuzzleHttp\\": "src/"
  1346. },
  1347. "files": [
  1348. "src/functions_include.php"
  1349. ]
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "authors": [
  1356. {
  1357. "name": "Michael Dowling",
  1358. "email": "mtdowling@gmail.com",
  1359. "homepage": "https://github.com/mtdowling"
  1360. }
  1361. ],
  1362. "description": "Guzzle is a PHP HTTP client library",
  1363. "homepage": "http://guzzlephp.org/",
  1364. "keywords": [
  1365. "client",
  1366. "curl",
  1367. "framework",
  1368. "http",
  1369. "http client",
  1370. "rest",
  1371. "web service"
  1372. ],
  1373. "time": "2020-06-16T21:01:06+00:00"
  1374. },
  1375. {
  1376. "name": "guzzlehttp/promises",
  1377. "version": "v1.3.1",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/guzzle/promises.git",
  1381. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1386. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1387. "shasum": "",
  1388. "mirrors": [
  1389. {
  1390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1391. "preferred": true
  1392. }
  1393. ]
  1394. },
  1395. "require": {
  1396. "php": ">=5.5.0"
  1397. },
  1398. "require-dev": {
  1399. "phpunit/phpunit": "^4.0"
  1400. },
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "1.4-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "psr-4": {
  1409. "GuzzleHttp\\Promise\\": "src/"
  1410. },
  1411. "files": [
  1412. "src/functions_include.php"
  1413. ]
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Michael Dowling",
  1422. "email": "mtdowling@gmail.com",
  1423. "homepage": "https://github.com/mtdowling"
  1424. }
  1425. ],
  1426. "description": "Guzzle promises library",
  1427. "keywords": [
  1428. "promise"
  1429. ],
  1430. "time": "2016-12-20T10:07:11+00:00"
  1431. },
  1432. {
  1433. "name": "guzzlehttp/psr7",
  1434. "version": "1.6.1",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/guzzle/psr7.git",
  1438. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1443. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1444. "shasum": "",
  1445. "mirrors": [
  1446. {
  1447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1448. "preferred": true
  1449. }
  1450. ]
  1451. },
  1452. "require": {
  1453. "php": ">=5.4.0",
  1454. "psr/http-message": "~1.0",
  1455. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1456. },
  1457. "provide": {
  1458. "psr/http-message-implementation": "1.0"
  1459. },
  1460. "require-dev": {
  1461. "ext-zlib": "*",
  1462. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1463. },
  1464. "suggest": {
  1465. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "1.6-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "GuzzleHttp\\Psr7\\": "src/"
  1476. },
  1477. "files": [
  1478. "src/functions_include.php"
  1479. ]
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "MIT"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Michael Dowling",
  1488. "email": "mtdowling@gmail.com",
  1489. "homepage": "https://github.com/mtdowling"
  1490. },
  1491. {
  1492. "name": "Tobias Schultze",
  1493. "homepage": "https://github.com/Tobion"
  1494. }
  1495. ],
  1496. "description": "PSR-7 message implementation that also provides common utility methods",
  1497. "keywords": [
  1498. "http",
  1499. "message",
  1500. "psr-7",
  1501. "request",
  1502. "response",
  1503. "stream",
  1504. "uri",
  1505. "url"
  1506. ],
  1507. "time": "2019-07-01T23:21:34+00:00"
  1508. },
  1509. {
  1510. "name": "jaeger/g-http",
  1511. "version": "V1.6.0",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/jae-jae/GHttp.git",
  1515. "reference": "eb34d266a07c687aef45087370ef47d48321bd2e"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/eb34d266a07c687aef45087370ef47d48321bd2e",
  1520. "reference": "eb34d266a07c687aef45087370ef47d48321bd2e",
  1521. "shasum": "",
  1522. "mirrors": [
  1523. {
  1524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1525. "preferred": true
  1526. }
  1527. ]
  1528. },
  1529. "require": {
  1530. "cache/filesystem-adapter": "^1.0",
  1531. "guzzlehttp/guzzle": "^6.2"
  1532. },
  1533. "type": "library",
  1534. "autoload": {
  1535. "psr-4": {
  1536. "Jaeger\\": "src"
  1537. }
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "MIT"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Jaeger",
  1546. "email": "JaegerCode@gmail.com"
  1547. }
  1548. ],
  1549. "description": "Simple Http client base on GuzzleHttp",
  1550. "time": "2018-12-12T04:21:15+00:00"
  1551. },
  1552. {
  1553. "name": "jaeger/phpquery-single",
  1554. "version": "1.0.1",
  1555. "source": {
  1556. "type": "git",
  1557. "url": "https://github.com/jae-jae/phpQuery-single.git",
  1558. "reference": "fb80b4a0e5a337438d26e061ec3fb725c9f2a116"
  1559. },
  1560. "dist": {
  1561. "type": "zip",
  1562. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/fb80b4a0e5a337438d26e061ec3fb725c9f2a116",
  1563. "reference": "fb80b4a0e5a337438d26e061ec3fb725c9f2a116",
  1564. "shasum": "",
  1565. "mirrors": [
  1566. {
  1567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1568. "preferred": true
  1569. }
  1570. ]
  1571. },
  1572. "require": {
  1573. "php": ">=5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "classmap": [
  1578. "phpQuery.php"
  1579. ]
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Tobiasz Cudnik",
  1588. "email": "tobiasz.cudnik@gmail.com",
  1589. "homepage": "https://github.com/TobiaszCudnik",
  1590. "role": "Developer"
  1591. },
  1592. {
  1593. "name": "Jaeger",
  1594. "role": "Packager"
  1595. }
  1596. ],
  1597. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  1598. "homepage": "http://code.google.com/p/phpquery/",
  1599. "time": "2019-11-05T01:50:34+00:00"
  1600. },
  1601. {
  1602. "name": "jaeger/querylist",
  1603. "version": "V4.2.5",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/jae-jae/QueryList.git",
  1607. "reference": "85903fa9b5dcd961a1dd6c292f2a7f5afa7c389d"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/85903fa9b5dcd961a1dd6c292f2a7f5afa7c389d",
  1612. "reference": "85903fa9b5dcd961a1dd6c292f2a7f5afa7c389d",
  1613. "shasum": "",
  1614. "mirrors": [
  1615. {
  1616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1617. "preferred": true
  1618. }
  1619. ]
  1620. },
  1621. "require": {
  1622. "ext-dom": "*",
  1623. "jaeger/g-http": "^1.1",
  1624. "jaeger/phpquery-single": "^1",
  1625. "php": ">=7.1",
  1626. "tightenco/collect": "^5"
  1627. },
  1628. "require-dev": {
  1629. "phpunit/phpunit": "^8.5",
  1630. "symfony/var-dumper": "^3.3"
  1631. },
  1632. "type": "library",
  1633. "autoload": {
  1634. "psr-4": {
  1635. "QL\\": "src"
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Jaeger",
  1645. "email": "JaegerCode@gmail.com"
  1646. }
  1647. ],
  1648. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  1649. "homepage": "http://querylist.cc",
  1650. "keywords": [
  1651. "QueryList",
  1652. "phpQuery",
  1653. "spider"
  1654. ],
  1655. "time": "2020-04-03T12:16:00+00:00"
  1656. },
  1657. {
  1658. "name": "laravel-admin-ext/latlong",
  1659. "version": "v1.2",
  1660. "source": {
  1661. "type": "git",
  1662. "url": "https://github.com/laravel-admin-extensions/latlong.git",
  1663. "reference": "b8696bb6e8f6167b2305b713af9abb69aa1b2072"
  1664. },
  1665. "dist": {
  1666. "type": "zip",
  1667. "url": "https://api.github.com/repos/laravel-admin-extensions/latlong/zipball/b8696bb6e8f6167b2305b713af9abb69aa1b2072",
  1668. "reference": "b8696bb6e8f6167b2305b713af9abb69aa1b2072",
  1669. "shasum": "",
  1670. "mirrors": [
  1671. {
  1672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1673. "preferred": true
  1674. }
  1675. ]
  1676. },
  1677. "require": {
  1678. "encore/laravel-admin": "~1.6",
  1679. "php": ">=7.0.0"
  1680. },
  1681. "require-dev": {
  1682. "phpunit/phpunit": "~6.0"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "laravel": {
  1687. "providers": [
  1688. "Encore\\Admin\\Latlong\\LatlongServiceProvider"
  1689. ]
  1690. }
  1691. },
  1692. "autoload": {
  1693. "psr-4": {
  1694. "Encore\\Admin\\Latlong\\": "src/"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "MIT"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "z-song",
  1704. "email": "zosong@126.com"
  1705. }
  1706. ],
  1707. "description": "Latitude & Longitude selector",
  1708. "homepage": "https://github.com/laravel-admin-ext/latlong",
  1709. "keywords": [
  1710. "extension",
  1711. "laravel-admin"
  1712. ],
  1713. "time": "2019-05-22T07:32:17+00:00"
  1714. },
  1715. {
  1716. "name": "laravel/framework",
  1717. "version": "v6.18.35",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/laravel/framework.git",
  1721. "reference": "baec6c2d7f433594cb858c35c2a2946df7ecac13"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/laravel/framework/zipball/baec6c2d7f433594cb858c35c2a2946df7ecac13",
  1726. "reference": "baec6c2d7f433594cb858c35c2a2946df7ecac13",
  1727. "shasum": "",
  1728. "mirrors": [
  1729. {
  1730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1731. "preferred": true
  1732. }
  1733. ]
  1734. },
  1735. "require": {
  1736. "doctrine/inflector": "^1.4|^2.0",
  1737. "dragonmantank/cron-expression": "^2.0",
  1738. "egulias/email-validator": "^2.1.10",
  1739. "ext-json": "*",
  1740. "ext-mbstring": "*",
  1741. "ext-openssl": "*",
  1742. "league/commonmark": "^1.3",
  1743. "league/flysystem": "^1.0.34",
  1744. "monolog/monolog": "^1.12|^2.0",
  1745. "nesbot/carbon": "^2.0",
  1746. "opis/closure": "^3.1",
  1747. "php": "^7.2",
  1748. "psr/container": "^1.0",
  1749. "psr/simple-cache": "^1.0",
  1750. "ramsey/uuid": "^3.7",
  1751. "swiftmailer/swiftmailer": "^6.0",
  1752. "symfony/console": "^4.3.4",
  1753. "symfony/debug": "^4.3.4",
  1754. "symfony/finder": "^4.3.4",
  1755. "symfony/http-foundation": "^4.3.4",
  1756. "symfony/http-kernel": "^4.3.4",
  1757. "symfony/polyfill-php73": "^1.17",
  1758. "symfony/process": "^4.3.4",
  1759. "symfony/routing": "^4.3.4",
  1760. "symfony/var-dumper": "^4.3.4",
  1761. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1762. "vlucas/phpdotenv": "^3.3"
  1763. },
  1764. "conflict": {
  1765. "tightenco/collect": "<5.5.33"
  1766. },
  1767. "replace": {
  1768. "illuminate/auth": "self.version",
  1769. "illuminate/broadcasting": "self.version",
  1770. "illuminate/bus": "self.version",
  1771. "illuminate/cache": "self.version",
  1772. "illuminate/config": "self.version",
  1773. "illuminate/console": "self.version",
  1774. "illuminate/container": "self.version",
  1775. "illuminate/contracts": "self.version",
  1776. "illuminate/cookie": "self.version",
  1777. "illuminate/database": "self.version",
  1778. "illuminate/encryption": "self.version",
  1779. "illuminate/events": "self.version",
  1780. "illuminate/filesystem": "self.version",
  1781. "illuminate/hashing": "self.version",
  1782. "illuminate/http": "self.version",
  1783. "illuminate/log": "self.version",
  1784. "illuminate/mail": "self.version",
  1785. "illuminate/notifications": "self.version",
  1786. "illuminate/pagination": "self.version",
  1787. "illuminate/pipeline": "self.version",
  1788. "illuminate/queue": "self.version",
  1789. "illuminate/redis": "self.version",
  1790. "illuminate/routing": "self.version",
  1791. "illuminate/session": "self.version",
  1792. "illuminate/support": "self.version",
  1793. "illuminate/translation": "self.version",
  1794. "illuminate/validation": "self.version",
  1795. "illuminate/view": "self.version"
  1796. },
  1797. "require-dev": {
  1798. "aws/aws-sdk-php": "^3.0",
  1799. "doctrine/dbal": "^2.6",
  1800. "filp/whoops": "^2.4",
  1801. "guzzlehttp/guzzle": "^6.3|^7.0",
  1802. "league/flysystem-cached-adapter": "^1.0",
  1803. "mockery/mockery": "^1.3.1",
  1804. "moontoast/math": "^1.1",
  1805. "orchestra/testbench-core": "^4.0",
  1806. "pda/pheanstalk": "^4.0",
  1807. "phpunit/phpunit": "^7.5.15|^8.4|^9.0",
  1808. "predis/predis": "^1.1.1",
  1809. "symfony/cache": "^4.3.4"
  1810. },
  1811. "suggest": {
  1812. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1813. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1814. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1815. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1816. "ext-memcached": "Required to use the memcache cache driver.",
  1817. "ext-pcntl": "Required to use all features of the queue worker.",
  1818. "ext-posix": "Required to use all features of the queue worker.",
  1819. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1820. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1821. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1822. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0|^7.0).",
  1823. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1824. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1825. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1826. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1827. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1828. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1829. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1830. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1831. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1832. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  1833. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  1834. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "6.x-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "files": [
  1844. "src/Illuminate/Foundation/helpers.php",
  1845. "src/Illuminate/Support/helpers.php"
  1846. ],
  1847. "psr-4": {
  1848. "Illuminate\\": "src/Illuminate/"
  1849. }
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "MIT"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Taylor Otwell",
  1858. "email": "taylor@laravel.com"
  1859. }
  1860. ],
  1861. "description": "The Laravel Framework.",
  1862. "homepage": "https://laravel.com",
  1863. "keywords": [
  1864. "framework",
  1865. "laravel"
  1866. ],
  1867. "time": "2020-08-07T15:06:09+00:00"
  1868. },
  1869. {
  1870. "name": "laravel/tinker",
  1871. "version": "v2.4.2",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/laravel/tinker.git",
  1875. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1880. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1881. "shasum": "",
  1882. "mirrors": [
  1883. {
  1884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1885. "preferred": true
  1886. }
  1887. ]
  1888. },
  1889. "require": {
  1890. "illuminate/console": "^6.0|^7.0|^8.0",
  1891. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1892. "illuminate/support": "^6.0|^7.0|^8.0",
  1893. "php": "^7.2",
  1894. "psy/psysh": "^0.10.3",
  1895. "symfony/var-dumper": "^4.3|^5.0"
  1896. },
  1897. "require-dev": {
  1898. "mockery/mockery": "^1.3.1",
  1899. "phpunit/phpunit": "^8.4|^9.0"
  1900. },
  1901. "suggest": {
  1902. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1903. },
  1904. "type": "library",
  1905. "extra": {
  1906. "branch-alias": {
  1907. "dev-master": "2.x-dev"
  1908. },
  1909. "laravel": {
  1910. "providers": [
  1911. "Laravel\\Tinker\\TinkerServiceProvider"
  1912. ]
  1913. }
  1914. },
  1915. "autoload": {
  1916. "psr-4": {
  1917. "Laravel\\Tinker\\": "src/"
  1918. }
  1919. },
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "MIT"
  1923. ],
  1924. "authors": [
  1925. {
  1926. "name": "Taylor Otwell",
  1927. "email": "taylor@laravel.com"
  1928. }
  1929. ],
  1930. "description": "Powerful REPL for the Laravel framework.",
  1931. "keywords": [
  1932. "REPL",
  1933. "Tinker",
  1934. "laravel",
  1935. "psysh"
  1936. ],
  1937. "time": "2020-08-11T19:28:08+00:00"
  1938. },
  1939. {
  1940. "name": "league/commonmark",
  1941. "version": "1.5.4",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/thephpleague/commonmark.git",
  1945. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/21819c989e69bab07e933866ad30c7e3f32984ba",
  1950. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba",
  1951. "shasum": "",
  1952. "mirrors": [
  1953. {
  1954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1955. "preferred": true
  1956. }
  1957. ]
  1958. },
  1959. "require": {
  1960. "ext-mbstring": "*",
  1961. "php": "^7.1 || ^8.0"
  1962. },
  1963. "conflict": {
  1964. "scrutinizer/ocular": "1.7.*"
  1965. },
  1966. "require-dev": {
  1967. "cebe/markdown": "~1.0",
  1968. "commonmark/commonmark.js": "0.29.1",
  1969. "erusev/parsedown": "~1.0",
  1970. "ext-json": "*",
  1971. "github/gfm": "0.29.0",
  1972. "michelf/php-markdown": "~1.4",
  1973. "mikehaertl/php-shellcommand": "^1.4",
  1974. "phpstan/phpstan": "^0.12",
  1975. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1976. "scrutinizer/ocular": "^1.5",
  1977. "symfony/finder": "^4.2"
  1978. },
  1979. "bin": [
  1980. "bin/commonmark"
  1981. ],
  1982. "type": "library",
  1983. "autoload": {
  1984. "psr-4": {
  1985. "League\\CommonMark\\": "src"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "BSD-3-Clause"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Colin O'Dell",
  1995. "email": "colinodell@gmail.com",
  1996. "homepage": "https://www.colinodell.com",
  1997. "role": "Lead Developer"
  1998. }
  1999. ],
  2000. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2001. "homepage": "https://commonmark.thephpleague.com",
  2002. "keywords": [
  2003. "commonmark",
  2004. "flavored",
  2005. "gfm",
  2006. "github",
  2007. "github-flavored",
  2008. "markdown",
  2009. "md",
  2010. "parser"
  2011. ],
  2012. "time": "2020-08-18T01:19:12+00:00"
  2013. },
  2014. {
  2015. "name": "league/flysystem",
  2016. "version": "1.1.3",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://github.com/thephpleague/flysystem.git",
  2020. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2025. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2026. "shasum": "",
  2027. "mirrors": [
  2028. {
  2029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2030. "preferred": true
  2031. }
  2032. ]
  2033. },
  2034. "require": {
  2035. "ext-fileinfo": "*",
  2036. "league/mime-type-detection": "^1.3",
  2037. "php": "^7.2.5 || ^8.0"
  2038. },
  2039. "conflict": {
  2040. "league/flysystem-sftp": "<1.0.6"
  2041. },
  2042. "require-dev": {
  2043. "phpspec/prophecy": "^1.11.1",
  2044. "phpunit/phpunit": "^8.5.8"
  2045. },
  2046. "suggest": {
  2047. "ext-fileinfo": "Required for MimeType",
  2048. "ext-ftp": "Allows you to use FTP server storage",
  2049. "ext-openssl": "Allows you to use FTPS server storage",
  2050. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2051. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2052. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2053. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2054. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2055. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2056. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2057. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2058. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2059. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2060. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "1.1-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "League\\Flysystem\\": "src/"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Frank de Jonge",
  2080. "email": "info@frenky.net"
  2081. }
  2082. ],
  2083. "description": "Filesystem abstraction: Many filesystems, one API.",
  2084. "keywords": [
  2085. "Cloud Files",
  2086. "WebDAV",
  2087. "abstraction",
  2088. "aws",
  2089. "cloud",
  2090. "copy.com",
  2091. "dropbox",
  2092. "file systems",
  2093. "files",
  2094. "filesystem",
  2095. "filesystems",
  2096. "ftp",
  2097. "rackspace",
  2098. "remote",
  2099. "s3",
  2100. "sftp",
  2101. "storage"
  2102. ],
  2103. "time": "2020-08-23T07:39:11+00:00"
  2104. },
  2105. {
  2106. "name": "league/mime-type-detection",
  2107. "version": "1.4.0",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2111. "reference": "fda190b62b962d96a069fcc414d781db66d65b69"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69",
  2116. "reference": "fda190b62b962d96a069fcc414d781db66d65b69",
  2117. "shasum": "",
  2118. "mirrors": [
  2119. {
  2120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2121. "preferred": true
  2122. }
  2123. ]
  2124. },
  2125. "require": {
  2126. "ext-fileinfo": "*",
  2127. "php": "^7.2 || ^8.0"
  2128. },
  2129. "require-dev": {
  2130. "phpstan/phpstan": "^0.12.36",
  2131. "phpunit/phpunit": "^8.5.8"
  2132. },
  2133. "type": "library",
  2134. "autoload": {
  2135. "psr-4": {
  2136. "League\\MimeTypeDetection\\": "src"
  2137. }
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Frank de Jonge",
  2146. "email": "info@frankdejonge.nl"
  2147. }
  2148. ],
  2149. "description": "Mime-type detection for Flysystem",
  2150. "time": "2020-08-09T10:34:01+00:00"
  2151. },
  2152. {
  2153. "name": "maatwebsite/excel",
  2154. "version": "3.1.24",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2158. "reference": "8b267b4a940634195eb6ea60c2da62f178a15940"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/8b267b4a940634195eb6ea60c2da62f178a15940",
  2163. "reference": "8b267b4a940634195eb6ea60c2da62f178a15940",
  2164. "shasum": "",
  2165. "mirrors": [
  2166. {
  2167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2168. "preferred": true
  2169. }
  2170. ]
  2171. },
  2172. "require": {
  2173. "ext-json": "*",
  2174. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  2175. "php": "^7.0",
  2176. "phpoffice/phpspreadsheet": "^1.14"
  2177. },
  2178. "require-dev": {
  2179. "orchestra/testbench": "^6.0",
  2180. "predis/predis": "^1.1"
  2181. },
  2182. "type": "library",
  2183. "extra": {
  2184. "laravel": {
  2185. "providers": [
  2186. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2187. ],
  2188. "aliases": {
  2189. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2190. }
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Maatwebsite\\Excel\\": "src/"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Patrick Brouwers",
  2205. "email": "patrick@maatwebsite.nl"
  2206. }
  2207. ],
  2208. "description": "Supercharged Excel exports and imports in Laravel",
  2209. "keywords": [
  2210. "PHPExcel",
  2211. "batch",
  2212. "csv",
  2213. "excel",
  2214. "export",
  2215. "import",
  2216. "laravel",
  2217. "php",
  2218. "phpspreadsheet"
  2219. ],
  2220. "time": "2020-10-28T09:10:05+00:00"
  2221. },
  2222. {
  2223. "name": "maennchen/zipstream-php",
  2224. "version": "2.1.0",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2228. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2233. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2234. "shasum": "",
  2235. "mirrors": [
  2236. {
  2237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2238. "preferred": true
  2239. }
  2240. ]
  2241. },
  2242. "require": {
  2243. "myclabs/php-enum": "^1.5",
  2244. "php": ">= 7.1",
  2245. "psr/http-message": "^1.0",
  2246. "symfony/polyfill-mbstring": "^1.0"
  2247. },
  2248. "require-dev": {
  2249. "ext-zip": "*",
  2250. "guzzlehttp/guzzle": ">= 6.3",
  2251. "mikey179/vfsstream": "^1.6",
  2252. "phpunit/phpunit": ">= 7.5"
  2253. },
  2254. "type": "library",
  2255. "autoload": {
  2256. "psr-4": {
  2257. "ZipStream\\": "src/"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Paul Duncan",
  2267. "email": "pabs@pablotron.org"
  2268. },
  2269. {
  2270. "name": "Jonatan Männchen",
  2271. "email": "jonatan@maennchen.ch"
  2272. },
  2273. {
  2274. "name": "Jesse Donat",
  2275. "email": "donatj@gmail.com"
  2276. },
  2277. {
  2278. "name": "András Kolesár",
  2279. "email": "kolesar@kolesar.hu"
  2280. }
  2281. ],
  2282. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2283. "keywords": [
  2284. "stream",
  2285. "zip"
  2286. ],
  2287. "time": "2020-05-30T13:11:16+00:00"
  2288. },
  2289. {
  2290. "name": "markbaker/complex",
  2291. "version": "2.0.0",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2295. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2300. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2301. "shasum": "",
  2302. "mirrors": [
  2303. {
  2304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2305. "preferred": true
  2306. }
  2307. ]
  2308. },
  2309. "require": {
  2310. "php": "^7.2 || ^8.0"
  2311. },
  2312. "require-dev": {
  2313. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2314. "phpcompatibility/php-compatibility": "^9.0",
  2315. "phpdocumentor/phpdocumentor": "2.*",
  2316. "phploc/phploc": "^4.0",
  2317. "phpmd/phpmd": "2.*",
  2318. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2319. "sebastian/phpcpd": "^4.0",
  2320. "squizlabs/php_codesniffer": "^3.4"
  2321. },
  2322. "type": "library",
  2323. "autoload": {
  2324. "psr-4": {
  2325. "Complex\\": "classes/src/"
  2326. },
  2327. "files": [
  2328. "classes/src/functions/abs.php",
  2329. "classes/src/functions/acos.php",
  2330. "classes/src/functions/acosh.php",
  2331. "classes/src/functions/acot.php",
  2332. "classes/src/functions/acoth.php",
  2333. "classes/src/functions/acsc.php",
  2334. "classes/src/functions/acsch.php",
  2335. "classes/src/functions/argument.php",
  2336. "classes/src/functions/asec.php",
  2337. "classes/src/functions/asech.php",
  2338. "classes/src/functions/asin.php",
  2339. "classes/src/functions/asinh.php",
  2340. "classes/src/functions/atan.php",
  2341. "classes/src/functions/atanh.php",
  2342. "classes/src/functions/conjugate.php",
  2343. "classes/src/functions/cos.php",
  2344. "classes/src/functions/cosh.php",
  2345. "classes/src/functions/cot.php",
  2346. "classes/src/functions/coth.php",
  2347. "classes/src/functions/csc.php",
  2348. "classes/src/functions/csch.php",
  2349. "classes/src/functions/exp.php",
  2350. "classes/src/functions/inverse.php",
  2351. "classes/src/functions/ln.php",
  2352. "classes/src/functions/log2.php",
  2353. "classes/src/functions/log10.php",
  2354. "classes/src/functions/negative.php",
  2355. "classes/src/functions/pow.php",
  2356. "classes/src/functions/rho.php",
  2357. "classes/src/functions/sec.php",
  2358. "classes/src/functions/sech.php",
  2359. "classes/src/functions/sin.php",
  2360. "classes/src/functions/sinh.php",
  2361. "classes/src/functions/sqrt.php",
  2362. "classes/src/functions/tan.php",
  2363. "classes/src/functions/tanh.php",
  2364. "classes/src/functions/theta.php",
  2365. "classes/src/operations/add.php",
  2366. "classes/src/operations/subtract.php",
  2367. "classes/src/operations/multiply.php",
  2368. "classes/src/operations/divideby.php",
  2369. "classes/src/operations/divideinto.php"
  2370. ]
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "Mark Baker",
  2379. "email": "mark@lange.demon.co.uk"
  2380. }
  2381. ],
  2382. "description": "PHP Class for working with complex numbers",
  2383. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2384. "keywords": [
  2385. "complex",
  2386. "mathematics"
  2387. ],
  2388. "time": "2020-08-26T10:42:07+00:00"
  2389. },
  2390. {
  2391. "name": "markbaker/matrix",
  2392. "version": "2.0.0",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2396. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2401. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2402. "shasum": "",
  2403. "mirrors": [
  2404. {
  2405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2406. "preferred": true
  2407. }
  2408. ]
  2409. },
  2410. "require": {
  2411. "php": "^7.2 || ^8.0"
  2412. },
  2413. "require-dev": {
  2414. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2415. "phpcompatibility/php-compatibility": "^9.0",
  2416. "phpdocumentor/phpdocumentor": "2.*",
  2417. "phploc/phploc": "^4.0",
  2418. "phpmd/phpmd": "2.*",
  2419. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2420. "sebastian/phpcpd": "^4.0",
  2421. "squizlabs/php_codesniffer": "^3.4"
  2422. },
  2423. "type": "library",
  2424. "autoload": {
  2425. "psr-4": {
  2426. "Matrix\\": "classes/src/"
  2427. },
  2428. "files": [
  2429. "classes/src/functions/adjoint.php",
  2430. "classes/src/functions/antidiagonal.php",
  2431. "classes/src/functions/cofactors.php",
  2432. "classes/src/functions/determinant.php",
  2433. "classes/src/functions/diagonal.php",
  2434. "classes/src/functions/identity.php",
  2435. "classes/src/functions/inverse.php",
  2436. "classes/src/functions/minors.php",
  2437. "classes/src/functions/trace.php",
  2438. "classes/src/functions/transpose.php",
  2439. "classes/src/operations/add.php",
  2440. "classes/src/operations/directsum.php",
  2441. "classes/src/operations/subtract.php",
  2442. "classes/src/operations/multiply.php",
  2443. "classes/src/operations/divideby.php",
  2444. "classes/src/operations/divideinto.php"
  2445. ]
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "authors": [
  2452. {
  2453. "name": "Mark Baker",
  2454. "email": "mark@demon-angel.eu"
  2455. }
  2456. ],
  2457. "description": "PHP Class for working with matrices",
  2458. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2459. "keywords": [
  2460. "mathematics",
  2461. "matrix",
  2462. "vector"
  2463. ],
  2464. "time": "2020-08-28T17:11:00+00:00"
  2465. },
  2466. {
  2467. "name": "monolog/monolog",
  2468. "version": "2.1.1",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/Seldaek/monolog.git",
  2472. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2477. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2478. "shasum": "",
  2479. "mirrors": [
  2480. {
  2481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2482. "preferred": true
  2483. }
  2484. ]
  2485. },
  2486. "require": {
  2487. "php": ">=7.2",
  2488. "psr/log": "^1.0.1"
  2489. },
  2490. "provide": {
  2491. "psr/log-implementation": "1.0.0"
  2492. },
  2493. "require-dev": {
  2494. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2495. "doctrine/couchdb": "~1.0@dev",
  2496. "elasticsearch/elasticsearch": "^6.0",
  2497. "graylog2/gelf-php": "^1.4.2",
  2498. "php-amqplib/php-amqplib": "~2.4",
  2499. "php-console/php-console": "^3.1.3",
  2500. "php-parallel-lint/php-parallel-lint": "^1.0",
  2501. "phpspec/prophecy": "^1.6.1",
  2502. "phpunit/phpunit": "^8.5",
  2503. "predis/predis": "^1.1",
  2504. "rollbar/rollbar": "^1.3",
  2505. "ruflin/elastica": ">=0.90 <3.0",
  2506. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2507. },
  2508. "suggest": {
  2509. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2510. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2511. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2512. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2513. "ext-mbstring": "Allow to work properly with unicode symbols",
  2514. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2515. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2516. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2517. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2518. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2519. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2520. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2521. },
  2522. "type": "library",
  2523. "extra": {
  2524. "branch-alias": {
  2525. "dev-master": "2.x-dev"
  2526. }
  2527. },
  2528. "autoload": {
  2529. "psr-4": {
  2530. "Monolog\\": "src/Monolog"
  2531. }
  2532. },
  2533. "notification-url": "https://packagist.org/downloads/",
  2534. "license": [
  2535. "MIT"
  2536. ],
  2537. "authors": [
  2538. {
  2539. "name": "Jordi Boggiano",
  2540. "email": "j.boggiano@seld.be",
  2541. "homepage": "http://seld.be"
  2542. }
  2543. ],
  2544. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2545. "homepage": "http://github.com/Seldaek/monolog",
  2546. "keywords": [
  2547. "log",
  2548. "logging",
  2549. "psr-3"
  2550. ],
  2551. "time": "2020-07-23T08:41:23+00:00"
  2552. },
  2553. {
  2554. "name": "mtdowling/jmespath.php",
  2555. "version": "2.6.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/jmespath/jmespath.php.git",
  2559. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb",
  2564. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb",
  2565. "shasum": "",
  2566. "mirrors": [
  2567. {
  2568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2569. "preferred": true
  2570. }
  2571. ]
  2572. },
  2573. "require": {
  2574. "php": "^5.4 || ^7.0 || ^8.0",
  2575. "symfony/polyfill-mbstring": "^1.17"
  2576. },
  2577. "require-dev": {
  2578. "composer/xdebug-handler": "^1.4",
  2579. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2580. },
  2581. "bin": [
  2582. "bin/jp.php"
  2583. ],
  2584. "type": "library",
  2585. "extra": {
  2586. "branch-alias": {
  2587. "dev-master": "2.6-dev"
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "JmesPath\\": "src/"
  2593. },
  2594. "files": [
  2595. "src/JmesPath.php"
  2596. ]
  2597. },
  2598. "notification-url": "https://packagist.org/downloads/",
  2599. "license": [
  2600. "MIT"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Michael Dowling",
  2605. "email": "mtdowling@gmail.com",
  2606. "homepage": "https://github.com/mtdowling"
  2607. }
  2608. ],
  2609. "description": "Declaratively specify how to extract elements from a JSON document",
  2610. "keywords": [
  2611. "json",
  2612. "jsonpath"
  2613. ],
  2614. "time": "2020-07-31T21:01:56+00:00"
  2615. },
  2616. {
  2617. "name": "myclabs/php-enum",
  2618. "version": "1.7.6",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://github.com/myclabs/php-enum.git",
  2622. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2623. },
  2624. "dist": {
  2625. "type": "zip",
  2626. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2627. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2628. "shasum": "",
  2629. "mirrors": [
  2630. {
  2631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2632. "preferred": true
  2633. }
  2634. ]
  2635. },
  2636. "require": {
  2637. "ext-json": "*",
  2638. "php": ">=7.1"
  2639. },
  2640. "require-dev": {
  2641. "phpunit/phpunit": "^7",
  2642. "squizlabs/php_codesniffer": "1.*",
  2643. "vimeo/psalm": "^3.8"
  2644. },
  2645. "type": "library",
  2646. "autoload": {
  2647. "psr-4": {
  2648. "MyCLabs\\Enum\\": "src/"
  2649. }
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "MIT"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "PHP Enum contributors",
  2658. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2659. }
  2660. ],
  2661. "description": "PHP Enum implementation",
  2662. "homepage": "http://github.com/myclabs/php-enum",
  2663. "keywords": [
  2664. "enum"
  2665. ],
  2666. "time": "2020-02-14T08:15:52+00:00"
  2667. },
  2668. {
  2669. "name": "nesbot/carbon",
  2670. "version": "2.39.0",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://github.com/briannesbitt/Carbon.git",
  2674. "reference": "0a41ea7f7fedacf307b7a339800e10356a042918"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0a41ea7f7fedacf307b7a339800e10356a042918",
  2679. "reference": "0a41ea7f7fedacf307b7a339800e10356a042918",
  2680. "shasum": "",
  2681. "mirrors": [
  2682. {
  2683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2684. "preferred": true
  2685. }
  2686. ]
  2687. },
  2688. "require": {
  2689. "ext-json": "*",
  2690. "php": "^7.1.8 || ^8.0",
  2691. "symfony/polyfill-mbstring": "^1.0",
  2692. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2693. },
  2694. "require-dev": {
  2695. "doctrine/orm": "^2.7",
  2696. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2697. "kylekatarnls/multi-tester": "^2.0",
  2698. "phpmd/phpmd": "^2.8",
  2699. "phpstan/extension-installer": "^1.0",
  2700. "phpstan/phpstan": "^0.12.35",
  2701. "phpunit/phpunit": "^7.5 || ^8.0",
  2702. "squizlabs/php_codesniffer": "^3.4"
  2703. },
  2704. "bin": [
  2705. "bin/carbon"
  2706. ],
  2707. "type": "library",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-master": "2.x-dev",
  2711. "dev-3.x": "3.x-dev"
  2712. },
  2713. "laravel": {
  2714. "providers": [
  2715. "Carbon\\Laravel\\ServiceProvider"
  2716. ]
  2717. },
  2718. "phpstan": {
  2719. "includes": [
  2720. "extension.neon"
  2721. ]
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Carbon\\": "src/Carbon/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Brian Nesbitt",
  2736. "email": "brian@nesbot.com",
  2737. "homepage": "http://nesbot.com"
  2738. },
  2739. {
  2740. "name": "kylekatarnls",
  2741. "homepage": "http://github.com/kylekatarnls"
  2742. }
  2743. ],
  2744. "description": "An API extension for DateTime that supports 281 different languages.",
  2745. "homepage": "http://carbon.nesbot.com",
  2746. "keywords": [
  2747. "date",
  2748. "datetime",
  2749. "time"
  2750. ],
  2751. "time": "2020-08-24T12:35:58+00:00"
  2752. },
  2753. {
  2754. "name": "nikic/php-parser",
  2755. "version": "v4.9.0",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/nikic/PHP-Parser.git",
  2759. "reference": "aaee038b912e567780949787d5fe1977be11a778"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/aaee038b912e567780949787d5fe1977be11a778",
  2764. "reference": "aaee038b912e567780949787d5fe1977be11a778",
  2765. "shasum": "",
  2766. "mirrors": [
  2767. {
  2768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2769. "preferred": true
  2770. }
  2771. ]
  2772. },
  2773. "require": {
  2774. "ext-tokenizer": "*",
  2775. "php": ">=7.0"
  2776. },
  2777. "require-dev": {
  2778. "ircmaxell/php-yacc": "^0.0.7",
  2779. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2780. },
  2781. "bin": [
  2782. "bin/php-parse"
  2783. ],
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "4.9-dev"
  2788. }
  2789. },
  2790. "autoload": {
  2791. "psr-4": {
  2792. "PhpParser\\": "lib/PhpParser"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "BSD-3-Clause"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Nikita Popov"
  2802. }
  2803. ],
  2804. "description": "A PHP parser written in PHP",
  2805. "keywords": [
  2806. "parser",
  2807. "php"
  2808. ],
  2809. "time": "2020-08-18T19:48:01+00:00"
  2810. },
  2811. {
  2812. "name": "opis/closure",
  2813. "version": "3.5.6",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/opis/closure.git",
  2817. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2822. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2823. "shasum": "",
  2824. "mirrors": [
  2825. {
  2826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2827. "preferred": true
  2828. }
  2829. ]
  2830. },
  2831. "require": {
  2832. "php": "^5.4 || ^7.0"
  2833. },
  2834. "require-dev": {
  2835. "jeremeamia/superclosure": "^2.0",
  2836. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2837. },
  2838. "type": "library",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-master": "3.5.x-dev"
  2842. }
  2843. },
  2844. "autoload": {
  2845. "psr-4": {
  2846. "Opis\\Closure\\": "src/"
  2847. },
  2848. "files": [
  2849. "functions.php"
  2850. ]
  2851. },
  2852. "notification-url": "https://packagist.org/downloads/",
  2853. "license": [
  2854. "MIT"
  2855. ],
  2856. "authors": [
  2857. {
  2858. "name": "Marius Sarca",
  2859. "email": "marius.sarca@gmail.com"
  2860. },
  2861. {
  2862. "name": "Sorin Sarca",
  2863. "email": "sarca_sorin@hotmail.com"
  2864. }
  2865. ],
  2866. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2867. "homepage": "https://opis.io/closure",
  2868. "keywords": [
  2869. "anonymous functions",
  2870. "closure",
  2871. "function",
  2872. "serializable",
  2873. "serialization",
  2874. "serialize"
  2875. ],
  2876. "time": "2020-08-11T08:46:50+00:00"
  2877. },
  2878. {
  2879. "name": "paragonie/random_compat",
  2880. "version": "v9.99.99",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/paragonie/random_compat.git",
  2884. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2889. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2890. "shasum": "",
  2891. "mirrors": [
  2892. {
  2893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2894. "preferred": true
  2895. }
  2896. ]
  2897. },
  2898. "require": {
  2899. "php": "^7"
  2900. },
  2901. "require-dev": {
  2902. "phpunit/phpunit": "4.*|5.*",
  2903. "vimeo/psalm": "^1"
  2904. },
  2905. "suggest": {
  2906. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2907. },
  2908. "type": "library",
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "MIT"
  2912. ],
  2913. "authors": [
  2914. {
  2915. "name": "Paragon Initiative Enterprises",
  2916. "email": "security@paragonie.com",
  2917. "homepage": "https://paragonie.com"
  2918. }
  2919. ],
  2920. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2921. "keywords": [
  2922. "csprng",
  2923. "polyfill",
  2924. "pseudorandom",
  2925. "random"
  2926. ],
  2927. "time": "2018-07-02T15:55:56+00:00"
  2928. },
  2929. {
  2930. "name": "phpoffice/phpspreadsheet",
  2931. "version": "1.15.0",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2935. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2940. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  2941. "shasum": "",
  2942. "mirrors": [
  2943. {
  2944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2945. "preferred": true
  2946. }
  2947. ]
  2948. },
  2949. "require": {
  2950. "ext-ctype": "*",
  2951. "ext-dom": "*",
  2952. "ext-fileinfo": "*",
  2953. "ext-gd": "*",
  2954. "ext-iconv": "*",
  2955. "ext-libxml": "*",
  2956. "ext-mbstring": "*",
  2957. "ext-simplexml": "*",
  2958. "ext-xml": "*",
  2959. "ext-xmlreader": "*",
  2960. "ext-xmlwriter": "*",
  2961. "ext-zip": "*",
  2962. "ext-zlib": "*",
  2963. "maennchen/zipstream-php": "^2.1",
  2964. "markbaker/complex": "^1.5|^2.0",
  2965. "markbaker/matrix": "^1.2|^2.0",
  2966. "php": "^7.2|^8.0",
  2967. "psr/http-client": "^1.0",
  2968. "psr/http-factory": "^1.0",
  2969. "psr/simple-cache": "^1.0"
  2970. },
  2971. "require-dev": {
  2972. "dompdf/dompdf": "^0.8.5",
  2973. "friendsofphp/php-cs-fixer": "^2.16",
  2974. "jpgraph/jpgraph": "^4.0",
  2975. "mpdf/mpdf": "^8.0",
  2976. "phpcompatibility/php-compatibility": "^9.3",
  2977. "phpunit/phpunit": "^8.5|^9.3",
  2978. "squizlabs/php_codesniffer": "^3.5",
  2979. "tecnickcom/tcpdf": "^6.3"
  2980. },
  2981. "suggest": {
  2982. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2983. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2984. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2985. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2986. },
  2987. "type": "library",
  2988. "autoload": {
  2989. "psr-4": {
  2990. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2991. }
  2992. },
  2993. "notification-url": "https://packagist.org/downloads/",
  2994. "license": [
  2995. "MIT"
  2996. ],
  2997. "authors": [
  2998. {
  2999. "name": "Maarten Balliauw",
  3000. "homepage": "https://blog.maartenballiauw.be"
  3001. },
  3002. {
  3003. "name": "Mark Baker",
  3004. "homepage": "https://markbakeruk.net"
  3005. },
  3006. {
  3007. "name": "Franck Lefevre",
  3008. "homepage": "https://rootslabs.net"
  3009. },
  3010. {
  3011. "name": "Erik Tilt"
  3012. },
  3013. {
  3014. "name": "Adrien Crivelli"
  3015. }
  3016. ],
  3017. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3018. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3019. "keywords": [
  3020. "OpenXML",
  3021. "excel",
  3022. "gnumeric",
  3023. "ods",
  3024. "php",
  3025. "spreadsheet",
  3026. "xls",
  3027. "xlsx"
  3028. ],
  3029. "time": "2020-10-11T13:20:59+00:00"
  3030. },
  3031. {
  3032. "name": "phpoption/phpoption",
  3033. "version": "1.7.5",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/schmittjoh/php-option.git",
  3037. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3042. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3043. "shasum": "",
  3044. "mirrors": [
  3045. {
  3046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3047. "preferred": true
  3048. }
  3049. ]
  3050. },
  3051. "require": {
  3052. "php": "^5.5.9 || ^7.0 || ^8.0"
  3053. },
  3054. "require-dev": {
  3055. "bamarni/composer-bin-plugin": "^1.4.1",
  3056. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "branch-alias": {
  3061. "dev-master": "1.7-dev"
  3062. }
  3063. },
  3064. "autoload": {
  3065. "psr-4": {
  3066. "PhpOption\\": "src/PhpOption/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "Apache-2.0"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Johannes M. Schmitt",
  3076. "email": "schmittjoh@gmail.com"
  3077. },
  3078. {
  3079. "name": "Graham Campbell",
  3080. "email": "graham@alt-three.com"
  3081. }
  3082. ],
  3083. "description": "Option Type for PHP",
  3084. "keywords": [
  3085. "language",
  3086. "option",
  3087. "php",
  3088. "type"
  3089. ],
  3090. "time": "2020-07-20T17:29:33+00:00"
  3091. },
  3092. {
  3093. "name": "psr/cache",
  3094. "version": "1.0.1",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/php-fig/cache.git",
  3098. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3103. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3104. "shasum": "",
  3105. "mirrors": [
  3106. {
  3107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3108. "preferred": true
  3109. }
  3110. ]
  3111. },
  3112. "require": {
  3113. "php": ">=5.3.0"
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-master": "1.0.x-dev"
  3119. }
  3120. },
  3121. "autoload": {
  3122. "psr-4": {
  3123. "Psr\\Cache\\": "src/"
  3124. }
  3125. },
  3126. "notification-url": "https://packagist.org/downloads/",
  3127. "license": [
  3128. "MIT"
  3129. ],
  3130. "authors": [
  3131. {
  3132. "name": "PHP-FIG",
  3133. "homepage": "http://www.php-fig.org/"
  3134. }
  3135. ],
  3136. "description": "Common interface for caching libraries",
  3137. "keywords": [
  3138. "cache",
  3139. "psr",
  3140. "psr-6"
  3141. ],
  3142. "time": "2016-08-06T20:24:11+00:00"
  3143. },
  3144. {
  3145. "name": "psr/container",
  3146. "version": "1.0.0",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://github.com/php-fig/container.git",
  3150. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3155. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3156. "shasum": "",
  3157. "mirrors": [
  3158. {
  3159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3160. "preferred": true
  3161. }
  3162. ]
  3163. },
  3164. "require": {
  3165. "php": ">=5.3.0"
  3166. },
  3167. "type": "library",
  3168. "extra": {
  3169. "branch-alias": {
  3170. "dev-master": "1.0.x-dev"
  3171. }
  3172. },
  3173. "autoload": {
  3174. "psr-4": {
  3175. "Psr\\Container\\": "src/"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "PHP-FIG",
  3185. "homepage": "http://www.php-fig.org/"
  3186. }
  3187. ],
  3188. "description": "Common Container Interface (PHP FIG PSR-11)",
  3189. "homepage": "https://github.com/php-fig/container",
  3190. "keywords": [
  3191. "PSR-11",
  3192. "container",
  3193. "container-interface",
  3194. "container-interop",
  3195. "psr"
  3196. ],
  3197. "time": "2017-02-14T16:28:37+00:00"
  3198. },
  3199. {
  3200. "name": "psr/http-client",
  3201. "version": "1.0.1",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/php-fig/http-client.git",
  3205. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3210. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3211. "shasum": "",
  3212. "mirrors": [
  3213. {
  3214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3215. "preferred": true
  3216. }
  3217. ]
  3218. },
  3219. "require": {
  3220. "php": "^7.0 || ^8.0",
  3221. "psr/http-message": "^1.0"
  3222. },
  3223. "type": "library",
  3224. "extra": {
  3225. "branch-alias": {
  3226. "dev-master": "1.0.x-dev"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-4": {
  3231. "Psr\\Http\\Client\\": "src/"
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "PHP-FIG",
  3241. "homepage": "http://www.php-fig.org/"
  3242. }
  3243. ],
  3244. "description": "Common interface for HTTP clients",
  3245. "homepage": "https://github.com/php-fig/http-client",
  3246. "keywords": [
  3247. "http",
  3248. "http-client",
  3249. "psr",
  3250. "psr-18"
  3251. ],
  3252. "time": "2020-06-29T06:28:15+00:00"
  3253. },
  3254. {
  3255. "name": "psr/http-factory",
  3256. "version": "1.0.1",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/php-fig/http-factory.git",
  3260. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3265. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3266. "shasum": "",
  3267. "mirrors": [
  3268. {
  3269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3270. "preferred": true
  3271. }
  3272. ]
  3273. },
  3274. "require": {
  3275. "php": ">=7.0.0",
  3276. "psr/http-message": "^1.0"
  3277. },
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "1.0.x-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Psr\\Http\\Message\\": "src/"
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "PHP-FIG",
  3296. "homepage": "http://www.php-fig.org/"
  3297. }
  3298. ],
  3299. "description": "Common interfaces for PSR-7 HTTP message factories",
  3300. "keywords": [
  3301. "factory",
  3302. "http",
  3303. "message",
  3304. "psr",
  3305. "psr-17",
  3306. "psr-7",
  3307. "request",
  3308. "response"
  3309. ],
  3310. "time": "2019-04-30T12:38:16+00:00"
  3311. },
  3312. {
  3313. "name": "psr/http-message",
  3314. "version": "1.0.1",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/php-fig/http-message.git",
  3318. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3323. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3324. "shasum": "",
  3325. "mirrors": [
  3326. {
  3327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3328. "preferred": true
  3329. }
  3330. ]
  3331. },
  3332. "require": {
  3333. "php": ">=5.3.0"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "branch-alias": {
  3338. "dev-master": "1.0.x-dev"
  3339. }
  3340. },
  3341. "autoload": {
  3342. "psr-4": {
  3343. "Psr\\Http\\Message\\": "src/"
  3344. }
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "MIT"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "PHP-FIG",
  3353. "homepage": "http://www.php-fig.org/"
  3354. }
  3355. ],
  3356. "description": "Common interface for HTTP messages",
  3357. "homepage": "https://github.com/php-fig/http-message",
  3358. "keywords": [
  3359. "http",
  3360. "http-message",
  3361. "psr",
  3362. "psr-7",
  3363. "request",
  3364. "response"
  3365. ],
  3366. "time": "2016-08-06T14:39:51+00:00"
  3367. },
  3368. {
  3369. "name": "psr/log",
  3370. "version": "1.1.3",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/php-fig/log.git",
  3374. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3379. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "php": ">=5.3.0"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "branch-alias": {
  3394. "dev-master": "1.1.x-dev"
  3395. }
  3396. },
  3397. "autoload": {
  3398. "psr-4": {
  3399. "Psr\\Log\\": "Psr/Log/"
  3400. }
  3401. },
  3402. "notification-url": "https://packagist.org/downloads/",
  3403. "license": [
  3404. "MIT"
  3405. ],
  3406. "authors": [
  3407. {
  3408. "name": "PHP-FIG",
  3409. "homepage": "http://www.php-fig.org/"
  3410. }
  3411. ],
  3412. "description": "Common interface for logging libraries",
  3413. "homepage": "https://github.com/php-fig/log",
  3414. "keywords": [
  3415. "log",
  3416. "psr",
  3417. "psr-3"
  3418. ],
  3419. "time": "2020-03-23T09:12:05+00:00"
  3420. },
  3421. {
  3422. "name": "psr/simple-cache",
  3423. "version": "1.0.1",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/php-fig/simple-cache.git",
  3427. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3432. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3433. "shasum": "",
  3434. "mirrors": [
  3435. {
  3436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3437. "preferred": true
  3438. }
  3439. ]
  3440. },
  3441. "require": {
  3442. "php": ">=5.3.0"
  3443. },
  3444. "type": "library",
  3445. "extra": {
  3446. "branch-alias": {
  3447. "dev-master": "1.0.x-dev"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Psr\\SimpleCache\\": "src/"
  3453. }
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "PHP-FIG",
  3462. "homepage": "http://www.php-fig.org/"
  3463. }
  3464. ],
  3465. "description": "Common interfaces for simple caching",
  3466. "keywords": [
  3467. "cache",
  3468. "caching",
  3469. "psr",
  3470. "psr-16",
  3471. "simple-cache"
  3472. ],
  3473. "time": "2017-10-23T01:57:42+00:00"
  3474. },
  3475. {
  3476. "name": "psy/psysh",
  3477. "version": "v0.10.4",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://github.com/bobthecow/psysh.git",
  3481. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3486. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3487. "shasum": "",
  3488. "mirrors": [
  3489. {
  3490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3491. "preferred": true
  3492. }
  3493. ]
  3494. },
  3495. "require": {
  3496. "dnoegel/php-xdg-base-dir": "0.1.*",
  3497. "ext-json": "*",
  3498. "ext-tokenizer": "*",
  3499. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3500. "php": "^8.0 || ^7.0 || ^5.5.9",
  3501. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3502. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3503. },
  3504. "require-dev": {
  3505. "bamarni/composer-bin-plugin": "^1.2",
  3506. "hoa/console": "3.17.*"
  3507. },
  3508. "suggest": {
  3509. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3510. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3511. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3512. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3513. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3514. },
  3515. "bin": [
  3516. "bin/psysh"
  3517. ],
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "0.10.x-dev"
  3522. }
  3523. },
  3524. "autoload": {
  3525. "files": [
  3526. "src/functions.php"
  3527. ],
  3528. "psr-4": {
  3529. "Psy\\": "src/"
  3530. }
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "authors": [
  3537. {
  3538. "name": "Justin Hileman",
  3539. "email": "justin@justinhileman.info",
  3540. "homepage": "http://justinhileman.com"
  3541. }
  3542. ],
  3543. "description": "An interactive shell for modern PHP.",
  3544. "homepage": "http://psysh.org",
  3545. "keywords": [
  3546. "REPL",
  3547. "console",
  3548. "interactive",
  3549. "shell"
  3550. ],
  3551. "time": "2020-05-03T19:32:03+00:00"
  3552. },
  3553. {
  3554. "name": "ralouphie/getallheaders",
  3555. "version": "3.0.3",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://github.com/ralouphie/getallheaders.git",
  3559. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3560. },
  3561. "dist": {
  3562. "type": "zip",
  3563. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3564. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3565. "shasum": "",
  3566. "mirrors": [
  3567. {
  3568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3569. "preferred": true
  3570. }
  3571. ]
  3572. },
  3573. "require": {
  3574. "php": ">=5.6"
  3575. },
  3576. "require-dev": {
  3577. "php-coveralls/php-coveralls": "^2.1",
  3578. "phpunit/phpunit": "^5 || ^6.5"
  3579. },
  3580. "type": "library",
  3581. "autoload": {
  3582. "files": [
  3583. "src/getallheaders.php"
  3584. ]
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "MIT"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "Ralph Khattar",
  3593. "email": "ralph.khattar@gmail.com"
  3594. }
  3595. ],
  3596. "description": "A polyfill for getallheaders.",
  3597. "time": "2019-03-08T08:55:37+00:00"
  3598. },
  3599. {
  3600. "name": "ramsey/uuid",
  3601. "version": "3.9.3",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/ramsey/uuid.git",
  3605. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  3610. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  3611. "shasum": "",
  3612. "mirrors": [
  3613. {
  3614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3615. "preferred": true
  3616. }
  3617. ]
  3618. },
  3619. "require": {
  3620. "ext-json": "*",
  3621. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  3622. "php": "^5.4 | ^7 | ^8",
  3623. "symfony/polyfill-ctype": "^1.8"
  3624. },
  3625. "replace": {
  3626. "rhumsaa/uuid": "self.version"
  3627. },
  3628. "require-dev": {
  3629. "codeception/aspect-mock": "^1 | ^2",
  3630. "doctrine/annotations": "^1.2",
  3631. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  3632. "jakub-onderka/php-parallel-lint": "^1",
  3633. "mockery/mockery": "^0.9.11 | ^1",
  3634. "moontoast/math": "^1.1",
  3635. "paragonie/random-lib": "^2",
  3636. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  3637. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  3638. "squizlabs/php_codesniffer": "^3.5"
  3639. },
  3640. "suggest": {
  3641. "ext-ctype": "Provides support for PHP Ctype functions",
  3642. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3643. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3644. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3645. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3646. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3647. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3648. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-master": "3.x-dev"
  3654. }
  3655. },
  3656. "autoload": {
  3657. "psr-4": {
  3658. "Ramsey\\Uuid\\": "src/"
  3659. },
  3660. "files": [
  3661. "src/functions.php"
  3662. ]
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "MIT"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "Ben Ramsey",
  3671. "email": "ben@benramsey.com",
  3672. "homepage": "https://benramsey.com"
  3673. },
  3674. {
  3675. "name": "Marijn Huizendveld",
  3676. "email": "marijn.huizendveld@gmail.com"
  3677. },
  3678. {
  3679. "name": "Thibaud Fabre",
  3680. "email": "thibaud@aztech.io"
  3681. }
  3682. ],
  3683. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3684. "homepage": "https://github.com/ramsey/uuid",
  3685. "keywords": [
  3686. "guid",
  3687. "identifier",
  3688. "uuid"
  3689. ],
  3690. "time": "2020-02-21T04:36:14+00:00"
  3691. },
  3692. {
  3693. "name": "sven/artisan-view",
  3694. "version": "v3.3.1",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/svenluijten/artisan-view.git",
  3698. "reference": "42cfe1f443a56af4bb3c92316632e485292abc09"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/svenluijten/artisan-view/zipball/42cfe1f443a56af4bb3c92316632e485292abc09",
  3703. "reference": "42cfe1f443a56af4bb3c92316632e485292abc09",
  3704. "shasum": "",
  3705. "mirrors": [
  3706. {
  3707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3708. "preferred": true
  3709. }
  3710. ]
  3711. },
  3712. "require": {
  3713. "laravel/framework": "^5.4 || ^6.0 || ^7.0",
  3714. "php": "^7.1"
  3715. },
  3716. "require-dev": {
  3717. "graham-campbell/testbench": "^4.0 || ^5.0",
  3718. "mockery/mockery": "^1.0",
  3719. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  3720. },
  3721. "type": "library",
  3722. "extra": {
  3723. "laravel": {
  3724. "providers": [
  3725. "Sven\\ArtisanView\\ServiceProvider"
  3726. ]
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Sven\\ArtisanView\\": "src/"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Sven Luijten",
  3741. "email": "svenluijten1995@gmail.com",
  3742. "homepage": "https://svenluijten.com"
  3743. }
  3744. ],
  3745. "description": "Manage your views in Laravel projects through artisan",
  3746. "keywords": [
  3747. "artisan",
  3748. "blade",
  3749. "laravel",
  3750. "templates",
  3751. "views"
  3752. ],
  3753. "time": "2020-03-04T12:00:10+00:00"
  3754. },
  3755. {
  3756. "name": "swiftmailer/swiftmailer",
  3757. "version": "v6.2.3",
  3758. "source": {
  3759. "type": "git",
  3760. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3761. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3762. },
  3763. "dist": {
  3764. "type": "zip",
  3765. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3766. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3767. "shasum": "",
  3768. "mirrors": [
  3769. {
  3770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3771. "preferred": true
  3772. }
  3773. ]
  3774. },
  3775. "require": {
  3776. "egulias/email-validator": "~2.0",
  3777. "php": ">=7.0.0",
  3778. "symfony/polyfill-iconv": "^1.0",
  3779. "symfony/polyfill-intl-idn": "^1.10",
  3780. "symfony/polyfill-mbstring": "^1.0"
  3781. },
  3782. "require-dev": {
  3783. "mockery/mockery": "~0.9.1",
  3784. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3785. },
  3786. "suggest": {
  3787. "ext-intl": "Needed to support internationalized email addresses",
  3788. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "branch-alias": {
  3793. "dev-master": "6.2-dev"
  3794. }
  3795. },
  3796. "autoload": {
  3797. "files": [
  3798. "lib/swift_required.php"
  3799. ]
  3800. },
  3801. "notification-url": "https://packagist.org/downloads/",
  3802. "license": [
  3803. "MIT"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "Chris Corbyn"
  3808. },
  3809. {
  3810. "name": "Fabien Potencier",
  3811. "email": "fabien@symfony.com"
  3812. }
  3813. ],
  3814. "description": "Swiftmailer, free feature-rich PHP mailer",
  3815. "homepage": "https://swiftmailer.symfony.com",
  3816. "keywords": [
  3817. "email",
  3818. "mail",
  3819. "mailer"
  3820. ],
  3821. "time": "2019-11-12T09:31:26+00:00"
  3822. },
  3823. {
  3824. "name": "symfony/console",
  3825. "version": "v4.4.11",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/symfony/console.git",
  3829. "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02",
  3834. "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02",
  3835. "shasum": "",
  3836. "mirrors": [
  3837. {
  3838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3839. "preferred": true
  3840. }
  3841. ]
  3842. },
  3843. "require": {
  3844. "php": ">=7.1.3",
  3845. "symfony/polyfill-mbstring": "~1.0",
  3846. "symfony/polyfill-php73": "^1.8",
  3847. "symfony/polyfill-php80": "^1.15",
  3848. "symfony/service-contracts": "^1.1|^2"
  3849. },
  3850. "conflict": {
  3851. "symfony/dependency-injection": "<3.4",
  3852. "symfony/event-dispatcher": "<4.3|>=5",
  3853. "symfony/lock": "<4.4",
  3854. "symfony/process": "<3.3"
  3855. },
  3856. "provide": {
  3857. "psr/log-implementation": "1.0"
  3858. },
  3859. "require-dev": {
  3860. "psr/log": "~1.0",
  3861. "symfony/config": "^3.4|^4.0|^5.0",
  3862. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3863. "symfony/event-dispatcher": "^4.3",
  3864. "symfony/lock": "^4.4|^5.0",
  3865. "symfony/process": "^3.4|^4.0|^5.0",
  3866. "symfony/var-dumper": "^4.3|^5.0"
  3867. },
  3868. "suggest": {
  3869. "psr/log": "For using the console logger",
  3870. "symfony/event-dispatcher": "",
  3871. "symfony/lock": "",
  3872. "symfony/process": ""
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-master": "4.4-dev"
  3878. }
  3879. },
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Symfony\\Component\\Console\\": ""
  3883. },
  3884. "exclude-from-classmap": [
  3885. "/Tests/"
  3886. ]
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "MIT"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Fabien Potencier",
  3895. "email": "fabien@symfony.com"
  3896. },
  3897. {
  3898. "name": "Symfony Community",
  3899. "homepage": "https://symfony.com/contributors"
  3900. }
  3901. ],
  3902. "description": "Symfony Console Component",
  3903. "homepage": "https://symfony.com",
  3904. "time": "2020-07-06T13:18:39+00:00"
  3905. },
  3906. {
  3907. "name": "symfony/css-selector",
  3908. "version": "v5.1.3",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/symfony/css-selector.git",
  3912. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3917. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3918. "shasum": "",
  3919. "mirrors": [
  3920. {
  3921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3922. "preferred": true
  3923. }
  3924. ]
  3925. },
  3926. "require": {
  3927. "php": ">=7.2.5"
  3928. },
  3929. "type": "library",
  3930. "extra": {
  3931. "branch-alias": {
  3932. "dev-master": "5.1-dev"
  3933. }
  3934. },
  3935. "autoload": {
  3936. "psr-4": {
  3937. "Symfony\\Component\\CssSelector\\": ""
  3938. },
  3939. "exclude-from-classmap": [
  3940. "/Tests/"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Fabien Potencier",
  3950. "email": "fabien@symfony.com"
  3951. },
  3952. {
  3953. "name": "Jean-François Simon",
  3954. "email": "jeanfrancois.simon@sensiolabs.com"
  3955. },
  3956. {
  3957. "name": "Symfony Community",
  3958. "homepage": "https://symfony.com/contributors"
  3959. }
  3960. ],
  3961. "description": "Symfony CssSelector Component",
  3962. "homepage": "https://symfony.com",
  3963. "time": "2020-05-20T17:43:50+00:00"
  3964. },
  3965. {
  3966. "name": "symfony/debug",
  3967. "version": "v4.4.11",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/symfony/debug.git",
  3971. "reference": "47aa9064d75db36389692dd4d39895a0820f00f2"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/symfony/debug/zipball/47aa9064d75db36389692dd4d39895a0820f00f2",
  3976. "reference": "47aa9064d75db36389692dd4d39895a0820f00f2",
  3977. "shasum": "",
  3978. "mirrors": [
  3979. {
  3980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3981. "preferred": true
  3982. }
  3983. ]
  3984. },
  3985. "require": {
  3986. "php": ">=7.1.3",
  3987. "psr/log": "~1.0",
  3988. "symfony/polyfill-php80": "^1.15"
  3989. },
  3990. "conflict": {
  3991. "symfony/http-kernel": "<3.4"
  3992. },
  3993. "require-dev": {
  3994. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  3995. },
  3996. "type": "library",
  3997. "extra": {
  3998. "branch-alias": {
  3999. "dev-master": "4.4-dev"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Symfony\\Component\\Debug\\": ""
  4005. },
  4006. "exclude-from-classmap": [
  4007. "/Tests/"
  4008. ]
  4009. },
  4010. "notification-url": "https://packagist.org/downloads/",
  4011. "license": [
  4012. "MIT"
  4013. ],
  4014. "authors": [
  4015. {
  4016. "name": "Fabien Potencier",
  4017. "email": "fabien@symfony.com"
  4018. },
  4019. {
  4020. "name": "Symfony Community",
  4021. "homepage": "https://symfony.com/contributors"
  4022. }
  4023. ],
  4024. "description": "Symfony Debug Component",
  4025. "homepage": "https://symfony.com",
  4026. "time": "2020-07-23T08:31:43+00:00"
  4027. },
  4028. {
  4029. "name": "symfony/dom-crawler",
  4030. "version": "v5.1.3",
  4031. "source": {
  4032. "type": "git",
  4033. "url": "https://github.com/symfony/dom-crawler.git",
  4034. "reference": "a96aecb36aaf081f1b012e1e62d71f1069ab3dca"
  4035. },
  4036. "dist": {
  4037. "type": "zip",
  4038. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/a96aecb36aaf081f1b012e1e62d71f1069ab3dca",
  4039. "reference": "a96aecb36aaf081f1b012e1e62d71f1069ab3dca",
  4040. "shasum": "",
  4041. "mirrors": [
  4042. {
  4043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4044. "preferred": true
  4045. }
  4046. ]
  4047. },
  4048. "require": {
  4049. "php": ">=7.2.5",
  4050. "symfony/polyfill-ctype": "~1.8",
  4051. "symfony/polyfill-mbstring": "~1.0",
  4052. "symfony/polyfill-php80": "^1.15"
  4053. },
  4054. "conflict": {
  4055. "masterminds/html5": "<2.6"
  4056. },
  4057. "require-dev": {
  4058. "masterminds/html5": "^2.6",
  4059. "symfony/css-selector": "^4.4|^5.0"
  4060. },
  4061. "suggest": {
  4062. "symfony/css-selector": ""
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "5.1-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Symfony\\Component\\DomCrawler\\": ""
  4073. },
  4074. "exclude-from-classmap": [
  4075. "/Tests/"
  4076. ]
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Fabien Potencier",
  4085. "email": "fabien@symfony.com"
  4086. },
  4087. {
  4088. "name": "Symfony Community",
  4089. "homepage": "https://symfony.com/contributors"
  4090. }
  4091. ],
  4092. "description": "Symfony DomCrawler Component",
  4093. "homepage": "https://symfony.com",
  4094. "time": "2020-07-23T08:36:24+00:00"
  4095. },
  4096. {
  4097. "name": "symfony/error-handler",
  4098. "version": "v4.4.11",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/symfony/error-handler.git",
  4102. "reference": "66f151360550ec2b3273b3746febb12e6ba0348b"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/symfony/error-handler/zipball/66f151360550ec2b3273b3746febb12e6ba0348b",
  4107. "reference": "66f151360550ec2b3273b3746febb12e6ba0348b",
  4108. "shasum": "",
  4109. "mirrors": [
  4110. {
  4111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4112. "preferred": true
  4113. }
  4114. ]
  4115. },
  4116. "require": {
  4117. "php": ">=7.1.3",
  4118. "psr/log": "~1.0",
  4119. "symfony/debug": "^4.4.5",
  4120. "symfony/polyfill-php80": "^1.15",
  4121. "symfony/var-dumper": "^4.4|^5.0"
  4122. },
  4123. "require-dev": {
  4124. "symfony/http-kernel": "^4.4|^5.0",
  4125. "symfony/serializer": "^4.4|^5.0"
  4126. },
  4127. "type": "library",
  4128. "extra": {
  4129. "branch-alias": {
  4130. "dev-master": "4.4-dev"
  4131. }
  4132. },
  4133. "autoload": {
  4134. "psr-4": {
  4135. "Symfony\\Component\\ErrorHandler\\": ""
  4136. },
  4137. "exclude-from-classmap": [
  4138. "/Tests/"
  4139. ]
  4140. },
  4141. "notification-url": "https://packagist.org/downloads/",
  4142. "license": [
  4143. "MIT"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "Fabien Potencier",
  4148. "email": "fabien@symfony.com"
  4149. },
  4150. {
  4151. "name": "Symfony Community",
  4152. "homepage": "https://symfony.com/contributors"
  4153. }
  4154. ],
  4155. "description": "Symfony ErrorHandler Component",
  4156. "homepage": "https://symfony.com",
  4157. "time": "2020-07-23T08:35:20+00:00"
  4158. },
  4159. {
  4160. "name": "symfony/event-dispatcher",
  4161. "version": "v4.4.11",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://github.com/symfony/event-dispatcher.git",
  4165. "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8",
  4170. "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8",
  4171. "shasum": "",
  4172. "mirrors": [
  4173. {
  4174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4175. "preferred": true
  4176. }
  4177. ]
  4178. },
  4179. "require": {
  4180. "php": ">=7.1.3",
  4181. "symfony/event-dispatcher-contracts": "^1.1"
  4182. },
  4183. "conflict": {
  4184. "symfony/dependency-injection": "<3.4"
  4185. },
  4186. "provide": {
  4187. "psr/event-dispatcher-implementation": "1.0",
  4188. "symfony/event-dispatcher-implementation": "1.1"
  4189. },
  4190. "require-dev": {
  4191. "psr/log": "~1.0",
  4192. "symfony/config": "^3.4|^4.0|^5.0",
  4193. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4194. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4195. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4196. "symfony/service-contracts": "^1.1|^2",
  4197. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4198. },
  4199. "suggest": {
  4200. "symfony/dependency-injection": "",
  4201. "symfony/http-kernel": ""
  4202. },
  4203. "type": "library",
  4204. "extra": {
  4205. "branch-alias": {
  4206. "dev-master": "4.4-dev"
  4207. }
  4208. },
  4209. "autoload": {
  4210. "psr-4": {
  4211. "Symfony\\Component\\EventDispatcher\\": ""
  4212. },
  4213. "exclude-from-classmap": [
  4214. "/Tests/"
  4215. ]
  4216. },
  4217. "notification-url": "https://packagist.org/downloads/",
  4218. "license": [
  4219. "MIT"
  4220. ],
  4221. "authors": [
  4222. {
  4223. "name": "Fabien Potencier",
  4224. "email": "fabien@symfony.com"
  4225. },
  4226. {
  4227. "name": "Symfony Community",
  4228. "homepage": "https://symfony.com/contributors"
  4229. }
  4230. ],
  4231. "description": "Symfony EventDispatcher Component",
  4232. "homepage": "https://symfony.com",
  4233. "time": "2020-06-18T17:59:13+00:00"
  4234. },
  4235. {
  4236. "name": "symfony/event-dispatcher-contracts",
  4237. "version": "v1.1.9",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4241. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4246. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4247. "shasum": "",
  4248. "mirrors": [
  4249. {
  4250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4251. "preferred": true
  4252. }
  4253. ]
  4254. },
  4255. "require": {
  4256. "php": ">=7.1.3"
  4257. },
  4258. "suggest": {
  4259. "psr/event-dispatcher": "",
  4260. "symfony/event-dispatcher-implementation": ""
  4261. },
  4262. "type": "library",
  4263. "extra": {
  4264. "branch-alias": {
  4265. "dev-master": "1.1-dev"
  4266. },
  4267. "thanks": {
  4268. "name": "symfony/contracts",
  4269. "url": "https://github.com/symfony/contracts"
  4270. }
  4271. },
  4272. "autoload": {
  4273. "psr-4": {
  4274. "Symfony\\Contracts\\EventDispatcher\\": ""
  4275. }
  4276. },
  4277. "notification-url": "https://packagist.org/downloads/",
  4278. "license": [
  4279. "MIT"
  4280. ],
  4281. "authors": [
  4282. {
  4283. "name": "Nicolas Grekas",
  4284. "email": "p@tchwork.com"
  4285. },
  4286. {
  4287. "name": "Symfony Community",
  4288. "homepage": "https://symfony.com/contributors"
  4289. }
  4290. ],
  4291. "description": "Generic abstractions related to dispatching event",
  4292. "homepage": "https://symfony.com",
  4293. "keywords": [
  4294. "abstractions",
  4295. "contracts",
  4296. "decoupling",
  4297. "interfaces",
  4298. "interoperability",
  4299. "standards"
  4300. ],
  4301. "time": "2020-07-06T13:19:58+00:00"
  4302. },
  4303. {
  4304. "name": "symfony/finder",
  4305. "version": "v4.4.11",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/symfony/finder.git",
  4309. "reference": "2727aa35fddfada1dd37599948528e9b152eb742"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742",
  4314. "reference": "2727aa35fddfada1dd37599948528e9b152eb742",
  4315. "shasum": "",
  4316. "mirrors": [
  4317. {
  4318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4319. "preferred": true
  4320. }
  4321. ]
  4322. },
  4323. "require": {
  4324. "php": ">=7.1.3"
  4325. },
  4326. "type": "library",
  4327. "extra": {
  4328. "branch-alias": {
  4329. "dev-master": "4.4-dev"
  4330. }
  4331. },
  4332. "autoload": {
  4333. "psr-4": {
  4334. "Symfony\\Component\\Finder\\": ""
  4335. },
  4336. "exclude-from-classmap": [
  4337. "/Tests/"
  4338. ]
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Fabien Potencier",
  4347. "email": "fabien@symfony.com"
  4348. },
  4349. {
  4350. "name": "Symfony Community",
  4351. "homepage": "https://symfony.com/contributors"
  4352. }
  4353. ],
  4354. "description": "Symfony Finder Component",
  4355. "homepage": "https://symfony.com",
  4356. "time": "2020-07-05T09:39:30+00:00"
  4357. },
  4358. {
  4359. "name": "symfony/http-foundation",
  4360. "version": "v4.4.11",
  4361. "source": {
  4362. "type": "git",
  4363. "url": "https://github.com/symfony/http-foundation.git",
  4364. "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6"
  4365. },
  4366. "dist": {
  4367. "type": "zip",
  4368. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6",
  4369. "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6",
  4370. "shasum": "",
  4371. "mirrors": [
  4372. {
  4373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4374. "preferred": true
  4375. }
  4376. ]
  4377. },
  4378. "require": {
  4379. "php": ">=7.1.3",
  4380. "symfony/mime": "^4.3|^5.0",
  4381. "symfony/polyfill-mbstring": "~1.1"
  4382. },
  4383. "require-dev": {
  4384. "predis/predis": "~1.0",
  4385. "symfony/expression-language": "^3.4|^4.0|^5.0"
  4386. },
  4387. "type": "library",
  4388. "extra": {
  4389. "branch-alias": {
  4390. "dev-master": "4.4-dev"
  4391. }
  4392. },
  4393. "autoload": {
  4394. "psr-4": {
  4395. "Symfony\\Component\\HttpFoundation\\": ""
  4396. },
  4397. "exclude-from-classmap": [
  4398. "/Tests/"
  4399. ]
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "Fabien Potencier",
  4408. "email": "fabien@symfony.com"
  4409. },
  4410. {
  4411. "name": "Symfony Community",
  4412. "homepage": "https://symfony.com/contributors"
  4413. }
  4414. ],
  4415. "description": "Symfony HttpFoundation Component",
  4416. "homepage": "https://symfony.com",
  4417. "time": "2020-07-23T09:48:09+00:00"
  4418. },
  4419. {
  4420. "name": "symfony/http-kernel",
  4421. "version": "v4.4.11",
  4422. "source": {
  4423. "type": "git",
  4424. "url": "https://github.com/symfony/http-kernel.git",
  4425. "reference": "a675d2bf04a9328f164910cae6e3918b295151f3"
  4426. },
  4427. "dist": {
  4428. "type": "zip",
  4429. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a675d2bf04a9328f164910cae6e3918b295151f3",
  4430. "reference": "a675d2bf04a9328f164910cae6e3918b295151f3",
  4431. "shasum": "",
  4432. "mirrors": [
  4433. {
  4434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4435. "preferred": true
  4436. }
  4437. ]
  4438. },
  4439. "require": {
  4440. "php": ">=7.1.3",
  4441. "psr/log": "~1.0",
  4442. "symfony/error-handler": "^4.4",
  4443. "symfony/event-dispatcher": "^4.4",
  4444. "symfony/http-foundation": "^4.4|^5.0",
  4445. "symfony/polyfill-ctype": "^1.8",
  4446. "symfony/polyfill-php73": "^1.9",
  4447. "symfony/polyfill-php80": "^1.15"
  4448. },
  4449. "conflict": {
  4450. "symfony/browser-kit": "<4.3",
  4451. "symfony/config": "<3.4",
  4452. "symfony/console": ">=5",
  4453. "symfony/dependency-injection": "<4.3",
  4454. "symfony/translation": "<4.2",
  4455. "twig/twig": "<1.34|<2.4,>=2"
  4456. },
  4457. "provide": {
  4458. "psr/log-implementation": "1.0"
  4459. },
  4460. "require-dev": {
  4461. "psr/cache": "~1.0",
  4462. "symfony/browser-kit": "^4.3|^5.0",
  4463. "symfony/config": "^3.4|^4.0|^5.0",
  4464. "symfony/console": "^3.4|^4.0",
  4465. "symfony/css-selector": "^3.4|^4.0|^5.0",
  4466. "symfony/dependency-injection": "^4.3|^5.0",
  4467. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  4468. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4469. "symfony/finder": "^3.4|^4.0|^5.0",
  4470. "symfony/process": "^3.4|^4.0|^5.0",
  4471. "symfony/routing": "^3.4|^4.0|^5.0",
  4472. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  4473. "symfony/templating": "^3.4|^4.0|^5.0",
  4474. "symfony/translation": "^4.2|^5.0",
  4475. "symfony/translation-contracts": "^1.1|^2",
  4476. "twig/twig": "^1.34|^2.4|^3.0"
  4477. },
  4478. "suggest": {
  4479. "symfony/browser-kit": "",
  4480. "symfony/config": "",
  4481. "symfony/console": "",
  4482. "symfony/dependency-injection": ""
  4483. },
  4484. "type": "library",
  4485. "extra": {
  4486. "branch-alias": {
  4487. "dev-master": "4.4-dev"
  4488. }
  4489. },
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Symfony\\Component\\HttpKernel\\": ""
  4493. },
  4494. "exclude-from-classmap": [
  4495. "/Tests/"
  4496. ]
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Fabien Potencier",
  4505. "email": "fabien@symfony.com"
  4506. },
  4507. {
  4508. "name": "Symfony Community",
  4509. "homepage": "https://symfony.com/contributors"
  4510. }
  4511. ],
  4512. "description": "Symfony HttpKernel Component",
  4513. "homepage": "https://symfony.com",
  4514. "time": "2020-07-24T04:10:09+00:00"
  4515. },
  4516. {
  4517. "name": "symfony/mime",
  4518. "version": "v5.1.3",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/symfony/mime.git",
  4522. "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6",
  4527. "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6",
  4528. "shasum": "",
  4529. "mirrors": [
  4530. {
  4531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4532. "preferred": true
  4533. }
  4534. ]
  4535. },
  4536. "require": {
  4537. "php": ">=7.2.5",
  4538. "symfony/polyfill-intl-idn": "^1.10",
  4539. "symfony/polyfill-mbstring": "^1.0",
  4540. "symfony/polyfill-php80": "^1.15"
  4541. },
  4542. "conflict": {
  4543. "symfony/mailer": "<4.4"
  4544. },
  4545. "require-dev": {
  4546. "egulias/email-validator": "^2.1.10",
  4547. "symfony/dependency-injection": "^4.4|^5.0"
  4548. },
  4549. "type": "library",
  4550. "extra": {
  4551. "branch-alias": {
  4552. "dev-master": "5.1-dev"
  4553. }
  4554. },
  4555. "autoload": {
  4556. "psr-4": {
  4557. "Symfony\\Component\\Mime\\": ""
  4558. },
  4559. "exclude-from-classmap": [
  4560. "/Tests/"
  4561. ]
  4562. },
  4563. "notification-url": "https://packagist.org/downloads/",
  4564. "license": [
  4565. "MIT"
  4566. ],
  4567. "authors": [
  4568. {
  4569. "name": "Fabien Potencier",
  4570. "email": "fabien@symfony.com"
  4571. },
  4572. {
  4573. "name": "Symfony Community",
  4574. "homepage": "https://symfony.com/contributors"
  4575. }
  4576. ],
  4577. "description": "A library to manipulate MIME messages",
  4578. "homepage": "https://symfony.com",
  4579. "keywords": [
  4580. "mime",
  4581. "mime-type"
  4582. ],
  4583. "time": "2020-07-23T10:04:31+00:00"
  4584. },
  4585. {
  4586. "name": "symfony/polyfill-ctype",
  4587. "version": "v1.18.1",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/symfony/polyfill-ctype.git",
  4591. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4596. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4597. "shasum": "",
  4598. "mirrors": [
  4599. {
  4600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4601. "preferred": true
  4602. }
  4603. ]
  4604. },
  4605. "require": {
  4606. "php": ">=5.3.3"
  4607. },
  4608. "suggest": {
  4609. "ext-ctype": "For best performance"
  4610. },
  4611. "type": "library",
  4612. "extra": {
  4613. "branch-alias": {
  4614. "dev-master": "1.18-dev"
  4615. },
  4616. "thanks": {
  4617. "name": "symfony/polyfill",
  4618. "url": "https://github.com/symfony/polyfill"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Symfony\\Polyfill\\Ctype\\": ""
  4624. },
  4625. "files": [
  4626. "bootstrap.php"
  4627. ]
  4628. },
  4629. "notification-url": "https://packagist.org/downloads/",
  4630. "license": [
  4631. "MIT"
  4632. ],
  4633. "authors": [
  4634. {
  4635. "name": "Gert de Pagter",
  4636. "email": "BackEndTea@gmail.com"
  4637. },
  4638. {
  4639. "name": "Symfony Community",
  4640. "homepage": "https://symfony.com/contributors"
  4641. }
  4642. ],
  4643. "description": "Symfony polyfill for ctype functions",
  4644. "homepage": "https://symfony.com",
  4645. "keywords": [
  4646. "compatibility",
  4647. "ctype",
  4648. "polyfill",
  4649. "portable"
  4650. ],
  4651. "time": "2020-07-14T12:35:20+00:00"
  4652. },
  4653. {
  4654. "name": "symfony/polyfill-iconv",
  4655. "version": "v1.18.1",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/symfony/polyfill-iconv.git",
  4659. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4664. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4665. "shasum": "",
  4666. "mirrors": [
  4667. {
  4668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4669. "preferred": true
  4670. }
  4671. ]
  4672. },
  4673. "require": {
  4674. "php": ">=5.3.3"
  4675. },
  4676. "suggest": {
  4677. "ext-iconv": "For best performance"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "1.18-dev"
  4683. },
  4684. "thanks": {
  4685. "name": "symfony/polyfill",
  4686. "url": "https://github.com/symfony/polyfill"
  4687. }
  4688. },
  4689. "autoload": {
  4690. "psr-4": {
  4691. "Symfony\\Polyfill\\Iconv\\": ""
  4692. },
  4693. "files": [
  4694. "bootstrap.php"
  4695. ]
  4696. },
  4697. "notification-url": "https://packagist.org/downloads/",
  4698. "license": [
  4699. "MIT"
  4700. ],
  4701. "authors": [
  4702. {
  4703. "name": "Nicolas Grekas",
  4704. "email": "p@tchwork.com"
  4705. },
  4706. {
  4707. "name": "Symfony Community",
  4708. "homepage": "https://symfony.com/contributors"
  4709. }
  4710. ],
  4711. "description": "Symfony polyfill for the Iconv extension",
  4712. "homepage": "https://symfony.com",
  4713. "keywords": [
  4714. "compatibility",
  4715. "iconv",
  4716. "polyfill",
  4717. "portable",
  4718. "shim"
  4719. ],
  4720. "time": "2020-07-14T12:35:20+00:00"
  4721. },
  4722. {
  4723. "name": "symfony/polyfill-intl-idn",
  4724. "version": "v1.18.1",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4728. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4733. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4734. "shasum": "",
  4735. "mirrors": [
  4736. {
  4737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4738. "preferred": true
  4739. }
  4740. ]
  4741. },
  4742. "require": {
  4743. "php": ">=5.3.3",
  4744. "symfony/polyfill-intl-normalizer": "^1.10",
  4745. "symfony/polyfill-php70": "^1.10",
  4746. "symfony/polyfill-php72": "^1.10"
  4747. },
  4748. "suggest": {
  4749. "ext-intl": "For best performance"
  4750. },
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "1.18-dev"
  4755. },
  4756. "thanks": {
  4757. "name": "symfony/polyfill",
  4758. "url": "https://github.com/symfony/polyfill"
  4759. }
  4760. },
  4761. "autoload": {
  4762. "psr-4": {
  4763. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4764. },
  4765. "files": [
  4766. "bootstrap.php"
  4767. ]
  4768. },
  4769. "notification-url": "https://packagist.org/downloads/",
  4770. "license": [
  4771. "MIT"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "Laurent Bassin",
  4776. "email": "laurent@bassin.info"
  4777. },
  4778. {
  4779. "name": "Trevor Rowbotham",
  4780. "email": "trevor.rowbotham@pm.me"
  4781. },
  4782. {
  4783. "name": "Symfony Community",
  4784. "homepage": "https://symfony.com/contributors"
  4785. }
  4786. ],
  4787. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4788. "homepage": "https://symfony.com",
  4789. "keywords": [
  4790. "compatibility",
  4791. "idn",
  4792. "intl",
  4793. "polyfill",
  4794. "portable",
  4795. "shim"
  4796. ],
  4797. "time": "2020-08-04T06:02:08+00:00"
  4798. },
  4799. {
  4800. "name": "symfony/polyfill-intl-normalizer",
  4801. "version": "v1.18.1",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4805. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4810. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4811. "shasum": "",
  4812. "mirrors": [
  4813. {
  4814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4815. "preferred": true
  4816. }
  4817. ]
  4818. },
  4819. "require": {
  4820. "php": ">=5.3.3"
  4821. },
  4822. "suggest": {
  4823. "ext-intl": "For best performance"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "1.18-dev"
  4829. },
  4830. "thanks": {
  4831. "name": "symfony/polyfill",
  4832. "url": "https://github.com/symfony/polyfill"
  4833. }
  4834. },
  4835. "autoload": {
  4836. "psr-4": {
  4837. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4838. },
  4839. "files": [
  4840. "bootstrap.php"
  4841. ],
  4842. "classmap": [
  4843. "Resources/stubs"
  4844. ]
  4845. },
  4846. "notification-url": "https://packagist.org/downloads/",
  4847. "license": [
  4848. "MIT"
  4849. ],
  4850. "authors": [
  4851. {
  4852. "name": "Nicolas Grekas",
  4853. "email": "p@tchwork.com"
  4854. },
  4855. {
  4856. "name": "Symfony Community",
  4857. "homepage": "https://symfony.com/contributors"
  4858. }
  4859. ],
  4860. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4861. "homepage": "https://symfony.com",
  4862. "keywords": [
  4863. "compatibility",
  4864. "intl",
  4865. "normalizer",
  4866. "polyfill",
  4867. "portable",
  4868. "shim"
  4869. ],
  4870. "time": "2020-07-14T12:35:20+00:00"
  4871. },
  4872. {
  4873. "name": "symfony/polyfill-mbstring",
  4874. "version": "v1.18.1",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4878. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4883. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4884. "shasum": "",
  4885. "mirrors": [
  4886. {
  4887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4888. "preferred": true
  4889. }
  4890. ]
  4891. },
  4892. "require": {
  4893. "php": ">=5.3.3"
  4894. },
  4895. "suggest": {
  4896. "ext-mbstring": "For best performance"
  4897. },
  4898. "type": "library",
  4899. "extra": {
  4900. "branch-alias": {
  4901. "dev-master": "1.18-dev"
  4902. },
  4903. "thanks": {
  4904. "name": "symfony/polyfill",
  4905. "url": "https://github.com/symfony/polyfill"
  4906. }
  4907. },
  4908. "autoload": {
  4909. "psr-4": {
  4910. "Symfony\\Polyfill\\Mbstring\\": ""
  4911. },
  4912. "files": [
  4913. "bootstrap.php"
  4914. ]
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "MIT"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Nicolas Grekas",
  4923. "email": "p@tchwork.com"
  4924. },
  4925. {
  4926. "name": "Symfony Community",
  4927. "homepage": "https://symfony.com/contributors"
  4928. }
  4929. ],
  4930. "description": "Symfony polyfill for the Mbstring extension",
  4931. "homepage": "https://symfony.com",
  4932. "keywords": [
  4933. "compatibility",
  4934. "mbstring",
  4935. "polyfill",
  4936. "portable",
  4937. "shim"
  4938. ],
  4939. "time": "2020-07-14T12:35:20+00:00"
  4940. },
  4941. {
  4942. "name": "symfony/polyfill-php70",
  4943. "version": "v1.18.1",
  4944. "source": {
  4945. "type": "git",
  4946. "url": "https://github.com/symfony/polyfill-php70.git",
  4947. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  4948. },
  4949. "dist": {
  4950. "type": "zip",
  4951. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  4952. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  4953. "shasum": "",
  4954. "mirrors": [
  4955. {
  4956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4957. "preferred": true
  4958. }
  4959. ]
  4960. },
  4961. "require": {
  4962. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4963. "php": ">=5.3.3"
  4964. },
  4965. "type": "library",
  4966. "extra": {
  4967. "branch-alias": {
  4968. "dev-master": "1.18-dev"
  4969. },
  4970. "thanks": {
  4971. "name": "symfony/polyfill",
  4972. "url": "https://github.com/symfony/polyfill"
  4973. }
  4974. },
  4975. "autoload": {
  4976. "psr-4": {
  4977. "Symfony\\Polyfill\\Php70\\": ""
  4978. },
  4979. "files": [
  4980. "bootstrap.php"
  4981. ],
  4982. "classmap": [
  4983. "Resources/stubs"
  4984. ]
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Nicolas Grekas",
  4993. "email": "p@tchwork.com"
  4994. },
  4995. {
  4996. "name": "Symfony Community",
  4997. "homepage": "https://symfony.com/contributors"
  4998. }
  4999. ],
  5000. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5001. "homepage": "https://symfony.com",
  5002. "keywords": [
  5003. "compatibility",
  5004. "polyfill",
  5005. "portable",
  5006. "shim"
  5007. ],
  5008. "time": "2020-07-14T12:35:20+00:00"
  5009. },
  5010. {
  5011. "name": "symfony/polyfill-php72",
  5012. "version": "v1.18.1",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/symfony/polyfill-php72.git",
  5016. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5021. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5022. "shasum": "",
  5023. "mirrors": [
  5024. {
  5025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5026. "preferred": true
  5027. }
  5028. ]
  5029. },
  5030. "require": {
  5031. "php": ">=5.3.3"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "branch-alias": {
  5036. "dev-master": "1.18-dev"
  5037. },
  5038. "thanks": {
  5039. "name": "symfony/polyfill",
  5040. "url": "https://github.com/symfony/polyfill"
  5041. }
  5042. },
  5043. "autoload": {
  5044. "psr-4": {
  5045. "Symfony\\Polyfill\\Php72\\": ""
  5046. },
  5047. "files": [
  5048. "bootstrap.php"
  5049. ]
  5050. },
  5051. "notification-url": "https://packagist.org/downloads/",
  5052. "license": [
  5053. "MIT"
  5054. ],
  5055. "authors": [
  5056. {
  5057. "name": "Nicolas Grekas",
  5058. "email": "p@tchwork.com"
  5059. },
  5060. {
  5061. "name": "Symfony Community",
  5062. "homepage": "https://symfony.com/contributors"
  5063. }
  5064. ],
  5065. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5066. "homepage": "https://symfony.com",
  5067. "keywords": [
  5068. "compatibility",
  5069. "polyfill",
  5070. "portable",
  5071. "shim"
  5072. ],
  5073. "time": "2020-07-14T12:35:20+00:00"
  5074. },
  5075. {
  5076. "name": "symfony/polyfill-php73",
  5077. "version": "v1.18.1",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/symfony/polyfill-php73.git",
  5081. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5086. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5087. "shasum": "",
  5088. "mirrors": [
  5089. {
  5090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5091. "preferred": true
  5092. }
  5093. ]
  5094. },
  5095. "require": {
  5096. "php": ">=5.3.3"
  5097. },
  5098. "type": "library",
  5099. "extra": {
  5100. "branch-alias": {
  5101. "dev-master": "1.18-dev"
  5102. },
  5103. "thanks": {
  5104. "name": "symfony/polyfill",
  5105. "url": "https://github.com/symfony/polyfill"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Symfony\\Polyfill\\Php73\\": ""
  5111. },
  5112. "files": [
  5113. "bootstrap.php"
  5114. ],
  5115. "classmap": [
  5116. "Resources/stubs"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Nicolas Grekas",
  5126. "email": "p@tchwork.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5134. "homepage": "https://symfony.com",
  5135. "keywords": [
  5136. "compatibility",
  5137. "polyfill",
  5138. "portable",
  5139. "shim"
  5140. ],
  5141. "time": "2020-07-14T12:35:20+00:00"
  5142. },
  5143. {
  5144. "name": "symfony/polyfill-php80",
  5145. "version": "v1.18.1",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/symfony/polyfill-php80.git",
  5149. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5154. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5155. "shasum": "",
  5156. "mirrors": [
  5157. {
  5158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5159. "preferred": true
  5160. }
  5161. ]
  5162. },
  5163. "require": {
  5164. "php": ">=7.0.8"
  5165. },
  5166. "type": "library",
  5167. "extra": {
  5168. "branch-alias": {
  5169. "dev-master": "1.18-dev"
  5170. },
  5171. "thanks": {
  5172. "name": "symfony/polyfill",
  5173. "url": "https://github.com/symfony/polyfill"
  5174. }
  5175. },
  5176. "autoload": {
  5177. "psr-4": {
  5178. "Symfony\\Polyfill\\Php80\\": ""
  5179. },
  5180. "files": [
  5181. "bootstrap.php"
  5182. ],
  5183. "classmap": [
  5184. "Resources/stubs"
  5185. ]
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "Ion Bazan",
  5194. "email": "ion.bazan@gmail.com"
  5195. },
  5196. {
  5197. "name": "Nicolas Grekas",
  5198. "email": "p@tchwork.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5206. "homepage": "https://symfony.com",
  5207. "keywords": [
  5208. "compatibility",
  5209. "polyfill",
  5210. "portable",
  5211. "shim"
  5212. ],
  5213. "time": "2020-07-14T12:35:20+00:00"
  5214. },
  5215. {
  5216. "name": "symfony/process",
  5217. "version": "v4.4.11",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/symfony/process.git",
  5221. "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479",
  5226. "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479",
  5227. "shasum": "",
  5228. "mirrors": [
  5229. {
  5230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5231. "preferred": true
  5232. }
  5233. ]
  5234. },
  5235. "require": {
  5236. "php": ">=7.1.3"
  5237. },
  5238. "type": "library",
  5239. "extra": {
  5240. "branch-alias": {
  5241. "dev-master": "4.4-dev"
  5242. }
  5243. },
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Symfony\\Component\\Process\\": ""
  5247. },
  5248. "exclude-from-classmap": [
  5249. "/Tests/"
  5250. ]
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Fabien Potencier",
  5259. "email": "fabien@symfony.com"
  5260. },
  5261. {
  5262. "name": "Symfony Community",
  5263. "homepage": "https://symfony.com/contributors"
  5264. }
  5265. ],
  5266. "description": "Symfony Process Component",
  5267. "homepage": "https://symfony.com",
  5268. "time": "2020-07-23T08:31:43+00:00"
  5269. },
  5270. {
  5271. "name": "symfony/routing",
  5272. "version": "v4.4.11",
  5273. "source": {
  5274. "type": "git",
  5275. "url": "https://github.com/symfony/routing.git",
  5276. "reference": "e103381a4c2f0731c14589041852bf979e97c7af"
  5277. },
  5278. "dist": {
  5279. "type": "zip",
  5280. "url": "https://api.github.com/repos/symfony/routing/zipball/e103381a4c2f0731c14589041852bf979e97c7af",
  5281. "reference": "e103381a4c2f0731c14589041852bf979e97c7af",
  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. "php": ">=7.1.3"
  5292. },
  5293. "conflict": {
  5294. "symfony/config": "<4.2",
  5295. "symfony/dependency-injection": "<3.4",
  5296. "symfony/yaml": "<3.4"
  5297. },
  5298. "require-dev": {
  5299. "doctrine/annotations": "~1.2",
  5300. "psr/log": "~1.0",
  5301. "symfony/config": "^4.2|^5.0",
  5302. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5303. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5304. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5305. "symfony/yaml": "^3.4|^4.0|^5.0"
  5306. },
  5307. "suggest": {
  5308. "doctrine/annotations": "For using the annotation loader",
  5309. "symfony/config": "For using the all-in-one router or any loader",
  5310. "symfony/expression-language": "For using expression matching",
  5311. "symfony/http-foundation": "For using a Symfony Request object",
  5312. "symfony/yaml": "For using the YAML loader"
  5313. },
  5314. "type": "library",
  5315. "extra": {
  5316. "branch-alias": {
  5317. "dev-master": "4.4-dev"
  5318. }
  5319. },
  5320. "autoload": {
  5321. "psr-4": {
  5322. "Symfony\\Component\\Routing\\": ""
  5323. },
  5324. "exclude-from-classmap": [
  5325. "/Tests/"
  5326. ]
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Fabien Potencier",
  5335. "email": "fabien@symfony.com"
  5336. },
  5337. {
  5338. "name": "Symfony Community",
  5339. "homepage": "https://symfony.com/contributors"
  5340. }
  5341. ],
  5342. "description": "Symfony Routing Component",
  5343. "homepage": "https://symfony.com",
  5344. "keywords": [
  5345. "router",
  5346. "routing",
  5347. "uri",
  5348. "url"
  5349. ],
  5350. "time": "2020-07-05T09:39:30+00:00"
  5351. },
  5352. {
  5353. "name": "symfony/service-contracts",
  5354. "version": "v2.1.3",
  5355. "source": {
  5356. "type": "git",
  5357. "url": "https://github.com/symfony/service-contracts.git",
  5358. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  5359. },
  5360. "dist": {
  5361. "type": "zip",
  5362. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  5363. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  5364. "shasum": "",
  5365. "mirrors": [
  5366. {
  5367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5368. "preferred": true
  5369. }
  5370. ]
  5371. },
  5372. "require": {
  5373. "php": ">=7.2.5",
  5374. "psr/container": "^1.0"
  5375. },
  5376. "suggest": {
  5377. "symfony/service-implementation": ""
  5378. },
  5379. "type": "library",
  5380. "extra": {
  5381. "branch-alias": {
  5382. "dev-master": "2.1-dev"
  5383. },
  5384. "thanks": {
  5385. "name": "symfony/contracts",
  5386. "url": "https://github.com/symfony/contracts"
  5387. }
  5388. },
  5389. "autoload": {
  5390. "psr-4": {
  5391. "Symfony\\Contracts\\Service\\": ""
  5392. }
  5393. },
  5394. "notification-url": "https://packagist.org/downloads/",
  5395. "license": [
  5396. "MIT"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Nicolas Grekas",
  5401. "email": "p@tchwork.com"
  5402. },
  5403. {
  5404. "name": "Symfony Community",
  5405. "homepage": "https://symfony.com/contributors"
  5406. }
  5407. ],
  5408. "description": "Generic abstractions related to writing services",
  5409. "homepage": "https://symfony.com",
  5410. "keywords": [
  5411. "abstractions",
  5412. "contracts",
  5413. "decoupling",
  5414. "interfaces",
  5415. "interoperability",
  5416. "standards"
  5417. ],
  5418. "time": "2020-07-06T13:23:11+00:00"
  5419. },
  5420. {
  5421. "name": "symfony/translation",
  5422. "version": "v4.4.11",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/symfony/translation.git",
  5426. "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/symfony/translation/zipball/a8ea9d97353294eb6783f2894ef8cee99a045822",
  5431. "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822",
  5432. "shasum": "",
  5433. "mirrors": [
  5434. {
  5435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5436. "preferred": true
  5437. }
  5438. ]
  5439. },
  5440. "require": {
  5441. "php": ">=7.1.3",
  5442. "symfony/polyfill-mbstring": "~1.0",
  5443. "symfony/translation-contracts": "^1.1.6|^2"
  5444. },
  5445. "conflict": {
  5446. "symfony/config": "<3.4",
  5447. "symfony/dependency-injection": "<3.4",
  5448. "symfony/http-kernel": "<4.4",
  5449. "symfony/yaml": "<3.4"
  5450. },
  5451. "provide": {
  5452. "symfony/translation-implementation": "1.0"
  5453. },
  5454. "require-dev": {
  5455. "psr/log": "~1.0",
  5456. "symfony/config": "^3.4|^4.0|^5.0",
  5457. "symfony/console": "^3.4|^4.0|^5.0",
  5458. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5459. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  5460. "symfony/http-kernel": "^4.4",
  5461. "symfony/intl": "^3.4|^4.0|^5.0",
  5462. "symfony/service-contracts": "^1.1.2|^2",
  5463. "symfony/yaml": "^3.4|^4.0|^5.0"
  5464. },
  5465. "suggest": {
  5466. "psr/log-implementation": "To use logging capability in translator",
  5467. "symfony/config": "",
  5468. "symfony/yaml": ""
  5469. },
  5470. "type": "library",
  5471. "extra": {
  5472. "branch-alias": {
  5473. "dev-master": "4.4-dev"
  5474. }
  5475. },
  5476. "autoload": {
  5477. "psr-4": {
  5478. "Symfony\\Component\\Translation\\": ""
  5479. },
  5480. "exclude-from-classmap": [
  5481. "/Tests/"
  5482. ]
  5483. },
  5484. "notification-url": "https://packagist.org/downloads/",
  5485. "license": [
  5486. "MIT"
  5487. ],
  5488. "authors": [
  5489. {
  5490. "name": "Fabien Potencier",
  5491. "email": "fabien@symfony.com"
  5492. },
  5493. {
  5494. "name": "Symfony Community",
  5495. "homepage": "https://symfony.com/contributors"
  5496. }
  5497. ],
  5498. "description": "Symfony Translation Component",
  5499. "homepage": "https://symfony.com",
  5500. "time": "2020-07-23T08:31:43+00:00"
  5501. },
  5502. {
  5503. "name": "symfony/translation-contracts",
  5504. "version": "v2.1.3",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://github.com/symfony/translation-contracts.git",
  5508. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63",
  5513. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63",
  5514. "shasum": "",
  5515. "mirrors": [
  5516. {
  5517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5518. "preferred": true
  5519. }
  5520. ]
  5521. },
  5522. "require": {
  5523. "php": ">=7.2.5"
  5524. },
  5525. "suggest": {
  5526. "symfony/translation-implementation": ""
  5527. },
  5528. "type": "library",
  5529. "extra": {
  5530. "branch-alias": {
  5531. "dev-master": "2.1-dev"
  5532. },
  5533. "thanks": {
  5534. "name": "symfony/contracts",
  5535. "url": "https://github.com/symfony/contracts"
  5536. }
  5537. },
  5538. "autoload": {
  5539. "psr-4": {
  5540. "Symfony\\Contracts\\Translation\\": ""
  5541. }
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "MIT"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Nicolas Grekas",
  5550. "email": "p@tchwork.com"
  5551. },
  5552. {
  5553. "name": "Symfony Community",
  5554. "homepage": "https://symfony.com/contributors"
  5555. }
  5556. ],
  5557. "description": "Generic abstractions related to translation",
  5558. "homepage": "https://symfony.com",
  5559. "keywords": [
  5560. "abstractions",
  5561. "contracts",
  5562. "decoupling",
  5563. "interfaces",
  5564. "interoperability",
  5565. "standards"
  5566. ],
  5567. "time": "2020-07-06T13:23:11+00:00"
  5568. },
  5569. {
  5570. "name": "symfony/var-dumper",
  5571. "version": "v4.4.11",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://github.com/symfony/var-dumper.git",
  5575. "reference": "2125805a1a4e57f2340bc566c3013ca94d2722dc"
  5576. },
  5577. "dist": {
  5578. "type": "zip",
  5579. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2125805a1a4e57f2340bc566c3013ca94d2722dc",
  5580. "reference": "2125805a1a4e57f2340bc566c3013ca94d2722dc",
  5581. "shasum": "",
  5582. "mirrors": [
  5583. {
  5584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5585. "preferred": true
  5586. }
  5587. ]
  5588. },
  5589. "require": {
  5590. "php": ">=7.1.3",
  5591. "symfony/polyfill-mbstring": "~1.0",
  5592. "symfony/polyfill-php72": "~1.5",
  5593. "symfony/polyfill-php80": "^1.15"
  5594. },
  5595. "conflict": {
  5596. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5597. "symfony/console": "<3.4"
  5598. },
  5599. "require-dev": {
  5600. "ext-iconv": "*",
  5601. "symfony/console": "^3.4|^4.0|^5.0",
  5602. "symfony/process": "^4.4|^5.0",
  5603. "twig/twig": "^1.34|^2.4|^3.0"
  5604. },
  5605. "suggest": {
  5606. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5607. "ext-intl": "To show region name in time zone dump",
  5608. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5609. },
  5610. "bin": [
  5611. "Resources/bin/var-dump-server"
  5612. ],
  5613. "type": "library",
  5614. "extra": {
  5615. "branch-alias": {
  5616. "dev-master": "4.4-dev"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "files": [
  5621. "Resources/functions/dump.php"
  5622. ],
  5623. "psr-4": {
  5624. "Symfony\\Component\\VarDumper\\": ""
  5625. },
  5626. "exclude-from-classmap": [
  5627. "/Tests/"
  5628. ]
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "MIT"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "Nicolas Grekas",
  5637. "email": "p@tchwork.com"
  5638. },
  5639. {
  5640. "name": "Symfony Community",
  5641. "homepage": "https://symfony.com/contributors"
  5642. }
  5643. ],
  5644. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5645. "homepage": "https://symfony.com",
  5646. "keywords": [
  5647. "debug",
  5648. "dump"
  5649. ],
  5650. "time": "2020-06-24T13:34:53+00:00"
  5651. },
  5652. {
  5653. "name": "tightenco/collect",
  5654. "version": "v5.8.38",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/tighten/collect.git",
  5658. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/tighten/collect/zipball/c93a7039e6207ad533a09109838fe80933fcc72c",
  5663. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c",
  5664. "shasum": "",
  5665. "mirrors": [
  5666. {
  5667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5668. "preferred": true
  5669. }
  5670. ]
  5671. },
  5672. "require": {
  5673. "php": "^7.1.3",
  5674. "symfony/var-dumper": ">=3.4 <5"
  5675. },
  5676. "require-dev": {
  5677. "mockery/mockery": "^1.0",
  5678. "nesbot/carbon": "^1.26.3",
  5679. "phpunit/phpunit": "^7.0"
  5680. },
  5681. "type": "library",
  5682. "autoload": {
  5683. "files": [
  5684. "src/Collect/Support/helpers.php",
  5685. "src/Collect/Support/alias.php"
  5686. ],
  5687. "psr-4": {
  5688. "Tightenco\\Collect\\": "src/Collect"
  5689. }
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Taylor Otwell",
  5698. "email": "taylorotwell@gmail.com"
  5699. }
  5700. ],
  5701. "description": "Collect - Illuminate Collections as a separate package.",
  5702. "keywords": [
  5703. "collection",
  5704. "laravel"
  5705. ],
  5706. "time": "2019-09-17T18:57:01+00:00"
  5707. },
  5708. {
  5709. "name": "tijsverkoyen/css-to-inline-styles",
  5710. "version": "2.2.3",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5714. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5719. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5720. "shasum": "",
  5721. "mirrors": [
  5722. {
  5723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5724. "preferred": true
  5725. }
  5726. ]
  5727. },
  5728. "require": {
  5729. "ext-dom": "*",
  5730. "ext-libxml": "*",
  5731. "php": "^5.5 || ^7.0 || ^8.0",
  5732. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5733. },
  5734. "require-dev": {
  5735. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  5736. },
  5737. "type": "library",
  5738. "extra": {
  5739. "branch-alias": {
  5740. "dev-master": "2.2.x-dev"
  5741. }
  5742. },
  5743. "autoload": {
  5744. "psr-4": {
  5745. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5746. }
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "BSD-3-Clause"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Tijs Verkoyen",
  5755. "email": "css_to_inline_styles@verkoyen.eu",
  5756. "role": "Developer"
  5757. }
  5758. ],
  5759. "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.",
  5760. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5761. "time": "2020-07-13T06:12:54+00:00"
  5762. },
  5763. {
  5764. "name": "vlucas/phpdotenv",
  5765. "version": "v3.6.7",
  5766. "source": {
  5767. "type": "git",
  5768. "url": "https://github.com/vlucas/phpdotenv.git",
  5769. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82"
  5770. },
  5771. "dist": {
  5772. "type": "zip",
  5773. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  5774. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  5775. "shasum": "",
  5776. "mirrors": [
  5777. {
  5778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5779. "preferred": true
  5780. }
  5781. ]
  5782. },
  5783. "require": {
  5784. "php": "^5.4 || ^7.0 || ^8.0",
  5785. "phpoption/phpoption": "^1.5.2",
  5786. "symfony/polyfill-ctype": "^1.17"
  5787. },
  5788. "require-dev": {
  5789. "ext-filter": "*",
  5790. "ext-pcre": "*",
  5791. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  5792. },
  5793. "suggest": {
  5794. "ext-filter": "Required to use the boolean validator.",
  5795. "ext-pcre": "Required to use most of the library."
  5796. },
  5797. "type": "library",
  5798. "extra": {
  5799. "branch-alias": {
  5800. "dev-master": "3.6-dev"
  5801. }
  5802. },
  5803. "autoload": {
  5804. "psr-4": {
  5805. "Dotenv\\": "src/"
  5806. }
  5807. },
  5808. "notification-url": "https://packagist.org/downloads/",
  5809. "license": [
  5810. "BSD-3-Clause"
  5811. ],
  5812. "authors": [
  5813. {
  5814. "name": "Graham Campbell",
  5815. "email": "graham@alt-three.com",
  5816. "homepage": "https://gjcampbell.co.uk/"
  5817. },
  5818. {
  5819. "name": "Vance Lucas",
  5820. "email": "vance@vancelucas.com",
  5821. "homepage": "https://vancelucas.com/"
  5822. }
  5823. ],
  5824. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5825. "keywords": [
  5826. "dotenv",
  5827. "env",
  5828. "environment"
  5829. ],
  5830. "time": "2020-07-14T19:04:52+00:00"
  5831. }
  5832. ],
  5833. "packages-dev": [
  5834. {
  5835. "name": "doctrine/instantiator",
  5836. "version": "1.3.1",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/doctrine/instantiator.git",
  5840. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  5845. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  5846. "shasum": "",
  5847. "mirrors": [
  5848. {
  5849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5850. "preferred": true
  5851. }
  5852. ]
  5853. },
  5854. "require": {
  5855. "php": "^7.1 || ^8.0"
  5856. },
  5857. "require-dev": {
  5858. "doctrine/coding-standard": "^6.0",
  5859. "ext-pdo": "*",
  5860. "ext-phar": "*",
  5861. "phpbench/phpbench": "^0.13",
  5862. "phpstan/phpstan-phpunit": "^0.11",
  5863. "phpstan/phpstan-shim": "^0.11",
  5864. "phpunit/phpunit": "^7.0"
  5865. },
  5866. "type": "library",
  5867. "extra": {
  5868. "branch-alias": {
  5869. "dev-master": "1.2.x-dev"
  5870. }
  5871. },
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5875. }
  5876. },
  5877. "notification-url": "https://packagist.org/downloads/",
  5878. "license": [
  5879. "MIT"
  5880. ],
  5881. "authors": [
  5882. {
  5883. "name": "Marco Pivetta",
  5884. "email": "ocramius@gmail.com",
  5885. "homepage": "http://ocramius.github.com/"
  5886. }
  5887. ],
  5888. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5889. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5890. "keywords": [
  5891. "constructor",
  5892. "instantiate"
  5893. ],
  5894. "time": "2020-05-29T17:27:14+00:00"
  5895. },
  5896. {
  5897. "name": "facade/flare-client-php",
  5898. "version": "1.3.4",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/facade/flare-client-php.git",
  5902. "reference": "0eeb0de4fc1078433f0915010bd8f41e998adcb4"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/0eeb0de4fc1078433f0915010bd8f41e998adcb4",
  5907. "reference": "0eeb0de4fc1078433f0915010bd8f41e998adcb4",
  5908. "shasum": "",
  5909. "mirrors": [
  5910. {
  5911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5912. "preferred": true
  5913. }
  5914. ]
  5915. },
  5916. "require": {
  5917. "facade/ignition-contracts": "~1.0",
  5918. "illuminate/pipeline": "^5.5|^6.0|^7.0",
  5919. "php": "^7.1",
  5920. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5921. "symfony/mime": "^3.4|^4.0|^5.1",
  5922. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5923. },
  5924. "require-dev": {
  5925. "friendsofphp/php-cs-fixer": "^2.14",
  5926. "larapack/dd": "^1.1",
  5927. "phpunit/phpunit": "^7.5.16",
  5928. "spatie/phpunit-snapshot-assertions": "^2.0"
  5929. },
  5930. "type": "library",
  5931. "extra": {
  5932. "branch-alias": {
  5933. "dev-master": "1.0-dev"
  5934. }
  5935. },
  5936. "autoload": {
  5937. "psr-4": {
  5938. "Facade\\FlareClient\\": "src"
  5939. },
  5940. "files": [
  5941. "src/helpers.php"
  5942. ]
  5943. },
  5944. "notification-url": "https://packagist.org/downloads/",
  5945. "license": [
  5946. "MIT"
  5947. ],
  5948. "description": "Send PHP errors to Flare",
  5949. "homepage": "https://github.com/facade/flare-client-php",
  5950. "keywords": [
  5951. "exception",
  5952. "facade",
  5953. "flare",
  5954. "reporting"
  5955. ],
  5956. "time": "2020-07-13T23:25:57+00:00"
  5957. },
  5958. {
  5959. "name": "facade/ignition",
  5960. "version": "1.16.3",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/facade/ignition.git",
  5964. "reference": "19674150bb46a4de0ba138c747f538fe7be11dbc"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/facade/ignition/zipball/19674150bb46a4de0ba138c747f538fe7be11dbc",
  5969. "reference": "19674150bb46a4de0ba138c747f538fe7be11dbc",
  5970. "shasum": "",
  5971. "mirrors": [
  5972. {
  5973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5974. "preferred": true
  5975. }
  5976. ]
  5977. },
  5978. "require": {
  5979. "ext-json": "*",
  5980. "ext-mbstring": "*",
  5981. "facade/flare-client-php": "^1.3",
  5982. "facade/ignition-contracts": "^1.0",
  5983. "filp/whoops": "^2.4",
  5984. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  5985. "monolog/monolog": "^1.12 || ^2.0",
  5986. "php": "^7.1",
  5987. "scrivo/highlight.php": "^9.15",
  5988. "symfony/console": "^3.4 || ^4.0",
  5989. "symfony/var-dumper": "^3.4 || ^4.0"
  5990. },
  5991. "require-dev": {
  5992. "friendsofphp/php-cs-fixer": "^2.14",
  5993. "mockery/mockery": "^1.2",
  5994. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  5995. },
  5996. "suggest": {
  5997. "laravel/telescope": "^2.0"
  5998. },
  5999. "type": "library",
  6000. "extra": {
  6001. "branch-alias": {
  6002. "dev-master": "1.x-dev"
  6003. },
  6004. "laravel": {
  6005. "providers": [
  6006. "Facade\\Ignition\\IgnitionServiceProvider"
  6007. ],
  6008. "aliases": {
  6009. "Flare": "Facade\\Ignition\\Facades\\Flare"
  6010. }
  6011. }
  6012. },
  6013. "autoload": {
  6014. "psr-4": {
  6015. "Facade\\Ignition\\": "src"
  6016. },
  6017. "files": [
  6018. "src/helpers.php"
  6019. ]
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "MIT"
  6024. ],
  6025. "description": "A beautiful error page for Laravel applications.",
  6026. "homepage": "https://github.com/facade/ignition",
  6027. "keywords": [
  6028. "error",
  6029. "flare",
  6030. "laravel",
  6031. "page"
  6032. ],
  6033. "time": "2020-07-13T15:54:05+00:00"
  6034. },
  6035. {
  6036. "name": "facade/ignition-contracts",
  6037. "version": "1.0.1",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/facade/ignition-contracts.git",
  6041. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  6046. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  6047. "shasum": "",
  6048. "mirrors": [
  6049. {
  6050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6051. "preferred": true
  6052. }
  6053. ]
  6054. },
  6055. "require": {
  6056. "php": "^7.1"
  6057. },
  6058. "require-dev": {
  6059. "friendsofphp/php-cs-fixer": "^2.14",
  6060. "phpunit/phpunit": "^7.5|^8.0",
  6061. "vimeo/psalm": "^3.12"
  6062. },
  6063. "type": "library",
  6064. "autoload": {
  6065. "psr-4": {
  6066. "Facade\\IgnitionContracts\\": "src"
  6067. }
  6068. },
  6069. "notification-url": "https://packagist.org/downloads/",
  6070. "license": [
  6071. "MIT"
  6072. ],
  6073. "authors": [
  6074. {
  6075. "name": "Freek Van der Herten",
  6076. "email": "freek@spatie.be",
  6077. "homepage": "https://flareapp.io",
  6078. "role": "Developer"
  6079. }
  6080. ],
  6081. "description": "Solution contracts for Ignition",
  6082. "homepage": "https://github.com/facade/ignition-contracts",
  6083. "keywords": [
  6084. "contracts",
  6085. "flare",
  6086. "ignition"
  6087. ],
  6088. "time": "2020-07-14T10:10:28+00:00"
  6089. },
  6090. {
  6091. "name": "filp/whoops",
  6092. "version": "2.7.3",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/filp/whoops.git",
  6096. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  6101. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  6102. "shasum": "",
  6103. "mirrors": [
  6104. {
  6105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6106. "preferred": true
  6107. }
  6108. ]
  6109. },
  6110. "require": {
  6111. "php": "^5.5.9 || ^7.0",
  6112. "psr/log": "^1.0.1"
  6113. },
  6114. "require-dev": {
  6115. "mockery/mockery": "^0.9 || ^1.0",
  6116. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  6117. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6118. },
  6119. "suggest": {
  6120. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6121. "whoops/soap": "Formats errors as SOAP responses"
  6122. },
  6123. "type": "library",
  6124. "extra": {
  6125. "branch-alias": {
  6126. "dev-master": "2.6-dev"
  6127. }
  6128. },
  6129. "autoload": {
  6130. "psr-4": {
  6131. "Whoops\\": "src/Whoops/"
  6132. }
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Filipe Dobreira",
  6141. "homepage": "https://github.com/filp",
  6142. "role": "Developer"
  6143. }
  6144. ],
  6145. "description": "php error handling for cool kids",
  6146. "homepage": "https://filp.github.io/whoops/",
  6147. "keywords": [
  6148. "error",
  6149. "exception",
  6150. "handling",
  6151. "library",
  6152. "throwable",
  6153. "whoops"
  6154. ],
  6155. "time": "2020-06-14T09:00:00+00:00"
  6156. },
  6157. {
  6158. "name": "fzaninotto/faker",
  6159. "version": "v1.9.1",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/fzaninotto/Faker.git",
  6163. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  6168. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  6169. "shasum": "",
  6170. "mirrors": [
  6171. {
  6172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6173. "preferred": true
  6174. }
  6175. ]
  6176. },
  6177. "require": {
  6178. "php": "^5.3.3 || ^7.0"
  6179. },
  6180. "require-dev": {
  6181. "ext-intl": "*",
  6182. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6183. "squizlabs/php_codesniffer": "^2.9.2"
  6184. },
  6185. "type": "library",
  6186. "extra": {
  6187. "branch-alias": {
  6188. "dev-master": "1.9-dev"
  6189. }
  6190. },
  6191. "autoload": {
  6192. "psr-4": {
  6193. "Faker\\": "src/Faker/"
  6194. }
  6195. },
  6196. "notification-url": "https://packagist.org/downloads/",
  6197. "license": [
  6198. "MIT"
  6199. ],
  6200. "authors": [
  6201. {
  6202. "name": "François Zaninotto"
  6203. }
  6204. ],
  6205. "description": "Faker is a PHP library that generates fake data for you.",
  6206. "keywords": [
  6207. "data",
  6208. "faker",
  6209. "fixtures"
  6210. ],
  6211. "abandoned": true,
  6212. "time": "2019-12-12T13:22:17+00:00"
  6213. },
  6214. {
  6215. "name": "hamcrest/hamcrest-php",
  6216. "version": "v2.0.1",
  6217. "source": {
  6218. "type": "git",
  6219. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6220. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6221. },
  6222. "dist": {
  6223. "type": "zip",
  6224. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6225. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6226. "shasum": "",
  6227. "mirrors": [
  6228. {
  6229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6230. "preferred": true
  6231. }
  6232. ]
  6233. },
  6234. "require": {
  6235. "php": "^5.3|^7.0|^8.0"
  6236. },
  6237. "replace": {
  6238. "cordoval/hamcrest-php": "*",
  6239. "davedevelopment/hamcrest-php": "*",
  6240. "kodova/hamcrest-php": "*"
  6241. },
  6242. "require-dev": {
  6243. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6244. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6245. },
  6246. "type": "library",
  6247. "extra": {
  6248. "branch-alias": {
  6249. "dev-master": "2.1-dev"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "classmap": [
  6254. "hamcrest"
  6255. ]
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "BSD-3-Clause"
  6260. ],
  6261. "description": "This is the PHP port of Hamcrest Matchers",
  6262. "keywords": [
  6263. "test"
  6264. ],
  6265. "time": "2020-07-09T08:09:16+00:00"
  6266. },
  6267. {
  6268. "name": "jakub-onderka/php-console-color",
  6269. "version": "v0.2",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6273. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6278. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6279. "shasum": "",
  6280. "mirrors": [
  6281. {
  6282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6283. "preferred": true
  6284. }
  6285. ]
  6286. },
  6287. "require": {
  6288. "php": ">=5.4.0"
  6289. },
  6290. "require-dev": {
  6291. "jakub-onderka/php-code-style": "1.0",
  6292. "jakub-onderka/php-parallel-lint": "1.0",
  6293. "jakub-onderka/php-var-dump-check": "0.*",
  6294. "phpunit/phpunit": "~4.3",
  6295. "squizlabs/php_codesniffer": "1.*"
  6296. },
  6297. "type": "library",
  6298. "autoload": {
  6299. "psr-4": {
  6300. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6301. }
  6302. },
  6303. "notification-url": "https://packagist.org/downloads/",
  6304. "license": [
  6305. "BSD-2-Clause"
  6306. ],
  6307. "authors": [
  6308. {
  6309. "name": "Jakub Onderka",
  6310. "email": "jakub.onderka@gmail.com"
  6311. }
  6312. ],
  6313. "abandoned": "php-parallel-lint/php-console-color",
  6314. "time": "2018-09-29T17:23:10+00:00"
  6315. },
  6316. {
  6317. "name": "jakub-onderka/php-console-highlighter",
  6318. "version": "v0.4",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6322. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6327. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6328. "shasum": "",
  6329. "mirrors": [
  6330. {
  6331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6332. "preferred": true
  6333. }
  6334. ]
  6335. },
  6336. "require": {
  6337. "ext-tokenizer": "*",
  6338. "jakub-onderka/php-console-color": "~0.2",
  6339. "php": ">=5.4.0"
  6340. },
  6341. "require-dev": {
  6342. "jakub-onderka/php-code-style": "~1.0",
  6343. "jakub-onderka/php-parallel-lint": "~1.0",
  6344. "jakub-onderka/php-var-dump-check": "~0.1",
  6345. "phpunit/phpunit": "~4.0",
  6346. "squizlabs/php_codesniffer": "~1.5"
  6347. },
  6348. "type": "library",
  6349. "autoload": {
  6350. "psr-4": {
  6351. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6352. }
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Jakub Onderka",
  6361. "email": "acci@acci.cz",
  6362. "homepage": "http://www.acci.cz/"
  6363. }
  6364. ],
  6365. "description": "Highlight PHP code in terminal",
  6366. "abandoned": "php-parallel-lint/php-console-highlighter",
  6367. "time": "2018-09-29T18:48:56+00:00"
  6368. },
  6369. {
  6370. "name": "mockery/mockery",
  6371. "version": "1.4.2",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/mockery/mockery.git",
  6375. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  6380. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  6381. "shasum": "",
  6382. "mirrors": [
  6383. {
  6384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6385. "preferred": true
  6386. }
  6387. ]
  6388. },
  6389. "require": {
  6390. "hamcrest/hamcrest-php": "^2.0.1",
  6391. "lib-pcre": ">=7.0",
  6392. "php": "^7.3 || ^8.0"
  6393. },
  6394. "conflict": {
  6395. "phpunit/phpunit": "<8.0"
  6396. },
  6397. "require-dev": {
  6398. "phpunit/phpunit": "^8.5 || ^9.3"
  6399. },
  6400. "type": "library",
  6401. "extra": {
  6402. "branch-alias": {
  6403. "dev-master": "1.4.x-dev"
  6404. }
  6405. },
  6406. "autoload": {
  6407. "psr-0": {
  6408. "Mockery": "library/"
  6409. }
  6410. },
  6411. "notification-url": "https://packagist.org/downloads/",
  6412. "license": [
  6413. "BSD-3-Clause"
  6414. ],
  6415. "authors": [
  6416. {
  6417. "name": "Pádraic Brady",
  6418. "email": "padraic.brady@gmail.com",
  6419. "homepage": "http://blog.astrumfutura.com"
  6420. },
  6421. {
  6422. "name": "Dave Marshall",
  6423. "email": "dave.marshall@atstsolutions.co.uk",
  6424. "homepage": "http://davedevelopment.co.uk"
  6425. }
  6426. ],
  6427. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6428. "homepage": "https://github.com/mockery/mockery",
  6429. "keywords": [
  6430. "BDD",
  6431. "TDD",
  6432. "library",
  6433. "mock",
  6434. "mock objects",
  6435. "mockery",
  6436. "stub",
  6437. "test",
  6438. "test double",
  6439. "testing"
  6440. ],
  6441. "time": "2020-08-11T18:10:13+00:00"
  6442. },
  6443. {
  6444. "name": "myclabs/deep-copy",
  6445. "version": "1.10.1",
  6446. "source": {
  6447. "type": "git",
  6448. "url": "https://github.com/myclabs/DeepCopy.git",
  6449. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  6450. },
  6451. "dist": {
  6452. "type": "zip",
  6453. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6454. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6455. "shasum": "",
  6456. "mirrors": [
  6457. {
  6458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6459. "preferred": true
  6460. }
  6461. ]
  6462. },
  6463. "require": {
  6464. "php": "^7.1 || ^8.0"
  6465. },
  6466. "replace": {
  6467. "myclabs/deep-copy": "self.version"
  6468. },
  6469. "require-dev": {
  6470. "doctrine/collections": "^1.0",
  6471. "doctrine/common": "^2.6",
  6472. "phpunit/phpunit": "^7.1"
  6473. },
  6474. "type": "library",
  6475. "autoload": {
  6476. "psr-4": {
  6477. "DeepCopy\\": "src/DeepCopy/"
  6478. },
  6479. "files": [
  6480. "src/DeepCopy/deep_copy.php"
  6481. ]
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "MIT"
  6486. ],
  6487. "description": "Create deep copies (clones) of your objects",
  6488. "keywords": [
  6489. "clone",
  6490. "copy",
  6491. "duplicate",
  6492. "object",
  6493. "object graph"
  6494. ],
  6495. "time": "2020-06-29T13:22:24+00:00"
  6496. },
  6497. {
  6498. "name": "nunomaduro/collision",
  6499. "version": "v3.0.1",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/nunomaduro/collision.git",
  6503. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  6508. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  6509. "shasum": "",
  6510. "mirrors": [
  6511. {
  6512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6513. "preferred": true
  6514. }
  6515. ]
  6516. },
  6517. "require": {
  6518. "filp/whoops": "^2.1.4",
  6519. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6520. "php": "^7.1",
  6521. "symfony/console": "~2.8|~3.3|~4.0"
  6522. },
  6523. "require-dev": {
  6524. "laravel/framework": "5.8.*",
  6525. "nunomaduro/larastan": "^0.3.0",
  6526. "phpstan/phpstan": "^0.11",
  6527. "phpunit/phpunit": "~8.0"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "laravel": {
  6532. "providers": [
  6533. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6534. ]
  6535. }
  6536. },
  6537. "autoload": {
  6538. "psr-4": {
  6539. "NunoMaduro\\Collision\\": "src/"
  6540. }
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "license": [
  6544. "MIT"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "Nuno Maduro",
  6549. "email": "enunomaduro@gmail.com"
  6550. }
  6551. ],
  6552. "description": "Cli error handling for console/command-line PHP applications.",
  6553. "keywords": [
  6554. "artisan",
  6555. "cli",
  6556. "command-line",
  6557. "console",
  6558. "error",
  6559. "handling",
  6560. "laravel",
  6561. "laravel-zero",
  6562. "php",
  6563. "symfony"
  6564. ],
  6565. "time": "2019-03-07T21:35:13+00:00"
  6566. },
  6567. {
  6568. "name": "phar-io/manifest",
  6569. "version": "1.0.3",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/phar-io/manifest.git",
  6573. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6578. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6579. "shasum": "",
  6580. "mirrors": [
  6581. {
  6582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6583. "preferred": true
  6584. }
  6585. ]
  6586. },
  6587. "require": {
  6588. "ext-dom": "*",
  6589. "ext-phar": "*",
  6590. "phar-io/version": "^2.0",
  6591. "php": "^5.6 || ^7.0"
  6592. },
  6593. "type": "library",
  6594. "extra": {
  6595. "branch-alias": {
  6596. "dev-master": "1.0.x-dev"
  6597. }
  6598. },
  6599. "autoload": {
  6600. "classmap": [
  6601. "src/"
  6602. ]
  6603. },
  6604. "notification-url": "https://packagist.org/downloads/",
  6605. "license": [
  6606. "BSD-3-Clause"
  6607. ],
  6608. "authors": [
  6609. {
  6610. "name": "Arne Blankerts",
  6611. "email": "arne@blankerts.de",
  6612. "role": "Developer"
  6613. },
  6614. {
  6615. "name": "Sebastian Heuer",
  6616. "email": "sebastian@phpeople.de",
  6617. "role": "Developer"
  6618. },
  6619. {
  6620. "name": "Sebastian Bergmann",
  6621. "email": "sebastian@phpunit.de",
  6622. "role": "Developer"
  6623. }
  6624. ],
  6625. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6626. "time": "2018-07-08T19:23:20+00:00"
  6627. },
  6628. {
  6629. "name": "phar-io/version",
  6630. "version": "2.0.1",
  6631. "source": {
  6632. "type": "git",
  6633. "url": "https://github.com/phar-io/version.git",
  6634. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6635. },
  6636. "dist": {
  6637. "type": "zip",
  6638. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6639. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6640. "shasum": "",
  6641. "mirrors": [
  6642. {
  6643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6644. "preferred": true
  6645. }
  6646. ]
  6647. },
  6648. "require": {
  6649. "php": "^5.6 || ^7.0"
  6650. },
  6651. "type": "library",
  6652. "autoload": {
  6653. "classmap": [
  6654. "src/"
  6655. ]
  6656. },
  6657. "notification-url": "https://packagist.org/downloads/",
  6658. "license": [
  6659. "BSD-3-Clause"
  6660. ],
  6661. "authors": [
  6662. {
  6663. "name": "Arne Blankerts",
  6664. "email": "arne@blankerts.de",
  6665. "role": "Developer"
  6666. },
  6667. {
  6668. "name": "Sebastian Heuer",
  6669. "email": "sebastian@phpeople.de",
  6670. "role": "Developer"
  6671. },
  6672. {
  6673. "name": "Sebastian Bergmann",
  6674. "email": "sebastian@phpunit.de",
  6675. "role": "Developer"
  6676. }
  6677. ],
  6678. "description": "Library for handling version information and constraints",
  6679. "time": "2018-07-08T19:19:57+00:00"
  6680. },
  6681. {
  6682. "name": "phpdocumentor/reflection-common",
  6683. "version": "2.2.0",
  6684. "source": {
  6685. "type": "git",
  6686. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6687. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6688. },
  6689. "dist": {
  6690. "type": "zip",
  6691. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6692. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6693. "shasum": "",
  6694. "mirrors": [
  6695. {
  6696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6697. "preferred": true
  6698. }
  6699. ]
  6700. },
  6701. "require": {
  6702. "php": "^7.2 || ^8.0"
  6703. },
  6704. "type": "library",
  6705. "extra": {
  6706. "branch-alias": {
  6707. "dev-2.x": "2.x-dev"
  6708. }
  6709. },
  6710. "autoload": {
  6711. "psr-4": {
  6712. "phpDocumentor\\Reflection\\": "src/"
  6713. }
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Jaap van Otterdijk",
  6722. "email": "opensource@ijaap.nl"
  6723. }
  6724. ],
  6725. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6726. "homepage": "http://www.phpdoc.org",
  6727. "keywords": [
  6728. "FQSEN",
  6729. "phpDocumentor",
  6730. "phpdoc",
  6731. "reflection",
  6732. "static analysis"
  6733. ],
  6734. "time": "2020-06-27T09:03:43+00:00"
  6735. },
  6736. {
  6737. "name": "phpdocumentor/reflection-docblock",
  6738. "version": "5.2.1",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6742. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  6747. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  6748. "shasum": "",
  6749. "mirrors": [
  6750. {
  6751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6752. "preferred": true
  6753. }
  6754. ]
  6755. },
  6756. "require": {
  6757. "ext-filter": "*",
  6758. "php": "^7.2 || ^8.0",
  6759. "phpdocumentor/reflection-common": "^2.2",
  6760. "phpdocumentor/type-resolver": "^1.3",
  6761. "webmozart/assert": "^1.9.1"
  6762. },
  6763. "require-dev": {
  6764. "mockery/mockery": "~1.3.2"
  6765. },
  6766. "type": "library",
  6767. "extra": {
  6768. "branch-alias": {
  6769. "dev-master": "5.x-dev"
  6770. }
  6771. },
  6772. "autoload": {
  6773. "psr-4": {
  6774. "phpDocumentor\\Reflection\\": "src"
  6775. }
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Mike van Riel",
  6784. "email": "me@mikevanriel.com"
  6785. },
  6786. {
  6787. "name": "Jaap van Otterdijk",
  6788. "email": "account@ijaap.nl"
  6789. }
  6790. ],
  6791. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6792. "time": "2020-08-15T11:14:08+00:00"
  6793. },
  6794. {
  6795. "name": "phpdocumentor/type-resolver",
  6796. "version": "1.3.0",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6800. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  6801. },
  6802. "dist": {
  6803. "type": "zip",
  6804. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  6805. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  6806. "shasum": "",
  6807. "mirrors": [
  6808. {
  6809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6810. "preferred": true
  6811. }
  6812. ]
  6813. },
  6814. "require": {
  6815. "php": "^7.2 || ^8.0",
  6816. "phpdocumentor/reflection-common": "^2.0"
  6817. },
  6818. "require-dev": {
  6819. "ext-tokenizer": "*"
  6820. },
  6821. "type": "library",
  6822. "extra": {
  6823. "branch-alias": {
  6824. "dev-1.x": "1.x-dev"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "psr-4": {
  6829. "phpDocumentor\\Reflection\\": "src"
  6830. }
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "MIT"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Mike van Riel",
  6839. "email": "me@mikevanriel.com"
  6840. }
  6841. ],
  6842. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6843. "time": "2020-06-27T10:12:23+00:00"
  6844. },
  6845. {
  6846. "name": "phpspec/prophecy",
  6847. "version": "1.11.1",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/phpspec/prophecy.git",
  6851. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  6856. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  6857. "shasum": "",
  6858. "mirrors": [
  6859. {
  6860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6861. "preferred": true
  6862. }
  6863. ]
  6864. },
  6865. "require": {
  6866. "doctrine/instantiator": "^1.2",
  6867. "php": "^7.2",
  6868. "phpdocumentor/reflection-docblock": "^5.0",
  6869. "sebastian/comparator": "^3.0 || ^4.0",
  6870. "sebastian/recursion-context": "^3.0 || ^4.0"
  6871. },
  6872. "require-dev": {
  6873. "phpspec/phpspec": "^6.0",
  6874. "phpunit/phpunit": "^8.0"
  6875. },
  6876. "type": "library",
  6877. "extra": {
  6878. "branch-alias": {
  6879. "dev-master": "1.11.x-dev"
  6880. }
  6881. },
  6882. "autoload": {
  6883. "psr-4": {
  6884. "Prophecy\\": "src/Prophecy"
  6885. }
  6886. },
  6887. "notification-url": "https://packagist.org/downloads/",
  6888. "license": [
  6889. "MIT"
  6890. ],
  6891. "authors": [
  6892. {
  6893. "name": "Konstantin Kudryashov",
  6894. "email": "ever.zet@gmail.com",
  6895. "homepage": "http://everzet.com"
  6896. },
  6897. {
  6898. "name": "Marcello Duarte",
  6899. "email": "marcello.duarte@gmail.com"
  6900. }
  6901. ],
  6902. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6903. "homepage": "https://github.com/phpspec/prophecy",
  6904. "keywords": [
  6905. "Double",
  6906. "Dummy",
  6907. "fake",
  6908. "mock",
  6909. "spy",
  6910. "stub"
  6911. ],
  6912. "time": "2020-07-08T12:44:21+00:00"
  6913. },
  6914. {
  6915. "name": "phpunit/php-code-coverage",
  6916. "version": "7.0.10",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6920. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6925. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6926. "shasum": "",
  6927. "mirrors": [
  6928. {
  6929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6930. "preferred": true
  6931. }
  6932. ]
  6933. },
  6934. "require": {
  6935. "ext-dom": "*",
  6936. "ext-xmlwriter": "*",
  6937. "php": "^7.2",
  6938. "phpunit/php-file-iterator": "^2.0.2",
  6939. "phpunit/php-text-template": "^1.2.1",
  6940. "phpunit/php-token-stream": "^3.1.1",
  6941. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6942. "sebastian/environment": "^4.2.2",
  6943. "sebastian/version": "^2.0.1",
  6944. "theseer/tokenizer": "^1.1.3"
  6945. },
  6946. "require-dev": {
  6947. "phpunit/phpunit": "^8.2.2"
  6948. },
  6949. "suggest": {
  6950. "ext-xdebug": "^2.7.2"
  6951. },
  6952. "type": "library",
  6953. "extra": {
  6954. "branch-alias": {
  6955. "dev-master": "7.0-dev"
  6956. }
  6957. },
  6958. "autoload": {
  6959. "classmap": [
  6960. "src/"
  6961. ]
  6962. },
  6963. "notification-url": "https://packagist.org/downloads/",
  6964. "license": [
  6965. "BSD-3-Clause"
  6966. ],
  6967. "authors": [
  6968. {
  6969. "name": "Sebastian Bergmann",
  6970. "email": "sebastian@phpunit.de",
  6971. "role": "lead"
  6972. }
  6973. ],
  6974. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6975. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6976. "keywords": [
  6977. "coverage",
  6978. "testing",
  6979. "xunit"
  6980. ],
  6981. "time": "2019-11-20T13:55:58+00:00"
  6982. },
  6983. {
  6984. "name": "phpunit/php-file-iterator",
  6985. "version": "2.0.2",
  6986. "source": {
  6987. "type": "git",
  6988. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6989. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6990. },
  6991. "dist": {
  6992. "type": "zip",
  6993. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6994. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6995. "shasum": "",
  6996. "mirrors": [
  6997. {
  6998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6999. "preferred": true
  7000. }
  7001. ]
  7002. },
  7003. "require": {
  7004. "php": "^7.1"
  7005. },
  7006. "require-dev": {
  7007. "phpunit/phpunit": "^7.1"
  7008. },
  7009. "type": "library",
  7010. "extra": {
  7011. "branch-alias": {
  7012. "dev-master": "2.0.x-dev"
  7013. }
  7014. },
  7015. "autoload": {
  7016. "classmap": [
  7017. "src/"
  7018. ]
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "BSD-3-Clause"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Sebastian Bergmann",
  7027. "email": "sebastian@phpunit.de",
  7028. "role": "lead"
  7029. }
  7030. ],
  7031. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7032. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7033. "keywords": [
  7034. "filesystem",
  7035. "iterator"
  7036. ],
  7037. "time": "2018-09-13T20:33:42+00:00"
  7038. },
  7039. {
  7040. "name": "phpunit/php-text-template",
  7041. "version": "1.2.1",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7045. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7050. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7051. "shasum": "",
  7052. "mirrors": [
  7053. {
  7054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7055. "preferred": true
  7056. }
  7057. ]
  7058. },
  7059. "require": {
  7060. "php": ">=5.3.3"
  7061. },
  7062. "type": "library",
  7063. "autoload": {
  7064. "classmap": [
  7065. "src/"
  7066. ]
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "BSD-3-Clause"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Sebastian Bergmann",
  7075. "email": "sebastian@phpunit.de",
  7076. "role": "lead"
  7077. }
  7078. ],
  7079. "description": "Simple template engine.",
  7080. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7081. "keywords": [
  7082. "template"
  7083. ],
  7084. "time": "2015-06-21T13:50:34+00:00"
  7085. },
  7086. {
  7087. "name": "phpunit/php-timer",
  7088. "version": "2.1.2",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7092. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7097. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7098. "shasum": "",
  7099. "mirrors": [
  7100. {
  7101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7102. "preferred": true
  7103. }
  7104. ]
  7105. },
  7106. "require": {
  7107. "php": "^7.1"
  7108. },
  7109. "require-dev": {
  7110. "phpunit/phpunit": "^7.0"
  7111. },
  7112. "type": "library",
  7113. "extra": {
  7114. "branch-alias": {
  7115. "dev-master": "2.1-dev"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "classmap": [
  7120. "src/"
  7121. ]
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "license": [
  7125. "BSD-3-Clause"
  7126. ],
  7127. "authors": [
  7128. {
  7129. "name": "Sebastian Bergmann",
  7130. "email": "sebastian@phpunit.de",
  7131. "role": "lead"
  7132. }
  7133. ],
  7134. "description": "Utility class for timing",
  7135. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7136. "keywords": [
  7137. "timer"
  7138. ],
  7139. "time": "2019-06-07T04:22:29+00:00"
  7140. },
  7141. {
  7142. "name": "phpunit/php-token-stream",
  7143. "version": "3.1.1",
  7144. "source": {
  7145. "type": "git",
  7146. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7147. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7148. },
  7149. "dist": {
  7150. "type": "zip",
  7151. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7152. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7153. "shasum": "",
  7154. "mirrors": [
  7155. {
  7156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7157. "preferred": true
  7158. }
  7159. ]
  7160. },
  7161. "require": {
  7162. "ext-tokenizer": "*",
  7163. "php": "^7.1"
  7164. },
  7165. "require-dev": {
  7166. "phpunit/phpunit": "^7.0"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "branch-alias": {
  7171. "dev-master": "3.1-dev"
  7172. }
  7173. },
  7174. "autoload": {
  7175. "classmap": [
  7176. "src/"
  7177. ]
  7178. },
  7179. "notification-url": "https://packagist.org/downloads/",
  7180. "license": [
  7181. "BSD-3-Clause"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Sebastian Bergmann",
  7186. "email": "sebastian@phpunit.de"
  7187. }
  7188. ],
  7189. "description": "Wrapper around PHP's tokenizer extension.",
  7190. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7191. "keywords": [
  7192. "tokenizer"
  7193. ],
  7194. "abandoned": true,
  7195. "time": "2019-09-17T06:23:10+00:00"
  7196. },
  7197. {
  7198. "name": "phpunit/phpunit",
  7199. "version": "8.5.8",
  7200. "source": {
  7201. "type": "git",
  7202. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7203. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  7204. },
  7205. "dist": {
  7206. "type": "zip",
  7207. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  7208. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  7209. "shasum": "",
  7210. "mirrors": [
  7211. {
  7212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7213. "preferred": true
  7214. }
  7215. ]
  7216. },
  7217. "require": {
  7218. "doctrine/instantiator": "^1.2.0",
  7219. "ext-dom": "*",
  7220. "ext-json": "*",
  7221. "ext-libxml": "*",
  7222. "ext-mbstring": "*",
  7223. "ext-xml": "*",
  7224. "ext-xmlwriter": "*",
  7225. "myclabs/deep-copy": "^1.9.1",
  7226. "phar-io/manifest": "^1.0.3",
  7227. "phar-io/version": "^2.0.1",
  7228. "php": "^7.2",
  7229. "phpspec/prophecy": "^1.8.1",
  7230. "phpunit/php-code-coverage": "^7.0.7",
  7231. "phpunit/php-file-iterator": "^2.0.2",
  7232. "phpunit/php-text-template": "^1.2.1",
  7233. "phpunit/php-timer": "^2.1.2",
  7234. "sebastian/comparator": "^3.0.2",
  7235. "sebastian/diff": "^3.0.2",
  7236. "sebastian/environment": "^4.2.2",
  7237. "sebastian/exporter": "^3.1.1",
  7238. "sebastian/global-state": "^3.0.0",
  7239. "sebastian/object-enumerator": "^3.0.3",
  7240. "sebastian/resource-operations": "^2.0.1",
  7241. "sebastian/type": "^1.1.3",
  7242. "sebastian/version": "^2.0.1"
  7243. },
  7244. "require-dev": {
  7245. "ext-pdo": "*"
  7246. },
  7247. "suggest": {
  7248. "ext-soap": "*",
  7249. "ext-xdebug": "*",
  7250. "phpunit/php-invoker": "^2.0.0"
  7251. },
  7252. "bin": [
  7253. "phpunit"
  7254. ],
  7255. "type": "library",
  7256. "extra": {
  7257. "branch-alias": {
  7258. "dev-master": "8.5-dev"
  7259. }
  7260. },
  7261. "autoload": {
  7262. "classmap": [
  7263. "src/"
  7264. ]
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "BSD-3-Clause"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "Sebastian Bergmann",
  7273. "email": "sebastian@phpunit.de",
  7274. "role": "lead"
  7275. }
  7276. ],
  7277. "description": "The PHP Unit Testing framework.",
  7278. "homepage": "https://phpunit.de/",
  7279. "keywords": [
  7280. "phpunit",
  7281. "testing",
  7282. "xunit"
  7283. ],
  7284. "time": "2020-06-22T07:06:58+00:00"
  7285. },
  7286. {
  7287. "name": "scrivo/highlight.php",
  7288. "version": "v9.18.1.1",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/scrivo/highlight.php.git",
  7292. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
  7297. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
  7298. "shasum": "",
  7299. "mirrors": [
  7300. {
  7301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7302. "preferred": true
  7303. }
  7304. ]
  7305. },
  7306. "require": {
  7307. "ext-json": "*",
  7308. "ext-mbstring": "*",
  7309. "php": ">=5.4"
  7310. },
  7311. "require-dev": {
  7312. "phpunit/phpunit": "^4.8|^5.7",
  7313. "sabberworm/php-css-parser": "^8.3",
  7314. "symfony/finder": "^2.8|^3.4",
  7315. "symfony/var-dumper": "^2.8|^3.4"
  7316. },
  7317. "suggest": {
  7318. "ext-dom": "Needed to make use of the features in the utilities namespace"
  7319. },
  7320. "type": "library",
  7321. "autoload": {
  7322. "psr-0": {
  7323. "Highlight\\": "",
  7324. "HighlightUtilities\\": ""
  7325. },
  7326. "files": [
  7327. "HighlightUtilities/functions.php"
  7328. ]
  7329. },
  7330. "notification-url": "https://packagist.org/downloads/",
  7331. "license": [
  7332. "BSD-3-Clause"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Geert Bergman",
  7337. "homepage": "http://www.scrivo.org/",
  7338. "role": "Project Author"
  7339. },
  7340. {
  7341. "name": "Vladimir Jimenez",
  7342. "homepage": "https://allejo.io",
  7343. "role": "Maintainer"
  7344. },
  7345. {
  7346. "name": "Martin Folkers",
  7347. "homepage": "https://twobrain.io",
  7348. "role": "Contributor"
  7349. }
  7350. ],
  7351. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  7352. "keywords": [
  7353. "code",
  7354. "highlight",
  7355. "highlight.js",
  7356. "highlight.php",
  7357. "syntax"
  7358. ],
  7359. "time": "2020-03-02T05:59:21+00:00"
  7360. },
  7361. {
  7362. "name": "sebastian/code-unit-reverse-lookup",
  7363. "version": "1.0.1",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7367. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7372. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7373. "shasum": "",
  7374. "mirrors": [
  7375. {
  7376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7377. "preferred": true
  7378. }
  7379. ]
  7380. },
  7381. "require": {
  7382. "php": "^5.6 || ^7.0"
  7383. },
  7384. "require-dev": {
  7385. "phpunit/phpunit": "^5.7 || ^6.0"
  7386. },
  7387. "type": "library",
  7388. "extra": {
  7389. "branch-alias": {
  7390. "dev-master": "1.0.x-dev"
  7391. }
  7392. },
  7393. "autoload": {
  7394. "classmap": [
  7395. "src/"
  7396. ]
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "license": [
  7400. "BSD-3-Clause"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Sebastian Bergmann",
  7405. "email": "sebastian@phpunit.de"
  7406. }
  7407. ],
  7408. "description": "Looks up which function or method a line of code belongs to",
  7409. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7410. "time": "2017-03-04T06:30:41+00:00"
  7411. },
  7412. {
  7413. "name": "sebastian/comparator",
  7414. "version": "3.0.2",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/sebastianbergmann/comparator.git",
  7418. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7423. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7424. "shasum": "",
  7425. "mirrors": [
  7426. {
  7427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7428. "preferred": true
  7429. }
  7430. ]
  7431. },
  7432. "require": {
  7433. "php": "^7.1",
  7434. "sebastian/diff": "^3.0",
  7435. "sebastian/exporter": "^3.1"
  7436. },
  7437. "require-dev": {
  7438. "phpunit/phpunit": "^7.1"
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-master": "3.0-dev"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "classmap": [
  7448. "src/"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "BSD-3-Clause"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Jeff Welch",
  7458. "email": "whatthejeff@gmail.com"
  7459. },
  7460. {
  7461. "name": "Volker Dusch",
  7462. "email": "github@wallbash.com"
  7463. },
  7464. {
  7465. "name": "Bernhard Schussek",
  7466. "email": "bschussek@2bepublished.at"
  7467. },
  7468. {
  7469. "name": "Sebastian Bergmann",
  7470. "email": "sebastian@phpunit.de"
  7471. }
  7472. ],
  7473. "description": "Provides the functionality to compare PHP values for equality",
  7474. "homepage": "https://github.com/sebastianbergmann/comparator",
  7475. "keywords": [
  7476. "comparator",
  7477. "compare",
  7478. "equality"
  7479. ],
  7480. "time": "2018-07-12T15:12:46+00:00"
  7481. },
  7482. {
  7483. "name": "sebastian/diff",
  7484. "version": "3.0.2",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/sebastianbergmann/diff.git",
  7488. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7493. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7494. "shasum": "",
  7495. "mirrors": [
  7496. {
  7497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7498. "preferred": true
  7499. }
  7500. ]
  7501. },
  7502. "require": {
  7503. "php": "^7.1"
  7504. },
  7505. "require-dev": {
  7506. "phpunit/phpunit": "^7.5 || ^8.0",
  7507. "symfony/process": "^2 || ^3.3 || ^4"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "branch-alias": {
  7512. "dev-master": "3.0-dev"
  7513. }
  7514. },
  7515. "autoload": {
  7516. "classmap": [
  7517. "src/"
  7518. ]
  7519. },
  7520. "notification-url": "https://packagist.org/downloads/",
  7521. "license": [
  7522. "BSD-3-Clause"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "Kore Nordmann",
  7527. "email": "mail@kore-nordmann.de"
  7528. },
  7529. {
  7530. "name": "Sebastian Bergmann",
  7531. "email": "sebastian@phpunit.de"
  7532. }
  7533. ],
  7534. "description": "Diff implementation",
  7535. "homepage": "https://github.com/sebastianbergmann/diff",
  7536. "keywords": [
  7537. "diff",
  7538. "udiff",
  7539. "unidiff",
  7540. "unified diff"
  7541. ],
  7542. "time": "2019-02-04T06:01:07+00:00"
  7543. },
  7544. {
  7545. "name": "sebastian/environment",
  7546. "version": "4.2.3",
  7547. "source": {
  7548. "type": "git",
  7549. "url": "https://github.com/sebastianbergmann/environment.git",
  7550. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  7551. },
  7552. "dist": {
  7553. "type": "zip",
  7554. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7555. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7556. "shasum": "",
  7557. "mirrors": [
  7558. {
  7559. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7560. "preferred": true
  7561. }
  7562. ]
  7563. },
  7564. "require": {
  7565. "php": "^7.1"
  7566. },
  7567. "require-dev": {
  7568. "phpunit/phpunit": "^7.5"
  7569. },
  7570. "suggest": {
  7571. "ext-posix": "*"
  7572. },
  7573. "type": "library",
  7574. "extra": {
  7575. "branch-alias": {
  7576. "dev-master": "4.2-dev"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "classmap": [
  7581. "src/"
  7582. ]
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "BSD-3-Clause"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Sebastian Bergmann",
  7591. "email": "sebastian@phpunit.de"
  7592. }
  7593. ],
  7594. "description": "Provides functionality to handle HHVM/PHP environments",
  7595. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7596. "keywords": [
  7597. "Xdebug",
  7598. "environment",
  7599. "hhvm"
  7600. ],
  7601. "time": "2019-11-20T08:46:58+00:00"
  7602. },
  7603. {
  7604. "name": "sebastian/exporter",
  7605. "version": "3.1.2",
  7606. "source": {
  7607. "type": "git",
  7608. "url": "https://github.com/sebastianbergmann/exporter.git",
  7609. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  7610. },
  7611. "dist": {
  7612. "type": "zip",
  7613. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7614. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7615. "shasum": "",
  7616. "mirrors": [
  7617. {
  7618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7619. "preferred": true
  7620. }
  7621. ]
  7622. },
  7623. "require": {
  7624. "php": "^7.0",
  7625. "sebastian/recursion-context": "^3.0"
  7626. },
  7627. "require-dev": {
  7628. "ext-mbstring": "*",
  7629. "phpunit/phpunit": "^6.0"
  7630. },
  7631. "type": "library",
  7632. "extra": {
  7633. "branch-alias": {
  7634. "dev-master": "3.1.x-dev"
  7635. }
  7636. },
  7637. "autoload": {
  7638. "classmap": [
  7639. "src/"
  7640. ]
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "BSD-3-Clause"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "Sebastian Bergmann",
  7649. "email": "sebastian@phpunit.de"
  7650. },
  7651. {
  7652. "name": "Jeff Welch",
  7653. "email": "whatthejeff@gmail.com"
  7654. },
  7655. {
  7656. "name": "Volker Dusch",
  7657. "email": "github@wallbash.com"
  7658. },
  7659. {
  7660. "name": "Adam Harvey",
  7661. "email": "aharvey@php.net"
  7662. },
  7663. {
  7664. "name": "Bernhard Schussek",
  7665. "email": "bschussek@gmail.com"
  7666. }
  7667. ],
  7668. "description": "Provides the functionality to export PHP variables for visualization",
  7669. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7670. "keywords": [
  7671. "export",
  7672. "exporter"
  7673. ],
  7674. "time": "2019-09-14T09:02:43+00:00"
  7675. },
  7676. {
  7677. "name": "sebastian/global-state",
  7678. "version": "3.0.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/sebastianbergmann/global-state.git",
  7682. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7687. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7688. "shasum": "",
  7689. "mirrors": [
  7690. {
  7691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7692. "preferred": true
  7693. }
  7694. ]
  7695. },
  7696. "require": {
  7697. "php": "^7.2",
  7698. "sebastian/object-reflector": "^1.1.1",
  7699. "sebastian/recursion-context": "^3.0"
  7700. },
  7701. "require-dev": {
  7702. "ext-dom": "*",
  7703. "phpunit/phpunit": "^8.0"
  7704. },
  7705. "suggest": {
  7706. "ext-uopz": "*"
  7707. },
  7708. "type": "library",
  7709. "extra": {
  7710. "branch-alias": {
  7711. "dev-master": "3.0-dev"
  7712. }
  7713. },
  7714. "autoload": {
  7715. "classmap": [
  7716. "src/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "BSD-3-Clause"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Sebastian Bergmann",
  7726. "email": "sebastian@phpunit.de"
  7727. }
  7728. ],
  7729. "description": "Snapshotting of global state",
  7730. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7731. "keywords": [
  7732. "global state"
  7733. ],
  7734. "time": "2019-02-01T05:30:01+00:00"
  7735. },
  7736. {
  7737. "name": "sebastian/object-enumerator",
  7738. "version": "3.0.3",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7742. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7747. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7748. "shasum": "",
  7749. "mirrors": [
  7750. {
  7751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7752. "preferred": true
  7753. }
  7754. ]
  7755. },
  7756. "require": {
  7757. "php": "^7.0",
  7758. "sebastian/object-reflector": "^1.1.1",
  7759. "sebastian/recursion-context": "^3.0"
  7760. },
  7761. "require-dev": {
  7762. "phpunit/phpunit": "^6.0"
  7763. },
  7764. "type": "library",
  7765. "extra": {
  7766. "branch-alias": {
  7767. "dev-master": "3.0.x-dev"
  7768. }
  7769. },
  7770. "autoload": {
  7771. "classmap": [
  7772. "src/"
  7773. ]
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "BSD-3-Clause"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "Sebastian Bergmann",
  7782. "email": "sebastian@phpunit.de"
  7783. }
  7784. ],
  7785. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7786. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7787. "time": "2017-08-03T12:35:26+00:00"
  7788. },
  7789. {
  7790. "name": "sebastian/object-reflector",
  7791. "version": "1.1.1",
  7792. "source": {
  7793. "type": "git",
  7794. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7795. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7796. },
  7797. "dist": {
  7798. "type": "zip",
  7799. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7800. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7801. "shasum": "",
  7802. "mirrors": [
  7803. {
  7804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7805. "preferred": true
  7806. }
  7807. ]
  7808. },
  7809. "require": {
  7810. "php": "^7.0"
  7811. },
  7812. "require-dev": {
  7813. "phpunit/phpunit": "^6.0"
  7814. },
  7815. "type": "library",
  7816. "extra": {
  7817. "branch-alias": {
  7818. "dev-master": "1.1-dev"
  7819. }
  7820. },
  7821. "autoload": {
  7822. "classmap": [
  7823. "src/"
  7824. ]
  7825. },
  7826. "notification-url": "https://packagist.org/downloads/",
  7827. "license": [
  7828. "BSD-3-Clause"
  7829. ],
  7830. "authors": [
  7831. {
  7832. "name": "Sebastian Bergmann",
  7833. "email": "sebastian@phpunit.de"
  7834. }
  7835. ],
  7836. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7837. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7838. "time": "2017-03-29T09:07:27+00:00"
  7839. },
  7840. {
  7841. "name": "sebastian/recursion-context",
  7842. "version": "3.0.0",
  7843. "source": {
  7844. "type": "git",
  7845. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7846. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7847. },
  7848. "dist": {
  7849. "type": "zip",
  7850. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7851. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7852. "shasum": "",
  7853. "mirrors": [
  7854. {
  7855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7856. "preferred": true
  7857. }
  7858. ]
  7859. },
  7860. "require": {
  7861. "php": "^7.0"
  7862. },
  7863. "require-dev": {
  7864. "phpunit/phpunit": "^6.0"
  7865. },
  7866. "type": "library",
  7867. "extra": {
  7868. "branch-alias": {
  7869. "dev-master": "3.0.x-dev"
  7870. }
  7871. },
  7872. "autoload": {
  7873. "classmap": [
  7874. "src/"
  7875. ]
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "BSD-3-Clause"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Jeff Welch",
  7884. "email": "whatthejeff@gmail.com"
  7885. },
  7886. {
  7887. "name": "Sebastian Bergmann",
  7888. "email": "sebastian@phpunit.de"
  7889. },
  7890. {
  7891. "name": "Adam Harvey",
  7892. "email": "aharvey@php.net"
  7893. }
  7894. ],
  7895. "description": "Provides functionality to recursively process PHP variables",
  7896. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7897. "time": "2017-03-03T06:23:57+00:00"
  7898. },
  7899. {
  7900. "name": "sebastian/resource-operations",
  7901. "version": "2.0.1",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7905. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7910. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7911. "shasum": "",
  7912. "mirrors": [
  7913. {
  7914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7915. "preferred": true
  7916. }
  7917. ]
  7918. },
  7919. "require": {
  7920. "php": "^7.1"
  7921. },
  7922. "type": "library",
  7923. "extra": {
  7924. "branch-alias": {
  7925. "dev-master": "2.0-dev"
  7926. }
  7927. },
  7928. "autoload": {
  7929. "classmap": [
  7930. "src/"
  7931. ]
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "BSD-3-Clause"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "Sebastian Bergmann",
  7940. "email": "sebastian@phpunit.de"
  7941. }
  7942. ],
  7943. "description": "Provides a list of PHP built-in functions that operate on resources",
  7944. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7945. "time": "2018-10-04T04:07:39+00:00"
  7946. },
  7947. {
  7948. "name": "sebastian/type",
  7949. "version": "1.1.3",
  7950. "source": {
  7951. "type": "git",
  7952. "url": "https://github.com/sebastianbergmann/type.git",
  7953. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  7954. },
  7955. "dist": {
  7956. "type": "zip",
  7957. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7958. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7959. "shasum": "",
  7960. "mirrors": [
  7961. {
  7962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7963. "preferred": true
  7964. }
  7965. ]
  7966. },
  7967. "require": {
  7968. "php": "^7.2"
  7969. },
  7970. "require-dev": {
  7971. "phpunit/phpunit": "^8.2"
  7972. },
  7973. "type": "library",
  7974. "extra": {
  7975. "branch-alias": {
  7976. "dev-master": "1.1-dev"
  7977. }
  7978. },
  7979. "autoload": {
  7980. "classmap": [
  7981. "src/"
  7982. ]
  7983. },
  7984. "notification-url": "https://packagist.org/downloads/",
  7985. "license": [
  7986. "BSD-3-Clause"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "Sebastian Bergmann",
  7991. "email": "sebastian@phpunit.de",
  7992. "role": "lead"
  7993. }
  7994. ],
  7995. "description": "Collection of value objects that represent the types of the PHP type system",
  7996. "homepage": "https://github.com/sebastianbergmann/type",
  7997. "time": "2019-07-02T08:10:15+00:00"
  7998. },
  7999. {
  8000. "name": "sebastian/version",
  8001. "version": "2.0.1",
  8002. "source": {
  8003. "type": "git",
  8004. "url": "https://github.com/sebastianbergmann/version.git",
  8005. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8006. },
  8007. "dist": {
  8008. "type": "zip",
  8009. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8010. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8011. "shasum": "",
  8012. "mirrors": [
  8013. {
  8014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8015. "preferred": true
  8016. }
  8017. ]
  8018. },
  8019. "require": {
  8020. "php": ">=5.6"
  8021. },
  8022. "type": "library",
  8023. "extra": {
  8024. "branch-alias": {
  8025. "dev-master": "2.0.x-dev"
  8026. }
  8027. },
  8028. "autoload": {
  8029. "classmap": [
  8030. "src/"
  8031. ]
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "BSD-3-Clause"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Sebastian Bergmann",
  8040. "email": "sebastian@phpunit.de",
  8041. "role": "lead"
  8042. }
  8043. ],
  8044. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8045. "homepage": "https://github.com/sebastianbergmann/version",
  8046. "time": "2016-10-03T07:35:21+00:00"
  8047. },
  8048. {
  8049. "name": "theseer/tokenizer",
  8050. "version": "1.2.0",
  8051. "source": {
  8052. "type": "git",
  8053. "url": "https://github.com/theseer/tokenizer.git",
  8054. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8055. },
  8056. "dist": {
  8057. "type": "zip",
  8058. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8059. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8060. "shasum": "",
  8061. "mirrors": [
  8062. {
  8063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8064. "preferred": true
  8065. }
  8066. ]
  8067. },
  8068. "require": {
  8069. "ext-dom": "*",
  8070. "ext-tokenizer": "*",
  8071. "ext-xmlwriter": "*",
  8072. "php": "^7.2 || ^8.0"
  8073. },
  8074. "type": "library",
  8075. "autoload": {
  8076. "classmap": [
  8077. "src/"
  8078. ]
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "BSD-3-Clause"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Arne Blankerts",
  8087. "email": "arne@blankerts.de",
  8088. "role": "Developer"
  8089. }
  8090. ],
  8091. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8092. "time": "2020-07-12T23:59:07+00:00"
  8093. },
  8094. {
  8095. "name": "webmozart/assert",
  8096. "version": "1.9.1",
  8097. "source": {
  8098. "type": "git",
  8099. "url": "https://github.com/webmozart/assert.git",
  8100. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8101. },
  8102. "dist": {
  8103. "type": "zip",
  8104. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8105. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8106. "shasum": "",
  8107. "mirrors": [
  8108. {
  8109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8110. "preferred": true
  8111. }
  8112. ]
  8113. },
  8114. "require": {
  8115. "php": "^5.3.3 || ^7.0 || ^8.0",
  8116. "symfony/polyfill-ctype": "^1.8"
  8117. },
  8118. "conflict": {
  8119. "phpstan/phpstan": "<0.12.20",
  8120. "vimeo/psalm": "<3.9.1"
  8121. },
  8122. "require-dev": {
  8123. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8124. },
  8125. "type": "library",
  8126. "autoload": {
  8127. "psr-4": {
  8128. "Webmozart\\Assert\\": "src/"
  8129. }
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Bernhard Schussek",
  8138. "email": "bschussek@gmail.com"
  8139. }
  8140. ],
  8141. "description": "Assertions to validate method input/output with nice error messages.",
  8142. "keywords": [
  8143. "assert",
  8144. "check",
  8145. "validate"
  8146. ],
  8147. "time": "2020-07-08T17:02:28+00:00"
  8148. }
  8149. ],
  8150. "aliases": [],
  8151. "minimum-stability": "dev",
  8152. "stability-flags": [],
  8153. "prefer-stable": true,
  8154. "prefer-lowest": false,
  8155. "platform": {
  8156. "php": "^7.2"
  8157. },
  8158. "platform-dev": []
  8159. }