composer.lock 213 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065
  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": "4b290b62e8e12cf0502021c163bfd81d",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2019-12-24T22:41:47+00:00"
  60. },
  61. {
  62. "name": "barryvdh/laravel-dompdf",
  63. "version": "v0.9.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  67. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  72. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "dompdf/dompdf": "^1",
  77. "illuminate/support": "^5.5|^6|^7|^8",
  78. "php": "^7.1 || ^8.0"
  79. },
  80. "type": "library",
  81. "extra": {
  82. "branch-alias": {
  83. "dev-master": "0.9-dev"
  84. },
  85. "laravel": {
  86. "providers": [
  87. "Barryvdh\\DomPDF\\ServiceProvider"
  88. ],
  89. "aliases": {
  90. "PDF": "Barryvdh\\DomPDF\\Facade"
  91. }
  92. }
  93. },
  94. "autoload": {
  95. "psr-4": {
  96. "Barryvdh\\DomPDF\\": "src"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Barry vd. Heuvel",
  106. "email": "barryvdh@gmail.com"
  107. }
  108. ],
  109. "description": "A DOMPDF Wrapper for Laravel",
  110. "keywords": [
  111. "dompdf",
  112. "laravel",
  113. "pdf"
  114. ],
  115. "support": {
  116. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  117. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v0.9.0"
  118. },
  119. "funding": [
  120. {
  121. "url": "https://github.com/barryvdh",
  122. "type": "github"
  123. }
  124. ],
  125. "time": "2020-12-27T12:05:53+00:00"
  126. },
  127. {
  128. "name": "brick/math",
  129. "version": "0.8.15",
  130. "source": {
  131. "type": "git",
  132. "url": "https://github.com/brick/math.git",
  133. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd"
  134. },
  135. "dist": {
  136. "type": "zip",
  137. "url": "https://api.github.com/repos/brick/math/zipball/9b08d412b9da9455b210459ff71414de7e6241cd",
  138. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd",
  139. "shasum": ""
  140. },
  141. "require": {
  142. "ext-json": "*",
  143. "php": "^7.1|^8.0"
  144. },
  145. "require-dev": {
  146. "php-coveralls/php-coveralls": "^2.2",
  147. "phpunit/phpunit": "^7.5.15|^8.5",
  148. "vimeo/psalm": "^3.5"
  149. },
  150. "type": "library",
  151. "autoload": {
  152. "psr-4": {
  153. "Brick\\Math\\": "src/"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "description": "Arbitrary-precision arithmetic library",
  161. "keywords": [
  162. "Arbitrary-precision",
  163. "BigInteger",
  164. "BigRational",
  165. "arithmetic",
  166. "bigdecimal",
  167. "bignum",
  168. "brick",
  169. "math"
  170. ],
  171. "time": "2020-04-15T15:59:35+00:00"
  172. },
  173. {
  174. "name": "dnoegel/php-xdg-base-dir",
  175. "version": "v0.1.1",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  179. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  184. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "php": ">=5.3.2"
  189. },
  190. "require-dev": {
  191. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "psr-4": {
  196. "XdgBaseDir\\": "src/"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "description": "implementation of xdg base directory specification for php",
  204. "time": "2019-12-04T15:06:13+00:00"
  205. },
  206. {
  207. "name": "doctrine/inflector",
  208. "version": "2.0.3",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/doctrine/inflector.git",
  212. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  217. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "php": "^7.2 || ^8.0"
  222. },
  223. "require-dev": {
  224. "doctrine/coding-standard": "^7.0",
  225. "phpstan/phpstan": "^0.11",
  226. "phpstan/phpstan-phpunit": "^0.11",
  227. "phpstan/phpstan-strict-rules": "^0.11",
  228. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  229. },
  230. "type": "library",
  231. "extra": {
  232. "branch-alias": {
  233. "dev-master": "2.0.x-dev"
  234. }
  235. },
  236. "autoload": {
  237. "psr-4": {
  238. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  239. }
  240. },
  241. "notification-url": "https://packagist.org/downloads/",
  242. "license": [
  243. "MIT"
  244. ],
  245. "authors": [
  246. {
  247. "name": "Guilherme Blanco",
  248. "email": "guilhermeblanco@gmail.com"
  249. },
  250. {
  251. "name": "Roman Borschel",
  252. "email": "roman@code-factory.org"
  253. },
  254. {
  255. "name": "Benjamin Eberlei",
  256. "email": "kontakt@beberlei.de"
  257. },
  258. {
  259. "name": "Jonathan Wage",
  260. "email": "jonwage@gmail.com"
  261. },
  262. {
  263. "name": "Johannes Schmitt",
  264. "email": "schmittjoh@gmail.com"
  265. }
  266. ],
  267. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  268. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  269. "keywords": [
  270. "inflection",
  271. "inflector",
  272. "lowercase",
  273. "manipulation",
  274. "php",
  275. "plural",
  276. "singular",
  277. "strings",
  278. "uppercase",
  279. "words"
  280. ],
  281. "time": "2020-05-29T15:13:26+00:00"
  282. },
  283. {
  284. "name": "doctrine/lexer",
  285. "version": "1.2.1",
  286. "source": {
  287. "type": "git",
  288. "url": "https://github.com/doctrine/lexer.git",
  289. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  290. },
  291. "dist": {
  292. "type": "zip",
  293. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  294. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  295. "shasum": ""
  296. },
  297. "require": {
  298. "php": "^7.2 || ^8.0"
  299. },
  300. "require-dev": {
  301. "doctrine/coding-standard": "^6.0",
  302. "phpstan/phpstan": "^0.11.8",
  303. "phpunit/phpunit": "^8.2"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.2.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Johannes Schmitt",
  331. "email": "schmittjoh@gmail.com"
  332. }
  333. ],
  334. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  335. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  336. "keywords": [
  337. "annotations",
  338. "docblock",
  339. "lexer",
  340. "parser",
  341. "php"
  342. ],
  343. "time": "2020-05-25T17:44:05+00:00"
  344. },
  345. {
  346. "name": "dompdf/dompdf",
  347. "version": "v1.0.1",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/dompdf/dompdf.git",
  351. "reference": "45d260f2f6c6a542e0db3459470374c986a46d93"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/45d260f2f6c6a542e0db3459470374c986a46d93",
  356. "reference": "45d260f2f6c6a542e0db3459470374c986a46d93",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "ext-dom": "*",
  361. "ext-mbstring": "*",
  362. "phenx/php-font-lib": "^0.5.2",
  363. "phenx/php-svg-lib": "^0.3.3",
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "mockery/mockery": "^1.3",
  368. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  369. "squizlabs/php_codesniffer": "^3.5"
  370. },
  371. "suggest": {
  372. "ext-gd": "Needed to process images",
  373. "ext-gmagick": "Improves image processing performance",
  374. "ext-imagick": "Improves image processing performance",
  375. "ext-zlib": "Needed for pdf stream compression"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "branch-alias": {
  380. "dev-develop": "0.7-dev"
  381. }
  382. },
  383. "autoload": {
  384. "psr-4": {
  385. "Dompdf\\": "src/"
  386. },
  387. "classmap": [
  388. "lib/"
  389. ]
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "LGPL-2.1"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Fabien Ménager",
  398. "email": "fabien.menager@gmail.com"
  399. },
  400. {
  401. "name": "Brian Sweeney",
  402. "email": "eclecticgeek@gmail.com"
  403. },
  404. {
  405. "name": "Gabriel Bull",
  406. "email": "me@gabrielbull.com"
  407. }
  408. ],
  409. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  410. "homepage": "https://github.com/dompdf/dompdf",
  411. "support": {
  412. "issues": "https://github.com/dompdf/dompdf/issues",
  413. "source": "https://github.com/dompdf/dompdf/tree/v1.0.1"
  414. },
  415. "time": "2020-12-31T13:25:19+00:00"
  416. },
  417. {
  418. "name": "dragonmantank/cron-expression",
  419. "version": "v2.3.0",
  420. "source": {
  421. "type": "git",
  422. "url": "https://github.com/dragonmantank/cron-expression.git",
  423. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  424. },
  425. "dist": {
  426. "type": "zip",
  427. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  428. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  429. "shasum": ""
  430. },
  431. "require": {
  432. "php": "^7.0"
  433. },
  434. "require-dev": {
  435. "phpunit/phpunit": "^6.4|^7.0"
  436. },
  437. "type": "library",
  438. "extra": {
  439. "branch-alias": {
  440. "dev-master": "2.3-dev"
  441. }
  442. },
  443. "autoload": {
  444. "psr-4": {
  445. "Cron\\": "src/Cron/"
  446. }
  447. },
  448. "notification-url": "https://packagist.org/downloads/",
  449. "license": [
  450. "MIT"
  451. ],
  452. "authors": [
  453. {
  454. "name": "Michael Dowling",
  455. "email": "mtdowling@gmail.com",
  456. "homepage": "https://github.com/mtdowling"
  457. },
  458. {
  459. "name": "Chris Tankersley",
  460. "email": "chris@ctankersley.com",
  461. "homepage": "https://github.com/dragonmantank"
  462. }
  463. ],
  464. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  465. "keywords": [
  466. "cron",
  467. "schedule"
  468. ],
  469. "time": "2019-03-31T00:38:28+00:00"
  470. },
  471. {
  472. "name": "egulias/email-validator",
  473. "version": "2.1.18",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/egulias/EmailValidator.git",
  477. "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/cfa3d44471c7f5bfb684ac2b0da7114283d78441",
  482. "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "doctrine/lexer": "^1.0.1",
  487. "php": ">=5.5",
  488. "symfony/polyfill-intl-idn": "^1.10"
  489. },
  490. "require-dev": {
  491. "dominicsayers/isemail": "^3.0.7",
  492. "phpunit/phpunit": "^4.8.36|^7.5.15",
  493. "satooshi/php-coveralls": "^1.0.1"
  494. },
  495. "suggest": {
  496. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  497. },
  498. "type": "library",
  499. "extra": {
  500. "branch-alias": {
  501. "dev-master": "2.1.x-dev"
  502. }
  503. },
  504. "autoload": {
  505. "psr-4": {
  506. "Egulias\\EmailValidator\\": "src"
  507. }
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "authors": [
  514. {
  515. "name": "Eduardo Gulias Davis"
  516. }
  517. ],
  518. "description": "A library for validating emails against several RFCs",
  519. "homepage": "https://github.com/egulias/EmailValidator",
  520. "keywords": [
  521. "email",
  522. "emailvalidation",
  523. "emailvalidator",
  524. "validation",
  525. "validator"
  526. ],
  527. "time": "2020-06-16T20:11:17+00:00"
  528. },
  529. {
  530. "name": "fideloper/proxy",
  531. "version": "4.4.0",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/fideloper/TrustedProxy.git",
  535. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  540. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  541. "shasum": ""
  542. },
  543. "require": {
  544. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  545. "php": ">=5.4.0"
  546. },
  547. "require-dev": {
  548. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  549. "mockery/mockery": "^1.0",
  550. "phpunit/phpunit": "^6.0"
  551. },
  552. "type": "library",
  553. "extra": {
  554. "laravel": {
  555. "providers": [
  556. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  557. ]
  558. }
  559. },
  560. "autoload": {
  561. "psr-4": {
  562. "Fideloper\\Proxy\\": "src/"
  563. }
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "MIT"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Chris Fidao",
  572. "email": "fideloper@gmail.com"
  573. }
  574. ],
  575. "description": "Set trusted proxies for Laravel",
  576. "keywords": [
  577. "load balancing",
  578. "proxy",
  579. "trusted proxy"
  580. ],
  581. "time": "2020-06-23T01:36:47+00:00"
  582. },
  583. {
  584. "name": "fruitcake/laravel-cors",
  585. "version": "v1.0.6",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/fruitcake/laravel-cors.git",
  589. "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/1d127dbec313e2e227d65e0c483765d8d7559bf6",
  594. "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "asm89/stack-cors": "^1.3",
  599. "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0",
  600. "illuminate/support": "^5.5|^6.0|^7.0|^8.0",
  601. "php": ">=7",
  602. "symfony/http-foundation": "^3.3|^4.0|^5.0",
  603. "symfony/http-kernel": "^3.3|^4.0|^5.0"
  604. },
  605. "require-dev": {
  606. "laravel/framework": "^5.5|^6.0|^7.0|^8.0",
  607. "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
  608. "phpro/grumphp": "^0.16|^0.17",
  609. "phpunit/phpunit": "^6.0|^7.0|^8.0",
  610. "squizlabs/php_codesniffer": "^3.5"
  611. },
  612. "type": "library",
  613. "extra": {
  614. "branch-alias": {
  615. "dev-master": "1.0-dev"
  616. },
  617. "laravel": {
  618. "providers": [
  619. "Fruitcake\\Cors\\CorsServiceProvider"
  620. ]
  621. }
  622. },
  623. "autoload": {
  624. "psr-4": {
  625. "Fruitcake\\Cors\\": "src/"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "MIT"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Fruitcake",
  635. "homepage": "https://fruitcake.nl"
  636. },
  637. {
  638. "name": "Barry vd. Heuvel",
  639. "email": "barryvdh@gmail.com"
  640. }
  641. ],
  642. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  643. "keywords": [
  644. "api",
  645. "cors",
  646. "crossdomain",
  647. "laravel"
  648. ],
  649. "time": "2020-04-28T08:47:37+00:00"
  650. },
  651. {
  652. "name": "guzzlehttp/guzzle",
  653. "version": "6.5.5",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/guzzle/guzzle.git",
  657. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  662. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "ext-json": "*",
  667. "guzzlehttp/promises": "^1.0",
  668. "guzzlehttp/psr7": "^1.6.1",
  669. "php": ">=5.5",
  670. "symfony/polyfill-intl-idn": "^1.17.0"
  671. },
  672. "require-dev": {
  673. "ext-curl": "*",
  674. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  675. "psr/log": "^1.1"
  676. },
  677. "suggest": {
  678. "psr/log": "Required for using the Log middleware"
  679. },
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "6.5-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "GuzzleHttp\\": "src/"
  689. },
  690. "files": [
  691. "src/functions_include.php"
  692. ]
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Michael Dowling",
  701. "email": "mtdowling@gmail.com",
  702. "homepage": "https://github.com/mtdowling"
  703. }
  704. ],
  705. "description": "Guzzle is a PHP HTTP client library",
  706. "homepage": "http://guzzlephp.org/",
  707. "keywords": [
  708. "client",
  709. "curl",
  710. "framework",
  711. "http",
  712. "http client",
  713. "rest",
  714. "web service"
  715. ],
  716. "time": "2020-06-16T21:01:06+00:00"
  717. },
  718. {
  719. "name": "guzzlehttp/promises",
  720. "version": "v1.3.1",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/guzzle/promises.git",
  724. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  729. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "php": ">=5.5.0"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "^4.0"
  737. },
  738. "type": "library",
  739. "extra": {
  740. "branch-alias": {
  741. "dev-master": "1.4-dev"
  742. }
  743. },
  744. "autoload": {
  745. "psr-4": {
  746. "GuzzleHttp\\Promise\\": "src/"
  747. },
  748. "files": [
  749. "src/functions_include.php"
  750. ]
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Michael Dowling",
  759. "email": "mtdowling@gmail.com",
  760. "homepage": "https://github.com/mtdowling"
  761. }
  762. ],
  763. "description": "Guzzle promises library",
  764. "keywords": [
  765. "promise"
  766. ],
  767. "time": "2016-12-20T10:07:11+00:00"
  768. },
  769. {
  770. "name": "guzzlehttp/psr7",
  771. "version": "1.6.1",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/guzzle/psr7.git",
  775. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  780. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "php": ">=5.4.0",
  785. "psr/http-message": "~1.0",
  786. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  787. },
  788. "provide": {
  789. "psr/http-message-implementation": "1.0"
  790. },
  791. "require-dev": {
  792. "ext-zlib": "*",
  793. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  794. },
  795. "suggest": {
  796. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  797. },
  798. "type": "library",
  799. "extra": {
  800. "branch-alias": {
  801. "dev-master": "1.6-dev"
  802. }
  803. },
  804. "autoload": {
  805. "psr-4": {
  806. "GuzzleHttp\\Psr7\\": "src/"
  807. },
  808. "files": [
  809. "src/functions_include.php"
  810. ]
  811. },
  812. "notification-url": "https://packagist.org/downloads/",
  813. "license": [
  814. "MIT"
  815. ],
  816. "authors": [
  817. {
  818. "name": "Michael Dowling",
  819. "email": "mtdowling@gmail.com",
  820. "homepage": "https://github.com/mtdowling"
  821. },
  822. {
  823. "name": "Tobias Schultze",
  824. "homepage": "https://github.com/Tobion"
  825. }
  826. ],
  827. "description": "PSR-7 message implementation that also provides common utility methods",
  828. "keywords": [
  829. "http",
  830. "message",
  831. "psr-7",
  832. "request",
  833. "response",
  834. "stream",
  835. "uri",
  836. "url"
  837. ],
  838. "time": "2019-07-01T23:21:34+00:00"
  839. },
  840. {
  841. "name": "laravel/framework",
  842. "version": "v7.17.2",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/laravel/framework.git",
  846. "reference": "d16ff3a0a66d98e04163456b39c4b7302cf50a40"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/laravel/framework/zipball/d16ff3a0a66d98e04163456b39c4b7302cf50a40",
  851. "reference": "d16ff3a0a66d98e04163456b39c4b7302cf50a40",
  852. "shasum": ""
  853. },
  854. "require": {
  855. "doctrine/inflector": "^1.4|^2.0",
  856. "dragonmantank/cron-expression": "^2.0",
  857. "egulias/email-validator": "^2.1.10",
  858. "ext-json": "*",
  859. "ext-mbstring": "*",
  860. "ext-openssl": "*",
  861. "league/commonmark": "^1.3",
  862. "league/flysystem": "^1.0.34",
  863. "monolog/monolog": "^2.0",
  864. "nesbot/carbon": "^2.17",
  865. "opis/closure": "^3.1",
  866. "php": "^7.2.5",
  867. "psr/container": "^1.0",
  868. "psr/simple-cache": "^1.0",
  869. "ramsey/uuid": "^3.7|^4.0",
  870. "swiftmailer/swiftmailer": "^6.0",
  871. "symfony/console": "^5.0",
  872. "symfony/error-handler": "^5.0",
  873. "symfony/finder": "^5.0",
  874. "symfony/http-foundation": "^5.0",
  875. "symfony/http-kernel": "^5.0",
  876. "symfony/mime": "^5.0",
  877. "symfony/polyfill-php73": "^1.17",
  878. "symfony/process": "^5.0",
  879. "symfony/routing": "^5.0",
  880. "symfony/var-dumper": "^5.0",
  881. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  882. "vlucas/phpdotenv": "^4.0",
  883. "voku/portable-ascii": "^1.4.8"
  884. },
  885. "conflict": {
  886. "tightenco/collect": "<5.5.33"
  887. },
  888. "provide": {
  889. "psr/container-implementation": "1.0"
  890. },
  891. "replace": {
  892. "illuminate/auth": "self.version",
  893. "illuminate/broadcasting": "self.version",
  894. "illuminate/bus": "self.version",
  895. "illuminate/cache": "self.version",
  896. "illuminate/config": "self.version",
  897. "illuminate/console": "self.version",
  898. "illuminate/container": "self.version",
  899. "illuminate/contracts": "self.version",
  900. "illuminate/cookie": "self.version",
  901. "illuminate/database": "self.version",
  902. "illuminate/encryption": "self.version",
  903. "illuminate/events": "self.version",
  904. "illuminate/filesystem": "self.version",
  905. "illuminate/hashing": "self.version",
  906. "illuminate/http": "self.version",
  907. "illuminate/log": "self.version",
  908. "illuminate/mail": "self.version",
  909. "illuminate/notifications": "self.version",
  910. "illuminate/pagination": "self.version",
  911. "illuminate/pipeline": "self.version",
  912. "illuminate/queue": "self.version",
  913. "illuminate/redis": "self.version",
  914. "illuminate/routing": "self.version",
  915. "illuminate/session": "self.version",
  916. "illuminate/support": "self.version",
  917. "illuminate/testing": "self.version",
  918. "illuminate/translation": "self.version",
  919. "illuminate/validation": "self.version",
  920. "illuminate/view": "self.version"
  921. },
  922. "require-dev": {
  923. "aws/aws-sdk-php": "^3.0",
  924. "doctrine/dbal": "^2.6",
  925. "filp/whoops": "^2.4",
  926. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  927. "league/flysystem-cached-adapter": "^1.0",
  928. "mockery/mockery": "^1.3.1",
  929. "moontoast/math": "^1.1",
  930. "orchestra/testbench-core": "^5.0",
  931. "pda/pheanstalk": "^4.0",
  932. "phpunit/phpunit": "^8.4|^9.0",
  933. "predis/predis": "^1.1.1",
  934. "symfony/cache": "^5.0"
  935. },
  936. "suggest": {
  937. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  938. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  939. "ext-ftp": "Required to use the Flysystem FTP driver.",
  940. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  941. "ext-memcached": "Required to use the memcache cache driver.",
  942. "ext-pcntl": "Required to use all features of the queue worker.",
  943. "ext-posix": "Required to use all features of the queue worker.",
  944. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  945. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  946. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  947. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  948. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  949. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  950. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  951. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  952. "mockery/mockery": "Required to use mocking (^1.3.1).",
  953. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  954. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  955. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  956. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  957. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  958. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  959. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  960. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  961. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  962. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "7.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "files": [
  972. "src/Illuminate/Foundation/helpers.php",
  973. "src/Illuminate/Support/helpers.php"
  974. ],
  975. "psr-4": {
  976. "Illuminate\\": "src/Illuminate/"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "authors": [
  984. {
  985. "name": "Taylor Otwell",
  986. "email": "taylor@laravel.com"
  987. }
  988. ],
  989. "description": "The Laravel Framework.",
  990. "homepage": "https://laravel.com",
  991. "keywords": [
  992. "framework",
  993. "laravel"
  994. ],
  995. "time": "2020-06-24T13:11:25+00:00"
  996. },
  997. {
  998. "name": "laravel/tinker",
  999. "version": "v2.4.0",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/laravel/tinker.git",
  1003. "reference": "cde90a7335a2130a4488beb68f4b2141869241db"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/laravel/tinker/zipball/cde90a7335a2130a4488beb68f4b2141869241db",
  1008. "reference": "cde90a7335a2130a4488beb68f4b2141869241db",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "illuminate/console": "^6.0|^7.0|^8.0",
  1013. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1014. "illuminate/support": "^6.0|^7.0|^8.0",
  1015. "php": "^7.2",
  1016. "psy/psysh": "^0.10.3",
  1017. "symfony/var-dumper": "^4.3|^5.0"
  1018. },
  1019. "require-dev": {
  1020. "mockery/mockery": "^1.3.1",
  1021. "phpunit/phpunit": "^8.4|^9.0"
  1022. },
  1023. "suggest": {
  1024. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1025. },
  1026. "type": "library",
  1027. "extra": {
  1028. "branch-alias": {
  1029. "dev-master": "2.x-dev"
  1030. },
  1031. "laravel": {
  1032. "providers": [
  1033. "Laravel\\Tinker\\TinkerServiceProvider"
  1034. ]
  1035. }
  1036. },
  1037. "autoload": {
  1038. "psr-4": {
  1039. "Laravel\\Tinker\\": "src/"
  1040. }
  1041. },
  1042. "notification-url": "https://packagist.org/downloads/",
  1043. "license": [
  1044. "MIT"
  1045. ],
  1046. "authors": [
  1047. {
  1048. "name": "Taylor Otwell",
  1049. "email": "taylor@laravel.com"
  1050. }
  1051. ],
  1052. "description": "Powerful REPL for the Laravel framework.",
  1053. "keywords": [
  1054. "REPL",
  1055. "Tinker",
  1056. "laravel",
  1057. "psysh"
  1058. ],
  1059. "time": "2020-04-07T15:01:31+00:00"
  1060. },
  1061. {
  1062. "name": "league/commonmark",
  1063. "version": "1.5.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/thephpleague/commonmark.git",
  1067. "reference": "fc33ca12575e98e57cdce7d5f38b2ca5335714b3"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/fc33ca12575e98e57cdce7d5f38b2ca5335714b3",
  1072. "reference": "fc33ca12575e98e57cdce7d5f38b2ca5335714b3",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "ext-mbstring": "*",
  1077. "php": "^7.1 || ^8.0"
  1078. },
  1079. "conflict": {
  1080. "scrutinizer/ocular": "1.7.*"
  1081. },
  1082. "require-dev": {
  1083. "cebe/markdown": "~1.0",
  1084. "commonmark/commonmark.js": "0.29.1",
  1085. "erusev/parsedown": "~1.0",
  1086. "ext-json": "*",
  1087. "github/gfm": "0.29.0",
  1088. "michelf/php-markdown": "~1.4",
  1089. "mikehaertl/php-shellcommand": "^1.4",
  1090. "phpstan/phpstan": "^0.12",
  1091. "phpunit/phpunit": "^7.5",
  1092. "scrutinizer/ocular": "^1.5",
  1093. "symfony/finder": "^4.2"
  1094. },
  1095. "bin": [
  1096. "bin/commonmark"
  1097. ],
  1098. "type": "library",
  1099. "autoload": {
  1100. "psr-4": {
  1101. "League\\CommonMark\\": "src"
  1102. }
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "BSD-3-Clause"
  1107. ],
  1108. "authors": [
  1109. {
  1110. "name": "Colin O'Dell",
  1111. "email": "colinodell@gmail.com",
  1112. "homepage": "https://www.colinodell.com",
  1113. "role": "Lead Developer"
  1114. }
  1115. ],
  1116. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1117. "homepage": "https://commonmark.thephpleague.com",
  1118. "keywords": [
  1119. "commonmark",
  1120. "flavored",
  1121. "gfm",
  1122. "github",
  1123. "github-flavored",
  1124. "markdown",
  1125. "md",
  1126. "parser"
  1127. ],
  1128. "time": "2020-06-21T20:50:13+00:00"
  1129. },
  1130. {
  1131. "name": "league/flysystem",
  1132. "version": "1.0.69",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/thephpleague/flysystem.git",
  1136. "reference": "7106f78428a344bc4f643c233a94e48795f10967"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967",
  1141. "reference": "7106f78428a344bc4f643c233a94e48795f10967",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "ext-fileinfo": "*",
  1146. "php": ">=5.5.9"
  1147. },
  1148. "conflict": {
  1149. "league/flysystem-sftp": "<1.0.6"
  1150. },
  1151. "require-dev": {
  1152. "phpspec/phpspec": "^3.4",
  1153. "phpunit/phpunit": "^5.7.26"
  1154. },
  1155. "suggest": {
  1156. "ext-fileinfo": "Required for MimeType",
  1157. "ext-ftp": "Allows you to use FTP server storage",
  1158. "ext-openssl": "Allows you to use FTPS server storage",
  1159. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1160. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1161. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1162. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1163. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1164. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1165. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1166. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1167. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1168. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1169. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1170. },
  1171. "type": "library",
  1172. "extra": {
  1173. "branch-alias": {
  1174. "dev-master": "1.1-dev"
  1175. }
  1176. },
  1177. "autoload": {
  1178. "psr-4": {
  1179. "League\\Flysystem\\": "src/"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "authors": [
  1187. {
  1188. "name": "Frank de Jonge",
  1189. "email": "info@frenky.net"
  1190. }
  1191. ],
  1192. "description": "Filesystem abstraction: Many filesystems, one API.",
  1193. "keywords": [
  1194. "Cloud Files",
  1195. "WebDAV",
  1196. "abstraction",
  1197. "aws",
  1198. "cloud",
  1199. "copy.com",
  1200. "dropbox",
  1201. "file systems",
  1202. "files",
  1203. "filesystem",
  1204. "filesystems",
  1205. "ftp",
  1206. "rackspace",
  1207. "remote",
  1208. "s3",
  1209. "sftp",
  1210. "storage"
  1211. ],
  1212. "time": "2020-05-18T15:13:39+00:00"
  1213. },
  1214. {
  1215. "name": "monolog/monolog",
  1216. "version": "2.1.0",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/Seldaek/monolog.git",
  1220. "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/38914429aac460e8e4616c8cb486ecb40ec90bb1",
  1225. "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "php": ">=7.2",
  1230. "psr/log": "^1.0.1"
  1231. },
  1232. "provide": {
  1233. "psr/log-implementation": "1.0.0"
  1234. },
  1235. "require-dev": {
  1236. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1237. "doctrine/couchdb": "~1.0@dev",
  1238. "elasticsearch/elasticsearch": "^6.0",
  1239. "graylog2/gelf-php": "^1.4.2",
  1240. "php-amqplib/php-amqplib": "~2.4",
  1241. "php-console/php-console": "^3.1.3",
  1242. "php-parallel-lint/php-parallel-lint": "^1.0",
  1243. "phpspec/prophecy": "^1.6.1",
  1244. "phpunit/phpunit": "^8.5",
  1245. "predis/predis": "^1.1",
  1246. "rollbar/rollbar": "^1.3",
  1247. "ruflin/elastica": ">=0.90 <3.0",
  1248. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1249. },
  1250. "suggest": {
  1251. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1252. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1253. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1254. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1255. "ext-mbstring": "Allow to work properly with unicode symbols",
  1256. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1257. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1258. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1259. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1260. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1261. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1262. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "2.x-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Monolog\\": "src/Monolog"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Jordi Boggiano",
  1282. "email": "j.boggiano@seld.be",
  1283. "homepage": "http://seld.be"
  1284. }
  1285. ],
  1286. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1287. "homepage": "http://github.com/Seldaek/monolog",
  1288. "keywords": [
  1289. "log",
  1290. "logging",
  1291. "psr-3"
  1292. ],
  1293. "time": "2020-05-22T08:12:19+00:00"
  1294. },
  1295. {
  1296. "name": "nesbot/carbon",
  1297. "version": "2.35.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/briannesbitt/Carbon.git",
  1301. "reference": "4b9bd835261ef23d36397a46a76b496a458305e5"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4b9bd835261ef23d36397a46a76b496a458305e5",
  1306. "reference": "4b9bd835261ef23d36397a46a76b496a458305e5",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "ext-json": "*",
  1311. "php": "^7.1.8 || ^8.0",
  1312. "symfony/polyfill-mbstring": "^1.0",
  1313. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1314. },
  1315. "require-dev": {
  1316. "doctrine/orm": "^2.7",
  1317. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1318. "kylekatarnls/multi-tester": "^1.1",
  1319. "phpmd/phpmd": "^2.8",
  1320. "phpstan/phpstan": "^0.11",
  1321. "phpunit/phpunit": "^7.5 || ^8.0",
  1322. "squizlabs/php_codesniffer": "^3.4"
  1323. },
  1324. "bin": [
  1325. "bin/carbon"
  1326. ],
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "2.x-dev",
  1331. "dev-3.x": "3.x-dev"
  1332. },
  1333. "laravel": {
  1334. "providers": [
  1335. "Carbon\\Laravel\\ServiceProvider"
  1336. ]
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Carbon\\": "src/Carbon/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Brian Nesbitt",
  1351. "email": "brian@nesbot.com",
  1352. "homepage": "http://nesbot.com"
  1353. },
  1354. {
  1355. "name": "kylekatarnls",
  1356. "homepage": "http://github.com/kylekatarnls"
  1357. }
  1358. ],
  1359. "description": "An API extension for DateTime that supports 281 different languages.",
  1360. "homepage": "http://carbon.nesbot.com",
  1361. "keywords": [
  1362. "date",
  1363. "datetime",
  1364. "time"
  1365. ],
  1366. "time": "2020-05-24T18:27:52+00:00"
  1367. },
  1368. {
  1369. "name": "nikic/php-parser",
  1370. "version": "v4.5.0",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/nikic/PHP-Parser.git",
  1374. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463",
  1379. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "ext-tokenizer": "*",
  1384. "php": ">=7.0"
  1385. },
  1386. "require-dev": {
  1387. "ircmaxell/php-yacc": "0.0.5",
  1388. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1389. },
  1390. "bin": [
  1391. "bin/php-parse"
  1392. ],
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "4.3-dev"
  1397. }
  1398. },
  1399. "autoload": {
  1400. "psr-4": {
  1401. "PhpParser\\": "lib/PhpParser"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "BSD-3-Clause"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Nikita Popov"
  1411. }
  1412. ],
  1413. "description": "A PHP parser written in PHP",
  1414. "keywords": [
  1415. "parser",
  1416. "php"
  1417. ],
  1418. "time": "2020-06-03T07:24:19+00:00"
  1419. },
  1420. {
  1421. "name": "opis/closure",
  1422. "version": "3.5.5",
  1423. "source": {
  1424. "type": "git",
  1425. "url": "https://github.com/opis/closure.git",
  1426. "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c"
  1427. },
  1428. "dist": {
  1429. "type": "zip",
  1430. "url": "https://api.github.com/repos/opis/closure/zipball/dec9fc5ecfca93f45cd6121f8e6f14457dff372c",
  1431. "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c",
  1432. "shasum": ""
  1433. },
  1434. "require": {
  1435. "php": "^5.4 || ^7.0"
  1436. },
  1437. "require-dev": {
  1438. "jeremeamia/superclosure": "^2.0",
  1439. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "3.5.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-4": {
  1449. "Opis\\Closure\\": "src/"
  1450. },
  1451. "files": [
  1452. "functions.php"
  1453. ]
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Marius Sarca",
  1462. "email": "marius.sarca@gmail.com"
  1463. },
  1464. {
  1465. "name": "Sorin Sarca",
  1466. "email": "sarca_sorin@hotmail.com"
  1467. }
  1468. ],
  1469. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1470. "homepage": "https://opis.io/closure",
  1471. "keywords": [
  1472. "anonymous functions",
  1473. "closure",
  1474. "function",
  1475. "serializable",
  1476. "serialization",
  1477. "serialize"
  1478. ],
  1479. "time": "2020-06-17T14:59:55+00:00"
  1480. },
  1481. {
  1482. "name": "phenx/php-font-lib",
  1483. "version": "0.5.2",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://github.com/PhenX/php-font-lib.git",
  1487. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  1492. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  1493. "shasum": ""
  1494. },
  1495. "require-dev": {
  1496. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  1497. },
  1498. "type": "library",
  1499. "autoload": {
  1500. "psr-4": {
  1501. "FontLib\\": "src/FontLib"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "LGPL-3.0"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Fabien Ménager",
  1511. "email": "fabien.menager@gmail.com"
  1512. }
  1513. ],
  1514. "description": "A library to read, parse, export and make subsets of different types of font files.",
  1515. "homepage": "https://github.com/PhenX/php-font-lib",
  1516. "support": {
  1517. "issues": "https://github.com/PhenX/php-font-lib/issues",
  1518. "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
  1519. },
  1520. "time": "2020-03-08T15:31:32+00:00"
  1521. },
  1522. {
  1523. "name": "phenx/php-svg-lib",
  1524. "version": "v0.3.3",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/PhenX/php-svg-lib.git",
  1528. "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
  1533. "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
  1534. "shasum": ""
  1535. },
  1536. "require": {
  1537. "sabberworm/php-css-parser": "^8.3"
  1538. },
  1539. "require-dev": {
  1540. "phpunit/phpunit": "^5.5|^6.5"
  1541. },
  1542. "type": "library",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Svg\\": "src/Svg"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "LGPL-3.0"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Fabien Ménager",
  1555. "email": "fabien.menager@gmail.com"
  1556. }
  1557. ],
  1558. "description": "A library to read, parse and export to PDF SVG files.",
  1559. "homepage": "https://github.com/PhenX/php-svg-lib",
  1560. "support": {
  1561. "issues": "https://github.com/PhenX/php-svg-lib/issues",
  1562. "source": "https://github.com/PhenX/php-svg-lib/tree/master"
  1563. },
  1564. "time": "2019-09-11T20:02:13+00:00"
  1565. },
  1566. {
  1567. "name": "phpoption/phpoption",
  1568. "version": "1.7.4",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/schmittjoh/php-option.git",
  1572. "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3",
  1577. "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": "^5.5.9 || ^7.0 || ^8.0"
  1582. },
  1583. "require-dev": {
  1584. "bamarni/composer-bin-plugin": "^1.3",
  1585. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  1586. },
  1587. "type": "library",
  1588. "extra": {
  1589. "branch-alias": {
  1590. "dev-master": "1.7-dev"
  1591. }
  1592. },
  1593. "autoload": {
  1594. "psr-4": {
  1595. "PhpOption\\": "src/PhpOption/"
  1596. }
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "Apache-2.0"
  1601. ],
  1602. "authors": [
  1603. {
  1604. "name": "Johannes M. Schmitt",
  1605. "email": "schmittjoh@gmail.com"
  1606. },
  1607. {
  1608. "name": "Graham Campbell",
  1609. "email": "graham@alt-three.com"
  1610. }
  1611. ],
  1612. "description": "Option Type for PHP",
  1613. "keywords": [
  1614. "language",
  1615. "option",
  1616. "php",
  1617. "type"
  1618. ],
  1619. "time": "2020-06-07T10:40:07+00:00"
  1620. },
  1621. {
  1622. "name": "psr/container",
  1623. "version": "1.0.0",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/php-fig/container.git",
  1627. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1632. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1633. "shasum": ""
  1634. },
  1635. "require": {
  1636. "php": ">=5.3.0"
  1637. },
  1638. "type": "library",
  1639. "extra": {
  1640. "branch-alias": {
  1641. "dev-master": "1.0.x-dev"
  1642. }
  1643. },
  1644. "autoload": {
  1645. "psr-4": {
  1646. "Psr\\Container\\": "src/"
  1647. }
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "PHP-FIG",
  1656. "homepage": "http://www.php-fig.org/"
  1657. }
  1658. ],
  1659. "description": "Common Container Interface (PHP FIG PSR-11)",
  1660. "homepage": "https://github.com/php-fig/container",
  1661. "keywords": [
  1662. "PSR-11",
  1663. "container",
  1664. "container-interface",
  1665. "container-interop",
  1666. "psr"
  1667. ],
  1668. "time": "2017-02-14T16:28:37+00:00"
  1669. },
  1670. {
  1671. "name": "psr/event-dispatcher",
  1672. "version": "1.0.0",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/php-fig/event-dispatcher.git",
  1676. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1681. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "php": ">=7.2.0"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "1.0.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Psr\\EventDispatcher\\": "src/"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "PHP-FIG",
  1705. "homepage": "http://www.php-fig.org/"
  1706. }
  1707. ],
  1708. "description": "Standard interfaces for event handling.",
  1709. "keywords": [
  1710. "events",
  1711. "psr",
  1712. "psr-14"
  1713. ],
  1714. "time": "2019-01-08T18:20:26+00:00"
  1715. },
  1716. {
  1717. "name": "psr/http-message",
  1718. "version": "1.0.1",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/php-fig/http-message.git",
  1722. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1727. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": ">=5.3.0"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.0.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Psr\\Http\\Message\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "PHP-FIG",
  1751. "homepage": "http://www.php-fig.org/"
  1752. }
  1753. ],
  1754. "description": "Common interface for HTTP messages",
  1755. "homepage": "https://github.com/php-fig/http-message",
  1756. "keywords": [
  1757. "http",
  1758. "http-message",
  1759. "psr",
  1760. "psr-7",
  1761. "request",
  1762. "response"
  1763. ],
  1764. "time": "2016-08-06T14:39:51+00:00"
  1765. },
  1766. {
  1767. "name": "psr/log",
  1768. "version": "1.1.3",
  1769. "source": {
  1770. "type": "git",
  1771. "url": "https://github.com/php-fig/log.git",
  1772. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1773. },
  1774. "dist": {
  1775. "type": "zip",
  1776. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1777. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1778. "shasum": ""
  1779. },
  1780. "require": {
  1781. "php": ">=5.3.0"
  1782. },
  1783. "type": "library",
  1784. "extra": {
  1785. "branch-alias": {
  1786. "dev-master": "1.1.x-dev"
  1787. }
  1788. },
  1789. "autoload": {
  1790. "psr-4": {
  1791. "Psr\\Log\\": "Psr/Log/"
  1792. }
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "authors": [
  1799. {
  1800. "name": "PHP-FIG",
  1801. "homepage": "http://www.php-fig.org/"
  1802. }
  1803. ],
  1804. "description": "Common interface for logging libraries",
  1805. "homepage": "https://github.com/php-fig/log",
  1806. "keywords": [
  1807. "log",
  1808. "psr",
  1809. "psr-3"
  1810. ],
  1811. "time": "2020-03-23T09:12:05+00:00"
  1812. },
  1813. {
  1814. "name": "psr/simple-cache",
  1815. "version": "1.0.1",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/php-fig/simple-cache.git",
  1819. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1824. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": ">=5.3.0"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "1.0.x-dev"
  1834. }
  1835. },
  1836. "autoload": {
  1837. "psr-4": {
  1838. "Psr\\SimpleCache\\": "src/"
  1839. }
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "MIT"
  1844. ],
  1845. "authors": [
  1846. {
  1847. "name": "PHP-FIG",
  1848. "homepage": "http://www.php-fig.org/"
  1849. }
  1850. ],
  1851. "description": "Common interfaces for simple caching",
  1852. "keywords": [
  1853. "cache",
  1854. "caching",
  1855. "psr",
  1856. "psr-16",
  1857. "simple-cache"
  1858. ],
  1859. "time": "2017-10-23T01:57:42+00:00"
  1860. },
  1861. {
  1862. "name": "psy/psysh",
  1863. "version": "v0.10.4",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/bobthecow/psysh.git",
  1867. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  1872. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "dnoegel/php-xdg-base-dir": "0.1.*",
  1877. "ext-json": "*",
  1878. "ext-tokenizer": "*",
  1879. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  1880. "php": "^8.0 || ^7.0 || ^5.5.9",
  1881. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  1882. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  1883. },
  1884. "require-dev": {
  1885. "bamarni/composer-bin-plugin": "^1.2",
  1886. "hoa/console": "3.17.*"
  1887. },
  1888. "suggest": {
  1889. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1890. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1891. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1892. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1893. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1894. },
  1895. "bin": [
  1896. "bin/psysh"
  1897. ],
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "0.10.x-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "files": [
  1906. "src/functions.php"
  1907. ],
  1908. "psr-4": {
  1909. "Psy\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Justin Hileman",
  1919. "email": "justin@justinhileman.info",
  1920. "homepage": "http://justinhileman.com"
  1921. }
  1922. ],
  1923. "description": "An interactive shell for modern PHP.",
  1924. "homepage": "http://psysh.org",
  1925. "keywords": [
  1926. "REPL",
  1927. "console",
  1928. "interactive",
  1929. "shell"
  1930. ],
  1931. "time": "2020-05-03T19:32:03+00:00"
  1932. },
  1933. {
  1934. "name": "ralouphie/getallheaders",
  1935. "version": "3.0.3",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/ralouphie/getallheaders.git",
  1939. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1944. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "php": ">=5.6"
  1949. },
  1950. "require-dev": {
  1951. "php-coveralls/php-coveralls": "^2.1",
  1952. "phpunit/phpunit": "^5 || ^6.5"
  1953. },
  1954. "type": "library",
  1955. "autoload": {
  1956. "files": [
  1957. "src/getallheaders.php"
  1958. ]
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Ralph Khattar",
  1967. "email": "ralph.khattar@gmail.com"
  1968. }
  1969. ],
  1970. "description": "A polyfill for getallheaders.",
  1971. "time": "2019-03-08T08:55:37+00:00"
  1972. },
  1973. {
  1974. "name": "ramsey/collection",
  1975. "version": "1.0.1",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://github.com/ramsey/collection.git",
  1979. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://api.github.com/repos/ramsey/collection/zipball/925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  1984. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  1985. "shasum": ""
  1986. },
  1987. "require": {
  1988. "php": "^7.2"
  1989. },
  1990. "require-dev": {
  1991. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1992. "fzaninotto/faker": "^1.5",
  1993. "jakub-onderka/php-parallel-lint": "^1",
  1994. "jangregor/phpstan-prophecy": "^0.6",
  1995. "mockery/mockery": "^1.3",
  1996. "phpstan/extension-installer": "^1",
  1997. "phpstan/phpdoc-parser": "0.4.1",
  1998. "phpstan/phpstan": "^0.12",
  1999. "phpstan/phpstan-mockery": "^0.12",
  2000. "phpstan/phpstan-phpunit": "^0.12",
  2001. "phpunit/phpunit": "^8.5",
  2002. "slevomat/coding-standard": "^6.0",
  2003. "squizlabs/php_codesniffer": "^3.5"
  2004. },
  2005. "type": "library",
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Ramsey\\Collection\\": "src/"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Ben Ramsey",
  2018. "email": "ben@benramsey.com",
  2019. "homepage": "https://benramsey.com"
  2020. }
  2021. ],
  2022. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2023. "homepage": "https://github.com/ramsey/collection",
  2024. "keywords": [
  2025. "array",
  2026. "collection",
  2027. "hash",
  2028. "map",
  2029. "queue",
  2030. "set"
  2031. ],
  2032. "time": "2020-01-05T00:22:59+00:00"
  2033. },
  2034. {
  2035. "name": "ramsey/uuid",
  2036. "version": "4.0.1",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/ramsey/uuid.git",
  2040. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  2045. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "brick/math": "^0.8",
  2050. "ext-json": "*",
  2051. "php": "^7.2 || ^8",
  2052. "ramsey/collection": "^1.0",
  2053. "symfony/polyfill-ctype": "^1.8"
  2054. },
  2055. "replace": {
  2056. "rhumsaa/uuid": "self.version"
  2057. },
  2058. "require-dev": {
  2059. "codeception/aspect-mock": "^3",
  2060. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
  2061. "doctrine/annotations": "^1.8",
  2062. "goaop/framework": "^2",
  2063. "mockery/mockery": "^1.3",
  2064. "moontoast/math": "^1.1",
  2065. "paragonie/random-lib": "^2",
  2066. "php-mock/php-mock-mockery": "^1.3",
  2067. "php-mock/php-mock-phpunit": "^2.5",
  2068. "php-parallel-lint/php-parallel-lint": "^1.1",
  2069. "phpstan/extension-installer": "^1.0",
  2070. "phpstan/phpdoc-parser": "0.4.3",
  2071. "phpstan/phpstan": "^0.12",
  2072. "phpstan/phpstan-mockery": "^0.12",
  2073. "phpstan/phpstan-phpunit": "^0.12",
  2074. "phpunit/phpunit": "^8.5",
  2075. "psy/psysh": "^0.10.0",
  2076. "slevomat/coding-standard": "^6.0",
  2077. "squizlabs/php_codesniffer": "^3.5",
  2078. "vimeo/psalm": "3.9.4"
  2079. },
  2080. "suggest": {
  2081. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2082. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2083. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2084. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2085. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2086. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2087. },
  2088. "type": "library",
  2089. "extra": {
  2090. "branch-alias": {
  2091. "dev-master": "4.x-dev"
  2092. }
  2093. },
  2094. "autoload": {
  2095. "psr-4": {
  2096. "Ramsey\\Uuid\\": "src/"
  2097. },
  2098. "files": [
  2099. "src/functions.php"
  2100. ]
  2101. },
  2102. "notification-url": "https://packagist.org/downloads/",
  2103. "license": [
  2104. "MIT"
  2105. ],
  2106. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2107. "homepage": "https://github.com/ramsey/uuid",
  2108. "keywords": [
  2109. "guid",
  2110. "identifier",
  2111. "uuid"
  2112. ],
  2113. "time": "2020-03-29T20:13:32+00:00"
  2114. },
  2115. {
  2116. "name": "sabberworm/php-css-parser",
  2117. "version": "8.3.1",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  2121. "reference": "d217848e1396ef962fb1997cf3e2421acba7f796"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/d217848e1396ef962fb1997cf3e2421acba7f796",
  2126. "reference": "d217848e1396ef962fb1997cf3e2421acba7f796",
  2127. "shasum": ""
  2128. },
  2129. "require": {
  2130. "php": ">=5.3.2"
  2131. },
  2132. "require-dev": {
  2133. "codacy/coverage": "^1.4",
  2134. "phpunit/phpunit": "~4.8"
  2135. },
  2136. "type": "library",
  2137. "autoload": {
  2138. "psr-0": {
  2139. "Sabberworm\\CSS": "lib/"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "MIT"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Raphael Schweikert"
  2149. }
  2150. ],
  2151. "description": "Parser for CSS Files written in PHP",
  2152. "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  2153. "keywords": [
  2154. "css",
  2155. "parser",
  2156. "stylesheet"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  2160. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1"
  2161. },
  2162. "time": "2020-06-01T09:10:00+00:00"
  2163. },
  2164. {
  2165. "name": "swiftmailer/swiftmailer",
  2166. "version": "v6.2.3",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2170. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2175. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "egulias/email-validator": "~2.0",
  2180. "php": ">=7.0.0",
  2181. "symfony/polyfill-iconv": "^1.0",
  2182. "symfony/polyfill-intl-idn": "^1.10",
  2183. "symfony/polyfill-mbstring": "^1.0"
  2184. },
  2185. "require-dev": {
  2186. "mockery/mockery": "~0.9.1",
  2187. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2188. },
  2189. "suggest": {
  2190. "ext-intl": "Needed to support internationalized email addresses",
  2191. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2192. },
  2193. "type": "library",
  2194. "extra": {
  2195. "branch-alias": {
  2196. "dev-master": "6.2-dev"
  2197. }
  2198. },
  2199. "autoload": {
  2200. "files": [
  2201. "lib/swift_required.php"
  2202. ]
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Chris Corbyn"
  2211. },
  2212. {
  2213. "name": "Fabien Potencier",
  2214. "email": "fabien@symfony.com"
  2215. }
  2216. ],
  2217. "description": "Swiftmailer, free feature-rich PHP mailer",
  2218. "homepage": "https://swiftmailer.symfony.com",
  2219. "keywords": [
  2220. "email",
  2221. "mail",
  2222. "mailer"
  2223. ],
  2224. "time": "2019-11-12T09:31:26+00:00"
  2225. },
  2226. {
  2227. "name": "symfony/console",
  2228. "version": "v5.1.2",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/symfony/console.git",
  2232. "reference": "34ac555a3627e324b660e318daa07572e1140123"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/symfony/console/zipball/34ac555a3627e324b660e318daa07572e1140123",
  2237. "reference": "34ac555a3627e324b660e318daa07572e1140123",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "php": ">=7.2.5",
  2242. "symfony/polyfill-mbstring": "~1.0",
  2243. "symfony/polyfill-php73": "^1.8",
  2244. "symfony/polyfill-php80": "^1.15",
  2245. "symfony/service-contracts": "^1.1|^2",
  2246. "symfony/string": "^5.1"
  2247. },
  2248. "conflict": {
  2249. "symfony/dependency-injection": "<4.4",
  2250. "symfony/dotenv": "<5.1",
  2251. "symfony/event-dispatcher": "<4.4",
  2252. "symfony/lock": "<4.4",
  2253. "symfony/process": "<4.4"
  2254. },
  2255. "provide": {
  2256. "psr/log-implementation": "1.0"
  2257. },
  2258. "require-dev": {
  2259. "psr/log": "~1.0",
  2260. "symfony/config": "^4.4|^5.0",
  2261. "symfony/dependency-injection": "^4.4|^5.0",
  2262. "symfony/event-dispatcher": "^4.4|^5.0",
  2263. "symfony/lock": "^4.4|^5.0",
  2264. "symfony/process": "^4.4|^5.0",
  2265. "symfony/var-dumper": "^4.4|^5.0"
  2266. },
  2267. "suggest": {
  2268. "psr/log": "For using the console logger",
  2269. "symfony/event-dispatcher": "",
  2270. "symfony/lock": "",
  2271. "symfony/process": ""
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "5.1-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Symfony\\Component\\Console\\": ""
  2282. },
  2283. "exclude-from-classmap": [
  2284. "/Tests/"
  2285. ]
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "Fabien Potencier",
  2294. "email": "fabien@symfony.com"
  2295. },
  2296. {
  2297. "name": "Symfony Community",
  2298. "homepage": "https://symfony.com/contributors"
  2299. }
  2300. ],
  2301. "description": "Symfony Console Component",
  2302. "homepage": "https://symfony.com",
  2303. "time": "2020-06-15T12:59:21+00:00"
  2304. },
  2305. {
  2306. "name": "symfony/css-selector",
  2307. "version": "v5.1.2",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/symfony/css-selector.git",
  2311. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  2316. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": ">=7.2.5"
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-master": "5.1-dev"
  2326. }
  2327. },
  2328. "autoload": {
  2329. "psr-4": {
  2330. "Symfony\\Component\\CssSelector\\": ""
  2331. },
  2332. "exclude-from-classmap": [
  2333. "/Tests/"
  2334. ]
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Fabien Potencier",
  2343. "email": "fabien@symfony.com"
  2344. },
  2345. {
  2346. "name": "Jean-François Simon",
  2347. "email": "jeanfrancois.simon@sensiolabs.com"
  2348. },
  2349. {
  2350. "name": "Symfony Community",
  2351. "homepage": "https://symfony.com/contributors"
  2352. }
  2353. ],
  2354. "description": "Symfony CssSelector Component",
  2355. "homepage": "https://symfony.com",
  2356. "time": "2020-05-20T17:43:50+00:00"
  2357. },
  2358. {
  2359. "name": "symfony/deprecation-contracts",
  2360. "version": "v2.1.2",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/symfony/deprecation-contracts.git",
  2364. "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
  2369. "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
  2370. "shasum": ""
  2371. },
  2372. "require": {
  2373. "php": ">=7.1"
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-master": "2.1-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "files": [
  2383. "function.php"
  2384. ]
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Nicolas Grekas",
  2393. "email": "p@tchwork.com"
  2394. },
  2395. {
  2396. "name": "Symfony Community",
  2397. "homepage": "https://symfony.com/contributors"
  2398. }
  2399. ],
  2400. "description": "A generic function and convention to trigger deprecation notices",
  2401. "homepage": "https://symfony.com",
  2402. "time": "2020-05-27T08:34:37+00:00"
  2403. },
  2404. {
  2405. "name": "symfony/error-handler",
  2406. "version": "v5.1.2",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://github.com/symfony/error-handler.git",
  2410. "reference": "7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://api.github.com/repos/symfony/error-handler/zipball/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896",
  2415. "reference": "7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896",
  2416. "shasum": ""
  2417. },
  2418. "require": {
  2419. "php": ">=7.2.5",
  2420. "psr/log": "^1.0",
  2421. "symfony/polyfill-php80": "^1.15",
  2422. "symfony/var-dumper": "^4.4|^5.0"
  2423. },
  2424. "require-dev": {
  2425. "symfony/deprecation-contracts": "^2.1",
  2426. "symfony/http-kernel": "^4.4|^5.0",
  2427. "symfony/serializer": "^4.4|^5.0"
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "5.1-dev"
  2433. }
  2434. },
  2435. "autoload": {
  2436. "psr-4": {
  2437. "Symfony\\Component\\ErrorHandler\\": ""
  2438. },
  2439. "exclude-from-classmap": [
  2440. "/Tests/"
  2441. ]
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Fabien Potencier",
  2450. "email": "fabien@symfony.com"
  2451. },
  2452. {
  2453. "name": "Symfony Community",
  2454. "homepage": "https://symfony.com/contributors"
  2455. }
  2456. ],
  2457. "description": "Symfony ErrorHandler Component",
  2458. "homepage": "https://symfony.com",
  2459. "time": "2020-05-30T20:35:19+00:00"
  2460. },
  2461. {
  2462. "name": "symfony/event-dispatcher",
  2463. "version": "v5.1.2",
  2464. "source": {
  2465. "type": "git",
  2466. "url": "https://github.com/symfony/event-dispatcher.git",
  2467. "reference": "cc0d059e2e997e79ca34125a52f3e33de4424ac7"
  2468. },
  2469. "dist": {
  2470. "type": "zip",
  2471. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/cc0d059e2e997e79ca34125a52f3e33de4424ac7",
  2472. "reference": "cc0d059e2e997e79ca34125a52f3e33de4424ac7",
  2473. "shasum": ""
  2474. },
  2475. "require": {
  2476. "php": ">=7.2.5",
  2477. "symfony/deprecation-contracts": "^2.1",
  2478. "symfony/event-dispatcher-contracts": "^2",
  2479. "symfony/polyfill-php80": "^1.15"
  2480. },
  2481. "conflict": {
  2482. "symfony/dependency-injection": "<4.4"
  2483. },
  2484. "provide": {
  2485. "psr/event-dispatcher-implementation": "1.0",
  2486. "symfony/event-dispatcher-implementation": "2.0"
  2487. },
  2488. "require-dev": {
  2489. "psr/log": "~1.0",
  2490. "symfony/config": "^4.4|^5.0",
  2491. "symfony/dependency-injection": "^4.4|^5.0",
  2492. "symfony/expression-language": "^4.4|^5.0",
  2493. "symfony/http-foundation": "^4.4|^5.0",
  2494. "symfony/service-contracts": "^1.1|^2",
  2495. "symfony/stopwatch": "^4.4|^5.0"
  2496. },
  2497. "suggest": {
  2498. "symfony/dependency-injection": "",
  2499. "symfony/http-kernel": ""
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "5.1-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "psr-4": {
  2509. "Symfony\\Component\\EventDispatcher\\": ""
  2510. },
  2511. "exclude-from-classmap": [
  2512. "/Tests/"
  2513. ]
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Fabien Potencier",
  2522. "email": "fabien@symfony.com"
  2523. },
  2524. {
  2525. "name": "Symfony Community",
  2526. "homepage": "https://symfony.com/contributors"
  2527. }
  2528. ],
  2529. "description": "Symfony EventDispatcher Component",
  2530. "homepage": "https://symfony.com",
  2531. "time": "2020-05-20T17:43:50+00:00"
  2532. },
  2533. {
  2534. "name": "symfony/event-dispatcher-contracts",
  2535. "version": "v2.1.2",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2539. "reference": "405952c4e90941a17e52ef7489a2bd94870bb290"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/405952c4e90941a17e52ef7489a2bd94870bb290",
  2544. "reference": "405952c4e90941a17e52ef7489a2bd94870bb290",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "php": ">=7.2.5",
  2549. "psr/event-dispatcher": "^1"
  2550. },
  2551. "suggest": {
  2552. "symfony/event-dispatcher-implementation": ""
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "2.1-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Symfony\\Contracts\\EventDispatcher\\": ""
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "Nicolas Grekas",
  2572. "email": "p@tchwork.com"
  2573. },
  2574. {
  2575. "name": "Symfony Community",
  2576. "homepage": "https://symfony.com/contributors"
  2577. }
  2578. ],
  2579. "description": "Generic abstractions related to dispatching event",
  2580. "homepage": "https://symfony.com",
  2581. "keywords": [
  2582. "abstractions",
  2583. "contracts",
  2584. "decoupling",
  2585. "interfaces",
  2586. "interoperability",
  2587. "standards"
  2588. ],
  2589. "time": "2020-05-20T17:43:50+00:00"
  2590. },
  2591. {
  2592. "name": "symfony/finder",
  2593. "version": "v5.1.2",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/symfony/finder.git",
  2597. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  2602. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  2603. "shasum": ""
  2604. },
  2605. "require": {
  2606. "php": ">=7.2.5"
  2607. },
  2608. "type": "library",
  2609. "extra": {
  2610. "branch-alias": {
  2611. "dev-master": "5.1-dev"
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "Symfony\\Component\\Finder\\": ""
  2617. },
  2618. "exclude-from-classmap": [
  2619. "/Tests/"
  2620. ]
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Fabien Potencier",
  2629. "email": "fabien@symfony.com"
  2630. },
  2631. {
  2632. "name": "Symfony Community",
  2633. "homepage": "https://symfony.com/contributors"
  2634. }
  2635. ],
  2636. "description": "Symfony Finder Component",
  2637. "homepage": "https://symfony.com",
  2638. "time": "2020-05-20T17:43:50+00:00"
  2639. },
  2640. {
  2641. "name": "symfony/http-foundation",
  2642. "version": "v5.1.2",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://github.com/symfony/http-foundation.git",
  2646. "reference": "f93055171b847915225bd5b0a5792888419d8d75"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f93055171b847915225bd5b0a5792888419d8d75",
  2651. "reference": "f93055171b847915225bd5b0a5792888419d8d75",
  2652. "shasum": ""
  2653. },
  2654. "require": {
  2655. "php": ">=7.2.5",
  2656. "symfony/deprecation-contracts": "^2.1",
  2657. "symfony/polyfill-mbstring": "~1.1",
  2658. "symfony/polyfill-php80": "^1.15"
  2659. },
  2660. "require-dev": {
  2661. "predis/predis": "~1.0",
  2662. "symfony/cache": "^4.4|^5.0",
  2663. "symfony/expression-language": "^4.4|^5.0",
  2664. "symfony/mime": "^4.4|^5.0"
  2665. },
  2666. "suggest": {
  2667. "symfony/mime": "To use the file extension guesser"
  2668. },
  2669. "type": "library",
  2670. "extra": {
  2671. "branch-alias": {
  2672. "dev-master": "5.1-dev"
  2673. }
  2674. },
  2675. "autoload": {
  2676. "psr-4": {
  2677. "Symfony\\Component\\HttpFoundation\\": ""
  2678. },
  2679. "exclude-from-classmap": [
  2680. "/Tests/"
  2681. ]
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Fabien Potencier",
  2690. "email": "fabien@symfony.com"
  2691. },
  2692. {
  2693. "name": "Symfony Community",
  2694. "homepage": "https://symfony.com/contributors"
  2695. }
  2696. ],
  2697. "description": "Symfony HttpFoundation Component",
  2698. "homepage": "https://symfony.com",
  2699. "time": "2020-06-15T06:52:54+00:00"
  2700. },
  2701. {
  2702. "name": "symfony/http-kernel",
  2703. "version": "v5.1.2",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/symfony/http-kernel.git",
  2707. "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a18c27ace1ef344ffcb129a5b089bad7643b387a",
  2712. "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": ">=7.2.5",
  2717. "psr/log": "~1.0",
  2718. "symfony/deprecation-contracts": "^2.1",
  2719. "symfony/error-handler": "^4.4|^5.0",
  2720. "symfony/event-dispatcher": "^5.0",
  2721. "symfony/http-foundation": "^4.4|^5.0",
  2722. "symfony/polyfill-ctype": "^1.8",
  2723. "symfony/polyfill-php73": "^1.9",
  2724. "symfony/polyfill-php80": "^1.15"
  2725. },
  2726. "conflict": {
  2727. "symfony/browser-kit": "<4.4",
  2728. "symfony/cache": "<5.0",
  2729. "symfony/config": "<5.0",
  2730. "symfony/console": "<4.4",
  2731. "symfony/dependency-injection": "<4.4",
  2732. "symfony/doctrine-bridge": "<5.0",
  2733. "symfony/form": "<5.0",
  2734. "symfony/http-client": "<5.0",
  2735. "symfony/mailer": "<5.0",
  2736. "symfony/messenger": "<5.0",
  2737. "symfony/translation": "<5.0",
  2738. "symfony/twig-bridge": "<5.0",
  2739. "symfony/validator": "<5.0",
  2740. "twig/twig": "<2.4"
  2741. },
  2742. "provide": {
  2743. "psr/log-implementation": "1.0"
  2744. },
  2745. "require-dev": {
  2746. "psr/cache": "~1.0",
  2747. "symfony/browser-kit": "^4.4|^5.0",
  2748. "symfony/config": "^5.0",
  2749. "symfony/console": "^4.4|^5.0",
  2750. "symfony/css-selector": "^4.4|^5.0",
  2751. "symfony/dependency-injection": "^4.4|^5.0",
  2752. "symfony/dom-crawler": "^4.4|^5.0",
  2753. "symfony/expression-language": "^4.4|^5.0",
  2754. "symfony/finder": "^4.4|^5.0",
  2755. "symfony/process": "^4.4|^5.0",
  2756. "symfony/routing": "^4.4|^5.0",
  2757. "symfony/stopwatch": "^4.4|^5.0",
  2758. "symfony/translation": "^4.4|^5.0",
  2759. "symfony/translation-contracts": "^1.1|^2",
  2760. "twig/twig": "^2.4|^3.0"
  2761. },
  2762. "suggest": {
  2763. "symfony/browser-kit": "",
  2764. "symfony/config": "",
  2765. "symfony/console": "",
  2766. "symfony/dependency-injection": ""
  2767. },
  2768. "type": "library",
  2769. "extra": {
  2770. "branch-alias": {
  2771. "dev-master": "5.1-dev"
  2772. }
  2773. },
  2774. "autoload": {
  2775. "psr-4": {
  2776. "Symfony\\Component\\HttpKernel\\": ""
  2777. },
  2778. "exclude-from-classmap": [
  2779. "/Tests/"
  2780. ]
  2781. },
  2782. "notification-url": "https://packagist.org/downloads/",
  2783. "license": [
  2784. "MIT"
  2785. ],
  2786. "authors": [
  2787. {
  2788. "name": "Fabien Potencier",
  2789. "email": "fabien@symfony.com"
  2790. },
  2791. {
  2792. "name": "Symfony Community",
  2793. "homepage": "https://symfony.com/contributors"
  2794. }
  2795. ],
  2796. "description": "Symfony HttpKernel Component",
  2797. "homepage": "https://symfony.com",
  2798. "time": "2020-06-15T13:51:38+00:00"
  2799. },
  2800. {
  2801. "name": "symfony/mime",
  2802. "version": "v5.1.2",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/symfony/mime.git",
  2806. "reference": "c0c418f05e727606e85b482a8591519c4712cf45"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/symfony/mime/zipball/c0c418f05e727606e85b482a8591519c4712cf45",
  2811. "reference": "c0c418f05e727606e85b482a8591519c4712cf45",
  2812. "shasum": ""
  2813. },
  2814. "require": {
  2815. "php": ">=7.2.5",
  2816. "symfony/polyfill-intl-idn": "^1.10",
  2817. "symfony/polyfill-mbstring": "^1.0",
  2818. "symfony/polyfill-php80": "^1.15"
  2819. },
  2820. "conflict": {
  2821. "symfony/mailer": "<4.4"
  2822. },
  2823. "require-dev": {
  2824. "egulias/email-validator": "^2.1.10",
  2825. "symfony/dependency-injection": "^4.4|^5.0"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-master": "5.1-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "Symfony\\Component\\Mime\\": ""
  2836. },
  2837. "exclude-from-classmap": [
  2838. "/Tests/"
  2839. ]
  2840. },
  2841. "notification-url": "https://packagist.org/downloads/",
  2842. "license": [
  2843. "MIT"
  2844. ],
  2845. "authors": [
  2846. {
  2847. "name": "Fabien Potencier",
  2848. "email": "fabien@symfony.com"
  2849. },
  2850. {
  2851. "name": "Symfony Community",
  2852. "homepage": "https://symfony.com/contributors"
  2853. }
  2854. ],
  2855. "description": "A library to manipulate MIME messages",
  2856. "homepage": "https://symfony.com",
  2857. "keywords": [
  2858. "mime",
  2859. "mime-type"
  2860. ],
  2861. "time": "2020-06-09T15:07:35+00:00"
  2862. },
  2863. {
  2864. "name": "symfony/polyfill-ctype",
  2865. "version": "v1.17.1",
  2866. "source": {
  2867. "type": "git",
  2868. "url": "https://github.com/symfony/polyfill-ctype.git",
  2869. "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d"
  2870. },
  2871. "dist": {
  2872. "type": "zip",
  2873. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d",
  2874. "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d",
  2875. "shasum": ""
  2876. },
  2877. "require": {
  2878. "php": ">=5.3.3"
  2879. },
  2880. "suggest": {
  2881. "ext-ctype": "For best performance"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "1.17-dev"
  2887. },
  2888. "thanks": {
  2889. "name": "symfony/polyfill",
  2890. "url": "https://github.com/symfony/polyfill"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Symfony\\Polyfill\\Ctype\\": ""
  2896. },
  2897. "files": [
  2898. "bootstrap.php"
  2899. ]
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "MIT"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "Gert de Pagter",
  2908. "email": "BackEndTea@gmail.com"
  2909. },
  2910. {
  2911. "name": "Symfony Community",
  2912. "homepage": "https://symfony.com/contributors"
  2913. }
  2914. ],
  2915. "description": "Symfony polyfill for ctype functions",
  2916. "homepage": "https://symfony.com",
  2917. "keywords": [
  2918. "compatibility",
  2919. "ctype",
  2920. "polyfill",
  2921. "portable"
  2922. ],
  2923. "time": "2020-06-06T08:46:27+00:00"
  2924. },
  2925. {
  2926. "name": "symfony/polyfill-iconv",
  2927. "version": "v1.17.1",
  2928. "source": {
  2929. "type": "git",
  2930. "url": "https://github.com/symfony/polyfill-iconv.git",
  2931. "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035"
  2932. },
  2933. "dist": {
  2934. "type": "zip",
  2935. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ba6c9c18db36235b859cc29b8372d1c01298c035",
  2936. "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035",
  2937. "shasum": ""
  2938. },
  2939. "require": {
  2940. "php": ">=5.3.3"
  2941. },
  2942. "suggest": {
  2943. "ext-iconv": "For best performance"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "branch-alias": {
  2948. "dev-master": "1.17-dev"
  2949. },
  2950. "thanks": {
  2951. "name": "symfony/polyfill",
  2952. "url": "https://github.com/symfony/polyfill"
  2953. }
  2954. },
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Symfony\\Polyfill\\Iconv\\": ""
  2958. },
  2959. "files": [
  2960. "bootstrap.php"
  2961. ]
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "MIT"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "Nicolas Grekas",
  2970. "email": "p@tchwork.com"
  2971. },
  2972. {
  2973. "name": "Symfony Community",
  2974. "homepage": "https://symfony.com/contributors"
  2975. }
  2976. ],
  2977. "description": "Symfony polyfill for the Iconv extension",
  2978. "homepage": "https://symfony.com",
  2979. "keywords": [
  2980. "compatibility",
  2981. "iconv",
  2982. "polyfill",
  2983. "portable",
  2984. "shim"
  2985. ],
  2986. "time": "2020-06-06T08:46:27+00:00"
  2987. },
  2988. {
  2989. "name": "symfony/polyfill-intl-grapheme",
  2990. "version": "v1.17.1",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2994. "reference": "6e4dbcf5e81eba86e36731f94fe56b1726835846"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/6e4dbcf5e81eba86e36731f94fe56b1726835846",
  2999. "reference": "6e4dbcf5e81eba86e36731f94fe56b1726835846",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": ">=5.3.3"
  3004. },
  3005. "suggest": {
  3006. "ext-intl": "For best performance"
  3007. },
  3008. "type": "library",
  3009. "extra": {
  3010. "branch-alias": {
  3011. "dev-master": "1.17-dev"
  3012. },
  3013. "thanks": {
  3014. "name": "symfony/polyfill",
  3015. "url": "https://github.com/symfony/polyfill"
  3016. }
  3017. },
  3018. "autoload": {
  3019. "psr-4": {
  3020. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3021. },
  3022. "files": [
  3023. "bootstrap.php"
  3024. ]
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Nicolas Grekas",
  3033. "email": "p@tchwork.com"
  3034. },
  3035. {
  3036. "name": "Symfony Community",
  3037. "homepage": "https://symfony.com/contributors"
  3038. }
  3039. ],
  3040. "description": "Symfony polyfill for intl's grapheme_* functions",
  3041. "homepage": "https://symfony.com",
  3042. "keywords": [
  3043. "compatibility",
  3044. "grapheme",
  3045. "intl",
  3046. "polyfill",
  3047. "portable",
  3048. "shim"
  3049. ],
  3050. "time": "2020-06-06T08:46:27+00:00"
  3051. },
  3052. {
  3053. "name": "symfony/polyfill-intl-idn",
  3054. "version": "v1.17.1",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3058. "reference": "a57f8161502549a742a63c09f0a604997bf47027"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a57f8161502549a742a63c09f0a604997bf47027",
  3063. "reference": "a57f8161502549a742a63c09f0a604997bf47027",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "php": ">=5.3.3",
  3068. "symfony/polyfill-mbstring": "^1.3",
  3069. "symfony/polyfill-php72": "^1.10"
  3070. },
  3071. "suggest": {
  3072. "ext-intl": "For best performance"
  3073. },
  3074. "type": "library",
  3075. "extra": {
  3076. "branch-alias": {
  3077. "dev-master": "1.17-dev"
  3078. },
  3079. "thanks": {
  3080. "name": "symfony/polyfill",
  3081. "url": "https://github.com/symfony/polyfill"
  3082. }
  3083. },
  3084. "autoload": {
  3085. "psr-4": {
  3086. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3087. },
  3088. "files": [
  3089. "bootstrap.php"
  3090. ]
  3091. },
  3092. "notification-url": "https://packagist.org/downloads/",
  3093. "license": [
  3094. "MIT"
  3095. ],
  3096. "authors": [
  3097. {
  3098. "name": "Laurent Bassin",
  3099. "email": "laurent@bassin.info"
  3100. },
  3101. {
  3102. "name": "Symfony Community",
  3103. "homepage": "https://symfony.com/contributors"
  3104. }
  3105. ],
  3106. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3107. "homepage": "https://symfony.com",
  3108. "keywords": [
  3109. "compatibility",
  3110. "idn",
  3111. "intl",
  3112. "polyfill",
  3113. "portable",
  3114. "shim"
  3115. ],
  3116. "time": "2020-06-06T08:46:27+00:00"
  3117. },
  3118. {
  3119. "name": "symfony/polyfill-intl-normalizer",
  3120. "version": "v1.17.1",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3124. "reference": "40309d1700e8f72447bb9e7b54af756eeea35620"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/40309d1700e8f72447bb9e7b54af756eeea35620",
  3129. "reference": "40309d1700e8f72447bb9e7b54af756eeea35620",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "php": ">=5.3.3"
  3134. },
  3135. "suggest": {
  3136. "ext-intl": "For best performance"
  3137. },
  3138. "type": "library",
  3139. "extra": {
  3140. "branch-alias": {
  3141. "dev-master": "1.17-dev"
  3142. },
  3143. "thanks": {
  3144. "name": "symfony/polyfill",
  3145. "url": "https://github.com/symfony/polyfill"
  3146. }
  3147. },
  3148. "autoload": {
  3149. "psr-4": {
  3150. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3151. },
  3152. "files": [
  3153. "bootstrap.php"
  3154. ],
  3155. "classmap": [
  3156. "Resources/stubs"
  3157. ]
  3158. },
  3159. "notification-url": "https://packagist.org/downloads/",
  3160. "license": [
  3161. "MIT"
  3162. ],
  3163. "authors": [
  3164. {
  3165. "name": "Nicolas Grekas",
  3166. "email": "p@tchwork.com"
  3167. },
  3168. {
  3169. "name": "Symfony Community",
  3170. "homepage": "https://symfony.com/contributors"
  3171. }
  3172. ],
  3173. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3174. "homepage": "https://symfony.com",
  3175. "keywords": [
  3176. "compatibility",
  3177. "intl",
  3178. "normalizer",
  3179. "polyfill",
  3180. "portable",
  3181. "shim"
  3182. ],
  3183. "time": "2020-06-14T14:40:37+00:00"
  3184. },
  3185. {
  3186. "name": "symfony/polyfill-mbstring",
  3187. "version": "v1.17.1",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3191. "reference": "7110338d81ce1cbc3e273136e4574663627037a7"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7",
  3196. "reference": "7110338d81ce1cbc3e273136e4574663627037a7",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "php": ">=5.3.3"
  3201. },
  3202. "suggest": {
  3203. "ext-mbstring": "For best performance"
  3204. },
  3205. "type": "library",
  3206. "extra": {
  3207. "branch-alias": {
  3208. "dev-master": "1.17-dev"
  3209. },
  3210. "thanks": {
  3211. "name": "symfony/polyfill",
  3212. "url": "https://github.com/symfony/polyfill"
  3213. }
  3214. },
  3215. "autoload": {
  3216. "psr-4": {
  3217. "Symfony\\Polyfill\\Mbstring\\": ""
  3218. },
  3219. "files": [
  3220. "bootstrap.php"
  3221. ]
  3222. },
  3223. "notification-url": "https://packagist.org/downloads/",
  3224. "license": [
  3225. "MIT"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Nicolas Grekas",
  3230. "email": "p@tchwork.com"
  3231. },
  3232. {
  3233. "name": "Symfony Community",
  3234. "homepage": "https://symfony.com/contributors"
  3235. }
  3236. ],
  3237. "description": "Symfony polyfill for the Mbstring extension",
  3238. "homepage": "https://symfony.com",
  3239. "keywords": [
  3240. "compatibility",
  3241. "mbstring",
  3242. "polyfill",
  3243. "portable",
  3244. "shim"
  3245. ],
  3246. "time": "2020-06-06T08:46:27+00:00"
  3247. },
  3248. {
  3249. "name": "symfony/polyfill-php72",
  3250. "version": "v1.17.0",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/symfony/polyfill-php72.git",
  3254. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  3259. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "php": ">=5.3.3"
  3264. },
  3265. "type": "library",
  3266. "extra": {
  3267. "branch-alias": {
  3268. "dev-master": "1.17-dev"
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "Symfony\\Polyfill\\Php72\\": ""
  3274. },
  3275. "files": [
  3276. "bootstrap.php"
  3277. ]
  3278. },
  3279. "notification-url": "https://packagist.org/downloads/",
  3280. "license": [
  3281. "MIT"
  3282. ],
  3283. "authors": [
  3284. {
  3285. "name": "Nicolas Grekas",
  3286. "email": "p@tchwork.com"
  3287. },
  3288. {
  3289. "name": "Symfony Community",
  3290. "homepage": "https://symfony.com/contributors"
  3291. }
  3292. ],
  3293. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3294. "homepage": "https://symfony.com",
  3295. "keywords": [
  3296. "compatibility",
  3297. "polyfill",
  3298. "portable",
  3299. "shim"
  3300. ],
  3301. "time": "2020-05-12T16:47:27+00:00"
  3302. },
  3303. {
  3304. "name": "symfony/polyfill-php73",
  3305. "version": "v1.17.1",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/symfony/polyfill-php73.git",
  3309. "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fa0837fe02d617d31fbb25f990655861bb27bd1a",
  3314. "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": ">=5.3.3"
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "branch-alias": {
  3323. "dev-master": "1.17-dev"
  3324. },
  3325. "thanks": {
  3326. "name": "symfony/polyfill",
  3327. "url": "https://github.com/symfony/polyfill"
  3328. }
  3329. },
  3330. "autoload": {
  3331. "psr-4": {
  3332. "Symfony\\Polyfill\\Php73\\": ""
  3333. },
  3334. "files": [
  3335. "bootstrap.php"
  3336. ],
  3337. "classmap": [
  3338. "Resources/stubs"
  3339. ]
  3340. },
  3341. "notification-url": "https://packagist.org/downloads/",
  3342. "license": [
  3343. "MIT"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "Nicolas Grekas",
  3348. "email": "p@tchwork.com"
  3349. },
  3350. {
  3351. "name": "Symfony Community",
  3352. "homepage": "https://symfony.com/contributors"
  3353. }
  3354. ],
  3355. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3356. "homepage": "https://symfony.com",
  3357. "keywords": [
  3358. "compatibility",
  3359. "polyfill",
  3360. "portable",
  3361. "shim"
  3362. ],
  3363. "time": "2020-06-06T08:46:27+00:00"
  3364. },
  3365. {
  3366. "name": "symfony/polyfill-php80",
  3367. "version": "v1.17.1",
  3368. "source": {
  3369. "type": "git",
  3370. "url": "https://github.com/symfony/polyfill-php80.git",
  3371. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2"
  3372. },
  3373. "dist": {
  3374. "type": "zip",
  3375. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  3376. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  3377. "shasum": ""
  3378. },
  3379. "require": {
  3380. "php": ">=7.0.8"
  3381. },
  3382. "type": "library",
  3383. "extra": {
  3384. "branch-alias": {
  3385. "dev-master": "1.17-dev"
  3386. },
  3387. "thanks": {
  3388. "name": "symfony/polyfill",
  3389. "url": "https://github.com/symfony/polyfill"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "psr-4": {
  3394. "Symfony\\Polyfill\\Php80\\": ""
  3395. },
  3396. "files": [
  3397. "bootstrap.php"
  3398. ],
  3399. "classmap": [
  3400. "Resources/stubs"
  3401. ]
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Ion Bazan",
  3410. "email": "ion.bazan@gmail.com"
  3411. },
  3412. {
  3413. "name": "Nicolas Grekas",
  3414. "email": "p@tchwork.com"
  3415. },
  3416. {
  3417. "name": "Symfony Community",
  3418. "homepage": "https://symfony.com/contributors"
  3419. }
  3420. ],
  3421. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3422. "homepage": "https://symfony.com",
  3423. "keywords": [
  3424. "compatibility",
  3425. "polyfill",
  3426. "portable",
  3427. "shim"
  3428. ],
  3429. "time": "2020-06-06T08:46:27+00:00"
  3430. },
  3431. {
  3432. "name": "symfony/process",
  3433. "version": "v5.1.2",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/symfony/process.git",
  3437. "reference": "7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/symfony/process/zipball/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1",
  3442. "reference": "7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1",
  3443. "shasum": ""
  3444. },
  3445. "require": {
  3446. "php": ">=7.2.5",
  3447. "symfony/polyfill-php80": "^1.15"
  3448. },
  3449. "type": "library",
  3450. "extra": {
  3451. "branch-alias": {
  3452. "dev-master": "5.1-dev"
  3453. }
  3454. },
  3455. "autoload": {
  3456. "psr-4": {
  3457. "Symfony\\Component\\Process\\": ""
  3458. },
  3459. "exclude-from-classmap": [
  3460. "/Tests/"
  3461. ]
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Fabien Potencier",
  3470. "email": "fabien@symfony.com"
  3471. },
  3472. {
  3473. "name": "Symfony Community",
  3474. "homepage": "https://symfony.com/contributors"
  3475. }
  3476. ],
  3477. "description": "Symfony Process Component",
  3478. "homepage": "https://symfony.com",
  3479. "time": "2020-05-30T20:35:19+00:00"
  3480. },
  3481. {
  3482. "name": "symfony/routing",
  3483. "version": "v5.1.2",
  3484. "source": {
  3485. "type": "git",
  3486. "url": "https://github.com/symfony/routing.git",
  3487. "reference": "bbd0ba121d623f66d165a55a108008968911f3eb"
  3488. },
  3489. "dist": {
  3490. "type": "zip",
  3491. "url": "https://api.github.com/repos/symfony/routing/zipball/bbd0ba121d623f66d165a55a108008968911f3eb",
  3492. "reference": "bbd0ba121d623f66d165a55a108008968911f3eb",
  3493. "shasum": ""
  3494. },
  3495. "require": {
  3496. "php": ">=7.2.5",
  3497. "symfony/deprecation-contracts": "^2.1",
  3498. "symfony/polyfill-php80": "^1.15"
  3499. },
  3500. "conflict": {
  3501. "symfony/config": "<5.0",
  3502. "symfony/dependency-injection": "<4.4",
  3503. "symfony/yaml": "<4.4"
  3504. },
  3505. "require-dev": {
  3506. "doctrine/annotations": "~1.2",
  3507. "psr/log": "~1.0",
  3508. "symfony/config": "^5.0",
  3509. "symfony/dependency-injection": "^4.4|^5.0",
  3510. "symfony/expression-language": "^4.4|^5.0",
  3511. "symfony/http-foundation": "^4.4|^5.0",
  3512. "symfony/yaml": "^4.4|^5.0"
  3513. },
  3514. "suggest": {
  3515. "doctrine/annotations": "For using the annotation loader",
  3516. "symfony/config": "For using the all-in-one router or any loader",
  3517. "symfony/expression-language": "For using expression matching",
  3518. "symfony/http-foundation": "For using a Symfony Request object",
  3519. "symfony/yaml": "For using the YAML loader"
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-master": "5.1-dev"
  3525. }
  3526. },
  3527. "autoload": {
  3528. "psr-4": {
  3529. "Symfony\\Component\\Routing\\": ""
  3530. },
  3531. "exclude-from-classmap": [
  3532. "/Tests/"
  3533. ]
  3534. },
  3535. "notification-url": "https://packagist.org/downloads/",
  3536. "license": [
  3537. "MIT"
  3538. ],
  3539. "authors": [
  3540. {
  3541. "name": "Fabien Potencier",
  3542. "email": "fabien@symfony.com"
  3543. },
  3544. {
  3545. "name": "Symfony Community",
  3546. "homepage": "https://symfony.com/contributors"
  3547. }
  3548. ],
  3549. "description": "Symfony Routing Component",
  3550. "homepage": "https://symfony.com",
  3551. "keywords": [
  3552. "router",
  3553. "routing",
  3554. "uri",
  3555. "url"
  3556. ],
  3557. "time": "2020-06-10T11:49:58+00:00"
  3558. },
  3559. {
  3560. "name": "symfony/service-contracts",
  3561. "version": "v2.1.2",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/symfony/service-contracts.git",
  3565. "reference": "66a8f0957a3ca54e4f724e49028ab19d75a8918b"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/66a8f0957a3ca54e4f724e49028ab19d75a8918b",
  3570. "reference": "66a8f0957a3ca54e4f724e49028ab19d75a8918b",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "php": ">=7.2.5",
  3575. "psr/container": "^1.0"
  3576. },
  3577. "suggest": {
  3578. "symfony/service-implementation": ""
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "branch-alias": {
  3583. "dev-master": "2.1-dev"
  3584. }
  3585. },
  3586. "autoload": {
  3587. "psr-4": {
  3588. "Symfony\\Contracts\\Service\\": ""
  3589. }
  3590. },
  3591. "notification-url": "https://packagist.org/downloads/",
  3592. "license": [
  3593. "MIT"
  3594. ],
  3595. "authors": [
  3596. {
  3597. "name": "Nicolas Grekas",
  3598. "email": "p@tchwork.com"
  3599. },
  3600. {
  3601. "name": "Symfony Community",
  3602. "homepage": "https://symfony.com/contributors"
  3603. }
  3604. ],
  3605. "description": "Generic abstractions related to writing services",
  3606. "homepage": "https://symfony.com",
  3607. "keywords": [
  3608. "abstractions",
  3609. "contracts",
  3610. "decoupling",
  3611. "interfaces",
  3612. "interoperability",
  3613. "standards"
  3614. ],
  3615. "time": "2020-05-20T17:43:50+00:00"
  3616. },
  3617. {
  3618. "name": "symfony/string",
  3619. "version": "v5.1.2",
  3620. "source": {
  3621. "type": "git",
  3622. "url": "https://github.com/symfony/string.git",
  3623. "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298"
  3624. },
  3625. "dist": {
  3626. "type": "zip",
  3627. "url": "https://api.github.com/repos/symfony/string/zipball/ac70459db781108db7c6d8981dd31ce0e29e3298",
  3628. "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298",
  3629. "shasum": ""
  3630. },
  3631. "require": {
  3632. "php": ">=7.2.5",
  3633. "symfony/polyfill-ctype": "~1.8",
  3634. "symfony/polyfill-intl-grapheme": "~1.0",
  3635. "symfony/polyfill-intl-normalizer": "~1.0",
  3636. "symfony/polyfill-mbstring": "~1.0",
  3637. "symfony/polyfill-php80": "~1.15"
  3638. },
  3639. "require-dev": {
  3640. "symfony/error-handler": "^4.4|^5.0",
  3641. "symfony/http-client": "^4.4|^5.0",
  3642. "symfony/translation-contracts": "^1.1|^2",
  3643. "symfony/var-exporter": "^4.4|^5.0"
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-master": "5.1-dev"
  3649. }
  3650. },
  3651. "autoload": {
  3652. "psr-4": {
  3653. "Symfony\\Component\\String\\": ""
  3654. },
  3655. "files": [
  3656. "Resources/functions.php"
  3657. ],
  3658. "exclude-from-classmap": [
  3659. "/Tests/"
  3660. ]
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Nicolas Grekas",
  3669. "email": "p@tchwork.com"
  3670. },
  3671. {
  3672. "name": "Symfony Community",
  3673. "homepage": "https://symfony.com/contributors"
  3674. }
  3675. ],
  3676. "description": "Symfony String component",
  3677. "homepage": "https://symfony.com",
  3678. "keywords": [
  3679. "grapheme",
  3680. "i18n",
  3681. "string",
  3682. "unicode",
  3683. "utf-8",
  3684. "utf8"
  3685. ],
  3686. "time": "2020-06-11T12:16:36+00:00"
  3687. },
  3688. {
  3689. "name": "symfony/translation",
  3690. "version": "v5.1.2",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/symfony/translation.git",
  3694. "reference": "d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/symfony/translation/zipball/d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2",
  3699. "reference": "d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=7.2.5",
  3704. "symfony/polyfill-mbstring": "~1.0",
  3705. "symfony/polyfill-php80": "^1.15",
  3706. "symfony/translation-contracts": "^2"
  3707. },
  3708. "conflict": {
  3709. "symfony/config": "<4.4",
  3710. "symfony/dependency-injection": "<5.0",
  3711. "symfony/http-kernel": "<5.0",
  3712. "symfony/twig-bundle": "<5.0",
  3713. "symfony/yaml": "<4.4"
  3714. },
  3715. "provide": {
  3716. "symfony/translation-implementation": "2.0"
  3717. },
  3718. "require-dev": {
  3719. "psr/log": "~1.0",
  3720. "symfony/config": "^4.4|^5.0",
  3721. "symfony/console": "^4.4|^5.0",
  3722. "symfony/dependency-injection": "^5.0",
  3723. "symfony/finder": "^4.4|^5.0",
  3724. "symfony/http-kernel": "^5.0",
  3725. "symfony/intl": "^4.4|^5.0",
  3726. "symfony/service-contracts": "^1.1.2|^2",
  3727. "symfony/yaml": "^4.4|^5.0"
  3728. },
  3729. "suggest": {
  3730. "psr/log-implementation": "To use logging capability in translator",
  3731. "symfony/config": "",
  3732. "symfony/yaml": ""
  3733. },
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-master": "5.1-dev"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "psr-4": {
  3742. "Symfony\\Component\\Translation\\": ""
  3743. },
  3744. "exclude-from-classmap": [
  3745. "/Tests/"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Fabien Potencier",
  3755. "email": "fabien@symfony.com"
  3756. },
  3757. {
  3758. "name": "Symfony Community",
  3759. "homepage": "https://symfony.com/contributors"
  3760. }
  3761. ],
  3762. "description": "Symfony Translation Component",
  3763. "homepage": "https://symfony.com",
  3764. "time": "2020-05-30T20:35:19+00:00"
  3765. },
  3766. {
  3767. "name": "symfony/translation-contracts",
  3768. "version": "v2.1.2",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/symfony/translation-contracts.git",
  3772. "reference": "e5ca07c8f817f865f618aa072c2fe8e0e637340e"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e5ca07c8f817f865f618aa072c2fe8e0e637340e",
  3777. "reference": "e5ca07c8f817f865f618aa072c2fe8e0e637340e",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "php": ">=7.2.5"
  3782. },
  3783. "suggest": {
  3784. "symfony/translation-implementation": ""
  3785. },
  3786. "type": "library",
  3787. "extra": {
  3788. "branch-alias": {
  3789. "dev-master": "2.1-dev"
  3790. }
  3791. },
  3792. "autoload": {
  3793. "psr-4": {
  3794. "Symfony\\Contracts\\Translation\\": ""
  3795. }
  3796. },
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "MIT"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Nicolas Grekas",
  3804. "email": "p@tchwork.com"
  3805. },
  3806. {
  3807. "name": "Symfony Community",
  3808. "homepage": "https://symfony.com/contributors"
  3809. }
  3810. ],
  3811. "description": "Generic abstractions related to translation",
  3812. "homepage": "https://symfony.com",
  3813. "keywords": [
  3814. "abstractions",
  3815. "contracts",
  3816. "decoupling",
  3817. "interfaces",
  3818. "interoperability",
  3819. "standards"
  3820. ],
  3821. "time": "2020-05-20T17:43:50+00:00"
  3822. },
  3823. {
  3824. "name": "symfony/var-dumper",
  3825. "version": "v5.1.2",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/symfony/var-dumper.git",
  3829. "reference": "46a942903059b0b05e601f00eb64179e05578c0f"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46a942903059b0b05e601f00eb64179e05578c0f",
  3834. "reference": "46a942903059b0b05e601f00eb64179e05578c0f",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": ">=7.2.5",
  3839. "symfony/polyfill-mbstring": "~1.0",
  3840. "symfony/polyfill-php80": "^1.15"
  3841. },
  3842. "conflict": {
  3843. "phpunit/phpunit": "<5.4.3",
  3844. "symfony/console": "<4.4"
  3845. },
  3846. "require-dev": {
  3847. "ext-iconv": "*",
  3848. "symfony/console": "^4.4|^5.0",
  3849. "symfony/process": "^4.4|^5.0",
  3850. "twig/twig": "^2.4|^3.0"
  3851. },
  3852. "suggest": {
  3853. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3854. "ext-intl": "To show region name in time zone dump",
  3855. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3856. },
  3857. "bin": [
  3858. "Resources/bin/var-dump-server"
  3859. ],
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "5.1-dev"
  3864. }
  3865. },
  3866. "autoload": {
  3867. "files": [
  3868. "Resources/functions/dump.php"
  3869. ],
  3870. "psr-4": {
  3871. "Symfony\\Component\\VarDumper\\": ""
  3872. },
  3873. "exclude-from-classmap": [
  3874. "/Tests/"
  3875. ]
  3876. },
  3877. "notification-url": "https://packagist.org/downloads/",
  3878. "license": [
  3879. "MIT"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "Nicolas Grekas",
  3884. "email": "p@tchwork.com"
  3885. },
  3886. {
  3887. "name": "Symfony Community",
  3888. "homepage": "https://symfony.com/contributors"
  3889. }
  3890. ],
  3891. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3892. "homepage": "https://symfony.com",
  3893. "keywords": [
  3894. "debug",
  3895. "dump"
  3896. ],
  3897. "time": "2020-05-30T20:35:19+00:00"
  3898. },
  3899. {
  3900. "name": "tijsverkoyen/css-to-inline-styles",
  3901. "version": "2.2.2",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3905. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  3910. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "ext-dom": "*",
  3915. "ext-libxml": "*",
  3916. "php": "^5.5 || ^7.0",
  3917. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  3918. },
  3919. "require-dev": {
  3920. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3921. },
  3922. "type": "library",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-master": "2.2.x-dev"
  3926. }
  3927. },
  3928. "autoload": {
  3929. "psr-4": {
  3930. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3931. }
  3932. },
  3933. "notification-url": "https://packagist.org/downloads/",
  3934. "license": [
  3935. "BSD-3-Clause"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "Tijs Verkoyen",
  3940. "email": "css_to_inline_styles@verkoyen.eu",
  3941. "role": "Developer"
  3942. }
  3943. ],
  3944. "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.",
  3945. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3946. "time": "2019-10-24T08:53:34+00:00"
  3947. },
  3948. {
  3949. "name": "vlucas/phpdotenv",
  3950. "version": "v4.1.7",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/vlucas/phpdotenv.git",
  3954. "reference": "db63b2ea280fdcf13c4ca392121b0b2450b51193"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/db63b2ea280fdcf13c4ca392121b0b2450b51193",
  3959. "reference": "db63b2ea280fdcf13c4ca392121b0b2450b51193",
  3960. "shasum": ""
  3961. },
  3962. "require": {
  3963. "php": "^5.5.9 || ^7.0 || ^8.0",
  3964. "phpoption/phpoption": "^1.7.3",
  3965. "symfony/polyfill-ctype": "^1.16"
  3966. },
  3967. "require-dev": {
  3968. "bamarni/composer-bin-plugin": "^1.4.1",
  3969. "ext-filter": "*",
  3970. "ext-pcre": "*",
  3971. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  3972. },
  3973. "suggest": {
  3974. "ext-filter": "Required to use the boolean validator.",
  3975. "ext-pcre": "Required to use most of the library."
  3976. },
  3977. "type": "library",
  3978. "extra": {
  3979. "branch-alias": {
  3980. "dev-master": "4.1-dev"
  3981. }
  3982. },
  3983. "autoload": {
  3984. "psr-4": {
  3985. "Dotenv\\": "src/"
  3986. }
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "BSD-3-Clause"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Graham Campbell",
  3995. "email": "graham@alt-three.com",
  3996. "homepage": "https://gjcampbell.co.uk/"
  3997. },
  3998. {
  3999. "name": "Vance Lucas",
  4000. "email": "vance@vancelucas.com",
  4001. "homepage": "https://vancelucas.com/"
  4002. }
  4003. ],
  4004. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4005. "keywords": [
  4006. "dotenv",
  4007. "env",
  4008. "environment"
  4009. ],
  4010. "time": "2020-06-07T18:25:35+00:00"
  4011. },
  4012. {
  4013. "name": "voku/portable-ascii",
  4014. "version": "1.5.2",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/voku/portable-ascii.git",
  4018. "reference": "618631dc601d8eb6ea0a9fbf654ec82f066c4e97"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/618631dc601d8eb6ea0a9fbf654ec82f066c4e97",
  4023. "reference": "618631dc601d8eb6ea0a9fbf654ec82f066c4e97",
  4024. "shasum": ""
  4025. },
  4026. "require": {
  4027. "php": ">=7.0.0"
  4028. },
  4029. "require-dev": {
  4030. "phpunit/phpunit": "~6.0 || ~7.0"
  4031. },
  4032. "suggest": {
  4033. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4034. },
  4035. "type": "library",
  4036. "autoload": {
  4037. "psr-4": {
  4038. "voku\\": "src/voku/"
  4039. }
  4040. },
  4041. "notification-url": "https://packagist.org/downloads/",
  4042. "license": [
  4043. "MIT"
  4044. ],
  4045. "authors": [
  4046. {
  4047. "name": "Lars Moelleken",
  4048. "homepage": "http://www.moelleken.org/"
  4049. }
  4050. ],
  4051. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4052. "homepage": "https://github.com/voku/portable-ascii",
  4053. "keywords": [
  4054. "ascii",
  4055. "clean",
  4056. "php"
  4057. ],
  4058. "time": "2020-06-15T23:49:30+00:00"
  4059. }
  4060. ],
  4061. "packages-dev": [
  4062. {
  4063. "name": "doctrine/instantiator",
  4064. "version": "1.3.1",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://github.com/doctrine/instantiator.git",
  4068. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  4073. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  4074. "shasum": ""
  4075. },
  4076. "require": {
  4077. "php": "^7.1 || ^8.0"
  4078. },
  4079. "require-dev": {
  4080. "doctrine/coding-standard": "^6.0",
  4081. "ext-pdo": "*",
  4082. "ext-phar": "*",
  4083. "phpbench/phpbench": "^0.13",
  4084. "phpstan/phpstan-phpunit": "^0.11",
  4085. "phpstan/phpstan-shim": "^0.11",
  4086. "phpunit/phpunit": "^7.0"
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-master": "1.2.x-dev"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "psr-4": {
  4096. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4097. }
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Marco Pivetta",
  4106. "email": "ocramius@gmail.com",
  4107. "homepage": "http://ocramius.github.com/"
  4108. }
  4109. ],
  4110. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4111. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4112. "keywords": [
  4113. "constructor",
  4114. "instantiate"
  4115. ],
  4116. "time": "2020-05-29T17:27:14+00:00"
  4117. },
  4118. {
  4119. "name": "facade/flare-client-php",
  4120. "version": "1.3.2",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/facade/flare-client-php.git",
  4124. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  4129. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  4130. "shasum": ""
  4131. },
  4132. "require": {
  4133. "facade/ignition-contracts": "~1.0",
  4134. "illuminate/pipeline": "^5.5|^6.0|^7.0",
  4135. "php": "^7.1",
  4136. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  4137. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  4138. },
  4139. "require-dev": {
  4140. "larapack/dd": "^1.1",
  4141. "phpunit/phpunit": "^7.5.16",
  4142. "spatie/phpunit-snapshot-assertions": "^2.0"
  4143. },
  4144. "type": "library",
  4145. "extra": {
  4146. "branch-alias": {
  4147. "dev-master": "1.0-dev"
  4148. }
  4149. },
  4150. "autoload": {
  4151. "psr-4": {
  4152. "Facade\\FlareClient\\": "src"
  4153. },
  4154. "files": [
  4155. "src/helpers.php"
  4156. ]
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "description": "Send PHP errors to Flare",
  4163. "homepage": "https://github.com/facade/flare-client-php",
  4164. "keywords": [
  4165. "exception",
  4166. "facade",
  4167. "flare",
  4168. "reporting"
  4169. ],
  4170. "time": "2020-03-02T15:52:04+00:00"
  4171. },
  4172. {
  4173. "name": "facade/ignition",
  4174. "version": "2.0.7",
  4175. "source": {
  4176. "type": "git",
  4177. "url": "https://github.com/facade/ignition.git",
  4178. "reference": "e6bedc1e74507d584fbcb041ebe0f7f215109cf2"
  4179. },
  4180. "dist": {
  4181. "type": "zip",
  4182. "url": "https://api.github.com/repos/facade/ignition/zipball/e6bedc1e74507d584fbcb041ebe0f7f215109cf2",
  4183. "reference": "e6bedc1e74507d584fbcb041ebe0f7f215109cf2",
  4184. "shasum": ""
  4185. },
  4186. "require": {
  4187. "ext-json": "*",
  4188. "ext-mbstring": "*",
  4189. "facade/flare-client-php": "^1.0",
  4190. "facade/ignition-contracts": "^1.0",
  4191. "filp/whoops": "^2.4",
  4192. "illuminate/support": "^7.0|^8.0",
  4193. "monolog/monolog": "^2.0",
  4194. "php": "^7.2.5",
  4195. "scrivo/highlight.php": "^9.15",
  4196. "symfony/console": "^5.0",
  4197. "symfony/var-dumper": "^5.0"
  4198. },
  4199. "require-dev": {
  4200. "friendsofphp/php-cs-fixer": "^2.14",
  4201. "mockery/mockery": "^1.3",
  4202. "orchestra/testbench": "5.0"
  4203. },
  4204. "suggest": {
  4205. "laravel/telescope": "^3.1"
  4206. },
  4207. "type": "library",
  4208. "extra": {
  4209. "branch-alias": {
  4210. "dev-master": "2.x-dev"
  4211. },
  4212. "laravel": {
  4213. "providers": [
  4214. "Facade\\Ignition\\IgnitionServiceProvider"
  4215. ],
  4216. "aliases": {
  4217. "Flare": "Facade\\Ignition\\Facades\\Flare"
  4218. }
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Facade\\Ignition\\": "src"
  4224. },
  4225. "files": [
  4226. "src/helpers.php"
  4227. ]
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "description": "A beautiful error page for Laravel applications.",
  4234. "homepage": "https://github.com/facade/ignition",
  4235. "keywords": [
  4236. "error",
  4237. "flare",
  4238. "laravel",
  4239. "page"
  4240. ],
  4241. "time": "2020-06-08T09:14:08+00:00"
  4242. },
  4243. {
  4244. "name": "facade/ignition-contracts",
  4245. "version": "1.0.0",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/facade/ignition-contracts.git",
  4249. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  4254. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  4255. "shasum": ""
  4256. },
  4257. "require": {
  4258. "php": "^7.1"
  4259. },
  4260. "type": "library",
  4261. "autoload": {
  4262. "psr-4": {
  4263. "Facade\\IgnitionContracts\\": "src"
  4264. }
  4265. },
  4266. "notification-url": "https://packagist.org/downloads/",
  4267. "license": [
  4268. "MIT"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "Freek Van der Herten",
  4273. "email": "freek@spatie.be",
  4274. "homepage": "https://flareapp.io",
  4275. "role": "Developer"
  4276. }
  4277. ],
  4278. "description": "Solution contracts for Ignition",
  4279. "homepage": "https://github.com/facade/ignition-contracts",
  4280. "keywords": [
  4281. "contracts",
  4282. "flare",
  4283. "ignition"
  4284. ],
  4285. "time": "2019-08-30T14:06:08+00:00"
  4286. },
  4287. {
  4288. "name": "filp/whoops",
  4289. "version": "2.7.3",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/filp/whoops.git",
  4293. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  4298. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  4299. "shasum": ""
  4300. },
  4301. "require": {
  4302. "php": "^5.5.9 || ^7.0",
  4303. "psr/log": "^1.0.1"
  4304. },
  4305. "require-dev": {
  4306. "mockery/mockery": "^0.9 || ^1.0",
  4307. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  4308. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4309. },
  4310. "suggest": {
  4311. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4312. "whoops/soap": "Formats errors as SOAP responses"
  4313. },
  4314. "type": "library",
  4315. "extra": {
  4316. "branch-alias": {
  4317. "dev-master": "2.6-dev"
  4318. }
  4319. },
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Whoops\\": "src/Whoops/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "MIT"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Filipe Dobreira",
  4332. "homepage": "https://github.com/filp",
  4333. "role": "Developer"
  4334. }
  4335. ],
  4336. "description": "php error handling for cool kids",
  4337. "homepage": "https://filp.github.io/whoops/",
  4338. "keywords": [
  4339. "error",
  4340. "exception",
  4341. "handling",
  4342. "library",
  4343. "throwable",
  4344. "whoops"
  4345. ],
  4346. "time": "2020-06-14T09:00:00+00:00"
  4347. },
  4348. {
  4349. "name": "fzaninotto/faker",
  4350. "version": "v1.9.1",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/fzaninotto/Faker.git",
  4354. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  4359. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  4360. "shasum": ""
  4361. },
  4362. "require": {
  4363. "php": "^5.3.3 || ^7.0"
  4364. },
  4365. "require-dev": {
  4366. "ext-intl": "*",
  4367. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4368. "squizlabs/php_codesniffer": "^2.9.2"
  4369. },
  4370. "type": "library",
  4371. "extra": {
  4372. "branch-alias": {
  4373. "dev-master": "1.9-dev"
  4374. }
  4375. },
  4376. "autoload": {
  4377. "psr-4": {
  4378. "Faker\\": "src/Faker/"
  4379. }
  4380. },
  4381. "notification-url": "https://packagist.org/downloads/",
  4382. "license": [
  4383. "MIT"
  4384. ],
  4385. "authors": [
  4386. {
  4387. "name": "François Zaninotto"
  4388. }
  4389. ],
  4390. "description": "Faker is a PHP library that generates fake data for you.",
  4391. "keywords": [
  4392. "data",
  4393. "faker",
  4394. "fixtures"
  4395. ],
  4396. "time": "2019-12-12T13:22:17+00:00"
  4397. },
  4398. {
  4399. "name": "hamcrest/hamcrest-php",
  4400. "version": "v2.0.0",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4404. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4409. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4410. "shasum": ""
  4411. },
  4412. "require": {
  4413. "php": "^5.3|^7.0"
  4414. },
  4415. "replace": {
  4416. "cordoval/hamcrest-php": "*",
  4417. "davedevelopment/hamcrest-php": "*",
  4418. "kodova/hamcrest-php": "*"
  4419. },
  4420. "require-dev": {
  4421. "phpunit/php-file-iterator": "1.3.3",
  4422. "phpunit/phpunit": "~4.0",
  4423. "satooshi/php-coveralls": "^1.0"
  4424. },
  4425. "type": "library",
  4426. "extra": {
  4427. "branch-alias": {
  4428. "dev-master": "2.0-dev"
  4429. }
  4430. },
  4431. "autoload": {
  4432. "classmap": [
  4433. "hamcrest"
  4434. ]
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "BSD"
  4439. ],
  4440. "description": "This is the PHP port of Hamcrest Matchers",
  4441. "keywords": [
  4442. "test"
  4443. ],
  4444. "time": "2016-01-20T08:20:44+00:00"
  4445. },
  4446. {
  4447. "name": "mockery/mockery",
  4448. "version": "1.4.0",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/mockery/mockery.git",
  4452. "reference": "6c6a7c533469873deacf998237e7649fc6b36223"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/mockery/mockery/zipball/6c6a7c533469873deacf998237e7649fc6b36223",
  4457. "reference": "6c6a7c533469873deacf998237e7649fc6b36223",
  4458. "shasum": ""
  4459. },
  4460. "require": {
  4461. "hamcrest/hamcrest-php": "~2.0",
  4462. "lib-pcre": ">=7.0",
  4463. "php": "^7.3.0"
  4464. },
  4465. "conflict": {
  4466. "phpunit/phpunit": "<8.0"
  4467. },
  4468. "require-dev": {
  4469. "phpunit/phpunit": "^8.0.0 || ^9.0.0"
  4470. },
  4471. "type": "library",
  4472. "extra": {
  4473. "branch-alias": {
  4474. "dev-master": "1.4.x-dev"
  4475. }
  4476. },
  4477. "autoload": {
  4478. "psr-0": {
  4479. "Mockery": "library/"
  4480. }
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "BSD-3-Clause"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Pádraic Brady",
  4489. "email": "padraic.brady@gmail.com",
  4490. "homepage": "http://blog.astrumfutura.com"
  4491. },
  4492. {
  4493. "name": "Dave Marshall",
  4494. "email": "dave.marshall@atstsolutions.co.uk",
  4495. "homepage": "http://davedevelopment.co.uk"
  4496. }
  4497. ],
  4498. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4499. "homepage": "https://github.com/mockery/mockery",
  4500. "keywords": [
  4501. "BDD",
  4502. "TDD",
  4503. "library",
  4504. "mock",
  4505. "mock objects",
  4506. "mockery",
  4507. "stub",
  4508. "test",
  4509. "test double",
  4510. "testing"
  4511. ],
  4512. "time": "2020-05-19T14:25:16+00:00"
  4513. },
  4514. {
  4515. "name": "myclabs/deep-copy",
  4516. "version": "1.9.5",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/myclabs/DeepCopy.git",
  4520. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  4525. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": "^7.1"
  4530. },
  4531. "replace": {
  4532. "myclabs/deep-copy": "self.version"
  4533. },
  4534. "require-dev": {
  4535. "doctrine/collections": "^1.0",
  4536. "doctrine/common": "^2.6",
  4537. "phpunit/phpunit": "^7.1"
  4538. },
  4539. "type": "library",
  4540. "autoload": {
  4541. "psr-4": {
  4542. "DeepCopy\\": "src/DeepCopy/"
  4543. },
  4544. "files": [
  4545. "src/DeepCopy/deep_copy.php"
  4546. ]
  4547. },
  4548. "notification-url": "https://packagist.org/downloads/",
  4549. "license": [
  4550. "MIT"
  4551. ],
  4552. "description": "Create deep copies (clones) of your objects",
  4553. "keywords": [
  4554. "clone",
  4555. "copy",
  4556. "duplicate",
  4557. "object",
  4558. "object graph"
  4559. ],
  4560. "time": "2020-01-17T21:11:47+00:00"
  4561. },
  4562. {
  4563. "name": "nunomaduro/collision",
  4564. "version": "v4.2.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/nunomaduro/collision.git",
  4568. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  4573. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "facade/ignition-contracts": "^1.0",
  4578. "filp/whoops": "^2.4",
  4579. "php": "^7.2.5",
  4580. "symfony/console": "^5.0"
  4581. },
  4582. "require-dev": {
  4583. "facade/ignition": "^2.0",
  4584. "fideloper/proxy": "^4.2",
  4585. "friendsofphp/php-cs-fixer": "^2.16",
  4586. "fruitcake/laravel-cors": "^1.0",
  4587. "laravel/framework": "^7.0",
  4588. "laravel/tinker": "^2.0",
  4589. "nunomaduro/larastan": "^0.5",
  4590. "orchestra/testbench": "^5.0",
  4591. "phpstan/phpstan": "^0.12.3",
  4592. "phpunit/phpunit": "^8.5.1 || ^9.0"
  4593. },
  4594. "type": "library",
  4595. "extra": {
  4596. "laravel": {
  4597. "providers": [
  4598. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  4599. ]
  4600. }
  4601. },
  4602. "autoload": {
  4603. "psr-4": {
  4604. "NunoMaduro\\Collision\\": "src/"
  4605. }
  4606. },
  4607. "notification-url": "https://packagist.org/downloads/",
  4608. "license": [
  4609. "MIT"
  4610. ],
  4611. "authors": [
  4612. {
  4613. "name": "Nuno Maduro",
  4614. "email": "enunomaduro@gmail.com"
  4615. }
  4616. ],
  4617. "description": "Cli error handling for console/command-line PHP applications.",
  4618. "keywords": [
  4619. "artisan",
  4620. "cli",
  4621. "command-line",
  4622. "console",
  4623. "error",
  4624. "handling",
  4625. "laravel",
  4626. "laravel-zero",
  4627. "php",
  4628. "symfony"
  4629. ],
  4630. "time": "2020-04-04T19:56:08+00:00"
  4631. },
  4632. {
  4633. "name": "phar-io/manifest",
  4634. "version": "1.0.3",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/phar-io/manifest.git",
  4638. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4643. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4644. "shasum": ""
  4645. },
  4646. "require": {
  4647. "ext-dom": "*",
  4648. "ext-phar": "*",
  4649. "phar-io/version": "^2.0",
  4650. "php": "^5.6 || ^7.0"
  4651. },
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "1.0.x-dev"
  4656. }
  4657. },
  4658. "autoload": {
  4659. "classmap": [
  4660. "src/"
  4661. ]
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "BSD-3-Clause"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Arne Blankerts",
  4670. "email": "arne@blankerts.de",
  4671. "role": "Developer"
  4672. },
  4673. {
  4674. "name": "Sebastian Heuer",
  4675. "email": "sebastian@phpeople.de",
  4676. "role": "Developer"
  4677. },
  4678. {
  4679. "name": "Sebastian Bergmann",
  4680. "email": "sebastian@phpunit.de",
  4681. "role": "Developer"
  4682. }
  4683. ],
  4684. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4685. "time": "2018-07-08T19:23:20+00:00"
  4686. },
  4687. {
  4688. "name": "phar-io/version",
  4689. "version": "2.0.1",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/phar-io/version.git",
  4693. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4698. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "php": "^5.6 || ^7.0"
  4703. },
  4704. "type": "library",
  4705. "autoload": {
  4706. "classmap": [
  4707. "src/"
  4708. ]
  4709. },
  4710. "notification-url": "https://packagist.org/downloads/",
  4711. "license": [
  4712. "BSD-3-Clause"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Arne Blankerts",
  4717. "email": "arne@blankerts.de",
  4718. "role": "Developer"
  4719. },
  4720. {
  4721. "name": "Sebastian Heuer",
  4722. "email": "sebastian@phpeople.de",
  4723. "role": "Developer"
  4724. },
  4725. {
  4726. "name": "Sebastian Bergmann",
  4727. "email": "sebastian@phpunit.de",
  4728. "role": "Developer"
  4729. }
  4730. ],
  4731. "description": "Library for handling version information and constraints",
  4732. "time": "2018-07-08T19:19:57+00:00"
  4733. },
  4734. {
  4735. "name": "phpdocumentor/reflection-common",
  4736. "version": "2.1.0",
  4737. "source": {
  4738. "type": "git",
  4739. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4740. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  4741. },
  4742. "dist": {
  4743. "type": "zip",
  4744. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  4745. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  4746. "shasum": ""
  4747. },
  4748. "require": {
  4749. "php": ">=7.1"
  4750. },
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "2.x-dev"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "psr-4": {
  4759. "phpDocumentor\\Reflection\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Jaap van Otterdijk",
  4769. "email": "opensource@ijaap.nl"
  4770. }
  4771. ],
  4772. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4773. "homepage": "http://www.phpdoc.org",
  4774. "keywords": [
  4775. "FQSEN",
  4776. "phpDocumentor",
  4777. "phpdoc",
  4778. "reflection",
  4779. "static analysis"
  4780. ],
  4781. "time": "2020-04-27T09:25:28+00:00"
  4782. },
  4783. {
  4784. "name": "phpdocumentor/reflection-docblock",
  4785. "version": "5.1.0",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4789. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  4794. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  4795. "shasum": ""
  4796. },
  4797. "require": {
  4798. "ext-filter": "^7.1",
  4799. "php": "^7.2",
  4800. "phpdocumentor/reflection-common": "^2.0",
  4801. "phpdocumentor/type-resolver": "^1.0",
  4802. "webmozart/assert": "^1"
  4803. },
  4804. "require-dev": {
  4805. "doctrine/instantiator": "^1",
  4806. "mockery/mockery": "^1"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "5.x-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "psr-4": {
  4816. "phpDocumentor\\Reflection\\": "src"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "MIT"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "Mike van Riel",
  4826. "email": "me@mikevanriel.com"
  4827. },
  4828. {
  4829. "name": "Jaap van Otterdijk",
  4830. "email": "account@ijaap.nl"
  4831. }
  4832. ],
  4833. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4834. "time": "2020-02-22T12:28:44+00:00"
  4835. },
  4836. {
  4837. "name": "phpdocumentor/type-resolver",
  4838. "version": "1.2.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4842. "reference": "30441f2752e493c639526b215ed81d54f369d693"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/30441f2752e493c639526b215ed81d54f369d693",
  4847. "reference": "30441f2752e493c639526b215ed81d54f369d693",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "php": "^7.2",
  4852. "phpdocumentor/reflection-common": "^2.0"
  4853. },
  4854. "require-dev": {
  4855. "ext-tokenizer": "^7.2",
  4856. "mockery/mockery": "~1"
  4857. },
  4858. "type": "library",
  4859. "extra": {
  4860. "branch-alias": {
  4861. "dev-1.x": "1.x-dev"
  4862. }
  4863. },
  4864. "autoload": {
  4865. "psr-4": {
  4866. "phpDocumentor\\Reflection\\": "src"
  4867. }
  4868. },
  4869. "notification-url": "https://packagist.org/downloads/",
  4870. "license": [
  4871. "MIT"
  4872. ],
  4873. "authors": [
  4874. {
  4875. "name": "Mike van Riel",
  4876. "email": "me@mikevanriel.com"
  4877. }
  4878. ],
  4879. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4880. "time": "2020-06-19T20:22:09+00:00"
  4881. },
  4882. {
  4883. "name": "phpspec/prophecy",
  4884. "version": "v1.10.3",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/phpspec/prophecy.git",
  4888. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  4893. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "doctrine/instantiator": "^1.0.2",
  4898. "php": "^5.3|^7.0",
  4899. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  4900. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  4901. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  4902. },
  4903. "require-dev": {
  4904. "phpspec/phpspec": "^2.5 || ^3.2",
  4905. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4906. },
  4907. "type": "library",
  4908. "extra": {
  4909. "branch-alias": {
  4910. "dev-master": "1.10.x-dev"
  4911. }
  4912. },
  4913. "autoload": {
  4914. "psr-4": {
  4915. "Prophecy\\": "src/Prophecy"
  4916. }
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "MIT"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Konstantin Kudryashov",
  4925. "email": "ever.zet@gmail.com",
  4926. "homepage": "http://everzet.com"
  4927. },
  4928. {
  4929. "name": "Marcello Duarte",
  4930. "email": "marcello.duarte@gmail.com"
  4931. }
  4932. ],
  4933. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4934. "homepage": "https://github.com/phpspec/prophecy",
  4935. "keywords": [
  4936. "Double",
  4937. "Dummy",
  4938. "fake",
  4939. "mock",
  4940. "spy",
  4941. "stub"
  4942. ],
  4943. "time": "2020-03-05T15:02:03+00:00"
  4944. },
  4945. {
  4946. "name": "phpunit/php-code-coverage",
  4947. "version": "7.0.10",
  4948. "source": {
  4949. "type": "git",
  4950. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4951. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  4952. },
  4953. "dist": {
  4954. "type": "zip",
  4955. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  4956. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  4957. "shasum": ""
  4958. },
  4959. "require": {
  4960. "ext-dom": "*",
  4961. "ext-xmlwriter": "*",
  4962. "php": "^7.2",
  4963. "phpunit/php-file-iterator": "^2.0.2",
  4964. "phpunit/php-text-template": "^1.2.1",
  4965. "phpunit/php-token-stream": "^3.1.1",
  4966. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4967. "sebastian/environment": "^4.2.2",
  4968. "sebastian/version": "^2.0.1",
  4969. "theseer/tokenizer": "^1.1.3"
  4970. },
  4971. "require-dev": {
  4972. "phpunit/phpunit": "^8.2.2"
  4973. },
  4974. "suggest": {
  4975. "ext-xdebug": "^2.7.2"
  4976. },
  4977. "type": "library",
  4978. "extra": {
  4979. "branch-alias": {
  4980. "dev-master": "7.0-dev"
  4981. }
  4982. },
  4983. "autoload": {
  4984. "classmap": [
  4985. "src/"
  4986. ]
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "BSD-3-Clause"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Sebastian Bergmann",
  4995. "email": "sebastian@phpunit.de",
  4996. "role": "lead"
  4997. }
  4998. ],
  4999. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5000. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5001. "keywords": [
  5002. "coverage",
  5003. "testing",
  5004. "xunit"
  5005. ],
  5006. "time": "2019-11-20T13:55:58+00:00"
  5007. },
  5008. {
  5009. "name": "phpunit/php-file-iterator",
  5010. "version": "2.0.2",
  5011. "source": {
  5012. "type": "git",
  5013. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5014. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5015. },
  5016. "dist": {
  5017. "type": "zip",
  5018. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5019. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5020. "shasum": ""
  5021. },
  5022. "require": {
  5023. "php": "^7.1"
  5024. },
  5025. "require-dev": {
  5026. "phpunit/phpunit": "^7.1"
  5027. },
  5028. "type": "library",
  5029. "extra": {
  5030. "branch-alias": {
  5031. "dev-master": "2.0.x-dev"
  5032. }
  5033. },
  5034. "autoload": {
  5035. "classmap": [
  5036. "src/"
  5037. ]
  5038. },
  5039. "notification-url": "https://packagist.org/downloads/",
  5040. "license": [
  5041. "BSD-3-Clause"
  5042. ],
  5043. "authors": [
  5044. {
  5045. "name": "Sebastian Bergmann",
  5046. "email": "sebastian@phpunit.de",
  5047. "role": "lead"
  5048. }
  5049. ],
  5050. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5051. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5052. "keywords": [
  5053. "filesystem",
  5054. "iterator"
  5055. ],
  5056. "time": "2018-09-13T20:33:42+00:00"
  5057. },
  5058. {
  5059. "name": "phpunit/php-text-template",
  5060. "version": "1.2.1",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5064. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5069. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5070. "shasum": ""
  5071. },
  5072. "require": {
  5073. "php": ">=5.3.3"
  5074. },
  5075. "type": "library",
  5076. "autoload": {
  5077. "classmap": [
  5078. "src/"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "BSD-3-Clause"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Sebastian Bergmann",
  5088. "email": "sebastian@phpunit.de",
  5089. "role": "lead"
  5090. }
  5091. ],
  5092. "description": "Simple template engine.",
  5093. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5094. "keywords": [
  5095. "template"
  5096. ],
  5097. "time": "2015-06-21T13:50:34+00:00"
  5098. },
  5099. {
  5100. "name": "phpunit/php-timer",
  5101. "version": "2.1.2",
  5102. "source": {
  5103. "type": "git",
  5104. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5105. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5106. },
  5107. "dist": {
  5108. "type": "zip",
  5109. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5110. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5111. "shasum": ""
  5112. },
  5113. "require": {
  5114. "php": "^7.1"
  5115. },
  5116. "require-dev": {
  5117. "phpunit/phpunit": "^7.0"
  5118. },
  5119. "type": "library",
  5120. "extra": {
  5121. "branch-alias": {
  5122. "dev-master": "2.1-dev"
  5123. }
  5124. },
  5125. "autoload": {
  5126. "classmap": [
  5127. "src/"
  5128. ]
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "BSD-3-Clause"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Sebastian Bergmann",
  5137. "email": "sebastian@phpunit.de",
  5138. "role": "lead"
  5139. }
  5140. ],
  5141. "description": "Utility class for timing",
  5142. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5143. "keywords": [
  5144. "timer"
  5145. ],
  5146. "time": "2019-06-07T04:22:29+00:00"
  5147. },
  5148. {
  5149. "name": "phpunit/php-token-stream",
  5150. "version": "3.1.1",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5154. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5159. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5160. "shasum": ""
  5161. },
  5162. "require": {
  5163. "ext-tokenizer": "*",
  5164. "php": "^7.1"
  5165. },
  5166. "require-dev": {
  5167. "phpunit/phpunit": "^7.0"
  5168. },
  5169. "type": "library",
  5170. "extra": {
  5171. "branch-alias": {
  5172. "dev-master": "3.1-dev"
  5173. }
  5174. },
  5175. "autoload": {
  5176. "classmap": [
  5177. "src/"
  5178. ]
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "BSD-3-Clause"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "Sebastian Bergmann",
  5187. "email": "sebastian@phpunit.de"
  5188. }
  5189. ],
  5190. "description": "Wrapper around PHP's tokenizer extension.",
  5191. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5192. "keywords": [
  5193. "tokenizer"
  5194. ],
  5195. "time": "2019-09-17T06:23:10+00:00"
  5196. },
  5197. {
  5198. "name": "phpunit/phpunit",
  5199. "version": "8.5.8",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5203. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  5208. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "doctrine/instantiator": "^1.2.0",
  5213. "ext-dom": "*",
  5214. "ext-json": "*",
  5215. "ext-libxml": "*",
  5216. "ext-mbstring": "*",
  5217. "ext-xml": "*",
  5218. "ext-xmlwriter": "*",
  5219. "myclabs/deep-copy": "^1.9.1",
  5220. "phar-io/manifest": "^1.0.3",
  5221. "phar-io/version": "^2.0.1",
  5222. "php": "^7.2",
  5223. "phpspec/prophecy": "^1.8.1",
  5224. "phpunit/php-code-coverage": "^7.0.7",
  5225. "phpunit/php-file-iterator": "^2.0.2",
  5226. "phpunit/php-text-template": "^1.2.1",
  5227. "phpunit/php-timer": "^2.1.2",
  5228. "sebastian/comparator": "^3.0.2",
  5229. "sebastian/diff": "^3.0.2",
  5230. "sebastian/environment": "^4.2.2",
  5231. "sebastian/exporter": "^3.1.1",
  5232. "sebastian/global-state": "^3.0.0",
  5233. "sebastian/object-enumerator": "^3.0.3",
  5234. "sebastian/resource-operations": "^2.0.1",
  5235. "sebastian/type": "^1.1.3",
  5236. "sebastian/version": "^2.0.1"
  5237. },
  5238. "require-dev": {
  5239. "ext-pdo": "*"
  5240. },
  5241. "suggest": {
  5242. "ext-soap": "*",
  5243. "ext-xdebug": "*",
  5244. "phpunit/php-invoker": "^2.0.0"
  5245. },
  5246. "bin": [
  5247. "phpunit"
  5248. ],
  5249. "type": "library",
  5250. "extra": {
  5251. "branch-alias": {
  5252. "dev-master": "8.5-dev"
  5253. }
  5254. },
  5255. "autoload": {
  5256. "classmap": [
  5257. "src/"
  5258. ]
  5259. },
  5260. "notification-url": "https://packagist.org/downloads/",
  5261. "license": [
  5262. "BSD-3-Clause"
  5263. ],
  5264. "authors": [
  5265. {
  5266. "name": "Sebastian Bergmann",
  5267. "email": "sebastian@phpunit.de",
  5268. "role": "lead"
  5269. }
  5270. ],
  5271. "description": "The PHP Unit Testing framework.",
  5272. "homepage": "https://phpunit.de/",
  5273. "keywords": [
  5274. "phpunit",
  5275. "testing",
  5276. "xunit"
  5277. ],
  5278. "time": "2020-06-22T07:06:58+00:00"
  5279. },
  5280. {
  5281. "name": "scrivo/highlight.php",
  5282. "version": "v9.18.1.1",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/scrivo/highlight.php.git",
  5286. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
  5291. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "ext-json": "*",
  5296. "ext-mbstring": "*",
  5297. "php": ">=5.4"
  5298. },
  5299. "require-dev": {
  5300. "phpunit/phpunit": "^4.8|^5.7",
  5301. "sabberworm/php-css-parser": "^8.3",
  5302. "symfony/finder": "^2.8|^3.4",
  5303. "symfony/var-dumper": "^2.8|^3.4"
  5304. },
  5305. "suggest": {
  5306. "ext-dom": "Needed to make use of the features in the utilities namespace"
  5307. },
  5308. "type": "library",
  5309. "autoload": {
  5310. "psr-0": {
  5311. "Highlight\\": "",
  5312. "HighlightUtilities\\": ""
  5313. },
  5314. "files": [
  5315. "HighlightUtilities/functions.php"
  5316. ]
  5317. },
  5318. "notification-url": "https://packagist.org/downloads/",
  5319. "license": [
  5320. "BSD-3-Clause"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Geert Bergman",
  5325. "homepage": "http://www.scrivo.org/",
  5326. "role": "Project Author"
  5327. },
  5328. {
  5329. "name": "Vladimir Jimenez",
  5330. "homepage": "https://allejo.io",
  5331. "role": "Maintainer"
  5332. },
  5333. {
  5334. "name": "Martin Folkers",
  5335. "homepage": "https://twobrain.io",
  5336. "role": "Contributor"
  5337. }
  5338. ],
  5339. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  5340. "keywords": [
  5341. "code",
  5342. "highlight",
  5343. "highlight.js",
  5344. "highlight.php",
  5345. "syntax"
  5346. ],
  5347. "time": "2020-03-02T05:59:21+00:00"
  5348. },
  5349. {
  5350. "name": "sebastian/code-unit-reverse-lookup",
  5351. "version": "1.0.1",
  5352. "source": {
  5353. "type": "git",
  5354. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5355. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5356. },
  5357. "dist": {
  5358. "type": "zip",
  5359. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5360. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5361. "shasum": ""
  5362. },
  5363. "require": {
  5364. "php": "^5.6 || ^7.0"
  5365. },
  5366. "require-dev": {
  5367. "phpunit/phpunit": "^5.7 || ^6.0"
  5368. },
  5369. "type": "library",
  5370. "extra": {
  5371. "branch-alias": {
  5372. "dev-master": "1.0.x-dev"
  5373. }
  5374. },
  5375. "autoload": {
  5376. "classmap": [
  5377. "src/"
  5378. ]
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "BSD-3-Clause"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Sebastian Bergmann",
  5387. "email": "sebastian@phpunit.de"
  5388. }
  5389. ],
  5390. "description": "Looks up which function or method a line of code belongs to",
  5391. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5392. "time": "2017-03-04T06:30:41+00:00"
  5393. },
  5394. {
  5395. "name": "sebastian/comparator",
  5396. "version": "3.0.2",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/sebastianbergmann/comparator.git",
  5400. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5405. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5406. "shasum": ""
  5407. },
  5408. "require": {
  5409. "php": "^7.1",
  5410. "sebastian/diff": "^3.0",
  5411. "sebastian/exporter": "^3.1"
  5412. },
  5413. "require-dev": {
  5414. "phpunit/phpunit": "^7.1"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-master": "3.0-dev"
  5420. }
  5421. },
  5422. "autoload": {
  5423. "classmap": [
  5424. "src/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "BSD-3-Clause"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Jeff Welch",
  5434. "email": "whatthejeff@gmail.com"
  5435. },
  5436. {
  5437. "name": "Volker Dusch",
  5438. "email": "github@wallbash.com"
  5439. },
  5440. {
  5441. "name": "Bernhard Schussek",
  5442. "email": "bschussek@2bepublished.at"
  5443. },
  5444. {
  5445. "name": "Sebastian Bergmann",
  5446. "email": "sebastian@phpunit.de"
  5447. }
  5448. ],
  5449. "description": "Provides the functionality to compare PHP values for equality",
  5450. "homepage": "https://github.com/sebastianbergmann/comparator",
  5451. "keywords": [
  5452. "comparator",
  5453. "compare",
  5454. "equality"
  5455. ],
  5456. "time": "2018-07-12T15:12:46+00:00"
  5457. },
  5458. {
  5459. "name": "sebastian/diff",
  5460. "version": "3.0.2",
  5461. "source": {
  5462. "type": "git",
  5463. "url": "https://github.com/sebastianbergmann/diff.git",
  5464. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  5465. },
  5466. "dist": {
  5467. "type": "zip",
  5468. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5469. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5470. "shasum": ""
  5471. },
  5472. "require": {
  5473. "php": "^7.1"
  5474. },
  5475. "require-dev": {
  5476. "phpunit/phpunit": "^7.5 || ^8.0",
  5477. "symfony/process": "^2 || ^3.3 || ^4"
  5478. },
  5479. "type": "library",
  5480. "extra": {
  5481. "branch-alias": {
  5482. "dev-master": "3.0-dev"
  5483. }
  5484. },
  5485. "autoload": {
  5486. "classmap": [
  5487. "src/"
  5488. ]
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "BSD-3-Clause"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "Kore Nordmann",
  5497. "email": "mail@kore-nordmann.de"
  5498. },
  5499. {
  5500. "name": "Sebastian Bergmann",
  5501. "email": "sebastian@phpunit.de"
  5502. }
  5503. ],
  5504. "description": "Diff implementation",
  5505. "homepage": "https://github.com/sebastianbergmann/diff",
  5506. "keywords": [
  5507. "diff",
  5508. "udiff",
  5509. "unidiff",
  5510. "unified diff"
  5511. ],
  5512. "time": "2019-02-04T06:01:07+00:00"
  5513. },
  5514. {
  5515. "name": "sebastian/environment",
  5516. "version": "4.2.3",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/sebastianbergmann/environment.git",
  5520. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5525. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5526. "shasum": ""
  5527. },
  5528. "require": {
  5529. "php": "^7.1"
  5530. },
  5531. "require-dev": {
  5532. "phpunit/phpunit": "^7.5"
  5533. },
  5534. "suggest": {
  5535. "ext-posix": "*"
  5536. },
  5537. "type": "library",
  5538. "extra": {
  5539. "branch-alias": {
  5540. "dev-master": "4.2-dev"
  5541. }
  5542. },
  5543. "autoload": {
  5544. "classmap": [
  5545. "src/"
  5546. ]
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "BSD-3-Clause"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Sebastian Bergmann",
  5555. "email": "sebastian@phpunit.de"
  5556. }
  5557. ],
  5558. "description": "Provides functionality to handle HHVM/PHP environments",
  5559. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5560. "keywords": [
  5561. "Xdebug",
  5562. "environment",
  5563. "hhvm"
  5564. ],
  5565. "time": "2019-11-20T08:46:58+00:00"
  5566. },
  5567. {
  5568. "name": "sebastian/exporter",
  5569. "version": "3.1.2",
  5570. "source": {
  5571. "type": "git",
  5572. "url": "https://github.com/sebastianbergmann/exporter.git",
  5573. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  5574. },
  5575. "dist": {
  5576. "type": "zip",
  5577. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5578. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5579. "shasum": ""
  5580. },
  5581. "require": {
  5582. "php": "^7.0",
  5583. "sebastian/recursion-context": "^3.0"
  5584. },
  5585. "require-dev": {
  5586. "ext-mbstring": "*",
  5587. "phpunit/phpunit": "^6.0"
  5588. },
  5589. "type": "library",
  5590. "extra": {
  5591. "branch-alias": {
  5592. "dev-master": "3.1.x-dev"
  5593. }
  5594. },
  5595. "autoload": {
  5596. "classmap": [
  5597. "src/"
  5598. ]
  5599. },
  5600. "notification-url": "https://packagist.org/downloads/",
  5601. "license": [
  5602. "BSD-3-Clause"
  5603. ],
  5604. "authors": [
  5605. {
  5606. "name": "Sebastian Bergmann",
  5607. "email": "sebastian@phpunit.de"
  5608. },
  5609. {
  5610. "name": "Jeff Welch",
  5611. "email": "whatthejeff@gmail.com"
  5612. },
  5613. {
  5614. "name": "Volker Dusch",
  5615. "email": "github@wallbash.com"
  5616. },
  5617. {
  5618. "name": "Adam Harvey",
  5619. "email": "aharvey@php.net"
  5620. },
  5621. {
  5622. "name": "Bernhard Schussek",
  5623. "email": "bschussek@gmail.com"
  5624. }
  5625. ],
  5626. "description": "Provides the functionality to export PHP variables for visualization",
  5627. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5628. "keywords": [
  5629. "export",
  5630. "exporter"
  5631. ],
  5632. "time": "2019-09-14T09:02:43+00:00"
  5633. },
  5634. {
  5635. "name": "sebastian/global-state",
  5636. "version": "3.0.0",
  5637. "source": {
  5638. "type": "git",
  5639. "url": "https://github.com/sebastianbergmann/global-state.git",
  5640. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  5641. },
  5642. "dist": {
  5643. "type": "zip",
  5644. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5645. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5646. "shasum": ""
  5647. },
  5648. "require": {
  5649. "php": "^7.2",
  5650. "sebastian/object-reflector": "^1.1.1",
  5651. "sebastian/recursion-context": "^3.0"
  5652. },
  5653. "require-dev": {
  5654. "ext-dom": "*",
  5655. "phpunit/phpunit": "^8.0"
  5656. },
  5657. "suggest": {
  5658. "ext-uopz": "*"
  5659. },
  5660. "type": "library",
  5661. "extra": {
  5662. "branch-alias": {
  5663. "dev-master": "3.0-dev"
  5664. }
  5665. },
  5666. "autoload": {
  5667. "classmap": [
  5668. "src/"
  5669. ]
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "BSD-3-Clause"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Sebastian Bergmann",
  5678. "email": "sebastian@phpunit.de"
  5679. }
  5680. ],
  5681. "description": "Snapshotting of global state",
  5682. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5683. "keywords": [
  5684. "global state"
  5685. ],
  5686. "time": "2019-02-01T05:30:01+00:00"
  5687. },
  5688. {
  5689. "name": "sebastian/object-enumerator",
  5690. "version": "3.0.3",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5694. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5699. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "php": "^7.0",
  5704. "sebastian/object-reflector": "^1.1.1",
  5705. "sebastian/recursion-context": "^3.0"
  5706. },
  5707. "require-dev": {
  5708. "phpunit/phpunit": "^6.0"
  5709. },
  5710. "type": "library",
  5711. "extra": {
  5712. "branch-alias": {
  5713. "dev-master": "3.0.x-dev"
  5714. }
  5715. },
  5716. "autoload": {
  5717. "classmap": [
  5718. "src/"
  5719. ]
  5720. },
  5721. "notification-url": "https://packagist.org/downloads/",
  5722. "license": [
  5723. "BSD-3-Clause"
  5724. ],
  5725. "authors": [
  5726. {
  5727. "name": "Sebastian Bergmann",
  5728. "email": "sebastian@phpunit.de"
  5729. }
  5730. ],
  5731. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5732. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5733. "time": "2017-08-03T12:35:26+00:00"
  5734. },
  5735. {
  5736. "name": "sebastian/object-reflector",
  5737. "version": "1.1.1",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5741. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5746. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5747. "shasum": ""
  5748. },
  5749. "require": {
  5750. "php": "^7.0"
  5751. },
  5752. "require-dev": {
  5753. "phpunit/phpunit": "^6.0"
  5754. },
  5755. "type": "library",
  5756. "extra": {
  5757. "branch-alias": {
  5758. "dev-master": "1.1-dev"
  5759. }
  5760. },
  5761. "autoload": {
  5762. "classmap": [
  5763. "src/"
  5764. ]
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "BSD-3-Clause"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "Sebastian Bergmann",
  5773. "email": "sebastian@phpunit.de"
  5774. }
  5775. ],
  5776. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5777. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5778. "time": "2017-03-29T09:07:27+00:00"
  5779. },
  5780. {
  5781. "name": "sebastian/recursion-context",
  5782. "version": "3.0.0",
  5783. "source": {
  5784. "type": "git",
  5785. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5786. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5787. },
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5791. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5792. "shasum": ""
  5793. },
  5794. "require": {
  5795. "php": "^7.0"
  5796. },
  5797. "require-dev": {
  5798. "phpunit/phpunit": "^6.0"
  5799. },
  5800. "type": "library",
  5801. "extra": {
  5802. "branch-alias": {
  5803. "dev-master": "3.0.x-dev"
  5804. }
  5805. },
  5806. "autoload": {
  5807. "classmap": [
  5808. "src/"
  5809. ]
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "BSD-3-Clause"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Jeff Welch",
  5818. "email": "whatthejeff@gmail.com"
  5819. },
  5820. {
  5821. "name": "Sebastian Bergmann",
  5822. "email": "sebastian@phpunit.de"
  5823. },
  5824. {
  5825. "name": "Adam Harvey",
  5826. "email": "aharvey@php.net"
  5827. }
  5828. ],
  5829. "description": "Provides functionality to recursively process PHP variables",
  5830. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5831. "time": "2017-03-03T06:23:57+00:00"
  5832. },
  5833. {
  5834. "name": "sebastian/resource-operations",
  5835. "version": "2.0.1",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5839. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  5840. },
  5841. "dist": {
  5842. "type": "zip",
  5843. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5844. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5845. "shasum": ""
  5846. },
  5847. "require": {
  5848. "php": "^7.1"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-master": "2.0-dev"
  5854. }
  5855. },
  5856. "autoload": {
  5857. "classmap": [
  5858. "src/"
  5859. ]
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "BSD-3-Clause"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Sebastian Bergmann",
  5868. "email": "sebastian@phpunit.de"
  5869. }
  5870. ],
  5871. "description": "Provides a list of PHP built-in functions that operate on resources",
  5872. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5873. "time": "2018-10-04T04:07:39+00:00"
  5874. },
  5875. {
  5876. "name": "sebastian/type",
  5877. "version": "1.1.3",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://github.com/sebastianbergmann/type.git",
  5881. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  5886. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  5887. "shasum": ""
  5888. },
  5889. "require": {
  5890. "php": "^7.2"
  5891. },
  5892. "require-dev": {
  5893. "phpunit/phpunit": "^8.2"
  5894. },
  5895. "type": "library",
  5896. "extra": {
  5897. "branch-alias": {
  5898. "dev-master": "1.1-dev"
  5899. }
  5900. },
  5901. "autoload": {
  5902. "classmap": [
  5903. "src/"
  5904. ]
  5905. },
  5906. "notification-url": "https://packagist.org/downloads/",
  5907. "license": [
  5908. "BSD-3-Clause"
  5909. ],
  5910. "authors": [
  5911. {
  5912. "name": "Sebastian Bergmann",
  5913. "email": "sebastian@phpunit.de",
  5914. "role": "lead"
  5915. }
  5916. ],
  5917. "description": "Collection of value objects that represent the types of the PHP type system",
  5918. "homepage": "https://github.com/sebastianbergmann/type",
  5919. "time": "2019-07-02T08:10:15+00:00"
  5920. },
  5921. {
  5922. "name": "sebastian/version",
  5923. "version": "2.0.1",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/sebastianbergmann/version.git",
  5927. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5932. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5933. "shasum": ""
  5934. },
  5935. "require": {
  5936. "php": ">=5.6"
  5937. },
  5938. "type": "library",
  5939. "extra": {
  5940. "branch-alias": {
  5941. "dev-master": "2.0.x-dev"
  5942. }
  5943. },
  5944. "autoload": {
  5945. "classmap": [
  5946. "src/"
  5947. ]
  5948. },
  5949. "notification-url": "https://packagist.org/downloads/",
  5950. "license": [
  5951. "BSD-3-Clause"
  5952. ],
  5953. "authors": [
  5954. {
  5955. "name": "Sebastian Bergmann",
  5956. "email": "sebastian@phpunit.de",
  5957. "role": "lead"
  5958. }
  5959. ],
  5960. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5961. "homepage": "https://github.com/sebastianbergmann/version",
  5962. "time": "2016-10-03T07:35:21+00:00"
  5963. },
  5964. {
  5965. "name": "theseer/tokenizer",
  5966. "version": "1.1.3",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/theseer/tokenizer.git",
  5970. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5975. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "ext-dom": "*",
  5980. "ext-tokenizer": "*",
  5981. "ext-xmlwriter": "*",
  5982. "php": "^7.0"
  5983. },
  5984. "type": "library",
  5985. "autoload": {
  5986. "classmap": [
  5987. "src/"
  5988. ]
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "BSD-3-Clause"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "Arne Blankerts",
  5997. "email": "arne@blankerts.de",
  5998. "role": "Developer"
  5999. }
  6000. ],
  6001. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6002. "time": "2019-06-13T22:48:21+00:00"
  6003. },
  6004. {
  6005. "name": "webmozart/assert",
  6006. "version": "1.9.0",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://github.com/webmozart/assert.git",
  6010. "reference": "9dc4f203e36f2b486149058bade43c851dd97451"
  6011. },
  6012. "dist": {
  6013. "type": "zip",
  6014. "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451",
  6015. "reference": "9dc4f203e36f2b486149058bade43c851dd97451",
  6016. "shasum": ""
  6017. },
  6018. "require": {
  6019. "php": "^5.3.3 || ^7.0",
  6020. "symfony/polyfill-ctype": "^1.8"
  6021. },
  6022. "conflict": {
  6023. "phpstan/phpstan": "<0.12.20",
  6024. "vimeo/psalm": "<3.9.1"
  6025. },
  6026. "require-dev": {
  6027. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6028. },
  6029. "type": "library",
  6030. "autoload": {
  6031. "psr-4": {
  6032. "Webmozart\\Assert\\": "src/"
  6033. }
  6034. },
  6035. "notification-url": "https://packagist.org/downloads/",
  6036. "license": [
  6037. "MIT"
  6038. ],
  6039. "authors": [
  6040. {
  6041. "name": "Bernhard Schussek",
  6042. "email": "bschussek@gmail.com"
  6043. }
  6044. ],
  6045. "description": "Assertions to validate method input/output with nice error messages.",
  6046. "keywords": [
  6047. "assert",
  6048. "check",
  6049. "validate"
  6050. ],
  6051. "time": "2020-06-16T10:16:42+00:00"
  6052. }
  6053. ],
  6054. "aliases": [],
  6055. "minimum-stability": "dev",
  6056. "stability-flags": [],
  6057. "prefer-stable": true,
  6058. "prefer-lowest": false,
  6059. "platform": {
  6060. "php": "^7.2.5",
  6061. "ext-json": "*"
  6062. },
  6063. "platform-dev": [],
  6064. "plugin-api-version": "2.0.0"
  6065. }