composer.lock 234 KB

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