composer.lock 217 KB

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