composer.lock 246 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "116fc4dba2a565bc3f5da55f7fe3368e",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-iconv": "*",
  25. "php": "^5.4|^7.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8"
  29. },
  30. "suggest": {
  31. "ext-gd": "to generate QR code images"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "BaconQrCode": "src/"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "BSD-2-Clause"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Ben Scholzen 'DASPRiD'",
  46. "email": "mail@dasprids.de",
  47. "homepage": "http://www.dasprids.de",
  48. "role": "Developer"
  49. }
  50. ],
  51. "description": "BaconQrCode is a QR code generator for PHP.",
  52. "homepage": "https://github.com/Bacon/BaconQrCode",
  53. "time": "2017-10-17T09:59:25+00:00"
  54. },
  55. {
  56. "name": "caouecs/laravel-lang",
  57. "version": "3.0.62",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/caouecs/Laravel-lang.git",
  61. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/caouecs/Laravel-lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  66. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  67. "shasum": ""
  68. },
  69. "require-dev": {
  70. "friendsofphp/php-cs-fixer": "^2.10"
  71. },
  72. "suggest": {
  73. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  74. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  75. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  76. "overtrue/laravel-lang": "Command to add languages in your project"
  77. },
  78. "type": "library",
  79. "notification-url": "https://packagist.org/downloads/",
  80. "license": [
  81. "MIT"
  82. ],
  83. "authors": [
  84. {
  85. "name": "caouecs",
  86. "email": "caouecs@caouecs.net"
  87. }
  88. ],
  89. "description": "Languages for Laravel",
  90. "keywords": [
  91. "lang",
  92. "languages",
  93. "laravel",
  94. "lpm"
  95. ],
  96. "time": "2019-03-17T10:36:46+00:00"
  97. },
  98. {
  99. "name": "dnoegel/php-xdg-base-dir",
  100. "version": "0.1",
  101. "source": {
  102. "type": "git",
  103. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  104. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  105. },
  106. "dist": {
  107. "type": "zip",
  108. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  109. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  110. "shasum": ""
  111. },
  112. "require": {
  113. "php": ">=5.3.2"
  114. },
  115. "require-dev": {
  116. "phpunit/phpunit": "@stable"
  117. },
  118. "type": "project",
  119. "autoload": {
  120. "psr-4": {
  121. "XdgBaseDir\\": "src/"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "MIT"
  127. ],
  128. "description": "implementation of xdg base directory specification for php",
  129. "time": "2014-10-24T07:27:01+00:00"
  130. },
  131. {
  132. "name": "doctrine/cache",
  133. "version": "v1.8.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/doctrine/cache.git",
  137. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  142. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": "~7.1"
  147. },
  148. "conflict": {
  149. "doctrine/common": ">2.2,<2.4"
  150. },
  151. "require-dev": {
  152. "alcaeus/mongo-php-adapter": "^1.1",
  153. "doctrine/coding-standard": "^4.0",
  154. "mongodb/mongodb": "^1.1",
  155. "phpunit/phpunit": "^7.0",
  156. "predis/predis": "~1.0"
  157. },
  158. "suggest": {
  159. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  160. },
  161. "type": "library",
  162. "extra": {
  163. "branch-alias": {
  164. "dev-master": "1.8.x-dev"
  165. }
  166. },
  167. "autoload": {
  168. "psr-4": {
  169. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Roman Borschel",
  179. "email": "roman@code-factory.org"
  180. },
  181. {
  182. "name": "Benjamin Eberlei",
  183. "email": "kontakt@beberlei.de"
  184. },
  185. {
  186. "name": "Guilherme Blanco",
  187. "email": "guilhermeblanco@gmail.com"
  188. },
  189. {
  190. "name": "Jonathan Wage",
  191. "email": "jonwage@gmail.com"
  192. },
  193. {
  194. "name": "Johannes Schmitt",
  195. "email": "schmittjoh@gmail.com"
  196. }
  197. ],
  198. "description": "Caching library offering an object-oriented API for many cache backends",
  199. "homepage": "https://www.doctrine-project.org",
  200. "keywords": [
  201. "cache",
  202. "caching"
  203. ],
  204. "time": "2018-08-21T18:01:43+00:00"
  205. },
  206. {
  207. "name": "doctrine/dbal",
  208. "version": "v2.9.2",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/doctrine/dbal.git",
  212. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  217. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "doctrine/cache": "^1.0",
  222. "doctrine/event-manager": "^1.0",
  223. "ext-pdo": "*",
  224. "php": "^7.1"
  225. },
  226. "require-dev": {
  227. "doctrine/coding-standard": "^5.0",
  228. "jetbrains/phpstorm-stubs": "^2018.1.2",
  229. "phpstan/phpstan": "^0.10.1",
  230. "phpunit/phpunit": "^7.4",
  231. "symfony/console": "^2.0.5|^3.0|^4.0",
  232. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  233. },
  234. "suggest": {
  235. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  236. },
  237. "bin": [
  238. "bin/doctrine-dbal"
  239. ],
  240. "type": "library",
  241. "extra": {
  242. "branch-alias": {
  243. "dev-master": "2.9.x-dev",
  244. "dev-develop": "3.0.x-dev"
  245. }
  246. },
  247. "autoload": {
  248. "psr-4": {
  249. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  250. }
  251. },
  252. "notification-url": "https://packagist.org/downloads/",
  253. "license": [
  254. "MIT"
  255. ],
  256. "authors": [
  257. {
  258. "name": "Roman Borschel",
  259. "email": "roman@code-factory.org"
  260. },
  261. {
  262. "name": "Benjamin Eberlei",
  263. "email": "kontakt@beberlei.de"
  264. },
  265. {
  266. "name": "Guilherme Blanco",
  267. "email": "guilhermeblanco@gmail.com"
  268. },
  269. {
  270. "name": "Jonathan Wage",
  271. "email": "jonwage@gmail.com"
  272. }
  273. ],
  274. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  275. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  276. "keywords": [
  277. "abstraction",
  278. "database",
  279. "dbal",
  280. "mysql",
  281. "persistence",
  282. "pgsql",
  283. "php",
  284. "queryobject"
  285. ],
  286. "time": "2018-12-31T03:27:51+00:00"
  287. },
  288. {
  289. "name": "doctrine/event-manager",
  290. "version": "v1.0.0",
  291. "source": {
  292. "type": "git",
  293. "url": "https://github.com/doctrine/event-manager.git",
  294. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  295. },
  296. "dist": {
  297. "type": "zip",
  298. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  299. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  300. "shasum": ""
  301. },
  302. "require": {
  303. "php": "^7.1"
  304. },
  305. "conflict": {
  306. "doctrine/common": "<2.9@dev"
  307. },
  308. "require-dev": {
  309. "doctrine/coding-standard": "^4.0",
  310. "phpunit/phpunit": "^7.0"
  311. },
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-master": "1.0.x-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Doctrine\\Common\\": "lib/Doctrine/Common"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Roman Borschel",
  330. "email": "roman@code-factory.org"
  331. },
  332. {
  333. "name": "Benjamin Eberlei",
  334. "email": "kontakt@beberlei.de"
  335. },
  336. {
  337. "name": "Guilherme Blanco",
  338. "email": "guilhermeblanco@gmail.com"
  339. },
  340. {
  341. "name": "Jonathan Wage",
  342. "email": "jonwage@gmail.com"
  343. },
  344. {
  345. "name": "Johannes Schmitt",
  346. "email": "schmittjoh@gmail.com"
  347. },
  348. {
  349. "name": "Marco Pivetta",
  350. "email": "ocramius@gmail.com"
  351. }
  352. ],
  353. "description": "Doctrine Event Manager component",
  354. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  355. "keywords": [
  356. "event",
  357. "eventdispatcher",
  358. "eventmanager"
  359. ],
  360. "time": "2018-06-11T11:59:03+00:00"
  361. },
  362. {
  363. "name": "doctrine/inflector",
  364. "version": "v1.3.0",
  365. "source": {
  366. "type": "git",
  367. "url": "https://github.com/doctrine/inflector.git",
  368. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  369. },
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  373. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  374. "shasum": ""
  375. },
  376. "require": {
  377. "php": "^7.1"
  378. },
  379. "require-dev": {
  380. "phpunit/phpunit": "^6.2"
  381. },
  382. "type": "library",
  383. "extra": {
  384. "branch-alias": {
  385. "dev-master": "1.3.x-dev"
  386. }
  387. },
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Roman Borschel",
  400. "email": "roman@code-factory.org"
  401. },
  402. {
  403. "name": "Benjamin Eberlei",
  404. "email": "kontakt@beberlei.de"
  405. },
  406. {
  407. "name": "Guilherme Blanco",
  408. "email": "guilhermeblanco@gmail.com"
  409. },
  410. {
  411. "name": "Jonathan Wage",
  412. "email": "jonwage@gmail.com"
  413. },
  414. {
  415. "name": "Johannes Schmitt",
  416. "email": "schmittjoh@gmail.com"
  417. }
  418. ],
  419. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  420. "homepage": "http://www.doctrine-project.org",
  421. "keywords": [
  422. "inflection",
  423. "pluralize",
  424. "singularize",
  425. "string"
  426. ],
  427. "time": "2018-01-09T20:05:19+00:00"
  428. },
  429. {
  430. "name": "doctrine/lexer",
  431. "version": "v1.0.1",
  432. "source": {
  433. "type": "git",
  434. "url": "https://github.com/doctrine/lexer.git",
  435. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  436. },
  437. "dist": {
  438. "type": "zip",
  439. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  440. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  441. "shasum": ""
  442. },
  443. "require": {
  444. "php": ">=5.3.2"
  445. },
  446. "type": "library",
  447. "extra": {
  448. "branch-alias": {
  449. "dev-master": "1.0.x-dev"
  450. }
  451. },
  452. "autoload": {
  453. "psr-0": {
  454. "Doctrine\\Common\\Lexer\\": "lib/"
  455. }
  456. },
  457. "notification-url": "https://packagist.org/downloads/",
  458. "license": [
  459. "MIT"
  460. ],
  461. "authors": [
  462. {
  463. "name": "Roman Borschel",
  464. "email": "roman@code-factory.org"
  465. },
  466. {
  467. "name": "Guilherme Blanco",
  468. "email": "guilhermeblanco@gmail.com"
  469. },
  470. {
  471. "name": "Johannes Schmitt",
  472. "email": "schmittjoh@gmail.com"
  473. }
  474. ],
  475. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  476. "homepage": "http://www.doctrine-project.org",
  477. "keywords": [
  478. "lexer",
  479. "parser"
  480. ],
  481. "time": "2014-09-09T13:34:57+00:00"
  482. },
  483. {
  484. "name": "egulias/email-validator",
  485. "version": "2.1.7",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/egulias/EmailValidator.git",
  489. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  494. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  495. "shasum": ""
  496. },
  497. "require": {
  498. "doctrine/lexer": "^1.0.1",
  499. "php": ">= 5.5"
  500. },
  501. "require-dev": {
  502. "dominicsayers/isemail": "dev-master",
  503. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  504. "satooshi/php-coveralls": "^1.0.1"
  505. },
  506. "suggest": {
  507. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-master": "2.0.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Egulias\\EmailValidator\\": "EmailValidator"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Eduardo Gulias Davis"
  527. }
  528. ],
  529. "description": "A library for validating emails against several RFCs",
  530. "homepage": "https://github.com/egulias/EmailValidator",
  531. "keywords": [
  532. "email",
  533. "emailvalidation",
  534. "emailvalidator",
  535. "validation",
  536. "validator"
  537. ],
  538. "time": "2018-12-04T22:38:24+00:00"
  539. },
  540. {
  541. "name": "encore/laravel-admin",
  542. "version": "v1.6.10",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/z-song/laravel-admin.git",
  546. "reference": "f412485946265f9a8fd3bfb53071ff43bec9a56c"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/f412485946265f9a8fd3bfb53071ff43bec9a56c",
  551. "reference": "f412485946265f9a8fd3bfb53071ff43bec9a56c",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "doctrine/dbal": "2.*",
  556. "laravel/framework": "~5.5",
  557. "php": ">=7.0.0",
  558. "symfony/dom-crawler": "~3.1|~4.0"
  559. },
  560. "require-dev": {
  561. "fzaninotto/faker": "~1.4",
  562. "intervention/image": "~2.3",
  563. "laravel/browser-kit-testing": "^2.0",
  564. "laravel/laravel": "~5.5",
  565. "phpunit/phpunit": "~6.0",
  566. "symfony/css-selector": "~3.1"
  567. },
  568. "suggest": {
  569. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  570. "spatie/eloquent-sortable": "Required to built orderable gird."
  571. },
  572. "type": "library",
  573. "extra": {
  574. "laravel": {
  575. "providers": [
  576. "Encore\\Admin\\AdminServiceProvider"
  577. ],
  578. "aliases": {
  579. "Admin": "Encore\\Admin\\Facades\\Admin"
  580. }
  581. }
  582. },
  583. "autoload": {
  584. "psr-4": {
  585. "Encore\\Admin\\": "src/"
  586. },
  587. "files": [
  588. "src/helpers.php"
  589. ]
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "zsong",
  598. "email": "zosong@126.com"
  599. }
  600. ],
  601. "description": "laravel admin",
  602. "homepage": "https://github.com/z-song/laravel-admin",
  603. "keywords": [
  604. "admin",
  605. "form",
  606. "grid",
  607. "laravel"
  608. ],
  609. "time": "2019-03-10T16:55:45+00:00"
  610. },
  611. {
  612. "name": "erusev/parsedown",
  613. "version": "v1.7.2",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/erusev/parsedown.git",
  617. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/erusev/parsedown/zipball/d60bcdc46978357759ecb13cb4b078da783f8faf",
  622. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "ext-mbstring": "*",
  627. "php": ">=5.3.0"
  628. },
  629. "require-dev": {
  630. "phpunit/phpunit": "^4.8.35"
  631. },
  632. "type": "library",
  633. "autoload": {
  634. "psr-0": {
  635. "Parsedown": ""
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Emanuil Rusev",
  645. "email": "hello@erusev.com",
  646. "homepage": "http://erusev.com"
  647. }
  648. ],
  649. "description": "Parser for Markdown.",
  650. "homepage": "http://parsedown.org",
  651. "keywords": [
  652. "markdown",
  653. "parser"
  654. ],
  655. "time": "2019-03-17T17:19:46+00:00"
  656. },
  657. {
  658. "name": "fideloper/proxy",
  659. "version": "3.3.4",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/fideloper/TrustedProxy.git",
  663. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  668. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "illuminate/contracts": "~5.0",
  673. "php": ">=5.4.0"
  674. },
  675. "require-dev": {
  676. "illuminate/http": "~5.0",
  677. "mockery/mockery": "~0.9.3",
  678. "phpunit/phpunit": "^5.7"
  679. },
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "3.3-dev"
  684. },
  685. "laravel": {
  686. "providers": [
  687. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  688. ]
  689. }
  690. },
  691. "autoload": {
  692. "psr-4": {
  693. "Fideloper\\Proxy\\": "src/"
  694. }
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "MIT"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Chris Fidao",
  703. "email": "fideloper@gmail.com"
  704. }
  705. ],
  706. "description": "Set trusted proxies for Laravel",
  707. "keywords": [
  708. "load balancing",
  709. "proxy",
  710. "trusted proxy"
  711. ],
  712. "time": "2017-06-15T17:19:42+00:00"
  713. },
  714. {
  715. "name": "guzzlehttp/guzzle",
  716. "version": "6.3.3",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/guzzle/guzzle.git",
  720. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  725. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "guzzlehttp/promises": "^1.0",
  730. "guzzlehttp/psr7": "^1.4",
  731. "php": ">=5.5"
  732. },
  733. "require-dev": {
  734. "ext-curl": "*",
  735. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  736. "psr/log": "^1.0"
  737. },
  738. "suggest": {
  739. "psr/log": "Required for using the Log middleware"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-master": "6.3-dev"
  745. }
  746. },
  747. "autoload": {
  748. "files": [
  749. "src/functions_include.php"
  750. ],
  751. "psr-4": {
  752. "GuzzleHttp\\": "src/"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Michael Dowling",
  762. "email": "mtdowling@gmail.com",
  763. "homepage": "https://github.com/mtdowling"
  764. }
  765. ],
  766. "description": "Guzzle is a PHP HTTP client library",
  767. "homepage": "http://guzzlephp.org/",
  768. "keywords": [
  769. "client",
  770. "curl",
  771. "framework",
  772. "http",
  773. "http client",
  774. "rest",
  775. "web service"
  776. ],
  777. "time": "2018-04-22T15:46:56+00:00"
  778. },
  779. {
  780. "name": "guzzlehttp/promises",
  781. "version": "v1.3.1",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/guzzle/promises.git",
  785. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  790. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": ">=5.5.0"
  795. },
  796. "require-dev": {
  797. "phpunit/phpunit": "^4.0"
  798. },
  799. "type": "library",
  800. "extra": {
  801. "branch-alias": {
  802. "dev-master": "1.4-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "GuzzleHttp\\Promise\\": "src/"
  808. },
  809. "files": [
  810. "src/functions_include.php"
  811. ]
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Michael Dowling",
  820. "email": "mtdowling@gmail.com",
  821. "homepage": "https://github.com/mtdowling"
  822. }
  823. ],
  824. "description": "Guzzle promises library",
  825. "keywords": [
  826. "promise"
  827. ],
  828. "time": "2016-12-20T10:07:11+00:00"
  829. },
  830. {
  831. "name": "guzzlehttp/psr7",
  832. "version": "1.5.2",
  833. "source": {
  834. "type": "git",
  835. "url": "https://github.com/guzzle/psr7.git",
  836. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  837. },
  838. "dist": {
  839. "type": "zip",
  840. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  841. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  842. "shasum": ""
  843. },
  844. "require": {
  845. "php": ">=5.4.0",
  846. "psr/http-message": "~1.0",
  847. "ralouphie/getallheaders": "^2.0.5"
  848. },
  849. "provide": {
  850. "psr/http-message-implementation": "1.0"
  851. },
  852. "require-dev": {
  853. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  854. },
  855. "type": "library",
  856. "extra": {
  857. "branch-alias": {
  858. "dev-master": "1.5-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "GuzzleHttp\\Psr7\\": "src/"
  864. },
  865. "files": [
  866. "src/functions_include.php"
  867. ]
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "authors": [
  874. {
  875. "name": "Michael Dowling",
  876. "email": "mtdowling@gmail.com",
  877. "homepage": "https://github.com/mtdowling"
  878. },
  879. {
  880. "name": "Tobias Schultze",
  881. "homepage": "https://github.com/Tobion"
  882. }
  883. ],
  884. "description": "PSR-7 message implementation that also provides common utility methods",
  885. "keywords": [
  886. "http",
  887. "message",
  888. "psr-7",
  889. "request",
  890. "response",
  891. "stream",
  892. "uri",
  893. "url"
  894. ],
  895. "time": "2018-12-04T20:46:45+00:00"
  896. },
  897. {
  898. "name": "ixudra/curl",
  899. "version": "6.16.0",
  900. "source": {
  901. "type": "git",
  902. "url": "https://github.com/ixudra/curl.git",
  903. "reference": "1ab270e48082ee6e7f32fa72412c2c81eb974516"
  904. },
  905. "dist": {
  906. "type": "zip",
  907. "url": "https://api.github.com/repos/ixudra/curl/zipball/1ab270e48082ee6e7f32fa72412c2c81eb974516",
  908. "reference": "1ab270e48082ee6e7f32fa72412c2c81eb974516",
  909. "shasum": ""
  910. },
  911. "require": {
  912. "illuminate/support": ">=4.0",
  913. "php": ">=5.4.0"
  914. },
  915. "type": "library",
  916. "extra": {
  917. "laravel": {
  918. "providers": [
  919. "Ixudra\\Curl\\CurlServiceProvider"
  920. ],
  921. "aliases": {
  922. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  923. }
  924. }
  925. },
  926. "autoload": {
  927. "psr-4": {
  928. "Ixudra\\Curl\\": "src/"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "MIT"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Jan Oris",
  938. "email": "jan.oris@ixudra.be"
  939. }
  940. ],
  941. "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
  942. "homepage": "http://ixudra.be",
  943. "keywords": [
  944. "Ixudra",
  945. "curl",
  946. "laravel"
  947. ],
  948. "time": "2017-12-08T14:31:13+00:00"
  949. },
  950. {
  951. "name": "jakub-onderka/php-console-color",
  952. "version": "v0.2",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  956. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  961. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  962. "shasum": ""
  963. },
  964. "require": {
  965. "php": ">=5.4.0"
  966. },
  967. "require-dev": {
  968. "jakub-onderka/php-code-style": "1.0",
  969. "jakub-onderka/php-parallel-lint": "1.0",
  970. "jakub-onderka/php-var-dump-check": "0.*",
  971. "phpunit/phpunit": "~4.3",
  972. "squizlabs/php_codesniffer": "1.*"
  973. },
  974. "type": "library",
  975. "autoload": {
  976. "psr-4": {
  977. "JakubOnderka\\PhpConsoleColor\\": "src/"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "BSD-2-Clause"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Jakub Onderka",
  987. "email": "jakub.onderka@gmail.com"
  988. }
  989. ],
  990. "time": "2018-09-29T17:23:10+00:00"
  991. },
  992. {
  993. "name": "jakub-onderka/php-console-highlighter",
  994. "version": "v0.4",
  995. "source": {
  996. "type": "git",
  997. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  998. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  999. },
  1000. "dist": {
  1001. "type": "zip",
  1002. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1003. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1004. "shasum": ""
  1005. },
  1006. "require": {
  1007. "ext-tokenizer": "*",
  1008. "jakub-onderka/php-console-color": "~0.2",
  1009. "php": ">=5.4.0"
  1010. },
  1011. "require-dev": {
  1012. "jakub-onderka/php-code-style": "~1.0",
  1013. "jakub-onderka/php-parallel-lint": "~1.0",
  1014. "jakub-onderka/php-var-dump-check": "~0.1",
  1015. "phpunit/phpunit": "~4.0",
  1016. "squizlabs/php_codesniffer": "~1.5"
  1017. },
  1018. "type": "library",
  1019. "autoload": {
  1020. "psr-4": {
  1021. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1022. }
  1023. },
  1024. "notification-url": "https://packagist.org/downloads/",
  1025. "license": [
  1026. "MIT"
  1027. ],
  1028. "authors": [
  1029. {
  1030. "name": "Jakub Onderka",
  1031. "email": "acci@acci.cz",
  1032. "homepage": "http://www.acci.cz/"
  1033. }
  1034. ],
  1035. "description": "Highlight PHP code in terminal",
  1036. "time": "2018-09-29T18:48:56+00:00"
  1037. },
  1038. {
  1039. "name": "laravel-admin-ext/backup",
  1040. "version": "v1.0.2",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/laravel-admin-extensions/backup.git",
  1044. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/laravel-admin-extensions/backup/zipball/9477a6ad6d345333cc3f39285a9b786836715bfe",
  1049. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe",
  1050. "shasum": ""
  1051. },
  1052. "require": {
  1053. "encore/laravel-admin": "~1.5",
  1054. "laravel/framework": "~5.5",
  1055. "php": ">=7.0.0",
  1056. "spatie/laravel-backup": "^5.0"
  1057. },
  1058. "require-dev": {
  1059. "laravel/laravel": "~5.5",
  1060. "phpunit/phpunit": "~6.0"
  1061. },
  1062. "type": "library",
  1063. "extra": {
  1064. "laravel": {
  1065. "providers": [
  1066. "Encore\\Admin\\Backup\\BackupServiceProvider"
  1067. ]
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "Encore\\Admin\\Backup\\": "src/"
  1073. }
  1074. },
  1075. "notification-url": "https://packagist.org/downloads/",
  1076. "license": [
  1077. "MIT"
  1078. ],
  1079. "authors": [
  1080. {
  1081. "name": "z-song",
  1082. "email": "zosong@126.com"
  1083. }
  1084. ],
  1085. "description": "Backup extension for laravel-admin",
  1086. "homepage": "https://github.com/laravel-admin-extensions/backup",
  1087. "keywords": [
  1088. "backup",
  1089. "laravel-admin"
  1090. ],
  1091. "time": "2018-04-24T11:45:17+00:00"
  1092. },
  1093. {
  1094. "name": "laravel-admin-ext/helpers",
  1095. "version": "v1.1.1",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/laravel-admin-extensions/helpers.git",
  1099. "reference": "67b2573029f90ca1873e1598a2d46ae8d9acca66"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/laravel-admin-extensions/helpers/zipball/67b2573029f90ca1873e1598a2d46ae8d9acca66",
  1104. "reference": "67b2573029f90ca1873e1598a2d46ae8d9acca66",
  1105. "shasum": ""
  1106. },
  1107. "require": {
  1108. "encore/laravel-admin": "~1.6",
  1109. "php": ">=7.0.0"
  1110. },
  1111. "require-dev": {
  1112. "phpunit/phpunit": "~6.0"
  1113. },
  1114. "type": "library",
  1115. "extra": {
  1116. "laravel": {
  1117. "providers": [
  1118. "Encore\\Admin\\Helpers\\HelpersServiceProvider"
  1119. ]
  1120. }
  1121. },
  1122. "autoload": {
  1123. "psr-4": {
  1124. "Encore\\Admin\\Helpers\\": "src/"
  1125. }
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "z-song",
  1134. "email": "zosong@126.com"
  1135. }
  1136. ],
  1137. "description": "Helpers extension for laravel-admin",
  1138. "homepage": "https://github.com/laravel-admin-extensions/helpers",
  1139. "keywords": [
  1140. "helpers",
  1141. "laravel-admin"
  1142. ],
  1143. "time": "2018-10-24T15:21:11+00:00"
  1144. },
  1145. {
  1146. "name": "laravel-admin-ext/log-viewer",
  1147. "version": "v1.0.3",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/laravel-admin-extensions/log-viewer.git",
  1151. "reference": "742a2550746c9346d463249ba16b8fba9ac9cf97"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/laravel-admin-extensions/log-viewer/zipball/742a2550746c9346d463249ba16b8fba9ac9cf97",
  1156. "reference": "742a2550746c9346d463249ba16b8fba9ac9cf97",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "encore/laravel-admin": "~1.6",
  1161. "php": ">=7.0.0"
  1162. },
  1163. "require-dev": {
  1164. "phpunit/phpunit": "~6.0"
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "laravel": {
  1169. "providers": [
  1170. "Encore\\Admin\\LogViewer\\LogViewerServiceProvider"
  1171. ]
  1172. }
  1173. },
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Encore\\Admin\\LogViewer\\": "src/"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "z-song",
  1186. "email": "zosong@126.com"
  1187. }
  1188. ],
  1189. "description": "Log viewer for laravel",
  1190. "homepage": "https://github.com/laravel-admin-extensions/log-viewer",
  1191. "keywords": [
  1192. "Viewer",
  1193. "laravel-admin",
  1194. "log"
  1195. ],
  1196. "time": "2018-11-13T17:17:36+00:00"
  1197. },
  1198. {
  1199. "name": "laravel-admin-ext/media-manager",
  1200. "version": "v1.0.2",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/laravel-admin-extensions/media-manager.git",
  1204. "reference": "3545f3b88893ad4787ba89925503678b55b689c8"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/laravel-admin-extensions/media-manager/zipball/3545f3b88893ad4787ba89925503678b55b689c8",
  1209. "reference": "3545f3b88893ad4787ba89925503678b55b689c8",
  1210. "shasum": ""
  1211. },
  1212. "require": {
  1213. "encore/laravel-admin": "~1.5",
  1214. "laravel/framework": "~5.5",
  1215. "php": ">=7.0.0"
  1216. },
  1217. "require-dev": {
  1218. "laravel/laravel": "~5.5",
  1219. "phpunit/phpunit": "~6.0"
  1220. },
  1221. "type": "library",
  1222. "extra": {
  1223. "laravel": {
  1224. "providers": [
  1225. "Encore\\Admin\\Media\\MediaServiceProvider"
  1226. ]
  1227. }
  1228. },
  1229. "autoload": {
  1230. "psr-4": {
  1231. "Encore\\Admin\\Media\\": "src/"
  1232. }
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "z-song",
  1241. "email": "zosong@126.com"
  1242. }
  1243. ],
  1244. "description": "Media manager for laravel",
  1245. "homepage": "https://github.com/laravel-admin-extensions/media-manager",
  1246. "keywords": [
  1247. "laravel-admin",
  1248. "manager",
  1249. "media"
  1250. ],
  1251. "time": "2018-09-23T06:02:37+00:00"
  1252. },
  1253. {
  1254. "name": "laravel-admin-ext/redis-manager",
  1255. "version": "v1.0.3",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/laravel-admin-extensions/redis-manager.git",
  1259. "reference": "f90711b6325ab057bd3bedd9e4958f3ccc29636e"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/laravel-admin-extensions/redis-manager/zipball/f90711b6325ab057bd3bedd9e4958f3ccc29636e",
  1264. "reference": "f90711b6325ab057bd3bedd9e4958f3ccc29636e",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "encore/laravel-admin": "~1.5",
  1269. "laravel/framework": "~5.5",
  1270. "php": ">=7.0.0",
  1271. "predis/predis": "~1.0"
  1272. },
  1273. "require-dev": {
  1274. "laravel/laravel": "~5.5",
  1275. "phpunit/phpunit": "~6.0"
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "laravel": {
  1280. "providers": [
  1281. "Encore\\Admin\\RedisManager\\RedisManagerServiceProvider"
  1282. ]
  1283. }
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Encore\\Admin\\RedisManager\\": "src/"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "MIT"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "z-song",
  1297. "email": "zosong@126.com"
  1298. }
  1299. ],
  1300. "description": "Redis manager for laravel-admin",
  1301. "homepage": "https://github.com/laravel-admin-extensions/redis-manager",
  1302. "keywords": [
  1303. "laravel-admin",
  1304. "manager",
  1305. "redis"
  1306. ],
  1307. "time": "2019-01-03T02:21:11+00:00"
  1308. },
  1309. {
  1310. "name": "laravel/framework",
  1311. "version": "v5.5.45",
  1312. "source": {
  1313. "type": "git",
  1314. "url": "https://github.com/laravel/framework.git",
  1315. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80"
  1316. },
  1317. "dist": {
  1318. "type": "zip",
  1319. "url": "https://api.github.com/repos/laravel/framework/zipball/52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1320. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1321. "shasum": ""
  1322. },
  1323. "require": {
  1324. "doctrine/inflector": "~1.1",
  1325. "erusev/parsedown": "~1.7",
  1326. "ext-mbstring": "*",
  1327. "ext-openssl": "*",
  1328. "league/flysystem": "^1.0.8",
  1329. "monolog/monolog": "~1.12",
  1330. "mtdowling/cron-expression": "~1.0",
  1331. "nesbot/carbon": "^1.26.0",
  1332. "php": ">=7.0",
  1333. "psr/container": "~1.0",
  1334. "psr/simple-cache": "^1.0",
  1335. "ramsey/uuid": "~3.0",
  1336. "swiftmailer/swiftmailer": "~6.0",
  1337. "symfony/console": "~3.3",
  1338. "symfony/debug": "~3.3",
  1339. "symfony/finder": "~3.3",
  1340. "symfony/http-foundation": "~3.3",
  1341. "symfony/http-kernel": "~3.3",
  1342. "symfony/process": "~3.3",
  1343. "symfony/routing": "~3.3",
  1344. "symfony/var-dumper": "~3.3",
  1345. "tijsverkoyen/css-to-inline-styles": "~2.2",
  1346. "vlucas/phpdotenv": "~2.2"
  1347. },
  1348. "replace": {
  1349. "illuminate/auth": "self.version",
  1350. "illuminate/broadcasting": "self.version",
  1351. "illuminate/bus": "self.version",
  1352. "illuminate/cache": "self.version",
  1353. "illuminate/config": "self.version",
  1354. "illuminate/console": "self.version",
  1355. "illuminate/container": "self.version",
  1356. "illuminate/contracts": "self.version",
  1357. "illuminate/cookie": "self.version",
  1358. "illuminate/database": "self.version",
  1359. "illuminate/encryption": "self.version",
  1360. "illuminate/events": "self.version",
  1361. "illuminate/filesystem": "self.version",
  1362. "illuminate/hashing": "self.version",
  1363. "illuminate/http": "self.version",
  1364. "illuminate/log": "self.version",
  1365. "illuminate/mail": "self.version",
  1366. "illuminate/notifications": "self.version",
  1367. "illuminate/pagination": "self.version",
  1368. "illuminate/pipeline": "self.version",
  1369. "illuminate/queue": "self.version",
  1370. "illuminate/redis": "self.version",
  1371. "illuminate/routing": "self.version",
  1372. "illuminate/session": "self.version",
  1373. "illuminate/support": "self.version",
  1374. "illuminate/translation": "self.version",
  1375. "illuminate/validation": "self.version",
  1376. "illuminate/view": "self.version",
  1377. "tightenco/collect": "<5.5.33"
  1378. },
  1379. "require-dev": {
  1380. "aws/aws-sdk-php": "~3.0",
  1381. "doctrine/dbal": "~2.5",
  1382. "filp/whoops": "^2.1.4",
  1383. "mockery/mockery": "~1.0",
  1384. "orchestra/testbench-core": "3.5.*",
  1385. "pda/pheanstalk": "~3.0",
  1386. "phpunit/phpunit": "~6.0",
  1387. "predis/predis": "^1.1.1",
  1388. "symfony/css-selector": "~3.3",
  1389. "symfony/dom-crawler": "~3.3"
  1390. },
  1391. "suggest": {
  1392. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  1393. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  1394. "ext-pcntl": "Required to use all features of the queue worker.",
  1395. "ext-posix": "Required to use all features of the queue worker.",
  1396. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  1397. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  1398. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1399. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  1400. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  1401. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  1402. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  1403. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  1404. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  1405. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  1406. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  1407. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  1408. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "5.5-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "files": [
  1418. "src/Illuminate/Foundation/helpers.php",
  1419. "src/Illuminate/Support/helpers.php"
  1420. ],
  1421. "psr-4": {
  1422. "Illuminate\\": "src/Illuminate/"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "authors": [
  1430. {
  1431. "name": "Taylor Otwell",
  1432. "email": "taylor@laravel.com"
  1433. }
  1434. ],
  1435. "description": "The Laravel Framework.",
  1436. "homepage": "https://laravel.com",
  1437. "keywords": [
  1438. "framework",
  1439. "laravel"
  1440. ],
  1441. "time": "2019-01-28T20:53:19+00:00"
  1442. },
  1443. {
  1444. "name": "laravel/tinker",
  1445. "version": "v1.0.8",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/laravel/tinker.git",
  1449. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1454. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "illuminate/console": "~5.1",
  1459. "illuminate/contracts": "~5.1",
  1460. "illuminate/support": "~5.1",
  1461. "php": ">=5.5.9",
  1462. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1463. "symfony/var-dumper": "~3.0|~4.0"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": "~4.0|~5.0"
  1467. },
  1468. "suggest": {
  1469. "illuminate/database": "The Illuminate Database package (~5.1)."
  1470. },
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "1.0-dev"
  1475. },
  1476. "laravel": {
  1477. "providers": [
  1478. "Laravel\\Tinker\\TinkerServiceProvider"
  1479. ]
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Laravel\\Tinker\\": "src/"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Taylor Otwell",
  1494. "email": "taylor@laravel.com"
  1495. }
  1496. ],
  1497. "description": "Powerful REPL for the Laravel framework.",
  1498. "keywords": [
  1499. "REPL",
  1500. "Tinker",
  1501. "laravel",
  1502. "psysh"
  1503. ],
  1504. "time": "2018-10-12T19:39:35+00:00"
  1505. },
  1506. {
  1507. "name": "lcobucci/jwt",
  1508. "version": "3.2.5",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/lcobucci/jwt.git",
  1512. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  1517. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "ext-openssl": "*",
  1522. "php": ">=5.5"
  1523. },
  1524. "require-dev": {
  1525. "mdanter/ecc": "~0.3.1",
  1526. "mikey179/vfsstream": "~1.5",
  1527. "phpmd/phpmd": "~2.2",
  1528. "phpunit/php-invoker": "~1.1",
  1529. "phpunit/phpunit": "~4.5",
  1530. "squizlabs/php_codesniffer": "~2.3"
  1531. },
  1532. "suggest": {
  1533. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  1534. },
  1535. "type": "library",
  1536. "extra": {
  1537. "branch-alias": {
  1538. "dev-master": "3.1-dev"
  1539. }
  1540. },
  1541. "autoload": {
  1542. "psr-4": {
  1543. "Lcobucci\\JWT\\": "src"
  1544. }
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "BSD-3-Clause"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Luís Otávio Cobucci Oblonczyk",
  1553. "email": "lcobucci@gmail.com",
  1554. "role": "Developer"
  1555. }
  1556. ],
  1557. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1558. "keywords": [
  1559. "JWS",
  1560. "jwt"
  1561. ],
  1562. "time": "2018-11-11T12:22:26+00:00"
  1563. },
  1564. {
  1565. "name": "league/flysystem",
  1566. "version": "1.0.50",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/thephpleague/flysystem.git",
  1570. "reference": "dab4e7624efa543a943be978008f439c333f2249"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dab4e7624efa543a943be978008f439c333f2249",
  1575. "reference": "dab4e7624efa543a943be978008f439c333f2249",
  1576. "shasum": ""
  1577. },
  1578. "require": {
  1579. "ext-fileinfo": "*",
  1580. "php": ">=5.5.9"
  1581. },
  1582. "conflict": {
  1583. "league/flysystem-sftp": "<1.0.6"
  1584. },
  1585. "require-dev": {
  1586. "phpspec/phpspec": "^3.4",
  1587. "phpunit/phpunit": "^5.7.10"
  1588. },
  1589. "suggest": {
  1590. "ext-fileinfo": "Required for MimeType",
  1591. "ext-ftp": "Allows you to use FTP server storage",
  1592. "ext-openssl": "Allows you to use FTPS server storage",
  1593. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1594. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1595. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1596. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1597. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1598. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1599. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1600. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1601. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1602. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1603. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-master": "1.1-dev"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "League\\Flysystem\\": "src/"
  1614. }
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "Frank de Jonge",
  1623. "email": "info@frenky.net"
  1624. }
  1625. ],
  1626. "description": "Filesystem abstraction: Many filesystems, one API.",
  1627. "keywords": [
  1628. "Cloud Files",
  1629. "WebDAV",
  1630. "abstraction",
  1631. "aws",
  1632. "cloud",
  1633. "copy.com",
  1634. "dropbox",
  1635. "file systems",
  1636. "files",
  1637. "filesystem",
  1638. "filesystems",
  1639. "ftp",
  1640. "rackspace",
  1641. "remote",
  1642. "s3",
  1643. "sftp",
  1644. "storage"
  1645. ],
  1646. "time": "2019-02-01T08:50:36+00:00"
  1647. },
  1648. {
  1649. "name": "monolog/monolog",
  1650. "version": "1.24.0",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/Seldaek/monolog.git",
  1654. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1659. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": ">=5.3.0",
  1664. "psr/log": "~1.0"
  1665. },
  1666. "provide": {
  1667. "psr/log-implementation": "1.0.0"
  1668. },
  1669. "require-dev": {
  1670. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1671. "doctrine/couchdb": "~1.0@dev",
  1672. "graylog2/gelf-php": "~1.0",
  1673. "jakub-onderka/php-parallel-lint": "0.9",
  1674. "php-amqplib/php-amqplib": "~2.4",
  1675. "php-console/php-console": "^3.1.3",
  1676. "phpunit/phpunit": "~4.5",
  1677. "phpunit/phpunit-mock-objects": "2.3.0",
  1678. "ruflin/elastica": ">=0.90 <3.0",
  1679. "sentry/sentry": "^0.13",
  1680. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1681. },
  1682. "suggest": {
  1683. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1684. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1685. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1686. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1687. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1688. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1689. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1690. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1691. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1692. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1693. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1694. },
  1695. "type": "library",
  1696. "extra": {
  1697. "branch-alias": {
  1698. "dev-master": "2.0.x-dev"
  1699. }
  1700. },
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Monolog\\": "src/Monolog"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "Jordi Boggiano",
  1713. "email": "j.boggiano@seld.be",
  1714. "homepage": "http://seld.be"
  1715. }
  1716. ],
  1717. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1718. "homepage": "http://github.com/Seldaek/monolog",
  1719. "keywords": [
  1720. "log",
  1721. "logging",
  1722. "psr-3"
  1723. ],
  1724. "time": "2018-11-05T09:00:11+00:00"
  1725. },
  1726. {
  1727. "name": "mtdowling/cron-expression",
  1728. "version": "v1.2.1",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/mtdowling/cron-expression.git",
  1732. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1737. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "php": ">=5.3.2"
  1742. },
  1743. "require-dev": {
  1744. "phpunit/phpunit": "~4.0|~5.0"
  1745. },
  1746. "type": "library",
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Cron\\": "src/Cron/"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "MIT"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Michael Dowling",
  1759. "email": "mtdowling@gmail.com",
  1760. "homepage": "https://github.com/mtdowling"
  1761. }
  1762. ],
  1763. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1764. "keywords": [
  1765. "cron",
  1766. "schedule"
  1767. ],
  1768. "time": "2017-01-23T04:29:33+00:00"
  1769. },
  1770. {
  1771. "name": "namshi/jose",
  1772. "version": "7.2.3",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/namshi/jose.git",
  1776. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  1781. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  1782. "shasum": ""
  1783. },
  1784. "require": {
  1785. "ext-date": "*",
  1786. "ext-hash": "*",
  1787. "ext-json": "*",
  1788. "ext-pcre": "*",
  1789. "ext-spl": "*",
  1790. "php": ">=5.5",
  1791. "symfony/polyfill-php56": "^1.0"
  1792. },
  1793. "require-dev": {
  1794. "phpseclib/phpseclib": "^2.0",
  1795. "phpunit/phpunit": "^4.5|^5.0",
  1796. "satooshi/php-coveralls": "^1.0"
  1797. },
  1798. "suggest": {
  1799. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  1800. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  1801. },
  1802. "type": "library",
  1803. "autoload": {
  1804. "psr-4": {
  1805. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Alessandro Nadalin",
  1815. "email": "alessandro.nadalin@gmail.com"
  1816. },
  1817. {
  1818. "name": "Alessandro Cinelli (cirpo)",
  1819. "email": "alessandro.cinelli@gmail.com"
  1820. }
  1821. ],
  1822. "description": "JSON Object Signing and Encryption library for PHP.",
  1823. "keywords": [
  1824. "JSON Web Signature",
  1825. "JSON Web Token",
  1826. "JWS",
  1827. "json",
  1828. "jwt",
  1829. "token"
  1830. ],
  1831. "time": "2016-12-05T07:27:31+00:00"
  1832. },
  1833. {
  1834. "name": "nesbot/carbon",
  1835. "version": "1.36.2",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/briannesbitt/Carbon.git",
  1839. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  1844. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "php": ">=5.3.9",
  1849. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1850. },
  1851. "require-dev": {
  1852. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1853. },
  1854. "suggest": {
  1855. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  1856. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  1857. },
  1858. "type": "library",
  1859. "extra": {
  1860. "laravel": {
  1861. "providers": [
  1862. "Carbon\\Laravel\\ServiceProvider"
  1863. ]
  1864. }
  1865. },
  1866. "autoload": {
  1867. "psr-4": {
  1868. "": "src/"
  1869. }
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "MIT"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Brian Nesbitt",
  1878. "email": "brian@nesbot.com",
  1879. "homepage": "http://nesbot.com"
  1880. }
  1881. ],
  1882. "description": "A simple API extension for DateTime.",
  1883. "homepage": "http://carbon.nesbot.com",
  1884. "keywords": [
  1885. "date",
  1886. "datetime",
  1887. "time"
  1888. ],
  1889. "time": "2018-12-28T10:07:33+00:00"
  1890. },
  1891. {
  1892. "name": "nikic/php-parser",
  1893. "version": "v4.2.1",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/nikic/PHP-Parser.git",
  1897. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  1902. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "ext-tokenizer": "*",
  1907. "php": ">=7.0"
  1908. },
  1909. "require-dev": {
  1910. "phpunit/phpunit": "^6.5 || ^7.0"
  1911. },
  1912. "bin": [
  1913. "bin/php-parse"
  1914. ],
  1915. "type": "library",
  1916. "extra": {
  1917. "branch-alias": {
  1918. "dev-master": "4.2-dev"
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "PhpParser\\": "lib/PhpParser"
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "BSD-3-Clause"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Nikita Popov"
  1933. }
  1934. ],
  1935. "description": "A PHP parser written in PHP",
  1936. "keywords": [
  1937. "parser",
  1938. "php"
  1939. ],
  1940. "time": "2019-02-16T20:54:15+00:00"
  1941. },
  1942. {
  1943. "name": "paragonie/random_compat",
  1944. "version": "v9.99.99",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/paragonie/random_compat.git",
  1948. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1953. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "php": "^7"
  1958. },
  1959. "require-dev": {
  1960. "phpunit/phpunit": "4.*|5.*",
  1961. "vimeo/psalm": "^1"
  1962. },
  1963. "suggest": {
  1964. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1965. },
  1966. "type": "library",
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Paragon Initiative Enterprises",
  1974. "email": "security@paragonie.com",
  1975. "homepage": "https://paragonie.com"
  1976. }
  1977. ],
  1978. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1979. "keywords": [
  1980. "csprng",
  1981. "polyfill",
  1982. "pseudorandom",
  1983. "random"
  1984. ],
  1985. "time": "2018-07-02T15:55:56+00:00"
  1986. },
  1987. {
  1988. "name": "predis/predis",
  1989. "version": "v1.1.1",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/nrk/predis.git",
  1993. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  1998. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "php": ">=5.3.9"
  2003. },
  2004. "require-dev": {
  2005. "phpunit/phpunit": "~4.8"
  2006. },
  2007. "suggest": {
  2008. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2009. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2010. },
  2011. "type": "library",
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Predis\\": "src/"
  2015. }
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Daniele Alessandri",
  2024. "email": "suppakilla@gmail.com",
  2025. "homepage": "http://clorophilla.net"
  2026. }
  2027. ],
  2028. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2029. "homepage": "http://github.com/nrk/predis",
  2030. "keywords": [
  2031. "nosql",
  2032. "predis",
  2033. "redis"
  2034. ],
  2035. "time": "2016-06-16T16:22:20+00:00"
  2036. },
  2037. {
  2038. "name": "psr/container",
  2039. "version": "1.0.0",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/php-fig/container.git",
  2043. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2048. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "php": ">=5.3.0"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "1.0.x-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Psr\\Container\\": "src/"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "PHP-FIG",
  2072. "homepage": "http://www.php-fig.org/"
  2073. }
  2074. ],
  2075. "description": "Common Container Interface (PHP FIG PSR-11)",
  2076. "homepage": "https://github.com/php-fig/container",
  2077. "keywords": [
  2078. "PSR-11",
  2079. "container",
  2080. "container-interface",
  2081. "container-interop",
  2082. "psr"
  2083. ],
  2084. "time": "2017-02-14T16:28:37+00:00"
  2085. },
  2086. {
  2087. "name": "psr/http-message",
  2088. "version": "1.0.1",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/php-fig/http-message.git",
  2092. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2097. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "php": ">=5.3.0"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "1.0.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-4": {
  2111. "Psr\\Http\\Message\\": "src/"
  2112. }
  2113. },
  2114. "notification-url": "https://packagist.org/downloads/",
  2115. "license": [
  2116. "MIT"
  2117. ],
  2118. "authors": [
  2119. {
  2120. "name": "PHP-FIG",
  2121. "homepage": "http://www.php-fig.org/"
  2122. }
  2123. ],
  2124. "description": "Common interface for HTTP messages",
  2125. "homepage": "https://github.com/php-fig/http-message",
  2126. "keywords": [
  2127. "http",
  2128. "http-message",
  2129. "psr",
  2130. "psr-7",
  2131. "request",
  2132. "response"
  2133. ],
  2134. "time": "2016-08-06T14:39:51+00:00"
  2135. },
  2136. {
  2137. "name": "psr/log",
  2138. "version": "1.1.0",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/php-fig/log.git",
  2142. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2147. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "php": ">=5.3.0"
  2152. },
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "1.0.x-dev"
  2157. }
  2158. },
  2159. "autoload": {
  2160. "psr-4": {
  2161. "Psr\\Log\\": "Psr/Log/"
  2162. }
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "PHP-FIG",
  2171. "homepage": "http://www.php-fig.org/"
  2172. }
  2173. ],
  2174. "description": "Common interface for logging libraries",
  2175. "homepage": "https://github.com/php-fig/log",
  2176. "keywords": [
  2177. "log",
  2178. "psr",
  2179. "psr-3"
  2180. ],
  2181. "time": "2018-11-20T15:27:04+00:00"
  2182. },
  2183. {
  2184. "name": "psr/simple-cache",
  2185. "version": "1.0.1",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/php-fig/simple-cache.git",
  2189. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2194. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "php": ">=5.3.0"
  2199. },
  2200. "type": "library",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-master": "1.0.x-dev"
  2204. }
  2205. },
  2206. "autoload": {
  2207. "psr-4": {
  2208. "Psr\\SimpleCache\\": "src/"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "PHP-FIG",
  2218. "homepage": "http://www.php-fig.org/"
  2219. }
  2220. ],
  2221. "description": "Common interfaces for simple caching",
  2222. "keywords": [
  2223. "cache",
  2224. "caching",
  2225. "psr",
  2226. "psr-16",
  2227. "simple-cache"
  2228. ],
  2229. "time": "2017-10-23T01:57:42+00:00"
  2230. },
  2231. {
  2232. "name": "psy/psysh",
  2233. "version": "v0.9.9",
  2234. "source": {
  2235. "type": "git",
  2236. "url": "https://github.com/bobthecow/psysh.git",
  2237. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2238. },
  2239. "dist": {
  2240. "type": "zip",
  2241. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2242. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2243. "shasum": ""
  2244. },
  2245. "require": {
  2246. "dnoegel/php-xdg-base-dir": "0.1",
  2247. "ext-json": "*",
  2248. "ext-tokenizer": "*",
  2249. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2250. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2251. "php": ">=5.4.0",
  2252. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2253. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2254. },
  2255. "require-dev": {
  2256. "bamarni/composer-bin-plugin": "^1.2",
  2257. "hoa/console": "~2.15|~3.16",
  2258. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2259. },
  2260. "suggest": {
  2261. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2262. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2263. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2264. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2265. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2266. },
  2267. "bin": [
  2268. "bin/psysh"
  2269. ],
  2270. "type": "library",
  2271. "extra": {
  2272. "branch-alias": {
  2273. "dev-develop": "0.9.x-dev"
  2274. }
  2275. },
  2276. "autoload": {
  2277. "files": [
  2278. "src/functions.php"
  2279. ],
  2280. "psr-4": {
  2281. "Psy\\": "src/"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Justin Hileman",
  2291. "email": "justin@justinhileman.info",
  2292. "homepage": "http://justinhileman.com"
  2293. }
  2294. ],
  2295. "description": "An interactive shell for modern PHP.",
  2296. "homepage": "http://psysh.org",
  2297. "keywords": [
  2298. "REPL",
  2299. "console",
  2300. "interactive",
  2301. "shell"
  2302. ],
  2303. "time": "2018-10-13T15:16:03+00:00"
  2304. },
  2305. {
  2306. "name": "ralouphie/getallheaders",
  2307. "version": "2.0.5",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/ralouphie/getallheaders.git",
  2311. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2316. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": ">=5.3"
  2321. },
  2322. "require-dev": {
  2323. "phpunit/phpunit": "~3.7.0",
  2324. "satooshi/php-coveralls": ">=1.0"
  2325. },
  2326. "type": "library",
  2327. "autoload": {
  2328. "files": [
  2329. "src/getallheaders.php"
  2330. ]
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "MIT"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Ralph Khattar",
  2339. "email": "ralph.khattar@gmail.com"
  2340. }
  2341. ],
  2342. "description": "A polyfill for getallheaders.",
  2343. "time": "2016-02-11T07:05:27+00:00"
  2344. },
  2345. {
  2346. "name": "ramsey/uuid",
  2347. "version": "3.8.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/ramsey/uuid.git",
  2351. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2356. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2361. "php": "^5.4 || ^7.0",
  2362. "symfony/polyfill-ctype": "^1.8"
  2363. },
  2364. "replace": {
  2365. "rhumsaa/uuid": "self.version"
  2366. },
  2367. "require-dev": {
  2368. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2369. "doctrine/annotations": "~1.2.0",
  2370. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2371. "ircmaxell/random-lib": "^1.1",
  2372. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2373. "mockery/mockery": "^0.9.9",
  2374. "moontoast/math": "^1.1",
  2375. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2376. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2377. "squizlabs/php_codesniffer": "^2.3"
  2378. },
  2379. "suggest": {
  2380. "ext-ctype": "Provides support for PHP Ctype functions",
  2381. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2382. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2383. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2384. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2385. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2386. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2387. },
  2388. "type": "library",
  2389. "extra": {
  2390. "branch-alias": {
  2391. "dev-master": "3.x-dev"
  2392. }
  2393. },
  2394. "autoload": {
  2395. "psr-4": {
  2396. "Ramsey\\Uuid\\": "src/"
  2397. }
  2398. },
  2399. "notification-url": "https://packagist.org/downloads/",
  2400. "license": [
  2401. "MIT"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Marijn Huizendveld",
  2406. "email": "marijn.huizendveld@gmail.com"
  2407. },
  2408. {
  2409. "name": "Thibaud Fabre",
  2410. "email": "thibaud@aztech.io"
  2411. },
  2412. {
  2413. "name": "Ben Ramsey",
  2414. "email": "ben@benramsey.com",
  2415. "homepage": "https://benramsey.com"
  2416. }
  2417. ],
  2418. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2419. "homepage": "https://github.com/ramsey/uuid",
  2420. "keywords": [
  2421. "guid",
  2422. "identifier",
  2423. "uuid"
  2424. ],
  2425. "time": "2018-07-19T23:38:55+00:00"
  2426. },
  2427. {
  2428. "name": "simplesoftwareio/simple-qrcode",
  2429. "version": "2.0.0",
  2430. "source": {
  2431. "type": "git",
  2432. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  2433. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07"
  2434. },
  2435. "dist": {
  2436. "type": "zip",
  2437. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/90b2282dd29be1e52565e9832dc23af41610ea07",
  2438. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07",
  2439. "shasum": ""
  2440. },
  2441. "require": {
  2442. "bacon/bacon-qr-code": "1.0.*",
  2443. "ext-gd": "*",
  2444. "illuminate/support": ">=5.0.0",
  2445. "php": ">=7.0"
  2446. },
  2447. "require-dev": {
  2448. "mockery/mockery": "0.9.*",
  2449. "phpunit/phpunit": "~6"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "laravel": {
  2454. "providers": [
  2455. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  2456. ],
  2457. "aliases": {
  2458. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  2459. }
  2460. }
  2461. },
  2462. "autoload": {
  2463. "psr-0": {
  2464. "SimpleSoftwareIO\\QrCode\\": "src"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "MIT"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Simple Software LLC",
  2474. "email": "support@simplesoftware.io"
  2475. }
  2476. ],
  2477. "description": "Simple QrCode is a QR code generator made for Laravel.",
  2478. "homepage": "http://www.simplesoftware.io",
  2479. "keywords": [
  2480. "Simple",
  2481. "generator",
  2482. "laravel",
  2483. "qrcode",
  2484. "wrapper"
  2485. ],
  2486. "time": "2017-11-26T15:27:12+00:00"
  2487. },
  2488. {
  2489. "name": "spatie/db-dumper",
  2490. "version": "2.13.1",
  2491. "source": {
  2492. "type": "git",
  2493. "url": "https://github.com/spatie/db-dumper.git",
  2494. "reference": "8f88e6f772ddf6c5a71ec9c0b5682ebca3323377"
  2495. },
  2496. "dist": {
  2497. "type": "zip",
  2498. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/8f88e6f772ddf6c5a71ec9c0b5682ebca3323377",
  2499. "reference": "8f88e6f772ddf6c5a71ec9c0b5682ebca3323377",
  2500. "shasum": ""
  2501. },
  2502. "require": {
  2503. "php": "^7.0",
  2504. "symfony/process": "^3.0|^4.0"
  2505. },
  2506. "require-dev": {
  2507. "phpunit/phpunit": "^6.0"
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "Spatie\\DbDumper\\": "src"
  2513. }
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Freek Van der Herten",
  2522. "email": "freek@spatie.be",
  2523. "homepage": "https://spatie.be",
  2524. "role": "Developer"
  2525. }
  2526. ],
  2527. "description": "Dump databases",
  2528. "homepage": "https://github.com/spatie/db-dumper",
  2529. "keywords": [
  2530. "database",
  2531. "db-dumper",
  2532. "dump",
  2533. "mysqldump",
  2534. "spatie"
  2535. ],
  2536. "time": "2019-03-01T15:46:17+00:00"
  2537. },
  2538. {
  2539. "name": "spatie/laravel-backup",
  2540. "version": "5.12.0",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://github.com/spatie/laravel-backup.git",
  2544. "reference": "9f6466ad6b51dedba0ceccc65aff8a613d5f4521"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/9f6466ad6b51dedba0ceccc65aff8a613d5f4521",
  2549. "reference": "9f6466ad6b51dedba0ceccc65aff8a613d5f4521",
  2550. "shasum": ""
  2551. },
  2552. "require": {
  2553. "illuminate/console": "~5.5.0|~5.6.0|~5.7.0",
  2554. "illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0",
  2555. "illuminate/events": "~5.5.0|~5.6.0|~5.7.0",
  2556. "illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0",
  2557. "illuminate/notifications": "~5.5.0|~5.6.0|~5.7.0",
  2558. "illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
  2559. "league/flysystem": "^1.0.27",
  2560. "php": "^7.1",
  2561. "spatie/db-dumper": "^2.11.1",
  2562. "spatie/temporary-directory": "^1.1",
  2563. "symfony/finder": "^3.3|^4.0"
  2564. },
  2565. "require-dev": {
  2566. "mockery/mockery": "^1.0",
  2567. "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
  2568. "phpunit/phpunit": "^7.3"
  2569. },
  2570. "suggest": {
  2571. "guzzlehttp/guzzle": "Allows notifications to be sent via Slack"
  2572. },
  2573. "type": "library",
  2574. "extra": {
  2575. "laravel": {
  2576. "providers": [
  2577. "Spatie\\Backup\\BackupServiceProvider"
  2578. ]
  2579. }
  2580. },
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Spatie\\Backup\\": "src"
  2584. },
  2585. "files": [
  2586. "src/Helpers/functions.php"
  2587. ]
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Freek Van der Herten",
  2596. "email": "freek@spatie.be",
  2597. "homepage": "https://spatie.be",
  2598. "role": "Developer"
  2599. }
  2600. ],
  2601. "description": "A Laravel 5 package to backup your application",
  2602. "homepage": "https://github.com/spatie/laravel-backup",
  2603. "keywords": [
  2604. "backup",
  2605. "database",
  2606. "laravel-backup",
  2607. "spatie"
  2608. ],
  2609. "time": "2018-12-28T07:57:48+00:00"
  2610. },
  2611. {
  2612. "name": "spatie/laravel-permission",
  2613. "version": "2.36.1",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/spatie/laravel-permission.git",
  2617. "reference": "0d9c442dc4361ce829986697bc436578d816a9ca"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/0d9c442dc4361ce829986697bc436578d816a9ca",
  2622. "reference": "0d9c442dc4361ce829986697bc436578d816a9ca",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "illuminate/auth": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2627. "illuminate/container": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2628. "illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2629. "illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2630. "php": ">=7.0"
  2631. },
  2632. "require-dev": {
  2633. "orchestra/testbench": "~3.4.2|~3.5.0|~3.6.0|~3.7.0",
  2634. "phpunit/phpunit": "^5.7|6.2|^7.0",
  2635. "predis/predis": "^1.1"
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "laravel": {
  2640. "providers": [
  2641. "Spatie\\Permission\\PermissionServiceProvider"
  2642. ]
  2643. }
  2644. },
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Spatie\\Permission\\": "src"
  2648. },
  2649. "files": [
  2650. "src/helpers.php"
  2651. ]
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Freek Van der Herten",
  2660. "email": "freek@spatie.be",
  2661. "homepage": "https://spatie.be",
  2662. "role": "Developer"
  2663. }
  2664. ],
  2665. "description": "Permission handling for Laravel 5.4 and up",
  2666. "homepage": "https://github.com/spatie/laravel-permission",
  2667. "keywords": [
  2668. "acl",
  2669. "laravel",
  2670. "permission",
  2671. "security",
  2672. "spatie"
  2673. ],
  2674. "time": "2019-03-05T14:58:35+00:00"
  2675. },
  2676. {
  2677. "name": "spatie/temporary-directory",
  2678. "version": "1.1.4",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/spatie/temporary-directory.git",
  2682. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  2687. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": "^7.0"
  2692. },
  2693. "require-dev": {
  2694. "phpunit/phpunit": "^6.3"
  2695. },
  2696. "type": "library",
  2697. "autoload": {
  2698. "psr-4": {
  2699. "Spatie\\TemporaryDirectory\\": "src"
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Alex Vanderbist",
  2709. "email": "alex@spatie.be",
  2710. "homepage": "https://spatie.be",
  2711. "role": "Developer"
  2712. }
  2713. ],
  2714. "description": "Easily create, use and destroy temporary directories",
  2715. "homepage": "https://github.com/spatie/temporary-directory",
  2716. "keywords": [
  2717. "spatie",
  2718. "temporary-directory"
  2719. ],
  2720. "time": "2018-04-12T09:34:43+00:00"
  2721. },
  2722. {
  2723. "name": "swiftmailer/swiftmailer",
  2724. "version": "v6.2.0",
  2725. "source": {
  2726. "type": "git",
  2727. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2728. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  2729. },
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  2733. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  2734. "shasum": ""
  2735. },
  2736. "require": {
  2737. "egulias/email-validator": "~2.0",
  2738. "php": ">=7.0.0",
  2739. "symfony/polyfill-iconv": "^1.0",
  2740. "symfony/polyfill-intl-idn": "^1.10",
  2741. "symfony/polyfill-mbstring": "^1.0"
  2742. },
  2743. "require-dev": {
  2744. "mockery/mockery": "~0.9.1",
  2745. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2746. },
  2747. "suggest": {
  2748. "ext-intl": "Needed to support internationalized email addresses",
  2749. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2750. },
  2751. "type": "library",
  2752. "extra": {
  2753. "branch-alias": {
  2754. "dev-master": "6.2-dev"
  2755. }
  2756. },
  2757. "autoload": {
  2758. "files": [
  2759. "lib/swift_required.php"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Chris Corbyn"
  2769. },
  2770. {
  2771. "name": "Fabien Potencier",
  2772. "email": "fabien@symfony.com"
  2773. }
  2774. ],
  2775. "description": "Swiftmailer, free feature-rich PHP mailer",
  2776. "homepage": "https://swiftmailer.symfony.com",
  2777. "keywords": [
  2778. "email",
  2779. "mail",
  2780. "mailer"
  2781. ],
  2782. "time": "2019-03-10T07:52:41+00:00"
  2783. },
  2784. {
  2785. "name": "symfony/console",
  2786. "version": "v3.4.23",
  2787. "source": {
  2788. "type": "git",
  2789. "url": "https://github.com/symfony/console.git",
  2790. "reference": "71ce77f37af0c5ffb9590e43cc4f70e426945c5e"
  2791. },
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://api.github.com/repos/symfony/console/zipball/71ce77f37af0c5ffb9590e43cc4f70e426945c5e",
  2795. "reference": "71ce77f37af0c5ffb9590e43cc4f70e426945c5e",
  2796. "shasum": ""
  2797. },
  2798. "require": {
  2799. "php": "^5.5.9|>=7.0.8",
  2800. "symfony/debug": "~2.8|~3.0|~4.0",
  2801. "symfony/polyfill-mbstring": "~1.0"
  2802. },
  2803. "conflict": {
  2804. "symfony/dependency-injection": "<3.4",
  2805. "symfony/process": "<3.3"
  2806. },
  2807. "provide": {
  2808. "psr/log-implementation": "1.0"
  2809. },
  2810. "require-dev": {
  2811. "psr/log": "~1.0",
  2812. "symfony/config": "~3.3|~4.0",
  2813. "symfony/dependency-injection": "~3.4|~4.0",
  2814. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2815. "symfony/lock": "~3.4|~4.0",
  2816. "symfony/process": "~3.3|~4.0"
  2817. },
  2818. "suggest": {
  2819. "psr/log": "For using the console logger",
  2820. "symfony/event-dispatcher": "",
  2821. "symfony/lock": "",
  2822. "symfony/process": ""
  2823. },
  2824. "type": "library",
  2825. "extra": {
  2826. "branch-alias": {
  2827. "dev-master": "3.4-dev"
  2828. }
  2829. },
  2830. "autoload": {
  2831. "psr-4": {
  2832. "Symfony\\Component\\Console\\": ""
  2833. },
  2834. "exclude-from-classmap": [
  2835. "/Tests/"
  2836. ]
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Fabien Potencier",
  2845. "email": "fabien@symfony.com"
  2846. },
  2847. {
  2848. "name": "Symfony Community",
  2849. "homepage": "https://symfony.com/contributors"
  2850. }
  2851. ],
  2852. "description": "Symfony Console Component",
  2853. "homepage": "https://symfony.com",
  2854. "time": "2019-02-23T15:06:07+00:00"
  2855. },
  2856. {
  2857. "name": "symfony/contracts",
  2858. "version": "v1.0.2",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://github.com/symfony/contracts.git",
  2862. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2867. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2868. "shasum": ""
  2869. },
  2870. "require": {
  2871. "php": "^7.1.3"
  2872. },
  2873. "require-dev": {
  2874. "psr/cache": "^1.0",
  2875. "psr/container": "^1.0"
  2876. },
  2877. "suggest": {
  2878. "psr/cache": "When using the Cache contracts",
  2879. "psr/container": "When using the Service contracts",
  2880. "symfony/cache-contracts-implementation": "",
  2881. "symfony/service-contracts-implementation": "",
  2882. "symfony/translation-contracts-implementation": ""
  2883. },
  2884. "type": "library",
  2885. "extra": {
  2886. "branch-alias": {
  2887. "dev-master": "1.0-dev"
  2888. }
  2889. },
  2890. "autoload": {
  2891. "psr-4": {
  2892. "Symfony\\Contracts\\": ""
  2893. },
  2894. "exclude-from-classmap": [
  2895. "**/Tests/"
  2896. ]
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Nicolas Grekas",
  2905. "email": "p@tchwork.com"
  2906. },
  2907. {
  2908. "name": "Symfony Community",
  2909. "homepage": "https://symfony.com/contributors"
  2910. }
  2911. ],
  2912. "description": "A set of abstractions extracted out of the Symfony components",
  2913. "homepage": "https://symfony.com",
  2914. "keywords": [
  2915. "abstractions",
  2916. "contracts",
  2917. "decoupling",
  2918. "interfaces",
  2919. "interoperability",
  2920. "standards"
  2921. ],
  2922. "time": "2018-12-05T08:06:11+00:00"
  2923. },
  2924. {
  2925. "name": "symfony/css-selector",
  2926. "version": "v4.2.4",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/symfony/css-selector.git",
  2930. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  2935. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  2936. "shasum": ""
  2937. },
  2938. "require": {
  2939. "php": "^7.1.3"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "branch-alias": {
  2944. "dev-master": "4.2-dev"
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Symfony\\Component\\CssSelector\\": ""
  2950. },
  2951. "exclude-from-classmap": [
  2952. "/Tests/"
  2953. ]
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "MIT"
  2958. ],
  2959. "authors": [
  2960. {
  2961. "name": "Jean-François Simon",
  2962. "email": "jeanfrancois.simon@sensiolabs.com"
  2963. },
  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 CssSelector Component",
  2974. "homepage": "https://symfony.com",
  2975. "time": "2019-01-16T20:31:39+00:00"
  2976. },
  2977. {
  2978. "name": "symfony/debug",
  2979. "version": "v3.4.23",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/symfony/debug.git",
  2983. "reference": "8d8a9e877b3fcdc50ddecf8dcea146059753f782"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/symfony/debug/zipball/8d8a9e877b3fcdc50ddecf8dcea146059753f782",
  2988. "reference": "8d8a9e877b3fcdc50ddecf8dcea146059753f782",
  2989. "shasum": ""
  2990. },
  2991. "require": {
  2992. "php": "^5.5.9|>=7.0.8",
  2993. "psr/log": "~1.0"
  2994. },
  2995. "conflict": {
  2996. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2997. },
  2998. "require-dev": {
  2999. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3000. },
  3001. "type": "library",
  3002. "extra": {
  3003. "branch-alias": {
  3004. "dev-master": "3.4-dev"
  3005. }
  3006. },
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Symfony\\Component\\Debug\\": ""
  3010. },
  3011. "exclude-from-classmap": [
  3012. "/Tests/"
  3013. ]
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "Fabien Potencier",
  3022. "email": "fabien@symfony.com"
  3023. },
  3024. {
  3025. "name": "Symfony Community",
  3026. "homepage": "https://symfony.com/contributors"
  3027. }
  3028. ],
  3029. "description": "Symfony Debug Component",
  3030. "homepage": "https://symfony.com",
  3031. "time": "2019-02-24T15:45:11+00:00"
  3032. },
  3033. {
  3034. "name": "symfony/dom-crawler",
  3035. "version": "v4.2.4",
  3036. "source": {
  3037. "type": "git",
  3038. "url": "https://github.com/symfony/dom-crawler.git",
  3039. "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb"
  3040. },
  3041. "dist": {
  3042. "type": "zip",
  3043. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53c97769814c80a84a8403efcf3ae7ae966d53bb",
  3044. "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb",
  3045. "shasum": ""
  3046. },
  3047. "require": {
  3048. "php": "^7.1.3",
  3049. "symfony/polyfill-ctype": "~1.8",
  3050. "symfony/polyfill-mbstring": "~1.0"
  3051. },
  3052. "require-dev": {
  3053. "symfony/css-selector": "~3.4|~4.0"
  3054. },
  3055. "suggest": {
  3056. "symfony/css-selector": ""
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "branch-alias": {
  3061. "dev-master": "4.2-dev"
  3062. }
  3063. },
  3064. "autoload": {
  3065. "psr-4": {
  3066. "Symfony\\Component\\DomCrawler\\": ""
  3067. },
  3068. "exclude-from-classmap": [
  3069. "/Tests/"
  3070. ]
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "authors": [
  3077. {
  3078. "name": "Fabien Potencier",
  3079. "email": "fabien@symfony.com"
  3080. },
  3081. {
  3082. "name": "Symfony Community",
  3083. "homepage": "https://symfony.com/contributors"
  3084. }
  3085. ],
  3086. "description": "Symfony DomCrawler Component",
  3087. "homepage": "https://symfony.com",
  3088. "time": "2019-02-23T15:17:42+00:00"
  3089. },
  3090. {
  3091. "name": "symfony/event-dispatcher",
  3092. "version": "v4.2.4",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/symfony/event-dispatcher.git",
  3096. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  3101. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "php": "^7.1.3",
  3106. "symfony/contracts": "^1.0"
  3107. },
  3108. "conflict": {
  3109. "symfony/dependency-injection": "<3.4"
  3110. },
  3111. "require-dev": {
  3112. "psr/log": "~1.0",
  3113. "symfony/config": "~3.4|~4.0",
  3114. "symfony/dependency-injection": "~3.4|~4.0",
  3115. "symfony/expression-language": "~3.4|~4.0",
  3116. "symfony/stopwatch": "~3.4|~4.0"
  3117. },
  3118. "suggest": {
  3119. "symfony/dependency-injection": "",
  3120. "symfony/http-kernel": ""
  3121. },
  3122. "type": "library",
  3123. "extra": {
  3124. "branch-alias": {
  3125. "dev-master": "4.2-dev"
  3126. }
  3127. },
  3128. "autoload": {
  3129. "psr-4": {
  3130. "Symfony\\Component\\EventDispatcher\\": ""
  3131. },
  3132. "exclude-from-classmap": [
  3133. "/Tests/"
  3134. ]
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "MIT"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Fabien Potencier",
  3143. "email": "fabien@symfony.com"
  3144. },
  3145. {
  3146. "name": "Symfony Community",
  3147. "homepage": "https://symfony.com/contributors"
  3148. }
  3149. ],
  3150. "description": "Symfony EventDispatcher Component",
  3151. "homepage": "https://symfony.com",
  3152. "time": "2019-02-23T15:17:42+00:00"
  3153. },
  3154. {
  3155. "name": "symfony/finder",
  3156. "version": "v3.4.23",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/symfony/finder.git",
  3160. "reference": "fcdde4aa38f48190ce70d782c166f23930084f9b"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/symfony/finder/zipball/fcdde4aa38f48190ce70d782c166f23930084f9b",
  3165. "reference": "fcdde4aa38f48190ce70d782c166f23930084f9b",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "php": "^5.5.9|>=7.0.8"
  3170. },
  3171. "type": "library",
  3172. "extra": {
  3173. "branch-alias": {
  3174. "dev-master": "3.4-dev"
  3175. }
  3176. },
  3177. "autoload": {
  3178. "psr-4": {
  3179. "Symfony\\Component\\Finder\\": ""
  3180. },
  3181. "exclude-from-classmap": [
  3182. "/Tests/"
  3183. ]
  3184. },
  3185. "notification-url": "https://packagist.org/downloads/",
  3186. "license": [
  3187. "MIT"
  3188. ],
  3189. "authors": [
  3190. {
  3191. "name": "Fabien Potencier",
  3192. "email": "fabien@symfony.com"
  3193. },
  3194. {
  3195. "name": "Symfony Community",
  3196. "homepage": "https://symfony.com/contributors"
  3197. }
  3198. ],
  3199. "description": "Symfony Finder Component",
  3200. "homepage": "https://symfony.com",
  3201. "time": "2019-02-22T14:44:53+00:00"
  3202. },
  3203. {
  3204. "name": "symfony/http-foundation",
  3205. "version": "v3.4.23",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://github.com/symfony/http-foundation.git",
  3209. "reference": "9a96d77ceb1fd913c9d4a89e8a7e1be87604be8a"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9a96d77ceb1fd913c9d4a89e8a7e1be87604be8a",
  3214. "reference": "9a96d77ceb1fd913c9d4a89e8a7e1be87604be8a",
  3215. "shasum": ""
  3216. },
  3217. "require": {
  3218. "php": "^5.5.9|>=7.0.8",
  3219. "symfony/polyfill-mbstring": "~1.1",
  3220. "symfony/polyfill-php70": "~1.6"
  3221. },
  3222. "require-dev": {
  3223. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "3.4-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Symfony\\Component\\HttpFoundation\\": ""
  3234. },
  3235. "exclude-from-classmap": [
  3236. "/Tests/"
  3237. ]
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Fabien Potencier",
  3246. "email": "fabien@symfony.com"
  3247. },
  3248. {
  3249. "name": "Symfony Community",
  3250. "homepage": "https://symfony.com/contributors"
  3251. }
  3252. ],
  3253. "description": "Symfony HttpFoundation Component",
  3254. "homepage": "https://symfony.com",
  3255. "time": "2019-02-23T15:06:07+00:00"
  3256. },
  3257. {
  3258. "name": "symfony/http-kernel",
  3259. "version": "v3.4.23",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/symfony/http-kernel.git",
  3263. "reference": "0362368c761cb8d9c79e56ab0db61d2c692db594"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/0362368c761cb8d9c79e56ab0db61d2c692db594",
  3268. "reference": "0362368c761cb8d9c79e56ab0db61d2c692db594",
  3269. "shasum": ""
  3270. },
  3271. "require": {
  3272. "php": "^5.5.9|>=7.0.8",
  3273. "psr/log": "~1.0",
  3274. "symfony/debug": "^3.3.3|~4.0",
  3275. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3276. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  3277. "symfony/polyfill-ctype": "~1.8"
  3278. },
  3279. "conflict": {
  3280. "symfony/config": "<2.8",
  3281. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  3282. "symfony/var-dumper": "<3.3",
  3283. "twig/twig": "<1.34|<2.4,>=2"
  3284. },
  3285. "provide": {
  3286. "psr/log-implementation": "1.0"
  3287. },
  3288. "require-dev": {
  3289. "psr/cache": "~1.0",
  3290. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  3291. "symfony/class-loader": "~2.8|~3.0",
  3292. "symfony/config": "~2.8|~3.0|~4.0",
  3293. "symfony/console": "~2.8|~3.0|~4.0",
  3294. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3295. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  3296. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  3297. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3298. "symfony/finder": "~2.8|~3.0|~4.0",
  3299. "symfony/process": "~2.8|~3.0|~4.0",
  3300. "symfony/routing": "~3.4|~4.0",
  3301. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  3302. "symfony/templating": "~2.8|~3.0|~4.0",
  3303. "symfony/translation": "~2.8|~3.0|~4.0",
  3304. "symfony/var-dumper": "~3.3|~4.0"
  3305. },
  3306. "suggest": {
  3307. "symfony/browser-kit": "",
  3308. "symfony/config": "",
  3309. "symfony/console": "",
  3310. "symfony/dependency-injection": "",
  3311. "symfony/finder": "",
  3312. "symfony/var-dumper": ""
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-master": "3.4-dev"
  3318. }
  3319. },
  3320. "autoload": {
  3321. "psr-4": {
  3322. "Symfony\\Component\\HttpKernel\\": ""
  3323. },
  3324. "exclude-from-classmap": [
  3325. "/Tests/"
  3326. ]
  3327. },
  3328. "notification-url": "https://packagist.org/downloads/",
  3329. "license": [
  3330. "MIT"
  3331. ],
  3332. "authors": [
  3333. {
  3334. "name": "Fabien Potencier",
  3335. "email": "fabien@symfony.com"
  3336. },
  3337. {
  3338. "name": "Symfony Community",
  3339. "homepage": "https://symfony.com/contributors"
  3340. }
  3341. ],
  3342. "description": "Symfony HttpKernel Component",
  3343. "homepage": "https://symfony.com",
  3344. "time": "2019-03-03T18:52:34+00:00"
  3345. },
  3346. {
  3347. "name": "symfony/polyfill-ctype",
  3348. "version": "v1.10.0",
  3349. "source": {
  3350. "type": "git",
  3351. "url": "https://github.com/symfony/polyfill-ctype.git",
  3352. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  3353. },
  3354. "dist": {
  3355. "type": "zip",
  3356. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  3357. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  3358. "shasum": ""
  3359. },
  3360. "require": {
  3361. "php": ">=5.3.3"
  3362. },
  3363. "suggest": {
  3364. "ext-ctype": "For best performance"
  3365. },
  3366. "type": "library",
  3367. "extra": {
  3368. "branch-alias": {
  3369. "dev-master": "1.9-dev"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "psr-4": {
  3374. "Symfony\\Polyfill\\Ctype\\": ""
  3375. },
  3376. "files": [
  3377. "bootstrap.php"
  3378. ]
  3379. },
  3380. "notification-url": "https://packagist.org/downloads/",
  3381. "license": [
  3382. "MIT"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Symfony Community",
  3387. "homepage": "https://symfony.com/contributors"
  3388. },
  3389. {
  3390. "name": "Gert de Pagter",
  3391. "email": "BackEndTea@gmail.com"
  3392. }
  3393. ],
  3394. "description": "Symfony polyfill for ctype functions",
  3395. "homepage": "https://symfony.com",
  3396. "keywords": [
  3397. "compatibility",
  3398. "ctype",
  3399. "polyfill",
  3400. "portable"
  3401. ],
  3402. "time": "2018-08-06T14:22:27+00:00"
  3403. },
  3404. {
  3405. "name": "symfony/polyfill-iconv",
  3406. "version": "v1.10.0",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/symfony/polyfill-iconv.git",
  3410. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  3415. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  3416. "shasum": ""
  3417. },
  3418. "require": {
  3419. "php": ">=5.3.3"
  3420. },
  3421. "suggest": {
  3422. "ext-iconv": "For best performance"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "branch-alias": {
  3427. "dev-master": "1.9-dev"
  3428. }
  3429. },
  3430. "autoload": {
  3431. "psr-4": {
  3432. "Symfony\\Polyfill\\Iconv\\": ""
  3433. },
  3434. "files": [
  3435. "bootstrap.php"
  3436. ]
  3437. },
  3438. "notification-url": "https://packagist.org/downloads/",
  3439. "license": [
  3440. "MIT"
  3441. ],
  3442. "authors": [
  3443. {
  3444. "name": "Nicolas Grekas",
  3445. "email": "p@tchwork.com"
  3446. },
  3447. {
  3448. "name": "Symfony Community",
  3449. "homepage": "https://symfony.com/contributors"
  3450. }
  3451. ],
  3452. "description": "Symfony polyfill for the Iconv extension",
  3453. "homepage": "https://symfony.com",
  3454. "keywords": [
  3455. "compatibility",
  3456. "iconv",
  3457. "polyfill",
  3458. "portable",
  3459. "shim"
  3460. ],
  3461. "time": "2018-09-21T06:26:08+00:00"
  3462. },
  3463. {
  3464. "name": "symfony/polyfill-intl-idn",
  3465. "version": "v1.10.0",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3469. "reference": "89de1d44f2c059b266f22c9cc9124ddc4cd0987a"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/89de1d44f2c059b266f22c9cc9124ddc4cd0987a",
  3474. "reference": "89de1d44f2c059b266f22c9cc9124ddc4cd0987a",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "php": ">=5.3.3",
  3479. "symfony/polyfill-mbstring": "^1.3",
  3480. "symfony/polyfill-php72": "^1.9"
  3481. },
  3482. "suggest": {
  3483. "ext-intl": "For best performance"
  3484. },
  3485. "type": "library",
  3486. "extra": {
  3487. "branch-alias": {
  3488. "dev-master": "1.9-dev"
  3489. }
  3490. },
  3491. "autoload": {
  3492. "psr-4": {
  3493. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3494. },
  3495. "files": [
  3496. "bootstrap.php"
  3497. ]
  3498. },
  3499. "notification-url": "https://packagist.org/downloads/",
  3500. "license": [
  3501. "MIT"
  3502. ],
  3503. "authors": [
  3504. {
  3505. "name": "Symfony Community",
  3506. "homepage": "https://symfony.com/contributors"
  3507. },
  3508. {
  3509. "name": "Laurent Bassin",
  3510. "email": "laurent@bassin.info"
  3511. }
  3512. ],
  3513. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3514. "homepage": "https://symfony.com",
  3515. "keywords": [
  3516. "compatibility",
  3517. "idn",
  3518. "intl",
  3519. "polyfill",
  3520. "portable",
  3521. "shim"
  3522. ],
  3523. "time": "2018-09-30T16:36:12+00:00"
  3524. },
  3525. {
  3526. "name": "symfony/polyfill-mbstring",
  3527. "version": "v1.10.0",
  3528. "source": {
  3529. "type": "git",
  3530. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3531. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  3532. },
  3533. "dist": {
  3534. "type": "zip",
  3535. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  3536. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  3537. "shasum": ""
  3538. },
  3539. "require": {
  3540. "php": ">=5.3.3"
  3541. },
  3542. "suggest": {
  3543. "ext-mbstring": "For best performance"
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-master": "1.9-dev"
  3549. }
  3550. },
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Symfony\\Polyfill\\Mbstring\\": ""
  3554. },
  3555. "files": [
  3556. "bootstrap.php"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Nicolas Grekas",
  3566. "email": "p@tchwork.com"
  3567. },
  3568. {
  3569. "name": "Symfony Community",
  3570. "homepage": "https://symfony.com/contributors"
  3571. }
  3572. ],
  3573. "description": "Symfony polyfill for the Mbstring extension",
  3574. "homepage": "https://symfony.com",
  3575. "keywords": [
  3576. "compatibility",
  3577. "mbstring",
  3578. "polyfill",
  3579. "portable",
  3580. "shim"
  3581. ],
  3582. "time": "2018-09-21T13:07:52+00:00"
  3583. },
  3584. {
  3585. "name": "symfony/polyfill-php56",
  3586. "version": "v1.10.0",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/symfony/polyfill-php56.git",
  3590. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  3595. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "php": ">=5.3.3",
  3600. "symfony/polyfill-util": "~1.0"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-master": "1.9-dev"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Symfony\\Polyfill\\Php56\\": ""
  3611. },
  3612. "files": [
  3613. "bootstrap.php"
  3614. ]
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Nicolas Grekas",
  3623. "email": "p@tchwork.com"
  3624. },
  3625. {
  3626. "name": "Symfony Community",
  3627. "homepage": "https://symfony.com/contributors"
  3628. }
  3629. ],
  3630. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3631. "homepage": "https://symfony.com",
  3632. "keywords": [
  3633. "compatibility",
  3634. "polyfill",
  3635. "portable",
  3636. "shim"
  3637. ],
  3638. "time": "2018-09-21T06:26:08+00:00"
  3639. },
  3640. {
  3641. "name": "symfony/polyfill-php70",
  3642. "version": "v1.10.0",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/symfony/polyfill-php70.git",
  3646. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  3651. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  3656. "php": ">=5.3.3"
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "1.9-dev"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Symfony\\Polyfill\\Php70\\": ""
  3667. },
  3668. "files": [
  3669. "bootstrap.php"
  3670. ],
  3671. "classmap": [
  3672. "Resources/stubs"
  3673. ]
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Nicolas Grekas",
  3682. "email": "p@tchwork.com"
  3683. },
  3684. {
  3685. "name": "Symfony Community",
  3686. "homepage": "https://symfony.com/contributors"
  3687. }
  3688. ],
  3689. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3690. "homepage": "https://symfony.com",
  3691. "keywords": [
  3692. "compatibility",
  3693. "polyfill",
  3694. "portable",
  3695. "shim"
  3696. ],
  3697. "time": "2018-09-21T06:26:08+00:00"
  3698. },
  3699. {
  3700. "name": "symfony/polyfill-php72",
  3701. "version": "v1.10.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/symfony/polyfill-php72.git",
  3705. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  3710. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": ">=5.3.3"
  3715. },
  3716. "type": "library",
  3717. "extra": {
  3718. "branch-alias": {
  3719. "dev-master": "1.9-dev"
  3720. }
  3721. },
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Symfony\\Polyfill\\Php72\\": ""
  3725. },
  3726. "files": [
  3727. "bootstrap.php"
  3728. ]
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "MIT"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Nicolas Grekas",
  3737. "email": "p@tchwork.com"
  3738. },
  3739. {
  3740. "name": "Symfony Community",
  3741. "homepage": "https://symfony.com/contributors"
  3742. }
  3743. ],
  3744. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3745. "homepage": "https://symfony.com",
  3746. "keywords": [
  3747. "compatibility",
  3748. "polyfill",
  3749. "portable",
  3750. "shim"
  3751. ],
  3752. "time": "2018-09-21T13:07:52+00:00"
  3753. },
  3754. {
  3755. "name": "symfony/polyfill-util",
  3756. "version": "v1.10.0",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://github.com/symfony/polyfill-util.git",
  3760. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  3765. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  3766. "shasum": ""
  3767. },
  3768. "require": {
  3769. "php": ">=5.3.3"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "1.9-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-4": {
  3779. "Symfony\\Polyfill\\Util\\": ""
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "MIT"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Nicolas Grekas",
  3789. "email": "p@tchwork.com"
  3790. },
  3791. {
  3792. "name": "Symfony Community",
  3793. "homepage": "https://symfony.com/contributors"
  3794. }
  3795. ],
  3796. "description": "Symfony utilities for portability of PHP codes",
  3797. "homepage": "https://symfony.com",
  3798. "keywords": [
  3799. "compat",
  3800. "compatibility",
  3801. "polyfill",
  3802. "shim"
  3803. ],
  3804. "time": "2018-09-30T16:36:12+00:00"
  3805. },
  3806. {
  3807. "name": "symfony/process",
  3808. "version": "v3.4.23",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/symfony/process.git",
  3812. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  3817. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  3818. "shasum": ""
  3819. },
  3820. "require": {
  3821. "php": "^5.5.9|>=7.0.8"
  3822. },
  3823. "type": "library",
  3824. "extra": {
  3825. "branch-alias": {
  3826. "dev-master": "3.4-dev"
  3827. }
  3828. },
  3829. "autoload": {
  3830. "psr-4": {
  3831. "Symfony\\Component\\Process\\": ""
  3832. },
  3833. "exclude-from-classmap": [
  3834. "/Tests/"
  3835. ]
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Fabien Potencier",
  3844. "email": "fabien@symfony.com"
  3845. },
  3846. {
  3847. "name": "Symfony Community",
  3848. "homepage": "https://symfony.com/contributors"
  3849. }
  3850. ],
  3851. "description": "Symfony Process Component",
  3852. "homepage": "https://symfony.com",
  3853. "time": "2019-01-16T13:27:11+00:00"
  3854. },
  3855. {
  3856. "name": "symfony/routing",
  3857. "version": "v3.4.23",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://github.com/symfony/routing.git",
  3861. "reference": "6b25a86df5860461ff1990946168c0ef944f83db"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://api.github.com/repos/symfony/routing/zipball/6b25a86df5860461ff1990946168c0ef944f83db",
  3866. "reference": "6b25a86df5860461ff1990946168c0ef944f83db",
  3867. "shasum": ""
  3868. },
  3869. "require": {
  3870. "php": "^5.5.9|>=7.0.8"
  3871. },
  3872. "conflict": {
  3873. "symfony/config": "<3.3.1",
  3874. "symfony/dependency-injection": "<3.3",
  3875. "symfony/yaml": "<3.4"
  3876. },
  3877. "require-dev": {
  3878. "doctrine/annotations": "~1.0",
  3879. "psr/log": "~1.0",
  3880. "symfony/config": "^3.3.1|~4.0",
  3881. "symfony/dependency-injection": "~3.3|~4.0",
  3882. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3883. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3884. "symfony/yaml": "~3.4|~4.0"
  3885. },
  3886. "suggest": {
  3887. "doctrine/annotations": "For using the annotation loader",
  3888. "symfony/config": "For using the all-in-one router or any loader",
  3889. "symfony/dependency-injection": "For loading routes from a service",
  3890. "symfony/expression-language": "For using expression matching",
  3891. "symfony/http-foundation": "For using a Symfony Request object",
  3892. "symfony/yaml": "For using the YAML loader"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "branch-alias": {
  3897. "dev-master": "3.4-dev"
  3898. }
  3899. },
  3900. "autoload": {
  3901. "psr-4": {
  3902. "Symfony\\Component\\Routing\\": ""
  3903. },
  3904. "exclude-from-classmap": [
  3905. "/Tests/"
  3906. ]
  3907. },
  3908. "notification-url": "https://packagist.org/downloads/",
  3909. "license": [
  3910. "MIT"
  3911. ],
  3912. "authors": [
  3913. {
  3914. "name": "Fabien Potencier",
  3915. "email": "fabien@symfony.com"
  3916. },
  3917. {
  3918. "name": "Symfony Community",
  3919. "homepage": "https://symfony.com/contributors"
  3920. }
  3921. ],
  3922. "description": "Symfony Routing Component",
  3923. "homepage": "https://symfony.com",
  3924. "keywords": [
  3925. "router",
  3926. "routing",
  3927. "uri",
  3928. "url"
  3929. ],
  3930. "time": "2019-02-23T15:06:07+00:00"
  3931. },
  3932. {
  3933. "name": "symfony/translation",
  3934. "version": "v4.2.4",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/symfony/translation.git",
  3938. "reference": "748464177a77011f8f4cdd076773862ce4915f8f"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://api.github.com/repos/symfony/translation/zipball/748464177a77011f8f4cdd076773862ce4915f8f",
  3943. "reference": "748464177a77011f8f4cdd076773862ce4915f8f",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "php": "^7.1.3",
  3948. "symfony/contracts": "^1.0.2",
  3949. "symfony/polyfill-mbstring": "~1.0"
  3950. },
  3951. "conflict": {
  3952. "symfony/config": "<3.4",
  3953. "symfony/dependency-injection": "<3.4",
  3954. "symfony/yaml": "<3.4"
  3955. },
  3956. "provide": {
  3957. "symfony/translation-contracts-implementation": "1.0"
  3958. },
  3959. "require-dev": {
  3960. "psr/log": "~1.0",
  3961. "symfony/config": "~3.4|~4.0",
  3962. "symfony/console": "~3.4|~4.0",
  3963. "symfony/dependency-injection": "~3.4|~4.0",
  3964. "symfony/finder": "~2.8|~3.0|~4.0",
  3965. "symfony/intl": "~3.4|~4.0",
  3966. "symfony/yaml": "~3.4|~4.0"
  3967. },
  3968. "suggest": {
  3969. "psr/log-implementation": "To use logging capability in translator",
  3970. "symfony/config": "",
  3971. "symfony/yaml": ""
  3972. },
  3973. "type": "library",
  3974. "extra": {
  3975. "branch-alias": {
  3976. "dev-master": "4.2-dev"
  3977. }
  3978. },
  3979. "autoload": {
  3980. "psr-4": {
  3981. "Symfony\\Component\\Translation\\": ""
  3982. },
  3983. "exclude-from-classmap": [
  3984. "/Tests/"
  3985. ]
  3986. },
  3987. "notification-url": "https://packagist.org/downloads/",
  3988. "license": [
  3989. "MIT"
  3990. ],
  3991. "authors": [
  3992. {
  3993. "name": "Fabien Potencier",
  3994. "email": "fabien@symfony.com"
  3995. },
  3996. {
  3997. "name": "Symfony Community",
  3998. "homepage": "https://symfony.com/contributors"
  3999. }
  4000. ],
  4001. "description": "Symfony Translation Component",
  4002. "homepage": "https://symfony.com",
  4003. "time": "2019-02-27T03:31:50+00:00"
  4004. },
  4005. {
  4006. "name": "symfony/var-dumper",
  4007. "version": "v3.4.23",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/symfony/var-dumper.git",
  4011. "reference": "d34d10236300876d14291e9df85c6ef3d3bb9066"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d34d10236300876d14291e9df85c6ef3d3bb9066",
  4016. "reference": "d34d10236300876d14291e9df85c6ef3d3bb9066",
  4017. "shasum": ""
  4018. },
  4019. "require": {
  4020. "php": "^5.5.9|>=7.0.8",
  4021. "symfony/polyfill-mbstring": "~1.0"
  4022. },
  4023. "conflict": {
  4024. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4025. },
  4026. "require-dev": {
  4027. "ext-iconv": "*",
  4028. "twig/twig": "~1.34|~2.4"
  4029. },
  4030. "suggest": {
  4031. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4032. "ext-intl": "To show region name in time zone dump",
  4033. "ext-symfony_debug": ""
  4034. },
  4035. "type": "library",
  4036. "extra": {
  4037. "branch-alias": {
  4038. "dev-master": "3.4-dev"
  4039. }
  4040. },
  4041. "autoload": {
  4042. "files": [
  4043. "Resources/functions/dump.php"
  4044. ],
  4045. "psr-4": {
  4046. "Symfony\\Component\\VarDumper\\": ""
  4047. },
  4048. "exclude-from-classmap": [
  4049. "/Tests/"
  4050. ]
  4051. },
  4052. "notification-url": "https://packagist.org/downloads/",
  4053. "license": [
  4054. "MIT"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "Nicolas Grekas",
  4059. "email": "p@tchwork.com"
  4060. },
  4061. {
  4062. "name": "Symfony Community",
  4063. "homepage": "https://symfony.com/contributors"
  4064. }
  4065. ],
  4066. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4067. "homepage": "https://symfony.com",
  4068. "keywords": [
  4069. "debug",
  4070. "dump"
  4071. ],
  4072. "time": "2019-02-23T15:06:07+00:00"
  4073. },
  4074. {
  4075. "name": "tijsverkoyen/css-to-inline-styles",
  4076. "version": "2.2.1",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4080. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4085. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "php": "^5.5 || ^7.0",
  4090. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  4091. },
  4092. "require-dev": {
  4093. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4094. },
  4095. "type": "library",
  4096. "extra": {
  4097. "branch-alias": {
  4098. "dev-master": "2.2.x-dev"
  4099. }
  4100. },
  4101. "autoload": {
  4102. "psr-4": {
  4103. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4104. }
  4105. },
  4106. "notification-url": "https://packagist.org/downloads/",
  4107. "license": [
  4108. "BSD-3-Clause"
  4109. ],
  4110. "authors": [
  4111. {
  4112. "name": "Tijs Verkoyen",
  4113. "email": "css_to_inline_styles@verkoyen.eu",
  4114. "role": "Developer"
  4115. }
  4116. ],
  4117. "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.",
  4118. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4119. "time": "2017-11-27T11:13:29+00:00"
  4120. },
  4121. {
  4122. "name": "tymon/jwt-auth",
  4123. "version": "1.0.0-rc.3",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/tymondesigns/jwt-auth.git",
  4127. "reference": "e190b6a75372e7e5e3a6d2cf0e4456313412299f"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e190b6a75372e7e5e3a6d2cf0e4456313412299f",
  4132. "reference": "e190b6a75372e7e5e3a6d2cf0e4456313412299f",
  4133. "shasum": ""
  4134. },
  4135. "require": {
  4136. "illuminate/auth": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4137. "illuminate/contracts": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4138. "illuminate/http": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4139. "illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4140. "lcobucci/jwt": "^3.2",
  4141. "namshi/jose": "^7.0",
  4142. "nesbot/carbon": "^1.0",
  4143. "php": "^5.5.9 || ^7.0"
  4144. },
  4145. "require-dev": {
  4146. "cartalyst/sentinel": "2.0.*",
  4147. "illuminate/console": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4148. "illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4149. "illuminate/routing": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  4150. "mockery/mockery": ">=0.9.9",
  4151. "phpunit/phpunit": "~4.8 || ~6.0"
  4152. },
  4153. "type": "library",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-develop": "1.0-dev"
  4157. },
  4158. "laravel": {
  4159. "aliases": {
  4160. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  4161. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  4162. },
  4163. "providers": [
  4164. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  4165. ]
  4166. }
  4167. },
  4168. "autoload": {
  4169. "psr-4": {
  4170. "Tymon\\JWTAuth\\": "src/"
  4171. }
  4172. },
  4173. "notification-url": "https://packagist.org/downloads/",
  4174. "license": [
  4175. "MIT"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "Sean Tymon",
  4180. "email": "tymon148@gmail.com",
  4181. "homepage": "https://tymon.xyz",
  4182. "role": "Developer"
  4183. }
  4184. ],
  4185. "description": "JSON Web Token Authentication for Laravel and Lumen",
  4186. "homepage": "https://github.com/tymondesigns/jwt-auth",
  4187. "keywords": [
  4188. "Authentication",
  4189. "JSON Web Token",
  4190. "auth",
  4191. "jwt",
  4192. "laravel"
  4193. ],
  4194. "time": "2018-09-04T19:48:02+00:00"
  4195. },
  4196. {
  4197. "name": "vlucas/phpdotenv",
  4198. "version": "v2.6.1",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/vlucas/phpdotenv.git",
  4202. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  4207. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "php": ">=5.3.9",
  4212. "symfony/polyfill-ctype": "^1.9"
  4213. },
  4214. "require-dev": {
  4215. "phpunit/phpunit": "^4.8.35 || ^5.0"
  4216. },
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-master": "2.6-dev"
  4221. }
  4222. },
  4223. "autoload": {
  4224. "psr-4": {
  4225. "Dotenv\\": "src/"
  4226. }
  4227. },
  4228. "notification-url": "https://packagist.org/downloads/",
  4229. "license": [
  4230. "BSD-3-Clause"
  4231. ],
  4232. "authors": [
  4233. {
  4234. "name": "Vance Lucas",
  4235. "email": "vance@vancelucas.com",
  4236. "homepage": "http://www.vancelucas.com"
  4237. }
  4238. ],
  4239. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4240. "keywords": [
  4241. "dotenv",
  4242. "env",
  4243. "environment"
  4244. ],
  4245. "time": "2019-01-29T11:11:52+00:00"
  4246. },
  4247. {
  4248. "name": "yansongda/laravel-pay",
  4249. "version": "v2.0.2",
  4250. "source": {
  4251. "type": "git",
  4252. "url": "https://github.com/yansongda/laravel-pay.git",
  4253. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66"
  4254. },
  4255. "dist": {
  4256. "type": "zip",
  4257. "url": "https://api.github.com/repos/yansongda/laravel-pay/zipball/7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4258. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4259. "shasum": ""
  4260. },
  4261. "require": {
  4262. "illuminate/support": "^5.1",
  4263. "yansongda/pay": "^2.0"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "laravel": {
  4268. "providers": [
  4269. "Yansongda\\LaravelPay\\PayServiceProvider"
  4270. ],
  4271. "aliases": {
  4272. "Pay": "Yansongda\\LaravelPay\\Facades\\Pay"
  4273. }
  4274. }
  4275. },
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Yansongda\\LaravelPay\\": "src"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "yansongda",
  4288. "email": "me@yansongda.cn"
  4289. }
  4290. ],
  4291. "description": "专注 Alipay 和 WeChat 的 laravel 支付扩展包",
  4292. "keywords": [
  4293. "alipay",
  4294. "laravel",
  4295. "package",
  4296. "pay",
  4297. "wechat"
  4298. ],
  4299. "time": "2018-09-03T09:09:08+00:00"
  4300. },
  4301. {
  4302. "name": "yansongda/pay",
  4303. "version": "v2.6.2",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://github.com/yansongda/pay.git",
  4307. "reference": "3f3d208824189c7ecdcc694f15ab1124eb5767b7"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://api.github.com/repos/yansongda/pay/zipball/3f3d208824189c7ecdcc694f15ab1124eb5767b7",
  4312. "reference": "3f3d208824189c7ecdcc694f15ab1124eb5767b7",
  4313. "shasum": ""
  4314. },
  4315. "require": {
  4316. "ext-openssl": "*",
  4317. "ext-simplexml": "*",
  4318. "monolog/monolog": "^1.23",
  4319. "php": ">=7.0",
  4320. "symfony/event-dispatcher": "^3.0|^4.0",
  4321. "symfony/http-foundation": "^3.0|^4.0",
  4322. "yansongda/supports": "^1.8"
  4323. },
  4324. "require-dev": {
  4325. "mockery/mockery": "1.0.x-dev",
  4326. "phpunit/phpunit": "^6.2"
  4327. },
  4328. "type": "library",
  4329. "autoload": {
  4330. "psr-4": {
  4331. "Yansongda\\Pay\\": "src"
  4332. }
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "yansongda",
  4341. "email": "me@yansongda.cn"
  4342. }
  4343. ],
  4344. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  4345. "keywords": [
  4346. "alipay",
  4347. "pay",
  4348. "wechat"
  4349. ],
  4350. "time": "2019-01-31T08:37:13+00:00"
  4351. },
  4352. {
  4353. "name": "yansongda/supports",
  4354. "version": "v1.8.7",
  4355. "source": {
  4356. "type": "git",
  4357. "url": "https://github.com/yansongda/supports.git",
  4358. "reference": "3e8ba6dc757352da52cb73fa1c577eceb80dcd7a"
  4359. },
  4360. "dist": {
  4361. "type": "zip",
  4362. "url": "https://api.github.com/repos/yansongda/supports/zipball/3e8ba6dc757352da52cb73fa1c577eceb80dcd7a",
  4363. "reference": "3e8ba6dc757352da52cb73fa1c577eceb80dcd7a",
  4364. "shasum": ""
  4365. },
  4366. "require": {
  4367. "guzzlehttp/guzzle": "^6.2",
  4368. "monolog/monolog": "^1.23",
  4369. "php": ">=5.5"
  4370. },
  4371. "type": "library",
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Yansongda\\Supports\\": "src/"
  4375. }
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "yansongda",
  4384. "email": "me@yansongda.cn"
  4385. }
  4386. ],
  4387. "description": "common components",
  4388. "keywords": [
  4389. "Guzzle",
  4390. "array",
  4391. "collection",
  4392. "config",
  4393. "http",
  4394. "support"
  4395. ],
  4396. "time": "2019-01-31T08:31:49+00:00"
  4397. }
  4398. ],
  4399. "packages-dev": [
  4400. {
  4401. "name": "barryvdh/laravel-debugbar",
  4402. "version": "v3.2.3",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  4406. "reference": "5fcba4cc8e92a230b13b99c1083fc22ba8a5c479"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/5fcba4cc8e92a230b13b99c1083fc22ba8a5c479",
  4411. "reference": "5fcba4cc8e92a230b13b99c1083fc22ba8a5c479",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "illuminate/routing": "5.5.x|5.6.x|5.7.x|5.8.x",
  4416. "illuminate/session": "5.5.x|5.6.x|5.7.x|5.8.x",
  4417. "illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x",
  4418. "maximebf/debugbar": "~1.15.0",
  4419. "php": ">=7.0",
  4420. "symfony/debug": "^3|^4",
  4421. "symfony/finder": "^3|^4"
  4422. },
  4423. "require-dev": {
  4424. "laravel/framework": "5.5.x"
  4425. },
  4426. "type": "library",
  4427. "extra": {
  4428. "branch-alias": {
  4429. "dev-master": "3.2-dev"
  4430. },
  4431. "laravel": {
  4432. "providers": [
  4433. "Barryvdh\\Debugbar\\ServiceProvider"
  4434. ],
  4435. "aliases": {
  4436. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  4437. }
  4438. }
  4439. },
  4440. "autoload": {
  4441. "psr-4": {
  4442. "Barryvdh\\Debugbar\\": "src/"
  4443. },
  4444. "files": [
  4445. "src/helpers.php"
  4446. ]
  4447. },
  4448. "notification-url": "https://packagist.org/downloads/",
  4449. "license": [
  4450. "MIT"
  4451. ],
  4452. "authors": [
  4453. {
  4454. "name": "Barry vd. Heuvel",
  4455. "email": "barryvdh@gmail.com"
  4456. }
  4457. ],
  4458. "description": "PHP Debugbar integration for Laravel",
  4459. "keywords": [
  4460. "debug",
  4461. "debugbar",
  4462. "laravel",
  4463. "profiler",
  4464. "webprofiler"
  4465. ],
  4466. "time": "2019-02-26T18:01:54+00:00"
  4467. },
  4468. {
  4469. "name": "barryvdh/laravel-ide-helper",
  4470. "version": "v2.6.1",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  4474. "reference": "725711022be71c6fa2e7bc8f9648bf125986f027"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/725711022be71c6fa2e7bc8f9648bf125986f027",
  4479. "reference": "725711022be71c6fa2e7bc8f9648bf125986f027",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "barryvdh/reflection-docblock": "^2.0.6",
  4484. "composer/composer": "^1.6",
  4485. "illuminate/console": "^5.5,<5.9",
  4486. "illuminate/filesystem": "^5.5,<5.9",
  4487. "illuminate/support": "^5.5,<5.9",
  4488. "php": ">=7"
  4489. },
  4490. "require-dev": {
  4491. "doctrine/dbal": "~2.3",
  4492. "illuminate/config": "^5.1,<5.9",
  4493. "illuminate/view": "^5.1,<5.9",
  4494. "phpro/grumphp": "^0.14",
  4495. "phpunit/phpunit": "4.*",
  4496. "scrutinizer/ocular": "~1.1",
  4497. "squizlabs/php_codesniffer": "^3"
  4498. },
  4499. "suggest": {
  4500. "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
  4501. },
  4502. "type": "library",
  4503. "extra": {
  4504. "branch-alias": {
  4505. "dev-master": "2.6-dev"
  4506. },
  4507. "laravel": {
  4508. "providers": [
  4509. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  4510. ]
  4511. }
  4512. },
  4513. "autoload": {
  4514. "psr-4": {
  4515. "Barryvdh\\LaravelIdeHelper\\": "src"
  4516. }
  4517. },
  4518. "notification-url": "https://packagist.org/downloads/",
  4519. "license": [
  4520. "MIT"
  4521. ],
  4522. "authors": [
  4523. {
  4524. "name": "Barry vd. Heuvel",
  4525. "email": "barryvdh@gmail.com"
  4526. }
  4527. ],
  4528. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  4529. "keywords": [
  4530. "autocomplete",
  4531. "codeintel",
  4532. "helper",
  4533. "ide",
  4534. "laravel",
  4535. "netbeans",
  4536. "phpdoc",
  4537. "phpstorm",
  4538. "sublime"
  4539. ],
  4540. "time": "2019-03-05T09:24:51+00:00"
  4541. },
  4542. {
  4543. "name": "barryvdh/reflection-docblock",
  4544. "version": "v2.0.6",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  4548. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  4553. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "php": ">=5.3.3"
  4558. },
  4559. "require-dev": {
  4560. "phpunit/phpunit": "~4.0,<4.5"
  4561. },
  4562. "suggest": {
  4563. "dflydev/markdown": "~1.0",
  4564. "erusev/parsedown": "~1.0"
  4565. },
  4566. "type": "library",
  4567. "extra": {
  4568. "branch-alias": {
  4569. "dev-master": "2.0.x-dev"
  4570. }
  4571. },
  4572. "autoload": {
  4573. "psr-0": {
  4574. "Barryvdh": [
  4575. "src/"
  4576. ]
  4577. }
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "Mike van Riel",
  4586. "email": "mike.vanriel@naenius.com"
  4587. }
  4588. ],
  4589. "time": "2018-12-13T10:34:14+00:00"
  4590. },
  4591. {
  4592. "name": "composer/ca-bundle",
  4593. "version": "1.1.4",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://github.com/composer/ca-bundle.git",
  4597. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  4602. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  4603. "shasum": ""
  4604. },
  4605. "require": {
  4606. "ext-openssl": "*",
  4607. "ext-pcre": "*",
  4608. "php": "^5.3.2 || ^7.0"
  4609. },
  4610. "require-dev": {
  4611. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  4612. "psr/log": "^1.0",
  4613. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-master": "1.x-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Composer\\CaBundle\\": "src"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Jordi Boggiano",
  4633. "email": "j.boggiano@seld.be",
  4634. "homepage": "http://seld.be"
  4635. }
  4636. ],
  4637. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  4638. "keywords": [
  4639. "cabundle",
  4640. "cacert",
  4641. "certificate",
  4642. "ssl",
  4643. "tls"
  4644. ],
  4645. "time": "2019-01-28T09:30:10+00:00"
  4646. },
  4647. {
  4648. "name": "composer/composer",
  4649. "version": "1.8.4",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/composer/composer.git",
  4653. "reference": "bc364c2480c17941e2135cfc568fa41794392534"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/composer/composer/zipball/bc364c2480c17941e2135cfc568fa41794392534",
  4658. "reference": "bc364c2480c17941e2135cfc568fa41794392534",
  4659. "shasum": ""
  4660. },
  4661. "require": {
  4662. "composer/ca-bundle": "^1.0",
  4663. "composer/semver": "^1.0",
  4664. "composer/spdx-licenses": "^1.2",
  4665. "composer/xdebug-handler": "^1.1",
  4666. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  4667. "php": "^5.3.2 || ^7.0",
  4668. "psr/log": "^1.0",
  4669. "seld/jsonlint": "^1.4",
  4670. "seld/phar-utils": "^1.0",
  4671. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  4672. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  4673. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  4674. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  4675. },
  4676. "conflict": {
  4677. "symfony/console": "2.8.38"
  4678. },
  4679. "require-dev": {
  4680. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4681. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  4682. },
  4683. "suggest": {
  4684. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  4685. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  4686. "ext-zlib": "Allow gzip compression of HTTP requests"
  4687. },
  4688. "bin": [
  4689. "bin/composer"
  4690. ],
  4691. "type": "library",
  4692. "extra": {
  4693. "branch-alias": {
  4694. "dev-master": "1.8-dev"
  4695. }
  4696. },
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Composer\\": "src/Composer"
  4700. }
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Nils Adermann",
  4709. "email": "naderman@naderman.de",
  4710. "homepage": "http://www.naderman.de"
  4711. },
  4712. {
  4713. "name": "Jordi Boggiano",
  4714. "email": "j.boggiano@seld.be",
  4715. "homepage": "http://seld.be"
  4716. }
  4717. ],
  4718. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  4719. "homepage": "https://getcomposer.org/",
  4720. "keywords": [
  4721. "autoload",
  4722. "dependency",
  4723. "package"
  4724. ],
  4725. "time": "2019-02-11T09:52:10+00:00"
  4726. },
  4727. {
  4728. "name": "composer/semver",
  4729. "version": "1.4.2",
  4730. "source": {
  4731. "type": "git",
  4732. "url": "https://github.com/composer/semver.git",
  4733. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  4734. },
  4735. "dist": {
  4736. "type": "zip",
  4737. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  4738. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  4739. "shasum": ""
  4740. },
  4741. "require": {
  4742. "php": "^5.3.2 || ^7.0"
  4743. },
  4744. "require-dev": {
  4745. "phpunit/phpunit": "^4.5 || ^5.0.5",
  4746. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  4747. },
  4748. "type": "library",
  4749. "extra": {
  4750. "branch-alias": {
  4751. "dev-master": "1.x-dev"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Composer\\Semver\\": "src"
  4757. }
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Nils Adermann",
  4766. "email": "naderman@naderman.de",
  4767. "homepage": "http://www.naderman.de"
  4768. },
  4769. {
  4770. "name": "Jordi Boggiano",
  4771. "email": "j.boggiano@seld.be",
  4772. "homepage": "http://seld.be"
  4773. },
  4774. {
  4775. "name": "Rob Bast",
  4776. "email": "rob.bast@gmail.com",
  4777. "homepage": "http://robbast.nl"
  4778. }
  4779. ],
  4780. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  4781. "keywords": [
  4782. "semantic",
  4783. "semver",
  4784. "validation",
  4785. "versioning"
  4786. ],
  4787. "time": "2016-08-30T16:08:34+00:00"
  4788. },
  4789. {
  4790. "name": "composer/spdx-licenses",
  4791. "version": "1.5.0",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://github.com/composer/spdx-licenses.git",
  4795. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  4800. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  4801. "shasum": ""
  4802. },
  4803. "require": {
  4804. "php": "^5.3.2 || ^7.0"
  4805. },
  4806. "require-dev": {
  4807. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  4808. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  4809. },
  4810. "type": "library",
  4811. "extra": {
  4812. "branch-alias": {
  4813. "dev-master": "1.x-dev"
  4814. }
  4815. },
  4816. "autoload": {
  4817. "psr-4": {
  4818. "Composer\\Spdx\\": "src"
  4819. }
  4820. },
  4821. "notification-url": "https://packagist.org/downloads/",
  4822. "license": [
  4823. "MIT"
  4824. ],
  4825. "authors": [
  4826. {
  4827. "name": "Nils Adermann",
  4828. "email": "naderman@naderman.de",
  4829. "homepage": "http://www.naderman.de"
  4830. },
  4831. {
  4832. "name": "Jordi Boggiano",
  4833. "email": "j.boggiano@seld.be",
  4834. "homepage": "http://seld.be"
  4835. },
  4836. {
  4837. "name": "Rob Bast",
  4838. "email": "rob.bast@gmail.com",
  4839. "homepage": "http://robbast.nl"
  4840. }
  4841. ],
  4842. "description": "SPDX licenses list and validation library.",
  4843. "keywords": [
  4844. "license",
  4845. "spdx",
  4846. "validator"
  4847. ],
  4848. "time": "2018-11-01T09:45:54+00:00"
  4849. },
  4850. {
  4851. "name": "composer/xdebug-handler",
  4852. "version": "1.3.2",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/composer/xdebug-handler.git",
  4856. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  4861. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "php": "^5.3.2 || ^7.0",
  4866. "psr/log": "^1.0"
  4867. },
  4868. "require-dev": {
  4869. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  4870. },
  4871. "type": "library",
  4872. "autoload": {
  4873. "psr-4": {
  4874. "Composer\\XdebugHandler\\": "src"
  4875. }
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "MIT"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "John Stevenson",
  4884. "email": "john-stevenson@blueyonder.co.uk"
  4885. }
  4886. ],
  4887. "description": "Restarts a process without xdebug.",
  4888. "keywords": [
  4889. "Xdebug",
  4890. "performance"
  4891. ],
  4892. "time": "2019-01-28T20:25:53+00:00"
  4893. },
  4894. {
  4895. "name": "doctrine/instantiator",
  4896. "version": "1.1.0",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://github.com/doctrine/instantiator.git",
  4900. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  4905. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  4906. "shasum": ""
  4907. },
  4908. "require": {
  4909. "php": "^7.1"
  4910. },
  4911. "require-dev": {
  4912. "athletic/athletic": "~0.1.8",
  4913. "ext-pdo": "*",
  4914. "ext-phar": "*",
  4915. "phpunit/phpunit": "^6.2.3",
  4916. "squizlabs/php_codesniffer": "^3.0.2"
  4917. },
  4918. "type": "library",
  4919. "extra": {
  4920. "branch-alias": {
  4921. "dev-master": "1.2.x-dev"
  4922. }
  4923. },
  4924. "autoload": {
  4925. "psr-4": {
  4926. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4927. }
  4928. },
  4929. "notification-url": "https://packagist.org/downloads/",
  4930. "license": [
  4931. "MIT"
  4932. ],
  4933. "authors": [
  4934. {
  4935. "name": "Marco Pivetta",
  4936. "email": "ocramius@gmail.com",
  4937. "homepage": "http://ocramius.github.com/"
  4938. }
  4939. ],
  4940. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4941. "homepage": "https://github.com/doctrine/instantiator",
  4942. "keywords": [
  4943. "constructor",
  4944. "instantiate"
  4945. ],
  4946. "time": "2017-07-22T11:58:36+00:00"
  4947. },
  4948. {
  4949. "name": "eaglewu/swoole-ide-helper",
  4950. "version": "dev-master",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/wudi/swoole-ide-helper.git",
  4954. "reference": "ad962ff4ef07f69e30c142c88e84a095e733c5bb"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/wudi/swoole-ide-helper/zipball/ad962ff4ef07f69e30c142c88e84a095e733c5bb",
  4959. "reference": "ad962ff4ef07f69e30c142c88e84a095e733c5bb",
  4960. "shasum": ""
  4961. },
  4962. "type": "library",
  4963. "notification-url": "https://packagist.org/downloads/",
  4964. "license": [
  4965. "MIT"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "eagle",
  4970. "email": "eaglewudi@gmail.com",
  4971. "role": "lead"
  4972. }
  4973. ],
  4974. "description": "Swoole IDE Helper, to improve auto-completion",
  4975. "keywords": [
  4976. "autocomplete",
  4977. "codeintel",
  4978. "helper",
  4979. "ide",
  4980. "netbeans",
  4981. "phpdoc",
  4982. "phpstorm",
  4983. "sublime",
  4984. "swoole"
  4985. ],
  4986. "time": "2019-03-12T05:59:37+00:00"
  4987. },
  4988. {
  4989. "name": "filp/whoops",
  4990. "version": "2.3.1",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://github.com/filp/whoops.git",
  4994. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  4999. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  5000. "shasum": ""
  5001. },
  5002. "require": {
  5003. "php": "^5.5.9 || ^7.0",
  5004. "psr/log": "^1.0.1"
  5005. },
  5006. "require-dev": {
  5007. "mockery/mockery": "^0.9 || ^1.0",
  5008. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5009. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  5010. },
  5011. "suggest": {
  5012. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5013. "whoops/soap": "Formats errors as SOAP responses"
  5014. },
  5015. "type": "library",
  5016. "extra": {
  5017. "branch-alias": {
  5018. "dev-master": "2.2-dev"
  5019. }
  5020. },
  5021. "autoload": {
  5022. "psr-4": {
  5023. "Whoops\\": "src/Whoops/"
  5024. }
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Filipe Dobreira",
  5033. "homepage": "https://github.com/filp",
  5034. "role": "Developer"
  5035. }
  5036. ],
  5037. "description": "php error handling for cool kids",
  5038. "homepage": "https://filp.github.io/whoops/",
  5039. "keywords": [
  5040. "error",
  5041. "exception",
  5042. "handling",
  5043. "library",
  5044. "throwable",
  5045. "whoops"
  5046. ],
  5047. "time": "2018-10-23T09:00:00+00:00"
  5048. },
  5049. {
  5050. "name": "fzaninotto/faker",
  5051. "version": "v1.8.0",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/fzaninotto/Faker.git",
  5055. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  5060. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "php": "^5.3.3 || ^7.0"
  5065. },
  5066. "require-dev": {
  5067. "ext-intl": "*",
  5068. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5069. "squizlabs/php_codesniffer": "^1.5"
  5070. },
  5071. "type": "library",
  5072. "extra": {
  5073. "branch-alias": {
  5074. "dev-master": "1.8-dev"
  5075. }
  5076. },
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Faker\\": "src/Faker/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "François Zaninotto"
  5089. }
  5090. ],
  5091. "description": "Faker is a PHP library that generates fake data for you.",
  5092. "keywords": [
  5093. "data",
  5094. "faker",
  5095. "fixtures"
  5096. ],
  5097. "time": "2018-07-12T10:23:15+00:00"
  5098. },
  5099. {
  5100. "name": "hamcrest/hamcrest-php",
  5101. "version": "v2.0.0",
  5102. "source": {
  5103. "type": "git",
  5104. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5105. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  5106. },
  5107. "dist": {
  5108. "type": "zip",
  5109. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5110. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5111. "shasum": ""
  5112. },
  5113. "require": {
  5114. "php": "^5.3|^7.0"
  5115. },
  5116. "replace": {
  5117. "cordoval/hamcrest-php": "*",
  5118. "davedevelopment/hamcrest-php": "*",
  5119. "kodova/hamcrest-php": "*"
  5120. },
  5121. "require-dev": {
  5122. "phpunit/php-file-iterator": "1.3.3",
  5123. "phpunit/phpunit": "~4.0",
  5124. "satooshi/php-coveralls": "^1.0"
  5125. },
  5126. "type": "library",
  5127. "extra": {
  5128. "branch-alias": {
  5129. "dev-master": "2.0-dev"
  5130. }
  5131. },
  5132. "autoload": {
  5133. "classmap": [
  5134. "hamcrest"
  5135. ]
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "BSD"
  5140. ],
  5141. "description": "This is the PHP port of Hamcrest Matchers",
  5142. "keywords": [
  5143. "test"
  5144. ],
  5145. "time": "2016-01-20T08:20:44+00:00"
  5146. },
  5147. {
  5148. "name": "justinrainbow/json-schema",
  5149. "version": "5.2.8",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/justinrainbow/json-schema.git",
  5153. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  5158. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "php": ">=5.3.3"
  5163. },
  5164. "require-dev": {
  5165. "friendsofphp/php-cs-fixer": "~2.2.20",
  5166. "json-schema/json-schema-test-suite": "1.2.0",
  5167. "phpunit/phpunit": "^4.8.35"
  5168. },
  5169. "bin": [
  5170. "bin/validate-json"
  5171. ],
  5172. "type": "library",
  5173. "extra": {
  5174. "branch-alias": {
  5175. "dev-master": "5.0.x-dev"
  5176. }
  5177. },
  5178. "autoload": {
  5179. "psr-4": {
  5180. "JsonSchema\\": "src/JsonSchema/"
  5181. }
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Bruno Prieto Reis",
  5190. "email": "bruno.p.reis@gmail.com"
  5191. },
  5192. {
  5193. "name": "Justin Rainbow",
  5194. "email": "justin.rainbow@gmail.com"
  5195. },
  5196. {
  5197. "name": "Igor Wiedler",
  5198. "email": "igor@wiedler.ch"
  5199. },
  5200. {
  5201. "name": "Robert Schönthal",
  5202. "email": "seroscho@googlemail.com"
  5203. }
  5204. ],
  5205. "description": "A library to validate a json schema.",
  5206. "homepage": "https://github.com/justinrainbow/json-schema",
  5207. "keywords": [
  5208. "json",
  5209. "schema"
  5210. ],
  5211. "time": "2019-01-14T23:55:14+00:00"
  5212. },
  5213. {
  5214. "name": "maximebf/debugbar",
  5215. "version": "v1.15.0",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/maximebf/php-debugbar.git",
  5219. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  5224. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  5225. "shasum": ""
  5226. },
  5227. "require": {
  5228. "php": ">=5.3.0",
  5229. "psr/log": "^1.0",
  5230. "symfony/var-dumper": "^2.6|^3.0|^4.0"
  5231. },
  5232. "require-dev": {
  5233. "phpunit/phpunit": "^4.0|^5.0"
  5234. },
  5235. "suggest": {
  5236. "kriswallsmith/assetic": "The best way to manage assets",
  5237. "monolog/monolog": "Log using Monolog",
  5238. "predis/predis": "Redis storage"
  5239. },
  5240. "type": "library",
  5241. "extra": {
  5242. "branch-alias": {
  5243. "dev-master": "1.14-dev"
  5244. }
  5245. },
  5246. "autoload": {
  5247. "psr-4": {
  5248. "DebugBar\\": "src/DebugBar/"
  5249. }
  5250. },
  5251. "notification-url": "https://packagist.org/downloads/",
  5252. "license": [
  5253. "MIT"
  5254. ],
  5255. "authors": [
  5256. {
  5257. "name": "Maxime Bouroumeau-Fuseau",
  5258. "email": "maxime.bouroumeau@gmail.com",
  5259. "homepage": "http://maximebf.com"
  5260. },
  5261. {
  5262. "name": "Barry vd. Heuvel",
  5263. "email": "barryvdh@gmail.com"
  5264. }
  5265. ],
  5266. "description": "Debug bar in the browser for php application",
  5267. "homepage": "https://github.com/maximebf/php-debugbar",
  5268. "keywords": [
  5269. "debug",
  5270. "debugbar"
  5271. ],
  5272. "time": "2017-12-15T11:13:46+00:00"
  5273. },
  5274. {
  5275. "name": "mockery/mockery",
  5276. "version": "1.2.2",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/mockery/mockery.git",
  5280. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  5285. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "hamcrest/hamcrest-php": "~2.0",
  5290. "lib-pcre": ">=7.0",
  5291. "php": ">=5.6.0"
  5292. },
  5293. "require-dev": {
  5294. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  5295. },
  5296. "type": "library",
  5297. "extra": {
  5298. "branch-alias": {
  5299. "dev-master": "1.0.x-dev"
  5300. }
  5301. },
  5302. "autoload": {
  5303. "psr-0": {
  5304. "Mockery": "library/"
  5305. }
  5306. },
  5307. "notification-url": "https://packagist.org/downloads/",
  5308. "license": [
  5309. "BSD-3-Clause"
  5310. ],
  5311. "authors": [
  5312. {
  5313. "name": "Pádraic Brady",
  5314. "email": "padraic.brady@gmail.com",
  5315. "homepage": "http://blog.astrumfutura.com"
  5316. },
  5317. {
  5318. "name": "Dave Marshall",
  5319. "email": "dave.marshall@atstsolutions.co.uk",
  5320. "homepage": "http://davedevelopment.co.uk"
  5321. }
  5322. ],
  5323. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5324. "homepage": "https://github.com/mockery/mockery",
  5325. "keywords": [
  5326. "BDD",
  5327. "TDD",
  5328. "library",
  5329. "mock",
  5330. "mock objects",
  5331. "mockery",
  5332. "stub",
  5333. "test",
  5334. "test double",
  5335. "testing"
  5336. ],
  5337. "time": "2019-02-13T09:37:52+00:00"
  5338. },
  5339. {
  5340. "name": "mpociot/laravel-test-factory-helper",
  5341. "version": "0.5.0",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/mpociot/laravel-test-factory-helper.git",
  5345. "reference": "3d122e7517454800f69531b6a3151b254da2a285"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/mpociot/laravel-test-factory-helper/zipball/3d122e7517454800f69531b6a3151b254da2a285",
  5350. "reference": "3d122e7517454800f69531b6a3151b254da2a285",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "doctrine/dbal": "~2.3",
  5355. "illuminate/console": "^5.0",
  5356. "illuminate/filesystem": "^5.0",
  5357. "illuminate/support": "^5.0",
  5358. "php": ">=5.6.0",
  5359. "symfony/class-loader": "^2.3|3.*"
  5360. },
  5361. "type": "library",
  5362. "extra": {
  5363. "laravel": {
  5364. "providers": [
  5365. "Mpociot\\LaravelTestFactoryHelper\\TestFactoryHelperServiceProvider"
  5366. ]
  5367. }
  5368. },
  5369. "autoload": {
  5370. "psr-4": {
  5371. "Mpociot\\LaravelTestFactoryHelper\\": "src/"
  5372. }
  5373. },
  5374. "notification-url": "https://packagist.org/downloads/",
  5375. "license": [
  5376. "MIT"
  5377. ],
  5378. "description": "Generate Laravel test factories from your existing models",
  5379. "keywords": [
  5380. "factory",
  5381. "laravel",
  5382. "tests"
  5383. ],
  5384. "time": "2017-10-09T18:00:57+00:00"
  5385. },
  5386. {
  5387. "name": "myclabs/deep-copy",
  5388. "version": "1.8.1",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/myclabs/DeepCopy.git",
  5392. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5397. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "php": "^7.1"
  5402. },
  5403. "replace": {
  5404. "myclabs/deep-copy": "self.version"
  5405. },
  5406. "require-dev": {
  5407. "doctrine/collections": "^1.0",
  5408. "doctrine/common": "^2.6",
  5409. "phpunit/phpunit": "^7.1"
  5410. },
  5411. "type": "library",
  5412. "autoload": {
  5413. "psr-4": {
  5414. "DeepCopy\\": "src/DeepCopy/"
  5415. },
  5416. "files": [
  5417. "src/DeepCopy/deep_copy.php"
  5418. ]
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "description": "Create deep copies (clones) of your objects",
  5425. "keywords": [
  5426. "clone",
  5427. "copy",
  5428. "duplicate",
  5429. "object",
  5430. "object graph"
  5431. ],
  5432. "time": "2018-06-11T23:09:50+00:00"
  5433. },
  5434. {
  5435. "name": "phar-io/manifest",
  5436. "version": "1.0.1",
  5437. "source": {
  5438. "type": "git",
  5439. "url": "https://github.com/phar-io/manifest.git",
  5440. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  5441. },
  5442. "dist": {
  5443. "type": "zip",
  5444. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5445. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5446. "shasum": ""
  5447. },
  5448. "require": {
  5449. "ext-dom": "*",
  5450. "ext-phar": "*",
  5451. "phar-io/version": "^1.0.1",
  5452. "php": "^5.6 || ^7.0"
  5453. },
  5454. "type": "library",
  5455. "extra": {
  5456. "branch-alias": {
  5457. "dev-master": "1.0.x-dev"
  5458. }
  5459. },
  5460. "autoload": {
  5461. "classmap": [
  5462. "src/"
  5463. ]
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "BSD-3-Clause"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Arne Blankerts",
  5472. "email": "arne@blankerts.de",
  5473. "role": "Developer"
  5474. },
  5475. {
  5476. "name": "Sebastian Heuer",
  5477. "email": "sebastian@phpeople.de",
  5478. "role": "Developer"
  5479. },
  5480. {
  5481. "name": "Sebastian Bergmann",
  5482. "email": "sebastian@phpunit.de",
  5483. "role": "Developer"
  5484. }
  5485. ],
  5486. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5487. "time": "2017-03-05T18:14:27+00:00"
  5488. },
  5489. {
  5490. "name": "phar-io/version",
  5491. "version": "1.0.1",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/phar-io/version.git",
  5495. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  5500. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": "^5.6 || ^7.0"
  5505. },
  5506. "type": "library",
  5507. "autoload": {
  5508. "classmap": [
  5509. "src/"
  5510. ]
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "BSD-3-Clause"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Arne Blankerts",
  5519. "email": "arne@blankerts.de",
  5520. "role": "Developer"
  5521. },
  5522. {
  5523. "name": "Sebastian Heuer",
  5524. "email": "sebastian@phpeople.de",
  5525. "role": "Developer"
  5526. },
  5527. {
  5528. "name": "Sebastian Bergmann",
  5529. "email": "sebastian@phpunit.de",
  5530. "role": "Developer"
  5531. }
  5532. ],
  5533. "description": "Library for handling version information and constraints",
  5534. "time": "2017-03-05T17:38:23+00:00"
  5535. },
  5536. {
  5537. "name": "phpdocumentor/reflection-common",
  5538. "version": "1.0.1",
  5539. "source": {
  5540. "type": "git",
  5541. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5542. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5543. },
  5544. "dist": {
  5545. "type": "zip",
  5546. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5547. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5548. "shasum": ""
  5549. },
  5550. "require": {
  5551. "php": ">=5.5"
  5552. },
  5553. "require-dev": {
  5554. "phpunit/phpunit": "^4.6"
  5555. },
  5556. "type": "library",
  5557. "extra": {
  5558. "branch-alias": {
  5559. "dev-master": "1.0.x-dev"
  5560. }
  5561. },
  5562. "autoload": {
  5563. "psr-4": {
  5564. "phpDocumentor\\Reflection\\": [
  5565. "src"
  5566. ]
  5567. }
  5568. },
  5569. "notification-url": "https://packagist.org/downloads/",
  5570. "license": [
  5571. "MIT"
  5572. ],
  5573. "authors": [
  5574. {
  5575. "name": "Jaap van Otterdijk",
  5576. "email": "opensource@ijaap.nl"
  5577. }
  5578. ],
  5579. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5580. "homepage": "http://www.phpdoc.org",
  5581. "keywords": [
  5582. "FQSEN",
  5583. "phpDocumentor",
  5584. "phpdoc",
  5585. "reflection",
  5586. "static analysis"
  5587. ],
  5588. "time": "2017-09-11T18:02:19+00:00"
  5589. },
  5590. {
  5591. "name": "phpdocumentor/reflection-docblock",
  5592. "version": "4.3.0",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5596. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5601. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5602. "shasum": ""
  5603. },
  5604. "require": {
  5605. "php": "^7.0",
  5606. "phpdocumentor/reflection-common": "^1.0.0",
  5607. "phpdocumentor/type-resolver": "^0.4.0",
  5608. "webmozart/assert": "^1.0"
  5609. },
  5610. "require-dev": {
  5611. "doctrine/instantiator": "~1.0.5",
  5612. "mockery/mockery": "^1.0",
  5613. "phpunit/phpunit": "^6.4"
  5614. },
  5615. "type": "library",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-master": "4.x-dev"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "psr-4": {
  5623. "phpDocumentor\\Reflection\\": [
  5624. "src/"
  5625. ]
  5626. }
  5627. },
  5628. "notification-url": "https://packagist.org/downloads/",
  5629. "license": [
  5630. "MIT"
  5631. ],
  5632. "authors": [
  5633. {
  5634. "name": "Mike van Riel",
  5635. "email": "me@mikevanriel.com"
  5636. }
  5637. ],
  5638. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5639. "time": "2017-11-30T07:14:17+00:00"
  5640. },
  5641. {
  5642. "name": "phpdocumentor/type-resolver",
  5643. "version": "0.4.0",
  5644. "source": {
  5645. "type": "git",
  5646. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5647. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5648. },
  5649. "dist": {
  5650. "type": "zip",
  5651. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5652. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5653. "shasum": ""
  5654. },
  5655. "require": {
  5656. "php": "^5.5 || ^7.0",
  5657. "phpdocumentor/reflection-common": "^1.0"
  5658. },
  5659. "require-dev": {
  5660. "mockery/mockery": "^0.9.4",
  5661. "phpunit/phpunit": "^5.2||^4.8.24"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-master": "1.0.x-dev"
  5667. }
  5668. },
  5669. "autoload": {
  5670. "psr-4": {
  5671. "phpDocumentor\\Reflection\\": [
  5672. "src/"
  5673. ]
  5674. }
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "MIT"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Mike van Riel",
  5683. "email": "me@mikevanriel.com"
  5684. }
  5685. ],
  5686. "time": "2017-07-14T14:27:02+00:00"
  5687. },
  5688. {
  5689. "name": "phpspec/prophecy",
  5690. "version": "1.8.0",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/phpspec/prophecy.git",
  5694. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5699. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "doctrine/instantiator": "^1.0.2",
  5704. "php": "^5.3|^7.0",
  5705. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5706. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5707. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5708. },
  5709. "require-dev": {
  5710. "phpspec/phpspec": "^2.5|^3.2",
  5711. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-master": "1.8.x-dev"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "psr-0": {
  5721. "Prophecy\\": "src/"
  5722. }
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "MIT"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "Konstantin Kudryashov",
  5731. "email": "ever.zet@gmail.com",
  5732. "homepage": "http://everzet.com"
  5733. },
  5734. {
  5735. "name": "Marcello Duarte",
  5736. "email": "marcello.duarte@gmail.com"
  5737. }
  5738. ],
  5739. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5740. "homepage": "https://github.com/phpspec/prophecy",
  5741. "keywords": [
  5742. "Double",
  5743. "Dummy",
  5744. "fake",
  5745. "mock",
  5746. "spy",
  5747. "stub"
  5748. ],
  5749. "time": "2018-08-05T17:53:17+00:00"
  5750. },
  5751. {
  5752. "name": "phpunit/php-code-coverage",
  5753. "version": "5.3.2",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5757. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  5762. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "ext-dom": "*",
  5767. "ext-xmlwriter": "*",
  5768. "php": "^7.0",
  5769. "phpunit/php-file-iterator": "^1.4.2",
  5770. "phpunit/php-text-template": "^1.2.1",
  5771. "phpunit/php-token-stream": "^2.0.1",
  5772. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5773. "sebastian/environment": "^3.0",
  5774. "sebastian/version": "^2.0.1",
  5775. "theseer/tokenizer": "^1.1"
  5776. },
  5777. "require-dev": {
  5778. "phpunit/phpunit": "^6.0"
  5779. },
  5780. "suggest": {
  5781. "ext-xdebug": "^2.5.5"
  5782. },
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "5.3.x-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "classmap": [
  5791. "src/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Sebastian Bergmann",
  5801. "email": "sebastian@phpunit.de",
  5802. "role": "lead"
  5803. }
  5804. ],
  5805. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5806. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5807. "keywords": [
  5808. "coverage",
  5809. "testing",
  5810. "xunit"
  5811. ],
  5812. "time": "2018-04-06T15:36:58+00:00"
  5813. },
  5814. {
  5815. "name": "phpunit/php-file-iterator",
  5816. "version": "1.4.5",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5820. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5825. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "php": ">=5.3.3"
  5830. },
  5831. "type": "library",
  5832. "extra": {
  5833. "branch-alias": {
  5834. "dev-master": "1.4.x-dev"
  5835. }
  5836. },
  5837. "autoload": {
  5838. "classmap": [
  5839. "src/"
  5840. ]
  5841. },
  5842. "notification-url": "https://packagist.org/downloads/",
  5843. "license": [
  5844. "BSD-3-Clause"
  5845. ],
  5846. "authors": [
  5847. {
  5848. "name": "Sebastian Bergmann",
  5849. "email": "sb@sebastian-bergmann.de",
  5850. "role": "lead"
  5851. }
  5852. ],
  5853. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5854. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5855. "keywords": [
  5856. "filesystem",
  5857. "iterator"
  5858. ],
  5859. "time": "2017-11-27T13:52:08+00:00"
  5860. },
  5861. {
  5862. "name": "phpunit/php-text-template",
  5863. "version": "1.2.1",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5867. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5872. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5873. "shasum": ""
  5874. },
  5875. "require": {
  5876. "php": ">=5.3.3"
  5877. },
  5878. "type": "library",
  5879. "autoload": {
  5880. "classmap": [
  5881. "src/"
  5882. ]
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "BSD-3-Clause"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Sebastian Bergmann",
  5891. "email": "sebastian@phpunit.de",
  5892. "role": "lead"
  5893. }
  5894. ],
  5895. "description": "Simple template engine.",
  5896. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5897. "keywords": [
  5898. "template"
  5899. ],
  5900. "time": "2015-06-21T13:50:34+00:00"
  5901. },
  5902. {
  5903. "name": "phpunit/php-timer",
  5904. "version": "1.0.9",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5908. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5913. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5914. "shasum": ""
  5915. },
  5916. "require": {
  5917. "php": "^5.3.3 || ^7.0"
  5918. },
  5919. "require-dev": {
  5920. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5921. },
  5922. "type": "library",
  5923. "extra": {
  5924. "branch-alias": {
  5925. "dev-master": "1.0-dev"
  5926. }
  5927. },
  5928. "autoload": {
  5929. "classmap": [
  5930. "src/"
  5931. ]
  5932. },
  5933. "notification-url": "https://packagist.org/downloads/",
  5934. "license": [
  5935. "BSD-3-Clause"
  5936. ],
  5937. "authors": [
  5938. {
  5939. "name": "Sebastian Bergmann",
  5940. "email": "sb@sebastian-bergmann.de",
  5941. "role": "lead"
  5942. }
  5943. ],
  5944. "description": "Utility class for timing",
  5945. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5946. "keywords": [
  5947. "timer"
  5948. ],
  5949. "time": "2017-02-26T11:10:40+00:00"
  5950. },
  5951. {
  5952. "name": "phpunit/php-token-stream",
  5953. "version": "2.0.2",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5957. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  5962. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "ext-tokenizer": "*",
  5967. "php": "^7.0"
  5968. },
  5969. "require-dev": {
  5970. "phpunit/phpunit": "^6.2.4"
  5971. },
  5972. "type": "library",
  5973. "extra": {
  5974. "branch-alias": {
  5975. "dev-master": "2.0-dev"
  5976. }
  5977. },
  5978. "autoload": {
  5979. "classmap": [
  5980. "src/"
  5981. ]
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "BSD-3-Clause"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Sebastian Bergmann",
  5990. "email": "sebastian@phpunit.de"
  5991. }
  5992. ],
  5993. "description": "Wrapper around PHP's tokenizer extension.",
  5994. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5995. "keywords": [
  5996. "tokenizer"
  5997. ],
  5998. "time": "2017-11-27T05:48:46+00:00"
  5999. },
  6000. {
  6001. "name": "phpunit/phpunit",
  6002. "version": "6.5.14",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6006. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  6011. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "ext-dom": "*",
  6016. "ext-json": "*",
  6017. "ext-libxml": "*",
  6018. "ext-mbstring": "*",
  6019. "ext-xml": "*",
  6020. "myclabs/deep-copy": "^1.6.1",
  6021. "phar-io/manifest": "^1.0.1",
  6022. "phar-io/version": "^1.0",
  6023. "php": "^7.0",
  6024. "phpspec/prophecy": "^1.7",
  6025. "phpunit/php-code-coverage": "^5.3",
  6026. "phpunit/php-file-iterator": "^1.4.3",
  6027. "phpunit/php-text-template": "^1.2.1",
  6028. "phpunit/php-timer": "^1.0.9",
  6029. "phpunit/phpunit-mock-objects": "^5.0.9",
  6030. "sebastian/comparator": "^2.1",
  6031. "sebastian/diff": "^2.0",
  6032. "sebastian/environment": "^3.1",
  6033. "sebastian/exporter": "^3.1",
  6034. "sebastian/global-state": "^2.0",
  6035. "sebastian/object-enumerator": "^3.0.3",
  6036. "sebastian/resource-operations": "^1.0",
  6037. "sebastian/version": "^2.0.1"
  6038. },
  6039. "conflict": {
  6040. "phpdocumentor/reflection-docblock": "3.0.2",
  6041. "phpunit/dbunit": "<3.0"
  6042. },
  6043. "require-dev": {
  6044. "ext-pdo": "*"
  6045. },
  6046. "suggest": {
  6047. "ext-xdebug": "*",
  6048. "phpunit/php-invoker": "^1.1"
  6049. },
  6050. "bin": [
  6051. "phpunit"
  6052. ],
  6053. "type": "library",
  6054. "extra": {
  6055. "branch-alias": {
  6056. "dev-master": "6.5.x-dev"
  6057. }
  6058. },
  6059. "autoload": {
  6060. "classmap": [
  6061. "src/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "BSD-3-Clause"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Sebastian Bergmann",
  6071. "email": "sebastian@phpunit.de",
  6072. "role": "lead"
  6073. }
  6074. ],
  6075. "description": "The PHP Unit Testing framework.",
  6076. "homepage": "https://phpunit.de/",
  6077. "keywords": [
  6078. "phpunit",
  6079. "testing",
  6080. "xunit"
  6081. ],
  6082. "time": "2019-02-01T05:22:47+00:00"
  6083. },
  6084. {
  6085. "name": "phpunit/phpunit-mock-objects",
  6086. "version": "5.0.10",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  6090. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  6095. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  6096. "shasum": ""
  6097. },
  6098. "require": {
  6099. "doctrine/instantiator": "^1.0.5",
  6100. "php": "^7.0",
  6101. "phpunit/php-text-template": "^1.2.1",
  6102. "sebastian/exporter": "^3.1"
  6103. },
  6104. "conflict": {
  6105. "phpunit/phpunit": "<6.0"
  6106. },
  6107. "require-dev": {
  6108. "phpunit/phpunit": "^6.5.11"
  6109. },
  6110. "suggest": {
  6111. "ext-soap": "*"
  6112. },
  6113. "type": "library",
  6114. "extra": {
  6115. "branch-alias": {
  6116. "dev-master": "5.0.x-dev"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "classmap": [
  6121. "src/"
  6122. ]
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "BSD-3-Clause"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Sebastian Bergmann",
  6131. "email": "sebastian@phpunit.de",
  6132. "role": "lead"
  6133. }
  6134. ],
  6135. "description": "Mock Object library for PHPUnit",
  6136. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  6137. "keywords": [
  6138. "mock",
  6139. "xunit"
  6140. ],
  6141. "abandoned": true,
  6142. "time": "2018-08-09T05:50:03+00:00"
  6143. },
  6144. {
  6145. "name": "sebastian/code-unit-reverse-lookup",
  6146. "version": "1.0.1",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6150. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6155. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "php": "^5.6 || ^7.0"
  6160. },
  6161. "require-dev": {
  6162. "phpunit/phpunit": "^5.7 || ^6.0"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-master": "1.0.x-dev"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "classmap": [
  6172. "src/"
  6173. ]
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "BSD-3-Clause"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Sebastian Bergmann",
  6182. "email": "sebastian@phpunit.de"
  6183. }
  6184. ],
  6185. "description": "Looks up which function or method a line of code belongs to",
  6186. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6187. "time": "2017-03-04T06:30:41+00:00"
  6188. },
  6189. {
  6190. "name": "sebastian/comparator",
  6191. "version": "2.1.3",
  6192. "source": {
  6193. "type": "git",
  6194. "url": "https://github.com/sebastianbergmann/comparator.git",
  6195. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  6196. },
  6197. "dist": {
  6198. "type": "zip",
  6199. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  6200. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  6201. "shasum": ""
  6202. },
  6203. "require": {
  6204. "php": "^7.0",
  6205. "sebastian/diff": "^2.0 || ^3.0",
  6206. "sebastian/exporter": "^3.1"
  6207. },
  6208. "require-dev": {
  6209. "phpunit/phpunit": "^6.4"
  6210. },
  6211. "type": "library",
  6212. "extra": {
  6213. "branch-alias": {
  6214. "dev-master": "2.1.x-dev"
  6215. }
  6216. },
  6217. "autoload": {
  6218. "classmap": [
  6219. "src/"
  6220. ]
  6221. },
  6222. "notification-url": "https://packagist.org/downloads/",
  6223. "license": [
  6224. "BSD-3-Clause"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "Jeff Welch",
  6229. "email": "whatthejeff@gmail.com"
  6230. },
  6231. {
  6232. "name": "Volker Dusch",
  6233. "email": "github@wallbash.com"
  6234. },
  6235. {
  6236. "name": "Bernhard Schussek",
  6237. "email": "bschussek@2bepublished.at"
  6238. },
  6239. {
  6240. "name": "Sebastian Bergmann",
  6241. "email": "sebastian@phpunit.de"
  6242. }
  6243. ],
  6244. "description": "Provides the functionality to compare PHP values for equality",
  6245. "homepage": "https://github.com/sebastianbergmann/comparator",
  6246. "keywords": [
  6247. "comparator",
  6248. "compare",
  6249. "equality"
  6250. ],
  6251. "time": "2018-02-01T13:46:46+00:00"
  6252. },
  6253. {
  6254. "name": "sebastian/diff",
  6255. "version": "2.0.1",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/sebastianbergmann/diff.git",
  6259. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6264. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": "^7.0"
  6269. },
  6270. "require-dev": {
  6271. "phpunit/phpunit": "^6.2"
  6272. },
  6273. "type": "library",
  6274. "extra": {
  6275. "branch-alias": {
  6276. "dev-master": "2.0-dev"
  6277. }
  6278. },
  6279. "autoload": {
  6280. "classmap": [
  6281. "src/"
  6282. ]
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "BSD-3-Clause"
  6287. ],
  6288. "authors": [
  6289. {
  6290. "name": "Kore Nordmann",
  6291. "email": "mail@kore-nordmann.de"
  6292. },
  6293. {
  6294. "name": "Sebastian Bergmann",
  6295. "email": "sebastian@phpunit.de"
  6296. }
  6297. ],
  6298. "description": "Diff implementation",
  6299. "homepage": "https://github.com/sebastianbergmann/diff",
  6300. "keywords": [
  6301. "diff"
  6302. ],
  6303. "time": "2017-08-03T08:09:46+00:00"
  6304. },
  6305. {
  6306. "name": "sebastian/environment",
  6307. "version": "3.1.0",
  6308. "source": {
  6309. "type": "git",
  6310. "url": "https://github.com/sebastianbergmann/environment.git",
  6311. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  6312. },
  6313. "dist": {
  6314. "type": "zip",
  6315. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6316. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6317. "shasum": ""
  6318. },
  6319. "require": {
  6320. "php": "^7.0"
  6321. },
  6322. "require-dev": {
  6323. "phpunit/phpunit": "^6.1"
  6324. },
  6325. "type": "library",
  6326. "extra": {
  6327. "branch-alias": {
  6328. "dev-master": "3.1.x-dev"
  6329. }
  6330. },
  6331. "autoload": {
  6332. "classmap": [
  6333. "src/"
  6334. ]
  6335. },
  6336. "notification-url": "https://packagist.org/downloads/",
  6337. "license": [
  6338. "BSD-3-Clause"
  6339. ],
  6340. "authors": [
  6341. {
  6342. "name": "Sebastian Bergmann",
  6343. "email": "sebastian@phpunit.de"
  6344. }
  6345. ],
  6346. "description": "Provides functionality to handle HHVM/PHP environments",
  6347. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6348. "keywords": [
  6349. "Xdebug",
  6350. "environment",
  6351. "hhvm"
  6352. ],
  6353. "time": "2017-07-01T08:51:00+00:00"
  6354. },
  6355. {
  6356. "name": "sebastian/exporter",
  6357. "version": "3.1.0",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/sebastianbergmann/exporter.git",
  6361. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6366. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "php": "^7.0",
  6371. "sebastian/recursion-context": "^3.0"
  6372. },
  6373. "require-dev": {
  6374. "ext-mbstring": "*",
  6375. "phpunit/phpunit": "^6.0"
  6376. },
  6377. "type": "library",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-master": "3.1.x-dev"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "classmap": [
  6385. "src/"
  6386. ]
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "BSD-3-Clause"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Jeff Welch",
  6395. "email": "whatthejeff@gmail.com"
  6396. },
  6397. {
  6398. "name": "Volker Dusch",
  6399. "email": "github@wallbash.com"
  6400. },
  6401. {
  6402. "name": "Bernhard Schussek",
  6403. "email": "bschussek@2bepublished.at"
  6404. },
  6405. {
  6406. "name": "Sebastian Bergmann",
  6407. "email": "sebastian@phpunit.de"
  6408. },
  6409. {
  6410. "name": "Adam Harvey",
  6411. "email": "aharvey@php.net"
  6412. }
  6413. ],
  6414. "description": "Provides the functionality to export PHP variables for visualization",
  6415. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6416. "keywords": [
  6417. "export",
  6418. "exporter"
  6419. ],
  6420. "time": "2017-04-03T13:19:02+00:00"
  6421. },
  6422. {
  6423. "name": "sebastian/global-state",
  6424. "version": "2.0.0",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/sebastianbergmann/global-state.git",
  6428. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6433. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6434. "shasum": ""
  6435. },
  6436. "require": {
  6437. "php": "^7.0"
  6438. },
  6439. "require-dev": {
  6440. "phpunit/phpunit": "^6.0"
  6441. },
  6442. "suggest": {
  6443. "ext-uopz": "*"
  6444. },
  6445. "type": "library",
  6446. "extra": {
  6447. "branch-alias": {
  6448. "dev-master": "2.0-dev"
  6449. }
  6450. },
  6451. "autoload": {
  6452. "classmap": [
  6453. "src/"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "BSD-3-Clause"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Sebastian Bergmann",
  6463. "email": "sebastian@phpunit.de"
  6464. }
  6465. ],
  6466. "description": "Snapshotting of global state",
  6467. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6468. "keywords": [
  6469. "global state"
  6470. ],
  6471. "time": "2017-04-27T15:39:26+00:00"
  6472. },
  6473. {
  6474. "name": "sebastian/object-enumerator",
  6475. "version": "3.0.3",
  6476. "source": {
  6477. "type": "git",
  6478. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6479. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6480. },
  6481. "dist": {
  6482. "type": "zip",
  6483. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6484. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6485. "shasum": ""
  6486. },
  6487. "require": {
  6488. "php": "^7.0",
  6489. "sebastian/object-reflector": "^1.1.1",
  6490. "sebastian/recursion-context": "^3.0"
  6491. },
  6492. "require-dev": {
  6493. "phpunit/phpunit": "^6.0"
  6494. },
  6495. "type": "library",
  6496. "extra": {
  6497. "branch-alias": {
  6498. "dev-master": "3.0.x-dev"
  6499. }
  6500. },
  6501. "autoload": {
  6502. "classmap": [
  6503. "src/"
  6504. ]
  6505. },
  6506. "notification-url": "https://packagist.org/downloads/",
  6507. "license": [
  6508. "BSD-3-Clause"
  6509. ],
  6510. "authors": [
  6511. {
  6512. "name": "Sebastian Bergmann",
  6513. "email": "sebastian@phpunit.de"
  6514. }
  6515. ],
  6516. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6517. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6518. "time": "2017-08-03T12:35:26+00:00"
  6519. },
  6520. {
  6521. "name": "sebastian/object-reflector",
  6522. "version": "1.1.1",
  6523. "source": {
  6524. "type": "git",
  6525. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6526. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6527. },
  6528. "dist": {
  6529. "type": "zip",
  6530. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6531. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6532. "shasum": ""
  6533. },
  6534. "require": {
  6535. "php": "^7.0"
  6536. },
  6537. "require-dev": {
  6538. "phpunit/phpunit": "^6.0"
  6539. },
  6540. "type": "library",
  6541. "extra": {
  6542. "branch-alias": {
  6543. "dev-master": "1.1-dev"
  6544. }
  6545. },
  6546. "autoload": {
  6547. "classmap": [
  6548. "src/"
  6549. ]
  6550. },
  6551. "notification-url": "https://packagist.org/downloads/",
  6552. "license": [
  6553. "BSD-3-Clause"
  6554. ],
  6555. "authors": [
  6556. {
  6557. "name": "Sebastian Bergmann",
  6558. "email": "sebastian@phpunit.de"
  6559. }
  6560. ],
  6561. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6562. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6563. "time": "2017-03-29T09:07:27+00:00"
  6564. },
  6565. {
  6566. "name": "sebastian/recursion-context",
  6567. "version": "3.0.0",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6571. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6576. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": "^7.0"
  6581. },
  6582. "require-dev": {
  6583. "phpunit/phpunit": "^6.0"
  6584. },
  6585. "type": "library",
  6586. "extra": {
  6587. "branch-alias": {
  6588. "dev-master": "3.0.x-dev"
  6589. }
  6590. },
  6591. "autoload": {
  6592. "classmap": [
  6593. "src/"
  6594. ]
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "BSD-3-Clause"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Jeff Welch",
  6603. "email": "whatthejeff@gmail.com"
  6604. },
  6605. {
  6606. "name": "Sebastian Bergmann",
  6607. "email": "sebastian@phpunit.de"
  6608. },
  6609. {
  6610. "name": "Adam Harvey",
  6611. "email": "aharvey@php.net"
  6612. }
  6613. ],
  6614. "description": "Provides functionality to recursively process PHP variables",
  6615. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6616. "time": "2017-03-03T06:23:57+00:00"
  6617. },
  6618. {
  6619. "name": "sebastian/resource-operations",
  6620. "version": "1.0.0",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6624. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6629. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=5.6.0"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-master": "1.0.x-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "classmap": [
  6643. "src/"
  6644. ]
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "BSD-3-Clause"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Sebastian Bergmann",
  6653. "email": "sebastian@phpunit.de"
  6654. }
  6655. ],
  6656. "description": "Provides a list of PHP built-in functions that operate on resources",
  6657. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6658. "time": "2015-07-28T20:34:47+00:00"
  6659. },
  6660. {
  6661. "name": "sebastian/version",
  6662. "version": "2.0.1",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/sebastianbergmann/version.git",
  6666. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6671. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": ">=5.6"
  6676. },
  6677. "type": "library",
  6678. "extra": {
  6679. "branch-alias": {
  6680. "dev-master": "2.0.x-dev"
  6681. }
  6682. },
  6683. "autoload": {
  6684. "classmap": [
  6685. "src/"
  6686. ]
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "BSD-3-Clause"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Sebastian Bergmann",
  6695. "email": "sebastian@phpunit.de",
  6696. "role": "lead"
  6697. }
  6698. ],
  6699. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6700. "homepage": "https://github.com/sebastianbergmann/version",
  6701. "time": "2016-10-03T07:35:21+00:00"
  6702. },
  6703. {
  6704. "name": "seld/jsonlint",
  6705. "version": "1.7.1",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/Seldaek/jsonlint.git",
  6709. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  6714. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  6715. "shasum": ""
  6716. },
  6717. "require": {
  6718. "php": "^5.3 || ^7.0"
  6719. },
  6720. "require-dev": {
  6721. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6722. },
  6723. "bin": [
  6724. "bin/jsonlint"
  6725. ],
  6726. "type": "library",
  6727. "autoload": {
  6728. "psr-4": {
  6729. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  6730. }
  6731. },
  6732. "notification-url": "https://packagist.org/downloads/",
  6733. "license": [
  6734. "MIT"
  6735. ],
  6736. "authors": [
  6737. {
  6738. "name": "Jordi Boggiano",
  6739. "email": "j.boggiano@seld.be",
  6740. "homepage": "http://seld.be"
  6741. }
  6742. ],
  6743. "description": "JSON Linter",
  6744. "keywords": [
  6745. "json",
  6746. "linter",
  6747. "parser",
  6748. "validator"
  6749. ],
  6750. "time": "2018-01-24T12:46:19+00:00"
  6751. },
  6752. {
  6753. "name": "seld/phar-utils",
  6754. "version": "1.0.1",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://github.com/Seldaek/phar-utils.git",
  6758. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  6763. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  6764. "shasum": ""
  6765. },
  6766. "require": {
  6767. "php": ">=5.3"
  6768. },
  6769. "type": "library",
  6770. "extra": {
  6771. "branch-alias": {
  6772. "dev-master": "1.x-dev"
  6773. }
  6774. },
  6775. "autoload": {
  6776. "psr-4": {
  6777. "Seld\\PharUtils\\": "src/"
  6778. }
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "MIT"
  6783. ],
  6784. "authors": [
  6785. {
  6786. "name": "Jordi Boggiano",
  6787. "email": "j.boggiano@seld.be"
  6788. }
  6789. ],
  6790. "description": "PHAR file format utilities, for when PHP phars you up",
  6791. "keywords": [
  6792. "phra"
  6793. ],
  6794. "time": "2015-10-13T18:44:15+00:00"
  6795. },
  6796. {
  6797. "name": "symfony/class-loader",
  6798. "version": "v3.4.23",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/symfony/class-loader.git",
  6802. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  6807. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "php": "^5.5.9|>=7.0.8"
  6812. },
  6813. "require-dev": {
  6814. "symfony/finder": "~2.8|~3.0|~4.0",
  6815. "symfony/polyfill-apcu": "~1.1"
  6816. },
  6817. "suggest": {
  6818. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  6819. },
  6820. "type": "library",
  6821. "extra": {
  6822. "branch-alias": {
  6823. "dev-master": "3.4-dev"
  6824. }
  6825. },
  6826. "autoload": {
  6827. "psr-4": {
  6828. "Symfony\\Component\\ClassLoader\\": ""
  6829. },
  6830. "exclude-from-classmap": [
  6831. "/Tests/"
  6832. ]
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "authors": [
  6839. {
  6840. "name": "Fabien Potencier",
  6841. "email": "fabien@symfony.com"
  6842. },
  6843. {
  6844. "name": "Symfony Community",
  6845. "homepage": "https://symfony.com/contributors"
  6846. }
  6847. ],
  6848. "description": "Symfony ClassLoader Component",
  6849. "homepage": "https://symfony.com",
  6850. "time": "2019-01-16T09:39:14+00:00"
  6851. },
  6852. {
  6853. "name": "symfony/filesystem",
  6854. "version": "v4.2.4",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/symfony/filesystem.git",
  6858. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601",
  6863. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "php": "^7.1.3",
  6868. "symfony/polyfill-ctype": "~1.8"
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "branch-alias": {
  6873. "dev-master": "4.2-dev"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Symfony\\Component\\Filesystem\\": ""
  6879. },
  6880. "exclude-from-classmap": [
  6881. "/Tests/"
  6882. ]
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Fabien Potencier",
  6891. "email": "fabien@symfony.com"
  6892. },
  6893. {
  6894. "name": "Symfony Community",
  6895. "homepage": "https://symfony.com/contributors"
  6896. }
  6897. ],
  6898. "description": "Symfony Filesystem Component",
  6899. "homepage": "https://symfony.com",
  6900. "time": "2019-02-07T11:40:08+00:00"
  6901. },
  6902. {
  6903. "name": "symfony/thanks",
  6904. "version": "v1.1.0",
  6905. "source": {
  6906. "type": "git",
  6907. "url": "https://github.com/symfony/thanks.git",
  6908. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  6909. },
  6910. "dist": {
  6911. "type": "zip",
  6912. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  6913. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  6914. "shasum": ""
  6915. },
  6916. "require": {
  6917. "composer-plugin-api": "^1.0",
  6918. "php": "^5.5.9|^7.0.0"
  6919. },
  6920. "type": "composer-plugin",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-master": "1.0-dev"
  6924. },
  6925. "class": "Symfony\\Thanks\\Thanks"
  6926. },
  6927. "autoload": {
  6928. "psr-4": {
  6929. "Symfony\\Thanks\\": "src"
  6930. }
  6931. },
  6932. "notification-url": "https://packagist.org/downloads/",
  6933. "license": [
  6934. "MIT"
  6935. ],
  6936. "authors": [
  6937. {
  6938. "name": "Nicolas Grekas",
  6939. "email": "p@tchwork.com"
  6940. }
  6941. ],
  6942. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  6943. "time": "2018-08-24T14:08:13+00:00"
  6944. },
  6945. {
  6946. "name": "theseer/tokenizer",
  6947. "version": "1.1.0",
  6948. "source": {
  6949. "type": "git",
  6950. "url": "https://github.com/theseer/tokenizer.git",
  6951. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  6952. },
  6953. "dist": {
  6954. "type": "zip",
  6955. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6956. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6957. "shasum": ""
  6958. },
  6959. "require": {
  6960. "ext-dom": "*",
  6961. "ext-tokenizer": "*",
  6962. "ext-xmlwriter": "*",
  6963. "php": "^7.0"
  6964. },
  6965. "type": "library",
  6966. "autoload": {
  6967. "classmap": [
  6968. "src/"
  6969. ]
  6970. },
  6971. "notification-url": "https://packagist.org/downloads/",
  6972. "license": [
  6973. "BSD-3-Clause"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "Arne Blankerts",
  6978. "email": "arne@blankerts.de",
  6979. "role": "Developer"
  6980. }
  6981. ],
  6982. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6983. "time": "2017-04-07T12:08:54+00:00"
  6984. },
  6985. {
  6986. "name": "webmozart/assert",
  6987. "version": "1.4.0",
  6988. "source": {
  6989. "type": "git",
  6990. "url": "https://github.com/webmozart/assert.git",
  6991. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  6992. },
  6993. "dist": {
  6994. "type": "zip",
  6995. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  6996. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  6997. "shasum": ""
  6998. },
  6999. "require": {
  7000. "php": "^5.3.3 || ^7.0",
  7001. "symfony/polyfill-ctype": "^1.8"
  7002. },
  7003. "require-dev": {
  7004. "phpunit/phpunit": "^4.6",
  7005. "sebastian/version": "^1.0.1"
  7006. },
  7007. "type": "library",
  7008. "extra": {
  7009. "branch-alias": {
  7010. "dev-master": "1.3-dev"
  7011. }
  7012. },
  7013. "autoload": {
  7014. "psr-4": {
  7015. "Webmozart\\Assert\\": "src/"
  7016. }
  7017. },
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Bernhard Schussek",
  7025. "email": "bschussek@gmail.com"
  7026. }
  7027. ],
  7028. "description": "Assertions to validate method input/output with nice error messages.",
  7029. "keywords": [
  7030. "assert",
  7031. "check",
  7032. "validate"
  7033. ],
  7034. "time": "2018-12-25T11:19:39+00:00"
  7035. }
  7036. ],
  7037. "aliases": [],
  7038. "minimum-stability": "stable",
  7039. "stability-flags": {
  7040. "tymon/jwt-auth": 5,
  7041. "eaglewu/swoole-ide-helper": 20
  7042. },
  7043. "prefer-stable": false,
  7044. "prefer-lowest": false,
  7045. "platform": {
  7046. "php": ">=7.0.0"
  7047. },
  7048. "platform-dev": []
  7049. }