composer.lock 231 KB

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