composer.lock 365 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "18ad56515b5907ccfe202e48be57e260",
  8. "packages": [
  9. {
  10. "name": "anam/phantomjs-linux-x86-binary",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/anam-hossain/phantomjs-linux-x86-binary.git",
  15. "reference": "cb90cd0e7bd4ad34f52e6834783b1c5adae15014"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/anam-hossain/phantomjs-linux-x86-binary/zipball/cb90cd0e7bd4ad34f52e6834783b1c5adae15014",
  20. "reference": "cb90cd0e7bd4ad34f52e6834783b1c5adae15014",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "bin": [
  30. "bin/phantomjs"
  31. ],
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Anam\\PhantomLinux\\": "/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "BSD-2-Clause"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Anam hossain",
  45. "email": "enam33@gmail.com"
  46. }
  47. ],
  48. "description": "PhantomJS static linked binary for 64 bit linux systems. Most of Linux distributions are supported including Ubuntu, Debian, Fedora and CentOS.",
  49. "homepage": "http://phantomjs.org/download.html",
  50. "keywords": [
  51. "binary",
  52. "phantomjs",
  53. "phantomjs binary"
  54. ],
  55. "time": "2016-04-05T05:24:48+00:00"
  56. },
  57. {
  58. "name": "anam/phantommagick",
  59. "version": "v2.0.0",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/anam-hossain/phantommagick.git",
  63. "reference": "7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/anam-hossain/phantommagick/zipball/7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb",
  68. "reference": "7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb",
  69. "shasum": "",
  70. "mirrors": [
  71. {
  72. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  73. "preferred": true
  74. }
  75. ]
  76. },
  77. "require": {
  78. "league/flysystem": "~1.0",
  79. "php": ">=5.4.0"
  80. },
  81. "require-dev": {
  82. "mockery/mockery": "~0.9",
  83. "phpunit/phpunit": "~4.4"
  84. },
  85. "type": "library",
  86. "autoload": {
  87. "psr-4": {
  88. "Anam\\PhantomMagick\\": "src/"
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Anam hossain",
  98. "email": "enam33@gmail.com"
  99. }
  100. ],
  101. "description": "PhantomMagick provides a simple API to ease the process of converting HTML to PDF or images",
  102. "homepage": "https://github.com/anam-hossain/phantommagick",
  103. "keywords": [
  104. "Html 2 jpg",
  105. "Html 2 pdf",
  106. "Laravel pdf",
  107. "Phantom",
  108. "Screen capture",
  109. "converter",
  110. "html to image",
  111. "html to pdf",
  112. "html to png",
  113. "image converter",
  114. "invoice",
  115. "laravel",
  116. "pdf",
  117. "pdf converter",
  118. "phantomjs"
  119. ],
  120. "time": "2017-08-07T09:06:12+00:00"
  121. },
  122. {
  123. "name": "bacon/bacon-qr-code",
  124. "version": "1.0.3",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/Bacon/BaconQrCode.git",
  128. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  133. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  134. "shasum": "",
  135. "mirrors": [
  136. {
  137. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  138. "preferred": true
  139. }
  140. ]
  141. },
  142. "require": {
  143. "ext-iconv": "*",
  144. "php": "^5.4|^7.0"
  145. },
  146. "require-dev": {
  147. "phpunit/phpunit": "^4.8"
  148. },
  149. "suggest": {
  150. "ext-gd": "to generate QR code images"
  151. },
  152. "type": "library",
  153. "autoload": {
  154. "psr-0": {
  155. "BaconQrCode": "src/"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "BSD-2-Clause"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Ben Scholzen 'DASPRiD'",
  165. "email": "mail@dasprids.de",
  166. "homepage": "http://www.dasprids.de",
  167. "role": "Developer"
  168. }
  169. ],
  170. "description": "BaconQrCode is a QR code generator for PHP.",
  171. "homepage": "https://github.com/Bacon/BaconQrCode",
  172. "time": "2017-10-17T09:59:25+00:00"
  173. },
  174. {
  175. "name": "barryvdh/laravel-cors",
  176. "version": "v0.10.1",
  177. "source": {
  178. "type": "git",
  179. "url": "https://github.com/barryvdh/laravel-cors.git",
  180. "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad"
  181. },
  182. "dist": {
  183. "type": "zip",
  184. "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/b64caccbfc33b9ee2ba7dcce3307590882ede9ad",
  185. "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad",
  186. "shasum": "",
  187. "mirrors": [
  188. {
  189. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  190. "preferred": true
  191. }
  192. ]
  193. },
  194. "require": {
  195. "illuminate/support": "5.3.x|5.4.x|5.5.x",
  196. "php": ">=5.5.9",
  197. "symfony/http-foundation": "~3.1",
  198. "symfony/http-kernel": "~3.1"
  199. },
  200. "require-dev": {
  201. "orchestra/testbench": "3.x",
  202. "phpunit/phpunit": "^4.8|^5.2",
  203. "squizlabs/php_codesniffer": "^2.3"
  204. },
  205. "type": "library",
  206. "extra": {
  207. "branch-alias": {
  208. "dev-master": "0.10-dev"
  209. },
  210. "laravel": {
  211. "providers": [
  212. "Barryvdh\\Cors\\ServiceProvider"
  213. ]
  214. }
  215. },
  216. "autoload": {
  217. "psr-4": {
  218. "Barryvdh\\Cors\\": "src/"
  219. },
  220. "classmap": [
  221. "tests"
  222. ]
  223. },
  224. "notification-url": "https://packagist.org/downloads/",
  225. "license": [
  226. "MIT"
  227. ],
  228. "authors": [
  229. {
  230. "name": "Barry vd. Heuvel",
  231. "email": "barryvdh@gmail.com"
  232. }
  233. ],
  234. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  235. "keywords": [
  236. "api",
  237. "cors",
  238. "crossdomain",
  239. "laravel"
  240. ],
  241. "time": "2017-12-19T21:08:24+00:00"
  242. },
  243. {
  244. "name": "defuse/php-encryption",
  245. "version": "v2.2.1",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/defuse/php-encryption.git",
  249. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  254. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  255. "shasum": "",
  256. "mirrors": [
  257. {
  258. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  259. "preferred": true
  260. }
  261. ]
  262. },
  263. "require": {
  264. "ext-openssl": "*",
  265. "paragonie/random_compat": ">= 2",
  266. "php": ">=5.4.0"
  267. },
  268. "require-dev": {
  269. "nikic/php-parser": "^2.0|^3.0|^4.0",
  270. "phpunit/phpunit": "^4|^5"
  271. },
  272. "bin": [
  273. "bin/generate-defuse-key"
  274. ],
  275. "type": "library",
  276. "autoload": {
  277. "psr-4": {
  278. "Defuse\\Crypto\\": "src"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Taylor Hornby",
  288. "email": "taylor@defuse.ca",
  289. "homepage": "https://defuse.ca/"
  290. },
  291. {
  292. "name": "Scott Arciszewski",
  293. "email": "info@paragonie.com",
  294. "homepage": "https://paragonie.com"
  295. }
  296. ],
  297. "description": "Secure PHP Encryption Library",
  298. "keywords": [
  299. "aes",
  300. "authenticated encryption",
  301. "cipher",
  302. "crypto",
  303. "cryptography",
  304. "encrypt",
  305. "encryption",
  306. "openssl",
  307. "security",
  308. "symmetric key cryptography"
  309. ],
  310. "time": "2018-07-24T23:27:56+00:00"
  311. },
  312. {
  313. "name": "dingo/api",
  314. "version": "v2.0.0-alpha1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/dingo/api.git",
  318. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/dingo/api/zipball/8beb74dd307770c909f0474e26a1004099ac78bd",
  323. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "dingo/blueprint": "^0.2",
  334. "illuminate/routing": "^5.1",
  335. "illuminate/support": "^5.1",
  336. "league/fractal": "^0.17",
  337. "php": "^7.0"
  338. },
  339. "require-dev": {
  340. "friendsofphp/php-cs-fixer": "~2",
  341. "illuminate/auth": "^5.1",
  342. "illuminate/cache": "^5.1",
  343. "illuminate/console": "^5.1",
  344. "illuminate/database": "^5.1",
  345. "illuminate/events": "^5.1",
  346. "illuminate/filesystem": "^5.1",
  347. "illuminate/log": "^5.1",
  348. "illuminate/pagination": "^5.1",
  349. "laravel/lumen-framework": "^5.1",
  350. "mockery/mockery": "~0.9",
  351. "phpunit/phpunit": "^4.8 || ^5.0",
  352. "squizlabs/php_codesniffer": "~2.0",
  353. "tymon/jwt-auth": "1.0.*"
  354. },
  355. "suggest": {
  356. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  357. },
  358. "type": "library",
  359. "extra": {
  360. "branch-alias": {
  361. "dev-master": "2.0-dev"
  362. },
  363. "laravel": {
  364. "providers": [
  365. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  366. ],
  367. "aliases": {
  368. "API": "Dingo\\Api\\Facade\\API"
  369. }
  370. }
  371. },
  372. "autoload": {
  373. "psr-4": {
  374. "Dingo\\Api\\": "src/"
  375. },
  376. "files": [
  377. "src/helpers.php"
  378. ]
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "BSD-3-Clause"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Jason Lewis",
  387. "email": "jason.lewis1991@gmail.com"
  388. }
  389. ],
  390. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  391. "keywords": [
  392. "api",
  393. "dingo",
  394. "laravel",
  395. "restful"
  396. ],
  397. "time": "2017-09-20T15:57:14+00:00"
  398. },
  399. {
  400. "name": "dingo/blueprint",
  401. "version": "v0.2.4",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/dingo/blueprint.git",
  405. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/dingo/blueprint/zipball/1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  410. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  411. "shasum": "",
  412. "mirrors": [
  413. {
  414. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  415. "preferred": true
  416. }
  417. ]
  418. },
  419. "require": {
  420. "doctrine/annotations": "~1.2",
  421. "illuminate/filesystem": "^5.1",
  422. "illuminate/support": "^5.1",
  423. "php": ">=5.5.9",
  424. "phpdocumentor/reflection-docblock": "^3.1"
  425. },
  426. "require-dev": {
  427. "phpunit/phpunit": "~4.0",
  428. "squizlabs/php_codesniffer": "~2.0"
  429. },
  430. "type": "library",
  431. "extra": {
  432. "branch-alias": {
  433. "dev-master": "0.2-dev"
  434. }
  435. },
  436. "autoload": {
  437. "psr-4": {
  438. "Dingo\\Blueprint\\": "src"
  439. }
  440. },
  441. "notification-url": "https://packagist.org/downloads/",
  442. "license": [
  443. "BSD-3-Clause"
  444. ],
  445. "authors": [
  446. {
  447. "name": "Jason Lewis",
  448. "email": "jason.lewis1991@gmail.com"
  449. }
  450. ],
  451. "description": "API Blueprint documentation generator.",
  452. "keywords": [
  453. "api",
  454. "blueprint",
  455. "dingo",
  456. "docs",
  457. "laravel"
  458. ],
  459. "time": "2017-12-05T12:02:08+00:00"
  460. },
  461. {
  462. "name": "dnoegel/php-xdg-base-dir",
  463. "version": "0.1",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  467. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  472. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  473. "shasum": "",
  474. "mirrors": [
  475. {
  476. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  477. "preferred": true
  478. }
  479. ]
  480. },
  481. "require": {
  482. "php": ">=5.3.2"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "@stable"
  486. },
  487. "type": "project",
  488. "autoload": {
  489. "psr-4": {
  490. "XdgBaseDir\\": "src/"
  491. }
  492. },
  493. "notification-url": "https://packagist.org/downloads/",
  494. "license": [
  495. "MIT"
  496. ],
  497. "description": "implementation of xdg base directory specification for php",
  498. "time": "2014-10-24T07:27:01+00:00"
  499. },
  500. {
  501. "name": "doctrine/annotations",
  502. "version": "v1.6.0",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/doctrine/annotations.git",
  506. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  511. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  512. "shasum": "",
  513. "mirrors": [
  514. {
  515. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  516. "preferred": true
  517. }
  518. ]
  519. },
  520. "require": {
  521. "doctrine/lexer": "1.*",
  522. "php": "^7.1"
  523. },
  524. "require-dev": {
  525. "doctrine/cache": "1.*",
  526. "phpunit/phpunit": "^6.4"
  527. },
  528. "type": "library",
  529. "extra": {
  530. "branch-alias": {
  531. "dev-master": "1.6.x-dev"
  532. }
  533. },
  534. "autoload": {
  535. "psr-4": {
  536. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  537. }
  538. },
  539. "notification-url": "https://packagist.org/downloads/",
  540. "license": [
  541. "MIT"
  542. ],
  543. "authors": [
  544. {
  545. "name": "Roman Borschel",
  546. "email": "roman@code-factory.org"
  547. },
  548. {
  549. "name": "Benjamin Eberlei",
  550. "email": "kontakt@beberlei.de"
  551. },
  552. {
  553. "name": "Guilherme Blanco",
  554. "email": "guilhermeblanco@gmail.com"
  555. },
  556. {
  557. "name": "Jonathan Wage",
  558. "email": "jonwage@gmail.com"
  559. },
  560. {
  561. "name": "Johannes Schmitt",
  562. "email": "schmittjoh@gmail.com"
  563. }
  564. ],
  565. "description": "Docblock Annotations Parser",
  566. "homepage": "http://www.doctrine-project.org",
  567. "keywords": [
  568. "annotations",
  569. "docblock",
  570. "parser"
  571. ],
  572. "time": "2017-12-06T07:11:42+00:00"
  573. },
  574. {
  575. "name": "doctrine/cache",
  576. "version": "v1.8.0",
  577. "source": {
  578. "type": "git",
  579. "url": "https://github.com/doctrine/cache.git",
  580. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  581. },
  582. "dist": {
  583. "type": "zip",
  584. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  585. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  586. "shasum": "",
  587. "mirrors": [
  588. {
  589. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  590. "preferred": true
  591. }
  592. ]
  593. },
  594. "require": {
  595. "php": "~7.1"
  596. },
  597. "conflict": {
  598. "doctrine/common": ">2.2,<2.4"
  599. },
  600. "require-dev": {
  601. "alcaeus/mongo-php-adapter": "^1.1",
  602. "doctrine/coding-standard": "^4.0",
  603. "mongodb/mongodb": "^1.1",
  604. "phpunit/phpunit": "^7.0",
  605. "predis/predis": "~1.0"
  606. },
  607. "suggest": {
  608. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "1.8.x-dev"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Roman Borschel",
  628. "email": "roman@code-factory.org"
  629. },
  630. {
  631. "name": "Benjamin Eberlei",
  632. "email": "kontakt@beberlei.de"
  633. },
  634. {
  635. "name": "Guilherme Blanco",
  636. "email": "guilhermeblanco@gmail.com"
  637. },
  638. {
  639. "name": "Jonathan Wage",
  640. "email": "jonwage@gmail.com"
  641. },
  642. {
  643. "name": "Johannes Schmitt",
  644. "email": "schmittjoh@gmail.com"
  645. }
  646. ],
  647. "description": "Caching library offering an object-oriented API for many cache backends",
  648. "homepage": "https://www.doctrine-project.org",
  649. "keywords": [
  650. "cache",
  651. "caching"
  652. ],
  653. "time": "2018-08-21T18:01:43+00:00"
  654. },
  655. {
  656. "name": "doctrine/dbal",
  657. "version": "v2.8.0",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/doctrine/dbal.git",
  661. "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/doctrine/dbal/zipball/5140a64c08b4b607b9bedaae0cedd26f04a0e621",
  666. "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621",
  667. "shasum": "",
  668. "mirrors": [
  669. {
  670. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  671. "preferred": true
  672. }
  673. ]
  674. },
  675. "require": {
  676. "doctrine/cache": "^1.0",
  677. "doctrine/event-manager": "^1.0",
  678. "ext-pdo": "*",
  679. "php": "^7.1"
  680. },
  681. "require-dev": {
  682. "doctrine/coding-standard": "^4.0",
  683. "jetbrains/phpstorm-stubs": "^2018.1.2",
  684. "phpstan/phpstan": "^0.10.1",
  685. "phpunit/phpunit": "^7.1.2",
  686. "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
  687. "symfony/console": "^2.0.5|^3.0|^4.0",
  688. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  689. },
  690. "suggest": {
  691. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  692. },
  693. "bin": [
  694. "bin/doctrine-dbal"
  695. ],
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-master": "2.8.x-dev",
  700. "dev-develop": "3.0.x-dev"
  701. }
  702. },
  703. "autoload": {
  704. "psr-0": {
  705. "Doctrine\\DBAL\\": "lib/"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "Roman Borschel",
  715. "email": "roman@code-factory.org"
  716. },
  717. {
  718. "name": "Benjamin Eberlei",
  719. "email": "kontakt@beberlei.de"
  720. },
  721. {
  722. "name": "Guilherme Blanco",
  723. "email": "guilhermeblanco@gmail.com"
  724. },
  725. {
  726. "name": "Jonathan Wage",
  727. "email": "jonwage@gmail.com"
  728. }
  729. ],
  730. "description": "Database Abstraction Layer",
  731. "homepage": "http://www.doctrine-project.org",
  732. "keywords": [
  733. "database",
  734. "dbal",
  735. "persistence",
  736. "queryobject"
  737. ],
  738. "time": "2018-07-13T03:16:35+00:00"
  739. },
  740. {
  741. "name": "doctrine/event-manager",
  742. "version": "v1.0.0",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/doctrine/event-manager.git",
  746. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  751. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  752. "shasum": "",
  753. "mirrors": [
  754. {
  755. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  756. "preferred": true
  757. }
  758. ]
  759. },
  760. "require": {
  761. "php": "^7.1"
  762. },
  763. "conflict": {
  764. "doctrine/common": "<2.9@dev"
  765. },
  766. "require-dev": {
  767. "doctrine/coding-standard": "^4.0",
  768. "phpunit/phpunit": "^7.0"
  769. },
  770. "type": "library",
  771. "extra": {
  772. "branch-alias": {
  773. "dev-master": "1.0.x-dev"
  774. }
  775. },
  776. "autoload": {
  777. "psr-4": {
  778. "Doctrine\\Common\\": "lib/Doctrine/Common"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "MIT"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Roman Borschel",
  788. "email": "roman@code-factory.org"
  789. },
  790. {
  791. "name": "Benjamin Eberlei",
  792. "email": "kontakt@beberlei.de"
  793. },
  794. {
  795. "name": "Guilherme Blanco",
  796. "email": "guilhermeblanco@gmail.com"
  797. },
  798. {
  799. "name": "Jonathan Wage",
  800. "email": "jonwage@gmail.com"
  801. },
  802. {
  803. "name": "Johannes Schmitt",
  804. "email": "schmittjoh@gmail.com"
  805. },
  806. {
  807. "name": "Marco Pivetta",
  808. "email": "ocramius@gmail.com"
  809. }
  810. ],
  811. "description": "Doctrine Event Manager component",
  812. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  813. "keywords": [
  814. "event",
  815. "eventdispatcher",
  816. "eventmanager"
  817. ],
  818. "time": "2018-06-11T11:59:03+00:00"
  819. },
  820. {
  821. "name": "doctrine/inflector",
  822. "version": "v1.3.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/doctrine/inflector.git",
  826. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  831. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  832. "shasum": "",
  833. "mirrors": [
  834. {
  835. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  836. "preferred": true
  837. }
  838. ]
  839. },
  840. "require": {
  841. "php": "^7.1"
  842. },
  843. "require-dev": {
  844. "phpunit/phpunit": "^6.2"
  845. },
  846. "type": "library",
  847. "extra": {
  848. "branch-alias": {
  849. "dev-master": "1.3.x-dev"
  850. }
  851. },
  852. "autoload": {
  853. "psr-4": {
  854. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  855. }
  856. },
  857. "notification-url": "https://packagist.org/downloads/",
  858. "license": [
  859. "MIT"
  860. ],
  861. "authors": [
  862. {
  863. "name": "Roman Borschel",
  864. "email": "roman@code-factory.org"
  865. },
  866. {
  867. "name": "Benjamin Eberlei",
  868. "email": "kontakt@beberlei.de"
  869. },
  870. {
  871. "name": "Guilherme Blanco",
  872. "email": "guilhermeblanco@gmail.com"
  873. },
  874. {
  875. "name": "Jonathan Wage",
  876. "email": "jonwage@gmail.com"
  877. },
  878. {
  879. "name": "Johannes Schmitt",
  880. "email": "schmittjoh@gmail.com"
  881. }
  882. ],
  883. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  884. "homepage": "http://www.doctrine-project.org",
  885. "keywords": [
  886. "inflection",
  887. "pluralize",
  888. "singularize",
  889. "string"
  890. ],
  891. "time": "2018-01-09T20:05:19+00:00"
  892. },
  893. {
  894. "name": "doctrine/lexer",
  895. "version": "v1.0.1",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/doctrine/lexer.git",
  899. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  904. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  905. "shasum": "",
  906. "mirrors": [
  907. {
  908. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  909. "preferred": true
  910. }
  911. ]
  912. },
  913. "require": {
  914. "php": ">=5.3.2"
  915. },
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "1.0.x-dev"
  920. }
  921. },
  922. "autoload": {
  923. "psr-0": {
  924. "Doctrine\\Common\\Lexer\\": "lib/"
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Roman Borschel",
  934. "email": "roman@code-factory.org"
  935. },
  936. {
  937. "name": "Guilherme Blanco",
  938. "email": "guilhermeblanco@gmail.com"
  939. },
  940. {
  941. "name": "Johannes Schmitt",
  942. "email": "schmittjoh@gmail.com"
  943. }
  944. ],
  945. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  946. "homepage": "http://www.doctrine-project.org",
  947. "keywords": [
  948. "lexer",
  949. "parser"
  950. ],
  951. "time": "2014-09-09T13:34:57+00:00"
  952. },
  953. {
  954. "name": "easywechat-composer/easywechat-composer",
  955. "version": "1.1.4",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/mingyoung/easywechat-composer.git",
  959. "reference": "f0c96f2cda1e672e3ad2fd34a192a503943c69fe"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/f0c96f2cda1e672e3ad2fd34a192a503943c69fe",
  964. "reference": "f0c96f2cda1e672e3ad2fd34a192a503943c69fe",
  965. "shasum": "",
  966. "mirrors": [
  967. {
  968. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  969. "preferred": true
  970. }
  971. ]
  972. },
  973. "require": {
  974. "composer-plugin-api": "^1.0",
  975. "php": ">=7.0"
  976. },
  977. "require-dev": {
  978. "composer/composer": "^1.0",
  979. "phpunit/phpunit": "^7.0"
  980. },
  981. "type": "composer-plugin",
  982. "extra": {
  983. "class": "EasyWeChatComposer\\Plugin"
  984. },
  985. "autoload": {
  986. "psr-4": {
  987. "EasyWeChatComposer\\": "src/"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "张铭阳",
  997. "email": "mingyoungcheung@gmail.com"
  998. }
  999. ],
  1000. "description": "The composer plugin for EasyWeChat",
  1001. "time": "2018-11-10T01:49:23+00:00"
  1002. },
  1003. {
  1004. "name": "egulias/email-validator",
  1005. "version": "2.1.6",
  1006. "source": {
  1007. "type": "git",
  1008. "url": "https://github.com/egulias/EmailValidator.git",
  1009. "reference": "0578b32b30b22de3e8664f797cf846fc9246f786"
  1010. },
  1011. "dist": {
  1012. "type": "zip",
  1013. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786",
  1014. "reference": "0578b32b30b22de3e8664f797cf846fc9246f786",
  1015. "shasum": "",
  1016. "mirrors": [
  1017. {
  1018. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1019. "preferred": true
  1020. }
  1021. ]
  1022. },
  1023. "require": {
  1024. "doctrine/lexer": "^1.0.1",
  1025. "php": ">= 5.5"
  1026. },
  1027. "require-dev": {
  1028. "dominicsayers/isemail": "dev-master",
  1029. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1030. "satooshi/php-coveralls": "^1.0.1"
  1031. },
  1032. "suggest": {
  1033. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "2.0.x-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Egulias\\EmailValidator\\": "EmailValidator"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Eduardo Gulias Davis"
  1053. }
  1054. ],
  1055. "description": "A library for validating emails against several RFCs",
  1056. "homepage": "https://github.com/egulias/EmailValidator",
  1057. "keywords": [
  1058. "email",
  1059. "emailvalidation",
  1060. "emailvalidator",
  1061. "validation",
  1062. "validator"
  1063. ],
  1064. "time": "2018-09-25T20:47:26+00:00"
  1065. },
  1066. {
  1067. "name": "encore/laravel-admin",
  1068. "version": "v1.5.19",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/z-song/laravel-admin.git",
  1072. "reference": "9841d34ca028cb151c54aa9988bb3f783839fa2a"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/9841d34ca028cb151c54aa9988bb3f783839fa2a",
  1077. "reference": "9841d34ca028cb151c54aa9988bb3f783839fa2a",
  1078. "shasum": "",
  1079. "mirrors": [
  1080. {
  1081. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1082. "preferred": true
  1083. }
  1084. ]
  1085. },
  1086. "require": {
  1087. "doctrine/dbal": "2.*",
  1088. "laravel/framework": "~5.5",
  1089. "php": ">=7.0.0",
  1090. "symfony/dom-crawler": "~3.1"
  1091. },
  1092. "require-dev": {
  1093. "fzaninotto/faker": "~1.4",
  1094. "intervention/image": "~2.3",
  1095. "laravel/browser-kit-testing": "^2.0",
  1096. "laravel/laravel": "~5.5",
  1097. "phpunit/phpunit": "~6.0",
  1098. "symfony/css-selector": "~3.1"
  1099. },
  1100. "suggest": {
  1101. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  1102. "spatie/eloquent-sortable": "Required to built orderable gird."
  1103. },
  1104. "type": "library",
  1105. "extra": {
  1106. "laravel": {
  1107. "providers": [
  1108. "Encore\\Admin\\AdminServiceProvider"
  1109. ],
  1110. "aliases": {
  1111. "Admin": "Encore\\Admin\\Facades\\Admin"
  1112. }
  1113. }
  1114. },
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Encore\\Admin\\": "src/"
  1118. },
  1119. "files": [
  1120. "src/helpers.php"
  1121. ]
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "zsong",
  1130. "email": "zosong@126.com"
  1131. }
  1132. ],
  1133. "description": "laravel admin",
  1134. "homepage": "https://github.com/z-song/laravel-admin",
  1135. "keywords": [
  1136. "admin",
  1137. "form",
  1138. "grid",
  1139. "laravel"
  1140. ],
  1141. "time": "2018-08-22T11:27:57+00:00"
  1142. },
  1143. {
  1144. "name": "erusev/parsedown",
  1145. "version": "1.7.1",
  1146. "source": {
  1147. "type": "git",
  1148. "url": "https://github.com/erusev/parsedown.git",
  1149. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  1150. },
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  1154. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  1155. "shasum": "",
  1156. "mirrors": [
  1157. {
  1158. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1159. "preferred": true
  1160. }
  1161. ]
  1162. },
  1163. "require": {
  1164. "ext-mbstring": "*",
  1165. "php": ">=5.3.0"
  1166. },
  1167. "require-dev": {
  1168. "phpunit/phpunit": "^4.8.35"
  1169. },
  1170. "type": "library",
  1171. "autoload": {
  1172. "psr-0": {
  1173. "Parsedown": ""
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "MIT"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Emanuil Rusev",
  1183. "email": "hello@erusev.com",
  1184. "homepage": "http://erusev.com"
  1185. }
  1186. ],
  1187. "description": "Parser for Markdown.",
  1188. "homepage": "http://parsedown.org",
  1189. "keywords": [
  1190. "markdown",
  1191. "parser"
  1192. ],
  1193. "time": "2018-03-08T01:11:30+00:00"
  1194. },
  1195. {
  1196. "name": "fideloper/proxy",
  1197. "version": "3.3.4",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/fideloper/TrustedProxy.git",
  1201. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  1206. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  1207. "shasum": "",
  1208. "mirrors": [
  1209. {
  1210. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1211. "preferred": true
  1212. }
  1213. ]
  1214. },
  1215. "require": {
  1216. "illuminate/contracts": "~5.0",
  1217. "php": ">=5.4.0"
  1218. },
  1219. "require-dev": {
  1220. "illuminate/http": "~5.0",
  1221. "mockery/mockery": "~0.9.3",
  1222. "phpunit/phpunit": "^5.7"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "3.3-dev"
  1228. },
  1229. "laravel": {
  1230. "providers": [
  1231. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1232. ]
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Fideloper\\Proxy\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "Chris Fidao",
  1247. "email": "fideloper@gmail.com"
  1248. }
  1249. ],
  1250. "description": "Set trusted proxies for Laravel",
  1251. "keywords": [
  1252. "load balancing",
  1253. "proxy",
  1254. "trusted proxy"
  1255. ],
  1256. "time": "2017-06-15T17:19:42+00:00"
  1257. },
  1258. {
  1259. "name": "firebase/php-jwt",
  1260. "version": "v5.0.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/firebase/php-jwt.git",
  1264. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1269. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1270. "shasum": "",
  1271. "mirrors": [
  1272. {
  1273. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1274. "preferred": true
  1275. }
  1276. ]
  1277. },
  1278. "require": {
  1279. "php": ">=5.3.0"
  1280. },
  1281. "require-dev": {
  1282. "phpunit/phpunit": " 4.8.35"
  1283. },
  1284. "type": "library",
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Firebase\\JWT\\": "src"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "BSD-3-Clause"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "Neuman Vong",
  1297. "email": "neuman+pear@twilio.com",
  1298. "role": "Developer"
  1299. },
  1300. {
  1301. "name": "Anant Narayanan",
  1302. "email": "anant@php.net",
  1303. "role": "Developer"
  1304. }
  1305. ],
  1306. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1307. "homepage": "https://github.com/firebase/php-jwt",
  1308. "time": "2017-06-27T22:17:23+00:00"
  1309. },
  1310. {
  1311. "name": "graham-campbell/manager",
  1312. "version": "v3.0.0",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1316. "reference": "bf9da58aa32676209961558eaac5d6625f6f1399"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/bf9da58aa32676209961558eaac5d6625f6f1399",
  1321. "reference": "bf9da58aa32676209961558eaac5d6625f6f1399",
  1322. "shasum": "",
  1323. "mirrors": [
  1324. {
  1325. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1326. "preferred": true
  1327. }
  1328. ]
  1329. },
  1330. "require": {
  1331. "illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  1332. "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  1333. "php": "^7.0"
  1334. },
  1335. "require-dev": {
  1336. "graham-campbell/analyzer": "^1.1",
  1337. "graham-campbell/testbench-core": "^2.0",
  1338. "mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583",
  1339. "phpunit/phpunit": "^6.0"
  1340. },
  1341. "type": "library",
  1342. "extra": {
  1343. "branch-alias": {
  1344. "dev-master": "3.0-dev"
  1345. }
  1346. },
  1347. "autoload": {
  1348. "psr-4": {
  1349. "GrahamCampbell\\Manager\\": "src/"
  1350. }
  1351. },
  1352. "notification-url": "https://packagist.org/downloads/",
  1353. "license": [
  1354. "MIT"
  1355. ],
  1356. "authors": [
  1357. {
  1358. "name": "Graham Campbell",
  1359. "email": "graham@alt-three.com"
  1360. }
  1361. ],
  1362. "description": "Manager Provides Some Manager Functionality For Laravel 5",
  1363. "keywords": [
  1364. "Graham Campbell",
  1365. "GrahamCampbell",
  1366. "Laravel Manager",
  1367. "Laravel-Manager",
  1368. "connector",
  1369. "framework",
  1370. "interface",
  1371. "laravel",
  1372. "manager"
  1373. ],
  1374. "time": "2017-08-06T17:54:13+00:00"
  1375. },
  1376. {
  1377. "name": "guzzlehttp/guzzle",
  1378. "version": "6.3.3",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/guzzle/guzzle.git",
  1382. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1387. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1388. "shasum": "",
  1389. "mirrors": [
  1390. {
  1391. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1392. "preferred": true
  1393. }
  1394. ]
  1395. },
  1396. "require": {
  1397. "guzzlehttp/promises": "^1.0",
  1398. "guzzlehttp/psr7": "^1.4",
  1399. "php": ">=5.5"
  1400. },
  1401. "require-dev": {
  1402. "ext-curl": "*",
  1403. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1404. "psr/log": "^1.0"
  1405. },
  1406. "suggest": {
  1407. "psr/log": "Required for using the Log middleware"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "6.3-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "files": [
  1417. "src/functions_include.php"
  1418. ],
  1419. "psr-4": {
  1420. "GuzzleHttp\\": "src/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Michael Dowling",
  1430. "email": "mtdowling@gmail.com",
  1431. "homepage": "https://github.com/mtdowling"
  1432. }
  1433. ],
  1434. "description": "Guzzle is a PHP HTTP client library",
  1435. "homepage": "http://guzzlephp.org/",
  1436. "keywords": [
  1437. "client",
  1438. "curl",
  1439. "framework",
  1440. "http",
  1441. "http client",
  1442. "rest",
  1443. "web service"
  1444. ],
  1445. "time": "2018-04-22T15:46:56+00:00"
  1446. },
  1447. {
  1448. "name": "guzzlehttp/promises",
  1449. "version": "v1.3.1",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/guzzle/promises.git",
  1453. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1458. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1459. "shasum": "",
  1460. "mirrors": [
  1461. {
  1462. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1463. "preferred": true
  1464. }
  1465. ]
  1466. },
  1467. "require": {
  1468. "php": ">=5.5.0"
  1469. },
  1470. "require-dev": {
  1471. "phpunit/phpunit": "^4.0"
  1472. },
  1473. "type": "library",
  1474. "extra": {
  1475. "branch-alias": {
  1476. "dev-master": "1.4-dev"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "GuzzleHttp\\Promise\\": "src/"
  1482. },
  1483. "files": [
  1484. "src/functions_include.php"
  1485. ]
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Michael Dowling",
  1494. "email": "mtdowling@gmail.com",
  1495. "homepage": "https://github.com/mtdowling"
  1496. }
  1497. ],
  1498. "description": "Guzzle promises library",
  1499. "keywords": [
  1500. "promise"
  1501. ],
  1502. "time": "2016-12-20T10:07:11+00:00"
  1503. },
  1504. {
  1505. "name": "guzzlehttp/psr7",
  1506. "version": "1.4.2",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/guzzle/psr7.git",
  1510. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1515. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1516. "shasum": "",
  1517. "mirrors": [
  1518. {
  1519. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1520. "preferred": true
  1521. }
  1522. ]
  1523. },
  1524. "require": {
  1525. "php": ">=5.4.0",
  1526. "psr/http-message": "~1.0"
  1527. },
  1528. "provide": {
  1529. "psr/http-message-implementation": "1.0"
  1530. },
  1531. "require-dev": {
  1532. "phpunit/phpunit": "~4.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "1.4-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "GuzzleHttp\\Psr7\\": "src/"
  1543. },
  1544. "files": [
  1545. "src/functions_include.php"
  1546. ]
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Michael Dowling",
  1555. "email": "mtdowling@gmail.com",
  1556. "homepage": "https://github.com/mtdowling"
  1557. },
  1558. {
  1559. "name": "Tobias Schultze",
  1560. "homepage": "https://github.com/Tobion"
  1561. }
  1562. ],
  1563. "description": "PSR-7 message implementation that also provides common utility methods",
  1564. "keywords": [
  1565. "http",
  1566. "message",
  1567. "request",
  1568. "response",
  1569. "stream",
  1570. "uri",
  1571. "url"
  1572. ],
  1573. "time": "2017-03-20T17:10:46+00:00"
  1574. },
  1575. {
  1576. "name": "hashids/hashids",
  1577. "version": "2.0.4",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/ivanakimov/hashids.php.git",
  1581. "reference": "7a945a5192d4a5c8888364970feece9bc26179df"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/ivanakimov/hashids.php/zipball/7a945a5192d4a5c8888364970feece9bc26179df",
  1586. "reference": "7a945a5192d4a5c8888364970feece9bc26179df",
  1587. "shasum": "",
  1588. "mirrors": [
  1589. {
  1590. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1591. "preferred": true
  1592. }
  1593. ]
  1594. },
  1595. "require": {
  1596. "php": "^5.6.4 || ^7.0"
  1597. },
  1598. "require-dev": {
  1599. "phpunit/phpunit": "^5.7 || ^6.3"
  1600. },
  1601. "suggest": {
  1602. "ext-bcmatch": "Required to use BC Math arbitrary precision mathematics (*).",
  1603. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-master": "2.1-dev"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "Hashids\\": "src/"
  1614. }
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "Ivan Akimov",
  1623. "email": "ivan@barreleye.com",
  1624. "homepage": "https://twitter.com/IvanAkimov"
  1625. },
  1626. {
  1627. "name": "Vincent Klaiber",
  1628. "email": "hello@vinkla.com",
  1629. "homepage": "https://vinkla.com"
  1630. }
  1631. ],
  1632. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1633. "homepage": "http://hashids.org/php",
  1634. "keywords": [
  1635. "bitly",
  1636. "decode",
  1637. "encode",
  1638. "hash",
  1639. "hashid",
  1640. "hashids",
  1641. "ids",
  1642. "obfuscate",
  1643. "youtube"
  1644. ],
  1645. "time": "2017-10-28T11:24:20+00:00"
  1646. },
  1647. {
  1648. "name": "ibrand/backend",
  1649. "version": "dev-master",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/ibrandcc/backend.git",
  1653. "reference": "389b94161f8a9ad76681d09cf0c48f8293f8aa28"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/ibrandcc/backend/zipball/389b94161f8a9ad76681d09cf0c48f8293f8aa28",
  1658. "reference": "389b94161f8a9ad76681d09cf0c48f8293f8aa28",
  1659. "shasum": "",
  1660. "mirrors": [
  1661. {
  1662. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1663. "preferred": true
  1664. }
  1665. ]
  1666. },
  1667. "require": {
  1668. "encore/laravel-admin": "1.5.19",
  1669. "ibrand/laravel-sms": "~1.0",
  1670. "ibrand/setting": "~1.0",
  1671. "laravel-admin-ext/backup": "1.0.2",
  1672. "laravel-admin-ext/helpers": "1.0.2",
  1673. "laravel-admin-ext/log-viewer": "1.0.2",
  1674. "laravel-admin-ext/redis-manager": "1.0.1",
  1675. "laravel-admin-ext/scheduling": "1.0.1",
  1676. "maatwebsite/excel": "~2.1.23",
  1677. "php": ">=7.0.0"
  1678. },
  1679. "require-dev": {
  1680. "orchestra/testbench": "~3.5",
  1681. "phpunit/phpunit": "~6.0"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "laravel": {
  1686. "providers": [
  1687. "iBrand\\Backend\\BackendServiceProvider"
  1688. ],
  1689. "aliases": {
  1690. "BackendMenu": "iBrand\\Backend\\Facades\\Menu"
  1691. }
  1692. }
  1693. },
  1694. "autoload": {
  1695. "psr-4": {
  1696. "iBrand\\Backend\\": "src/"
  1697. }
  1698. },
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "MIT"
  1702. ],
  1703. "authors": [
  1704. {
  1705. "name": "shjchen",
  1706. "email": "ibrand.shjchen@foxmail.com"
  1707. }
  1708. ],
  1709. "description": "ibrand backend base laravel-admin",
  1710. "homepage": "https://github.com/ibrandcc/backend",
  1711. "keywords": [
  1712. "backend",
  1713. "form",
  1714. "grid",
  1715. "laravel"
  1716. ],
  1717. "time": "2018-10-29T02:02:17+00:00"
  1718. },
  1719. {
  1720. "name": "ibrand/laravel-active",
  1721. "version": "v2.0",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/shjchen/laravel-active.git",
  1725. "reference": "48c2f1e687734d31c2bf3309ff6163f78c0c77a5"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/shjchen/laravel-active/zipball/48c2f1e687734d31c2bf3309ff6163f78c0c77a5",
  1730. "reference": "48c2f1e687734d31c2bf3309ff6163f78c0c77a5",
  1731. "shasum": "",
  1732. "mirrors": [
  1733. {
  1734. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1735. "preferred": true
  1736. }
  1737. ]
  1738. },
  1739. "require": {
  1740. "illuminate/http": "~5.0",
  1741. "illuminate/routing": "~5.0",
  1742. "illuminate/support": "~5.0",
  1743. "php": ">=5.5.9"
  1744. },
  1745. "require-dev": {
  1746. "codeclimate/php-test-reporter": "dev-master",
  1747. "mockery/mockery": "dev-master",
  1748. "phpunit/phpunit": "~4.0"
  1749. },
  1750. "type": "library",
  1751. "autoload": {
  1752. "psr-4": {
  1753. "HieuLe\\Active\\": "src/"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "Hieu Le",
  1763. "email": "letrunghieu.cse09@gmail.com",
  1764. "homepage": "http://www.hieule.info"
  1765. }
  1766. ],
  1767. "description": "The helper class for Laravel 4 applications to get active class base on current route",
  1768. "homepage": "http://www.hieule.info/products/active-class-helper-laravel-4/",
  1769. "keywords": [
  1770. "active",
  1771. "laravel",
  1772. "routing"
  1773. ],
  1774. "time": "2018-03-26T15:11:13+00:00"
  1775. },
  1776. {
  1777. "name": "ibrand/laravel-cache",
  1778. "version": "v1.0.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/ibrandcc/laravel-cache.git",
  1782. "reference": "93d3f40b97d9b776d0af9997e51337db9d789e31"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/ibrandcc/laravel-cache/zipball/93d3f40b97d9b776d0af9997e51337db9d789e31",
  1787. "reference": "93d3f40b97d9b776d0af9997e51337db9d789e31",
  1788. "shasum": "",
  1789. "mirrors": [
  1790. {
  1791. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1792. "preferred": true
  1793. }
  1794. ]
  1795. },
  1796. "require": {
  1797. "php": ">=5.6"
  1798. },
  1799. "type": "library",
  1800. "autoload": {
  1801. "psr-4": {
  1802. "iBrand\\Cache\\": "src/"
  1803. },
  1804. "files": [
  1805. "src/helps.php"
  1806. ]
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "shjchen",
  1815. "email": "zdbd@vip.qq.com"
  1816. }
  1817. ],
  1818. "description": "Packaging commonly used caching usage extend Laravel's cache",
  1819. "keywords": [
  1820. "cache",
  1821. "ibrand",
  1822. "laravel"
  1823. ],
  1824. "time": "2018-01-05T07:55:42+00:00"
  1825. },
  1826. {
  1827. "name": "ibrand/laravel-miniprogram-poster",
  1828. "version": "v1.3.1",
  1829. "source": {
  1830. "type": "git",
  1831. "url": "https://github.com/ibrandcc/laravel-miniprogram-poster.git",
  1832. "reference": "e4de6162bc08cea88a3b78fe6f6f47d131bdc234"
  1833. },
  1834. "dist": {
  1835. "type": "zip",
  1836. "url": "https://api.github.com/repos/ibrandcc/laravel-miniprogram-poster/zipball/e4de6162bc08cea88a3b78fe6f6f47d131bdc234",
  1837. "reference": "e4de6162bc08cea88a3b78fe6f6f47d131bdc234",
  1838. "shasum": "",
  1839. "mirrors": [
  1840. {
  1841. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1842. "preferred": true
  1843. }
  1844. ]
  1845. },
  1846. "require": {
  1847. "anam/phantomjs-linux-x86-binary": "~2.1.1",
  1848. "anam/phantommagick": "~2.0",
  1849. "php": ">=7.0"
  1850. },
  1851. "require-dev": {
  1852. "orchestra/database": "~3.5",
  1853. "orchestra/testbench": "~3.5",
  1854. "phpunit/phpunit": "~6.0"
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "laravel": {
  1859. "providers": [
  1860. "iBrand\\Miniprogram\\Poster\\PhantoMmagickServiceProvider"
  1861. ]
  1862. }
  1863. },
  1864. "autoload": {
  1865. "psr-4": {
  1866. "iBrand\\Miniprogram\\Poster\\": "src/"
  1867. }
  1868. },
  1869. "notification-url": "https://packagist.org/downloads/",
  1870. "license": [
  1871. "MIT"
  1872. ],
  1873. "authors": [
  1874. {
  1875. "name": "tangqi",
  1876. "email": "tangqi@element.vip"
  1877. }
  1878. ],
  1879. "description": "iBrand's laravel miniprogram poster tool",
  1880. "keywords": [
  1881. "component",
  1882. "ibrand",
  1883. "miniprogram",
  1884. "poster"
  1885. ],
  1886. "time": "2018-10-17T07:59:37+00:00"
  1887. },
  1888. {
  1889. "name": "ibrand/laravel-scheduling",
  1890. "version": "v1.0.0",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/ibrandcc/laravel-scheduling.git",
  1894. "reference": "7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/ibrandcc/laravel-scheduling/zipball/7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae",
  1899. "reference": "7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae",
  1900. "shasum": "",
  1901. "mirrors": [
  1902. {
  1903. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1904. "preferred": true
  1905. }
  1906. ]
  1907. },
  1908. "require": {
  1909. "php": ">=5.6"
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "laravel": {
  1914. "providers": [
  1915. "iBrand\\Scheduling\\ServiceProvider"
  1916. ]
  1917. }
  1918. },
  1919. "autoload": {
  1920. "psr-4": {
  1921. "iBrand\\Scheduling\\": "src/"
  1922. }
  1923. },
  1924. "notification-url": "https://packagist.org/downloads/",
  1925. "license": [
  1926. "MIT"
  1927. ],
  1928. "authors": [
  1929. {
  1930. "name": "shjchen",
  1931. "email": "ibrand.sjchen@foxmail.com"
  1932. }
  1933. ],
  1934. "description": "ibrand's laravel scheduling. Split scheduling to every package.",
  1935. "keywords": [
  1936. "ibrand",
  1937. "laravel scheduling"
  1938. ],
  1939. "time": "2018-01-17T14:07:17+00:00"
  1940. },
  1941. {
  1942. "name": "ibrand/laravel-shopping-cart",
  1943. "version": "v1.3.1",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/ibrandcc/laravel-shopping-cart.git",
  1947. "reference": "53ff7cd52d42db867ba1efb233e403700b6c7c6a"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/ibrandcc/laravel-shopping-cart/zipball/53ff7cd52d42db867ba1efb233e403700b6c7c6a",
  1952. "reference": "53ff7cd52d42db867ba1efb233e403700b6c7c6a",
  1953. "shasum": "",
  1954. "mirrors": [
  1955. {
  1956. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1957. "preferred": true
  1958. }
  1959. ]
  1960. },
  1961. "require": {
  1962. "php": ">=5.6"
  1963. },
  1964. "require-dev": {
  1965. "mockery/mockery": "~0.9",
  1966. "orchestra/database": "^3.4",
  1967. "orchestra/testbench": "~3.4",
  1968. "phpunit/phpunit": "~5.0"
  1969. },
  1970. "type": "library",
  1971. "extra": {
  1972. "laravel": {
  1973. "providers": [
  1974. "iBrand\\Shoppingcart\\ServiceProvider"
  1975. ],
  1976. "aliases": {
  1977. "Cart": "iBrand\\Shoppingcart\\Facade"
  1978. }
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "iBrand\\Shoppingcart\\": "src/"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "shjchen",
  1993. "email": "ibrand.shjchen@foxmail.com"
  1994. }
  1995. ],
  1996. "description": "Shopping cart for Laravel Application.",
  1997. "keywords": [
  1998. "laravel",
  1999. "shopping",
  2000. "shopping cart"
  2001. ],
  2002. "time": "2018-03-27T14:53:30+00:00"
  2003. },
  2004. {
  2005. "name": "ibrand/laravel-sms",
  2006. "version": "v1.3.3",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/ibrandcc/laravel-sms.git",
  2010. "reference": "0023d0f7f2d27d1abef5ba863c255023077db558"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/ibrandcc/laravel-sms/zipball/0023d0f7f2d27d1abef5ba863c255023077db558",
  2015. "reference": "0023d0f7f2d27d1abef5ba863c255023077db558",
  2016. "shasum": "",
  2017. "mirrors": [
  2018. {
  2019. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2020. "preferred": true
  2021. }
  2022. ]
  2023. },
  2024. "require": {
  2025. "overtrue/easy-sms": "~1.0",
  2026. "php": ">=7.0"
  2027. },
  2028. "require-dev": {
  2029. "mockery/mockery": "~0.9",
  2030. "orchestra/testbench": "~3.5",
  2031. "phpunit/phpunit": "~6.0"
  2032. },
  2033. "type": "library",
  2034. "extra": {
  2035. "laravel": {
  2036. "providers": [
  2037. "iBrand\\Sms\\ServiceProvider"
  2038. ],
  2039. "aliases": {
  2040. "Sms": "iBrand\\Sms\\Facade"
  2041. }
  2042. }
  2043. },
  2044. "autoload": {
  2045. "psr-4": {
  2046. "iBrand\\Sms\\": "src/"
  2047. }
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "shjchen",
  2056. "email": "ibrand.shjchen@foxmail.com"
  2057. }
  2058. ],
  2059. "description": "ibrand laravel sms base overtrue's easy-sms",
  2060. "keywords": [
  2061. "ibrand",
  2062. "laravel sms"
  2063. ],
  2064. "time": "2018-05-04T12:53:37+00:00"
  2065. },
  2066. {
  2067. "name": "ibrand/laravel-ueditor",
  2068. "version": "v1.0.0",
  2069. "source": {
  2070. "type": "git",
  2071. "url": "https://github.com/ibrandcc/laravel-ueditor.git",
  2072. "reference": "8cde57d57fab056770d1ea91443b585799162aee"
  2073. },
  2074. "dist": {
  2075. "type": "zip",
  2076. "url": "https://api.github.com/repos/ibrandcc/laravel-ueditor/zipball/8cde57d57fab056770d1ea91443b585799162aee",
  2077. "reference": "8cde57d57fab056770d1ea91443b585799162aee",
  2078. "shasum": "",
  2079. "mirrors": [
  2080. {
  2081. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2082. "preferred": true
  2083. }
  2084. ]
  2085. },
  2086. "require": {
  2087. "ext-fileinfo": "*",
  2088. "illuminate/support": "5.*",
  2089. "php": ">=5.4.0",
  2090. "qiniu/php-sdk": "7.*"
  2091. },
  2092. "type": "library",
  2093. "autoload": {
  2094. "psr-4": {
  2095. "iBrand\\UEditor\\": "src/"
  2096. }
  2097. },
  2098. "notification-url": "https://packagist.org/downloads/",
  2099. "license": [
  2100. "MIT"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "chen hao",
  2105. "email": "chenhao@element.vip"
  2106. }
  2107. ],
  2108. "description": "UEditor for laravel5. Support i18n. UEditor is a Rich Text Web Editor From Baidu.",
  2109. "keywords": [
  2110. "laravel",
  2111. "laravel-u-editor",
  2112. "laravel5 web text editor",
  2113. "ueditor"
  2114. ],
  2115. "time": "2018-11-22T09:33:21+00:00"
  2116. },
  2117. {
  2118. "name": "ibrand/setting",
  2119. "version": "v1.1.2",
  2120. "source": {
  2121. "type": "git",
  2122. "url": "https://github.com/ibrandcc/setting.git",
  2123. "reference": "054be4872eac2969931c4a0c3d82f700abdd37b1"
  2124. },
  2125. "dist": {
  2126. "type": "zip",
  2127. "url": "https://api.github.com/repos/ibrandcc/setting/zipball/054be4872eac2969931c4a0c3d82f700abdd37b1",
  2128. "reference": "054be4872eac2969931c4a0c3d82f700abdd37b1",
  2129. "shasum": "",
  2130. "mirrors": [
  2131. {
  2132. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2133. "preferred": true
  2134. }
  2135. ]
  2136. },
  2137. "require": {
  2138. "php": ">=7.0"
  2139. },
  2140. "require-dev": {
  2141. "mockery/mockery": "~0.9",
  2142. "orchestra/database": "^3.5",
  2143. "orchestra/testbench": "~3.5",
  2144. "phpunit/phpunit": "~6.0"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "laravel": {
  2149. "providers": [
  2150. "iBrand\\Component\\Setting\\ServiceProvider"
  2151. ]
  2152. }
  2153. },
  2154. "autoload": {
  2155. "files": [
  2156. "src/helpers.php"
  2157. ],
  2158. "psr-4": {
  2159. "iBrand\\Component\\Setting\\": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "shjchen",
  2169. "email": "ibrand.shjchen@foxmail.com"
  2170. }
  2171. ],
  2172. "description": "ibrand setting component",
  2173. "keywords": [
  2174. "component",
  2175. "ibrand",
  2176. "setting"
  2177. ],
  2178. "time": "2018-10-16T06:50:30+00:00"
  2179. },
  2180. {
  2181. "name": "intervention/image",
  2182. "version": "2.4.2",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/Intervention/image.git",
  2186. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  2191. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  2192. "shasum": "",
  2193. "mirrors": [
  2194. {
  2195. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2196. "preferred": true
  2197. }
  2198. ]
  2199. },
  2200. "require": {
  2201. "ext-fileinfo": "*",
  2202. "guzzlehttp/psr7": "~1.1",
  2203. "php": ">=5.4.0"
  2204. },
  2205. "require-dev": {
  2206. "mockery/mockery": "~0.9.2",
  2207. "phpunit/phpunit": "^4.8 || ^5.7"
  2208. },
  2209. "suggest": {
  2210. "ext-gd": "to use GD library based image processing.",
  2211. "ext-imagick": "to use Imagick based image processing.",
  2212. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2213. },
  2214. "type": "library",
  2215. "extra": {
  2216. "branch-alias": {
  2217. "dev-master": "2.4-dev"
  2218. },
  2219. "laravel": {
  2220. "providers": [
  2221. "Intervention\\Image\\ImageServiceProvider"
  2222. ],
  2223. "aliases": {
  2224. "Image": "Intervention\\Image\\Facades\\Image"
  2225. }
  2226. }
  2227. },
  2228. "autoload": {
  2229. "psr-4": {
  2230. "Intervention\\Image\\": "src/Intervention/Image"
  2231. }
  2232. },
  2233. "notification-url": "https://packagist.org/downloads/",
  2234. "license": [
  2235. "MIT"
  2236. ],
  2237. "authors": [
  2238. {
  2239. "name": "Oliver Vogel",
  2240. "email": "oliver@olivervogel.com",
  2241. "homepage": "http://olivervogel.com/"
  2242. }
  2243. ],
  2244. "description": "Image handling and manipulation library with support for Laravel integration",
  2245. "homepage": "http://image.intervention.io/",
  2246. "keywords": [
  2247. "gd",
  2248. "image",
  2249. "imagick",
  2250. "laravel",
  2251. "thumbnail",
  2252. "watermark"
  2253. ],
  2254. "time": "2018-05-29T14:19:03+00:00"
  2255. },
  2256. {
  2257. "name": "jakub-onderka/php-console-color",
  2258. "version": "v0.2",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2262. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  2267. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  2268. "shasum": "",
  2269. "mirrors": [
  2270. {
  2271. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2272. "preferred": true
  2273. }
  2274. ]
  2275. },
  2276. "require": {
  2277. "php": ">=5.4.0"
  2278. },
  2279. "require-dev": {
  2280. "jakub-onderka/php-code-style": "1.0",
  2281. "jakub-onderka/php-parallel-lint": "1.0",
  2282. "jakub-onderka/php-var-dump-check": "0.*",
  2283. "phpunit/phpunit": "~4.3",
  2284. "squizlabs/php_codesniffer": "1.*"
  2285. },
  2286. "type": "library",
  2287. "autoload": {
  2288. "psr-4": {
  2289. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "BSD-2-Clause"
  2295. ],
  2296. "authors": [
  2297. {
  2298. "name": "Jakub Onderka",
  2299. "email": "jakub.onderka@gmail.com"
  2300. }
  2301. ],
  2302. "time": "2018-09-29T17:23:10+00:00"
  2303. },
  2304. {
  2305. "name": "jakub-onderka/php-console-highlighter",
  2306. "version": "v0.4",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2310. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2315. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2316. "shasum": "",
  2317. "mirrors": [
  2318. {
  2319. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2320. "preferred": true
  2321. }
  2322. ]
  2323. },
  2324. "require": {
  2325. "ext-tokenizer": "*",
  2326. "jakub-onderka/php-console-color": "~0.2",
  2327. "php": ">=5.4.0"
  2328. },
  2329. "require-dev": {
  2330. "jakub-onderka/php-code-style": "~1.0",
  2331. "jakub-onderka/php-parallel-lint": "~1.0",
  2332. "jakub-onderka/php-var-dump-check": "~0.1",
  2333. "phpunit/phpunit": "~4.0",
  2334. "squizlabs/php_codesniffer": "~1.5"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2340. }
  2341. },
  2342. "notification-url": "https://packagist.org/downloads/",
  2343. "license": [
  2344. "MIT"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "Jakub Onderka",
  2349. "email": "acci@acci.cz",
  2350. "homepage": "http://www.acci.cz/"
  2351. }
  2352. ],
  2353. "description": "Highlight PHP code in terminal",
  2354. "time": "2018-09-29T18:48:56+00:00"
  2355. },
  2356. {
  2357. "name": "jaybizzle/crawler-detect",
  2358. "version": "v1.2.74",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2362. "reference": "e5fbc685383a4b8f49183b3a646b193491cc14c5"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/e5fbc685383a4b8f49183b3a646b193491cc14c5",
  2367. "reference": "e5fbc685383a4b8f49183b3a646b193491cc14c5",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "php": ">=5.3.0"
  2378. },
  2379. "require-dev": {
  2380. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  2381. "satooshi/php-coveralls": "1.*"
  2382. },
  2383. "type": "library",
  2384. "autoload": {
  2385. "psr-4": {
  2386. "Jaybizzle\\CrawlerDetect\\": "src/"
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Mark Beech",
  2396. "email": "m@rkbee.ch",
  2397. "role": "Developer"
  2398. }
  2399. ],
  2400. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2401. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2402. "keywords": [
  2403. "crawler",
  2404. "crawler detect",
  2405. "crawler detector",
  2406. "crawlerdetect",
  2407. "php crawler detect"
  2408. ],
  2409. "time": "2018-11-21T20:56:45+00:00"
  2410. },
  2411. {
  2412. "name": "jenssegers/agent",
  2413. "version": "v2.6.0",
  2414. "source": {
  2415. "type": "git",
  2416. "url": "https://github.com/jenssegers/agent.git",
  2417. "reference": "df71082ed2a95fc8a82ba30832ccf72df939f02a"
  2418. },
  2419. "dist": {
  2420. "type": "zip",
  2421. "url": "https://api.github.com/repos/jenssegers/agent/zipball/df71082ed2a95fc8a82ba30832ccf72df939f02a",
  2422. "reference": "df71082ed2a95fc8a82ba30832ccf72df939f02a",
  2423. "shasum": "",
  2424. "mirrors": [
  2425. {
  2426. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2427. "preferred": true
  2428. }
  2429. ]
  2430. },
  2431. "require": {
  2432. "jaybizzle/crawler-detect": "^1.2",
  2433. "mobiledetect/mobiledetectlib": "^2.7.6",
  2434. "php": ">=5.4.0"
  2435. },
  2436. "require-dev": {
  2437. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  2438. "satooshi/php-coveralls": "^1.0"
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "branch-alias": {
  2443. "dev-master": "3.0-dev"
  2444. },
  2445. "laravel": {
  2446. "providers": [
  2447. "Jenssegers\\Agent\\AgentServiceProvider"
  2448. ],
  2449. "aliases": {
  2450. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2451. }
  2452. }
  2453. },
  2454. "autoload": {
  2455. "psr-4": {
  2456. "Jenssegers\\Agent\\": "src/"
  2457. }
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Jens Segers",
  2466. "homepage": "https://jenssegers.com"
  2467. }
  2468. ],
  2469. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2470. "homepage": "https://github.com/jenssegers/agent",
  2471. "keywords": [
  2472. "Agent",
  2473. "browser",
  2474. "desktop",
  2475. "laravel",
  2476. "mobile",
  2477. "platform",
  2478. "user agent",
  2479. "useragent"
  2480. ],
  2481. "time": "2017-11-10T10:35:35+00:00"
  2482. },
  2483. {
  2484. "name": "jeremeamia/SuperClosure",
  2485. "version": "2.4.0",
  2486. "source": {
  2487. "type": "git",
  2488. "url": "https://github.com/jeremeamia/super_closure.git",
  2489. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9"
  2490. },
  2491. "dist": {
  2492. "type": "zip",
  2493. "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  2494. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  2495. "shasum": "",
  2496. "mirrors": [
  2497. {
  2498. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2499. "preferred": true
  2500. }
  2501. ]
  2502. },
  2503. "require": {
  2504. "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
  2505. "php": ">=5.4",
  2506. "symfony/polyfill-php56": "^1.0"
  2507. },
  2508. "require-dev": {
  2509. "phpunit/phpunit": "^4.0|^5.0"
  2510. },
  2511. "type": "library",
  2512. "extra": {
  2513. "branch-alias": {
  2514. "dev-master": "2.4-dev"
  2515. }
  2516. },
  2517. "autoload": {
  2518. "psr-4": {
  2519. "SuperClosure\\": "src/"
  2520. }
  2521. },
  2522. "notification-url": "https://packagist.org/downloads/",
  2523. "license": [
  2524. "MIT"
  2525. ],
  2526. "authors": [
  2527. {
  2528. "name": "Jeremy Lindblom",
  2529. "email": "jeremeamia@gmail.com",
  2530. "homepage": "https://github.com/jeremeamia",
  2531. "role": "Developer"
  2532. }
  2533. ],
  2534. "description": "Serialize Closure objects, including their context and binding",
  2535. "homepage": "https://github.com/jeremeamia/super_closure",
  2536. "keywords": [
  2537. "closure",
  2538. "function",
  2539. "lambda",
  2540. "parser",
  2541. "serializable",
  2542. "serialize",
  2543. "tokenizer"
  2544. ],
  2545. "time": "2018-03-21T22:21:57+00:00"
  2546. },
  2547. {
  2548. "name": "kalnoy/nestedset",
  2549. "version": "v4.3.3",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  2553. "reference": "8f2882b8e402cce1204233541ea8ff51513f9e71"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/8f2882b8e402cce1204233541ea8ff51513f9e71",
  2558. "reference": "8f2882b8e402cce1204233541ea8ff51513f9e71",
  2559. "shasum": "",
  2560. "mirrors": [
  2561. {
  2562. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2563. "preferred": true
  2564. }
  2565. ]
  2566. },
  2567. "require": {
  2568. "illuminate/database": "5.2 - 5.7",
  2569. "illuminate/events": "5.2 - 5.7",
  2570. "illuminate/support": "5.2 - 5.7",
  2571. "php": ">=5.5.9"
  2572. },
  2573. "require-dev": {
  2574. "phpunit/phpunit": "4.8.*"
  2575. },
  2576. "type": "library",
  2577. "extra": {
  2578. "branch-alias": {
  2579. "dev-master": "v4.2.x-dev"
  2580. },
  2581. "laravel": {
  2582. "providers": [
  2583. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  2584. ]
  2585. }
  2586. },
  2587. "autoload": {
  2588. "psr-4": {
  2589. "Kalnoy\\Nestedset\\": "src/"
  2590. }
  2591. },
  2592. "notification-url": "https://packagist.org/downloads/",
  2593. "license": [
  2594. "MIT"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Alexander Kalnoy",
  2599. "email": "lazychaser@gmail.com"
  2600. }
  2601. ],
  2602. "description": "Nested Set Model for Laravel 4-5",
  2603. "keywords": [
  2604. "database",
  2605. "hierarchy",
  2606. "laravel",
  2607. "nested sets",
  2608. "nsm"
  2609. ],
  2610. "time": "2018-09-04T15:11:11+00:00"
  2611. },
  2612. {
  2613. "name": "laracasts/flash",
  2614. "version": "2.0.1",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/laracasts/flash.git",
  2618. "reference": "03eec812fd6ae948664ff51b4320785f6d15ee5d"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/laracasts/flash/zipball/03eec812fd6ae948664ff51b4320785f6d15ee5d",
  2623. "reference": "03eec812fd6ae948664ff51b4320785f6d15ee5d",
  2624. "shasum": "",
  2625. "mirrors": [
  2626. {
  2627. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2628. "preferred": true
  2629. }
  2630. ]
  2631. },
  2632. "require": {
  2633. "illuminate/support": "~5.0",
  2634. "php": ">=5.4.0"
  2635. },
  2636. "require-dev": {
  2637. "mockery/mockery": "dev-master"
  2638. },
  2639. "type": "library",
  2640. "autoload": {
  2641. "psr-0": {
  2642. "Laracasts\\Flash": "src/"
  2643. },
  2644. "files": [
  2645. "src/Laracasts/Flash/functions.php"
  2646. ]
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Jeffrey Way",
  2655. "email": "jeffrey@laracasts.com"
  2656. }
  2657. ],
  2658. "description": "Easy flash notifications",
  2659. "time": "2016-07-11T20:46:02+00:00"
  2660. },
  2661. {
  2662. "name": "laravel-admin-ext/backup",
  2663. "version": "v1.0.2",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/laravel-admin-extensions/backup.git",
  2667. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/laravel-admin-extensions/backup/zipball/9477a6ad6d345333cc3f39285a9b786836715bfe",
  2672. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe",
  2673. "shasum": "",
  2674. "mirrors": [
  2675. {
  2676. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2677. "preferred": true
  2678. }
  2679. ]
  2680. },
  2681. "require": {
  2682. "encore/laravel-admin": "~1.5",
  2683. "laravel/framework": "~5.5",
  2684. "php": ">=7.0.0",
  2685. "spatie/laravel-backup": "^5.0"
  2686. },
  2687. "require-dev": {
  2688. "laravel/laravel": "~5.5",
  2689. "phpunit/phpunit": "~6.0"
  2690. },
  2691. "type": "library",
  2692. "extra": {
  2693. "laravel": {
  2694. "providers": [
  2695. "Encore\\Admin\\Backup\\BackupServiceProvider"
  2696. ]
  2697. }
  2698. },
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Encore\\Admin\\Backup\\": "src/"
  2702. }
  2703. },
  2704. "notification-url": "https://packagist.org/downloads/",
  2705. "license": [
  2706. "MIT"
  2707. ],
  2708. "authors": [
  2709. {
  2710. "name": "z-song",
  2711. "email": "zosong@126.com"
  2712. }
  2713. ],
  2714. "description": "Backup extension for laravel-admin",
  2715. "homepage": "https://github.com/laravel-admin-extensions/backup",
  2716. "keywords": [
  2717. "backup",
  2718. "laravel-admin"
  2719. ],
  2720. "time": "2018-04-24T11:45:17+00:00"
  2721. },
  2722. {
  2723. "name": "laravel-admin-ext/helpers",
  2724. "version": "v1.0.2",
  2725. "source": {
  2726. "type": "git",
  2727. "url": "https://github.com/laravel-admin-extensions/helpers.git",
  2728. "reference": "c670d85e827bf2347d2ff0c26161ab1497f7a5ed"
  2729. },
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://api.github.com/repos/laravel-admin-extensions/helpers/zipball/c670d85e827bf2347d2ff0c26161ab1497f7a5ed",
  2733. "reference": "c670d85e827bf2347d2ff0c26161ab1497f7a5ed",
  2734. "shasum": "",
  2735. "mirrors": [
  2736. {
  2737. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2738. "preferred": true
  2739. }
  2740. ]
  2741. },
  2742. "require": {
  2743. "encore/laravel-admin": "1.5.*",
  2744. "laravel/framework": "~5.5",
  2745. "php": ">=7.0.0"
  2746. },
  2747. "require-dev": {
  2748. "laravel/laravel": "~5.5",
  2749. "phpunit/phpunit": "~6.0"
  2750. },
  2751. "type": "library",
  2752. "extra": {
  2753. "laravel": {
  2754. "providers": [
  2755. "Encore\\Admin\\Helpers\\HelpersServiceProvider"
  2756. ]
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Encore\\Admin\\Helpers\\": "src/"
  2762. }
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "z-song",
  2771. "email": "zosong@126.com"
  2772. }
  2773. ],
  2774. "description": "Helpers extension for laravel-admin",
  2775. "homepage": "https://github.com/laravel-admin-extensions/helpers",
  2776. "keywords": [
  2777. "helpers",
  2778. "laravel-admin"
  2779. ],
  2780. "time": "2018-04-24T09:35:32+00:00"
  2781. },
  2782. {
  2783. "name": "laravel-admin-ext/log-viewer",
  2784. "version": "v1.0.2",
  2785. "source": {
  2786. "type": "git",
  2787. "url": "https://github.com/laravel-admin-extensions/log-viewer.git",
  2788. "reference": "19c78d7b81b0f062d4a1a61fb0c0310305b097c2"
  2789. },
  2790. "dist": {
  2791. "type": "zip",
  2792. "url": "https://api.github.com/repos/laravel-admin-extensions/log-viewer/zipball/19c78d7b81b0f062d4a1a61fb0c0310305b097c2",
  2793. "reference": "19c78d7b81b0f062d4a1a61fb0c0310305b097c2",
  2794. "shasum": "",
  2795. "mirrors": [
  2796. {
  2797. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2798. "preferred": true
  2799. }
  2800. ]
  2801. },
  2802. "require": {
  2803. "encore/laravel-admin": "~1.5",
  2804. "laravel/framework": "~5.5",
  2805. "php": ">=7.0.0"
  2806. },
  2807. "require-dev": {
  2808. "laravel/laravel": "~5.5",
  2809. "phpunit/phpunit": "~6.0"
  2810. },
  2811. "type": "library",
  2812. "extra": {
  2813. "laravel": {
  2814. "providers": [
  2815. "Encore\\Admin\\LogViewer\\LogViewerServiceProvider"
  2816. ]
  2817. }
  2818. },
  2819. "autoload": {
  2820. "psr-4": {
  2821. "Encore\\Admin\\LogViewer\\": "src/"
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "z-song",
  2831. "email": "zosong@126.com"
  2832. }
  2833. ],
  2834. "description": "Log viewer for laravel",
  2835. "homepage": "https://github.com/laravel-admin-extensions/log-viewer",
  2836. "keywords": [
  2837. "Viewer",
  2838. "laravel-admin",
  2839. "log"
  2840. ],
  2841. "time": "2018-04-25T06:14:03+00:00"
  2842. },
  2843. {
  2844. "name": "laravel-admin-ext/redis-manager",
  2845. "version": "v1.0.1",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/laravel-admin-extensions/redis-manager.git",
  2849. "reference": "391d683fc7fa27535142c20de5a70aa9f94ef23c"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/laravel-admin-extensions/redis-manager/zipball/391d683fc7fa27535142c20de5a70aa9f94ef23c",
  2854. "reference": "391d683fc7fa27535142c20de5a70aa9f94ef23c",
  2855. "shasum": "",
  2856. "mirrors": [
  2857. {
  2858. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2859. "preferred": true
  2860. }
  2861. ]
  2862. },
  2863. "require": {
  2864. "encore/laravel-admin": "~1.5",
  2865. "laravel/framework": "~5.5",
  2866. "php": ">=7.0.0",
  2867. "predis/predis": "~1.0"
  2868. },
  2869. "require-dev": {
  2870. "laravel/laravel": "~5.5",
  2871. "phpunit/phpunit": "~6.0"
  2872. },
  2873. "type": "library",
  2874. "extra": {
  2875. "laravel": {
  2876. "providers": [
  2877. "Encore\\Admin\\RedisManager\\RedisManagerServiceProvider"
  2878. ]
  2879. }
  2880. },
  2881. "autoload": {
  2882. "psr-4": {
  2883. "Encore\\Admin\\RedisManager\\": "src/"
  2884. }
  2885. },
  2886. "notification-url": "https://packagist.org/downloads/",
  2887. "license": [
  2888. "MIT"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "z-song",
  2893. "email": "zosong@126.com"
  2894. }
  2895. ],
  2896. "description": "Redis manager for laravel-admin",
  2897. "homepage": "https://github.com/laravel-admin-extensions/redis-manager",
  2898. "keywords": [
  2899. "laravel-admin",
  2900. "manager",
  2901. "redis"
  2902. ],
  2903. "time": "2018-05-03T07:59:06+00:00"
  2904. },
  2905. {
  2906. "name": "laravel-admin-ext/scheduling",
  2907. "version": "v1.0.1",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/laravel-admin-extensions/scheduling.git",
  2911. "reference": "663ef072b65e8c01c004c3c4577a9428904ba78c"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/laravel-admin-extensions/scheduling/zipball/663ef072b65e8c01c004c3c4577a9428904ba78c",
  2916. "reference": "663ef072b65e8c01c004c3c4577a9428904ba78c",
  2917. "shasum": "",
  2918. "mirrors": [
  2919. {
  2920. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2921. "preferred": true
  2922. }
  2923. ]
  2924. },
  2925. "require": {
  2926. "encore/laravel-admin": "~1.5",
  2927. "laravel/framework": "~5.5",
  2928. "php": ">=7.0.0"
  2929. },
  2930. "require-dev": {
  2931. "laravel/laravel": "~5.5",
  2932. "phpunit/phpunit": "~6.0"
  2933. },
  2934. "type": "library",
  2935. "extra": {
  2936. "laravel": {
  2937. "providers": [
  2938. "Encore\\Admin\\Scheduling\\SchedulingServiceProvider"
  2939. ]
  2940. }
  2941. },
  2942. "autoload": {
  2943. "psr-4": {
  2944. "Encore\\Admin\\Scheduling\\": "src/"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "z-song",
  2954. "email": "zosong@126.com"
  2955. }
  2956. ],
  2957. "description": "Task scheduling extension for laravel-admin",
  2958. "homepage": "https://github.com/laravel-admin-extensions/scheduling",
  2959. "keywords": [
  2960. "laravel-admin",
  2961. "scheduling",
  2962. "task"
  2963. ],
  2964. "time": "2018-05-07T02:07:14+00:00"
  2965. },
  2966. {
  2967. "name": "laravel/framework",
  2968. "version": "v5.5.44",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/laravel/framework.git",
  2972. "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/laravel/framework/zipball/00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
  2977. "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
  2978. "shasum": "",
  2979. "mirrors": [
  2980. {
  2981. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2982. "preferred": true
  2983. }
  2984. ]
  2985. },
  2986. "require": {
  2987. "doctrine/inflector": "~1.1",
  2988. "erusev/parsedown": "~1.7",
  2989. "ext-mbstring": "*",
  2990. "ext-openssl": "*",
  2991. "league/flysystem": "^1.0.8",
  2992. "monolog/monolog": "~1.12",
  2993. "mtdowling/cron-expression": "~1.0",
  2994. "nesbot/carbon": "^1.24.1",
  2995. "php": ">=7.0",
  2996. "psr/container": "~1.0",
  2997. "psr/simple-cache": "^1.0",
  2998. "ramsey/uuid": "~3.0",
  2999. "swiftmailer/swiftmailer": "~6.0",
  3000. "symfony/console": "~3.3",
  3001. "symfony/debug": "~3.3",
  3002. "symfony/finder": "~3.3",
  3003. "symfony/http-foundation": "~3.3",
  3004. "symfony/http-kernel": "~3.3",
  3005. "symfony/process": "~3.3",
  3006. "symfony/routing": "~3.3",
  3007. "symfony/var-dumper": "~3.3",
  3008. "tijsverkoyen/css-to-inline-styles": "~2.2",
  3009. "vlucas/phpdotenv": "~2.2"
  3010. },
  3011. "replace": {
  3012. "illuminate/auth": "self.version",
  3013. "illuminate/broadcasting": "self.version",
  3014. "illuminate/bus": "self.version",
  3015. "illuminate/cache": "self.version",
  3016. "illuminate/config": "self.version",
  3017. "illuminate/console": "self.version",
  3018. "illuminate/container": "self.version",
  3019. "illuminate/contracts": "self.version",
  3020. "illuminate/cookie": "self.version",
  3021. "illuminate/database": "self.version",
  3022. "illuminate/encryption": "self.version",
  3023. "illuminate/events": "self.version",
  3024. "illuminate/filesystem": "self.version",
  3025. "illuminate/hashing": "self.version",
  3026. "illuminate/http": "self.version",
  3027. "illuminate/log": "self.version",
  3028. "illuminate/mail": "self.version",
  3029. "illuminate/notifications": "self.version",
  3030. "illuminate/pagination": "self.version",
  3031. "illuminate/pipeline": "self.version",
  3032. "illuminate/queue": "self.version",
  3033. "illuminate/redis": "self.version",
  3034. "illuminate/routing": "self.version",
  3035. "illuminate/session": "self.version",
  3036. "illuminate/support": "self.version",
  3037. "illuminate/translation": "self.version",
  3038. "illuminate/validation": "self.version",
  3039. "illuminate/view": "self.version",
  3040. "tightenco/collect": "<5.5.33"
  3041. },
  3042. "require-dev": {
  3043. "aws/aws-sdk-php": "~3.0",
  3044. "doctrine/dbal": "~2.5",
  3045. "filp/whoops": "^2.1.4",
  3046. "mockery/mockery": "~1.0",
  3047. "orchestra/testbench-core": "3.5.*",
  3048. "pda/pheanstalk": "~3.0",
  3049. "phpunit/phpunit": "~6.0",
  3050. "predis/predis": "^1.1.1",
  3051. "symfony/css-selector": "~3.3",
  3052. "symfony/dom-crawler": "~3.3"
  3053. },
  3054. "suggest": {
  3055. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  3056. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  3057. "ext-pcntl": "Required to use all features of the queue worker.",
  3058. "ext-posix": "Required to use all features of the queue worker.",
  3059. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  3060. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  3061. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  3062. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  3063. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  3064. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  3065. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  3066. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  3067. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  3068. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  3069. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  3070. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  3071. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "5.5-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "files": [
  3081. "src/Illuminate/Foundation/helpers.php",
  3082. "src/Illuminate/Support/helpers.php"
  3083. ],
  3084. "psr-4": {
  3085. "Illuminate\\": "src/Illuminate/"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Taylor Otwell",
  3095. "email": "taylor@laravel.com"
  3096. }
  3097. ],
  3098. "description": "The Laravel Framework.",
  3099. "homepage": "https://laravel.com",
  3100. "keywords": [
  3101. "framework",
  3102. "laravel"
  3103. ],
  3104. "time": "2018-10-04T14:51:24+00:00"
  3105. },
  3106. {
  3107. "name": "laravel/passport",
  3108. "version": "v4.0.3",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/laravel/passport.git",
  3112. "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/laravel/passport/zipball/0542f1f82edfbf857d0197c34a3d41f549aff30a",
  3117. "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a",
  3118. "shasum": "",
  3119. "mirrors": [
  3120. {
  3121. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3122. "preferred": true
  3123. }
  3124. ]
  3125. },
  3126. "require": {
  3127. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  3128. "guzzlehttp/guzzle": "~6.0",
  3129. "illuminate/auth": "~5.4",
  3130. "illuminate/console": "~5.4",
  3131. "illuminate/container": "~5.4",
  3132. "illuminate/contracts": "~5.4",
  3133. "illuminate/database": "~5.4",
  3134. "illuminate/encryption": "~5.4",
  3135. "illuminate/http": "~5.4",
  3136. "illuminate/support": "~5.4",
  3137. "league/oauth2-server": "^6.0",
  3138. "php": ">=5.6.4",
  3139. "phpseclib/phpseclib": "^2.0",
  3140. "symfony/psr-http-message-bridge": "~1.0",
  3141. "zendframework/zend-diactoros": "~1.0"
  3142. },
  3143. "require-dev": {
  3144. "mockery/mockery": "~0.9",
  3145. "phpunit/phpunit": "~5.0"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "4.0-dev"
  3151. },
  3152. "laravel": {
  3153. "providers": [
  3154. "Laravel\\Passport\\PassportServiceProvider"
  3155. ]
  3156. }
  3157. },
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Laravel\\Passport\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "authors": [
  3168. {
  3169. "name": "Taylor Otwell",
  3170. "email": "taylor@laravel.com"
  3171. }
  3172. ],
  3173. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  3174. "keywords": [
  3175. "laravel",
  3176. "oauth",
  3177. "passport"
  3178. ],
  3179. "time": "2017-09-24T14:21:39+00:00"
  3180. },
  3181. {
  3182. "name": "laravel/tinker",
  3183. "version": "v1.0.8",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/laravel/tinker.git",
  3187. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  3192. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  3193. "shasum": "",
  3194. "mirrors": [
  3195. {
  3196. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3197. "preferred": true
  3198. }
  3199. ]
  3200. },
  3201. "require": {
  3202. "illuminate/console": "~5.1",
  3203. "illuminate/contracts": "~5.1",
  3204. "illuminate/support": "~5.1",
  3205. "php": ">=5.5.9",
  3206. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  3207. "symfony/var-dumper": "~3.0|~4.0"
  3208. },
  3209. "require-dev": {
  3210. "phpunit/phpunit": "~4.0|~5.0"
  3211. },
  3212. "suggest": {
  3213. "illuminate/database": "The Illuminate Database package (~5.1)."
  3214. },
  3215. "type": "library",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-master": "1.0-dev"
  3219. },
  3220. "laravel": {
  3221. "providers": [
  3222. "Laravel\\Tinker\\TinkerServiceProvider"
  3223. ]
  3224. }
  3225. },
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Laravel\\Tinker\\": "src/"
  3229. }
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "MIT"
  3234. ],
  3235. "authors": [
  3236. {
  3237. "name": "Taylor Otwell",
  3238. "email": "taylor@laravel.com"
  3239. }
  3240. ],
  3241. "description": "Powerful REPL for the Laravel framework.",
  3242. "keywords": [
  3243. "REPL",
  3244. "Tinker",
  3245. "laravel",
  3246. "psysh"
  3247. ],
  3248. "time": "2018-10-12T19:39:35+00:00"
  3249. },
  3250. {
  3251. "name": "laravelcollective/html",
  3252. "version": "v5.5.4",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/LaravelCollective/html.git",
  3256. "reference": "04c596a69975b901f2223eb6eb4adf55354121c2"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/LaravelCollective/html/zipball/04c596a69975b901f2223eb6eb4adf55354121c2",
  3261. "reference": "04c596a69975b901f2223eb6eb4adf55354121c2",
  3262. "shasum": "",
  3263. "mirrors": [
  3264. {
  3265. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3266. "preferred": true
  3267. }
  3268. ]
  3269. },
  3270. "require": {
  3271. "illuminate/http": "5.5.*",
  3272. "illuminate/routing": "5.5.*",
  3273. "illuminate/session": "5.5.*",
  3274. "illuminate/support": "5.5.*",
  3275. "illuminate/view": "5.5.*",
  3276. "php": ">=7.0.0"
  3277. },
  3278. "require-dev": {
  3279. "illuminate/database": "5.5.*",
  3280. "mockery/mockery": "~0.9.4",
  3281. "phpunit/phpunit": "~5.4"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-master": "5.5-dev"
  3287. },
  3288. "laravel": {
  3289. "providers": [
  3290. "Collective\\Html\\HtmlServiceProvider"
  3291. ],
  3292. "aliases": {
  3293. "Form": "Collective\\Html\\FormFacade",
  3294. "Html": "Collective\\Html\\HtmlFacade"
  3295. }
  3296. }
  3297. },
  3298. "autoload": {
  3299. "psr-4": {
  3300. "Collective\\Html\\": "src/"
  3301. },
  3302. "files": [
  3303. "src/helpers.php"
  3304. ]
  3305. },
  3306. "notification-url": "https://packagist.org/downloads/",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Taylor Otwell",
  3313. "email": "taylorotwell@gmail.com"
  3314. },
  3315. {
  3316. "name": "Adam Engebretson",
  3317. "email": "adam@laravelcollective.com"
  3318. }
  3319. ],
  3320. "description": "HTML and Form Builders for the Laravel Framework",
  3321. "homepage": "https://laravelcollective.com",
  3322. "time": "2018-03-24T00:39:21+00:00"
  3323. },
  3324. {
  3325. "name": "lavary/laravel-menu",
  3326. "version": "v1.7.2",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/lavary/laravel-menu.git",
  3330. "reference": "772800ab87d4496f16891758b8c303e5f75faf1d"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/lavary/laravel-menu/zipball/772800ab87d4496f16891758b8c303e5f75faf1d",
  3335. "reference": "772800ab87d4496f16891758b8c303e5f75faf1d",
  3336. "shasum": "",
  3337. "mirrors": [
  3338. {
  3339. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3340. "preferred": true
  3341. }
  3342. ]
  3343. },
  3344. "require": {
  3345. "illuminate/support": ">=5.0",
  3346. "illuminate/view": ">=5.0",
  3347. "php": ">=5.4.0"
  3348. },
  3349. "type": "library",
  3350. "extra": {
  3351. "laravel": {
  3352. "providers": [
  3353. "Lavary\\Menu\\ServiceProvider"
  3354. ],
  3355. "aliases": {
  3356. "Menu": "Lavary\\Menu\\Facade"
  3357. }
  3358. }
  3359. },
  3360. "autoload": {
  3361. "psr-0": {
  3362. "Lavary\\Menu\\": "src/"
  3363. }
  3364. },
  3365. "notification-url": "https://packagist.org/downloads/",
  3366. "license": [
  3367. "MIT"
  3368. ],
  3369. "authors": [
  3370. {
  3371. "name": "Lavary",
  3372. "email": "mrl.8081@gmail.com"
  3373. }
  3374. ],
  3375. "description": "A quick way to create menus in Laravel 5",
  3376. "homepage": "https://github.com/lavary/laravel-menu",
  3377. "keywords": [
  3378. "laravel"
  3379. ],
  3380. "time": "2017-10-30T16:48:59+00:00"
  3381. },
  3382. {
  3383. "name": "lcobucci/jwt",
  3384. "version": "3.2.5",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/lcobucci/jwt.git",
  3388. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  3393. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  3394. "shasum": "",
  3395. "mirrors": [
  3396. {
  3397. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3398. "preferred": true
  3399. }
  3400. ]
  3401. },
  3402. "require": {
  3403. "ext-openssl": "*",
  3404. "php": ">=5.5"
  3405. },
  3406. "require-dev": {
  3407. "mdanter/ecc": "~0.3.1",
  3408. "mikey179/vfsstream": "~1.5",
  3409. "phpmd/phpmd": "~2.2",
  3410. "phpunit/php-invoker": "~1.1",
  3411. "phpunit/phpunit": "~4.5",
  3412. "squizlabs/php_codesniffer": "~2.3"
  3413. },
  3414. "suggest": {
  3415. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  3416. },
  3417. "type": "library",
  3418. "extra": {
  3419. "branch-alias": {
  3420. "dev-master": "3.1-dev"
  3421. }
  3422. },
  3423. "autoload": {
  3424. "psr-4": {
  3425. "Lcobucci\\JWT\\": "src"
  3426. }
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "BSD-3-Clause"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Luís Otávio Cobucci Oblonczyk",
  3435. "email": "lcobucci@gmail.com",
  3436. "role": "Developer"
  3437. }
  3438. ],
  3439. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3440. "keywords": [
  3441. "JWS",
  3442. "jwt"
  3443. ],
  3444. "time": "2018-11-11T12:22:26+00:00"
  3445. },
  3446. {
  3447. "name": "league/event",
  3448. "version": "2.2.0",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/thephpleague/event.git",
  3452. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3457. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3458. "shasum": "",
  3459. "mirrors": [
  3460. {
  3461. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3462. "preferred": true
  3463. }
  3464. ]
  3465. },
  3466. "require": {
  3467. "php": ">=5.4.0"
  3468. },
  3469. "require-dev": {
  3470. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3471. "phpspec/phpspec": "^2.2"
  3472. },
  3473. "type": "library",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-master": "2.2-dev"
  3477. }
  3478. },
  3479. "autoload": {
  3480. "psr-4": {
  3481. "League\\Event\\": "src/"
  3482. }
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "Frank de Jonge",
  3491. "email": "info@frenky.net"
  3492. }
  3493. ],
  3494. "description": "Event package",
  3495. "keywords": [
  3496. "emitter",
  3497. "event",
  3498. "listener"
  3499. ],
  3500. "time": "2018-11-26T11:52:41+00:00"
  3501. },
  3502. {
  3503. "name": "league/flysystem",
  3504. "version": "1.0.49",
  3505. "source": {
  3506. "type": "git",
  3507. "url": "https://github.com/thephpleague/flysystem.git",
  3508. "reference": "a63cc83d8a931b271be45148fa39ba7156782ffd"
  3509. },
  3510. "dist": {
  3511. "type": "zip",
  3512. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a63cc83d8a931b271be45148fa39ba7156782ffd",
  3513. "reference": "a63cc83d8a931b271be45148fa39ba7156782ffd",
  3514. "shasum": "",
  3515. "mirrors": [
  3516. {
  3517. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3518. "preferred": true
  3519. }
  3520. ]
  3521. },
  3522. "require": {
  3523. "ext-fileinfo": "*",
  3524. "php": ">=5.5.9"
  3525. },
  3526. "conflict": {
  3527. "league/flysystem-sftp": "<1.0.6"
  3528. },
  3529. "require-dev": {
  3530. "phpspec/phpspec": "^3.4",
  3531. "phpunit/phpunit": "^5.7.10"
  3532. },
  3533. "suggest": {
  3534. "ext-fileinfo": "Required for MimeType",
  3535. "ext-ftp": "Allows you to use FTP server storage",
  3536. "ext-openssl": "Allows you to use FTPS server storage",
  3537. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3538. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3539. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3540. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3541. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3542. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3543. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3544. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3545. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3546. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3547. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3548. },
  3549. "type": "library",
  3550. "extra": {
  3551. "branch-alias": {
  3552. "dev-master": "1.1-dev"
  3553. }
  3554. },
  3555. "autoload": {
  3556. "psr-4": {
  3557. "League\\Flysystem\\": "src/"
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Frank de Jonge",
  3567. "email": "info@frenky.net"
  3568. }
  3569. ],
  3570. "description": "Filesystem abstraction: Many filesystems, one API.",
  3571. "keywords": [
  3572. "Cloud Files",
  3573. "WebDAV",
  3574. "abstraction",
  3575. "aws",
  3576. "cloud",
  3577. "copy.com",
  3578. "dropbox",
  3579. "file systems",
  3580. "files",
  3581. "filesystem",
  3582. "filesystems",
  3583. "ftp",
  3584. "rackspace",
  3585. "remote",
  3586. "s3",
  3587. "sftp",
  3588. "storage"
  3589. ],
  3590. "time": "2018-11-23T23:41:29+00:00"
  3591. },
  3592. {
  3593. "name": "league/fractal",
  3594. "version": "0.17.0",
  3595. "source": {
  3596. "type": "git",
  3597. "url": "https://github.com/thephpleague/fractal.git",
  3598. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3599. },
  3600. "dist": {
  3601. "type": "zip",
  3602. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3603. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3604. "shasum": "",
  3605. "mirrors": [
  3606. {
  3607. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3608. "preferred": true
  3609. }
  3610. ]
  3611. },
  3612. "require": {
  3613. "php": ">=5.4"
  3614. },
  3615. "require-dev": {
  3616. "doctrine/orm": "^2.5",
  3617. "illuminate/contracts": "~5.0",
  3618. "mockery/mockery": "~0.9",
  3619. "pagerfanta/pagerfanta": "~1.0.0",
  3620. "phpunit/phpunit": "~4.0",
  3621. "squizlabs/php_codesniffer": "~1.5",
  3622. "zendframework/zend-paginator": "~2.3"
  3623. },
  3624. "suggest": {
  3625. "illuminate/pagination": "The Illuminate Pagination component.",
  3626. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3627. "zendframework/zend-paginator": "Zend Framework Paginator"
  3628. },
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "0.13-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "psr-4": {
  3637. "League\\Fractal\\": "src"
  3638. }
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "Phil Sturgeon",
  3647. "email": "me@philsturgeon.uk",
  3648. "homepage": "http://philsturgeon.uk/",
  3649. "role": "Developer"
  3650. }
  3651. ],
  3652. "description": "Handle the output of complex data structures ready for API output.",
  3653. "homepage": "http://fractal.thephpleague.com/",
  3654. "keywords": [
  3655. "api",
  3656. "json",
  3657. "league",
  3658. "rest"
  3659. ],
  3660. "time": "2017-06-12T11:04:56+00:00"
  3661. },
  3662. {
  3663. "name": "league/oauth2-server",
  3664. "version": "6.1.1",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/thephpleague/oauth2-server.git",
  3668. "reference": "a0cabb573c7cd5ee01803daec992d6ee3677c4ae"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/a0cabb573c7cd5ee01803daec992d6ee3677c4ae",
  3673. "reference": "a0cabb573c7cd5ee01803daec992d6ee3677c4ae",
  3674. "shasum": "",
  3675. "mirrors": [
  3676. {
  3677. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3678. "preferred": true
  3679. }
  3680. ]
  3681. },
  3682. "require": {
  3683. "defuse/php-encryption": "^2.1",
  3684. "ext-openssl": "*",
  3685. "lcobucci/jwt": "^3.1",
  3686. "league/event": "^2.1",
  3687. "paragonie/random_compat": "^2.0",
  3688. "php": ">=5.6.0",
  3689. "psr/http-message": "^1.0"
  3690. },
  3691. "replace": {
  3692. "league/oauth2server": "*",
  3693. "lncd/oauth2": "*"
  3694. },
  3695. "require-dev": {
  3696. "phpunit/phpunit": "^4.8.38 || ^5.7.21",
  3697. "zendframework/zend-diactoros": "^1.0"
  3698. },
  3699. "type": "library",
  3700. "autoload": {
  3701. "psr-4": {
  3702. "League\\OAuth2\\Server\\": "src/"
  3703. }
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Alex Bilbie",
  3712. "email": "hello@alexbilbie.com",
  3713. "homepage": "http://www.alexbilbie.com",
  3714. "role": "Developer"
  3715. }
  3716. ],
  3717. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3718. "homepage": "https://oauth2.thephpleague.com/",
  3719. "keywords": [
  3720. "Authentication",
  3721. "api",
  3722. "auth",
  3723. "authorisation",
  3724. "authorization",
  3725. "oauth",
  3726. "oauth 2",
  3727. "oauth 2.0",
  3728. "oauth2",
  3729. "protect",
  3730. "resource",
  3731. "secure",
  3732. "server"
  3733. ],
  3734. "time": "2017-12-23T23:33:42+00:00"
  3735. },
  3736. {
  3737. "name": "maatwebsite/excel",
  3738. "version": "2.1.30",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  3742. "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
  3747. "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
  3748. "shasum": "",
  3749. "mirrors": [
  3750. {
  3751. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3752. "preferred": true
  3753. }
  3754. ]
  3755. },
  3756. "require": {
  3757. "illuminate/cache": "^5.0",
  3758. "illuminate/config": "^5.0",
  3759. "illuminate/filesystem": "^5.0",
  3760. "illuminate/support": "^5.0",
  3761. "jeremeamia/superclosure": "^2.3",
  3762. "nesbot/carbon": "~1.0",
  3763. "php": ">=5.5",
  3764. "phpoffice/phpexcel": "^1.8.1",
  3765. "tijsverkoyen/css-to-inline-styles": "~2.0"
  3766. },
  3767. "require-dev": {
  3768. "mockery/mockery": "~1.0",
  3769. "orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*",
  3770. "phpseclib/phpseclib": "~1.0",
  3771. "phpunit/phpunit": "~4.0"
  3772. },
  3773. "suggest": {
  3774. "illuminate/http": "^5.0",
  3775. "illuminate/queue": "^5.0",
  3776. "illuminate/routing": "^5.0",
  3777. "illuminate/view": "^5.0"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "laravel": {
  3782. "providers": [
  3783. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3784. ],
  3785. "aliases": {
  3786. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3787. }
  3788. }
  3789. },
  3790. "autoload": {
  3791. "classmap": [
  3792. "src/Maatwebsite/Excel"
  3793. ],
  3794. "psr-0": {
  3795. "Maatwebsite\\Excel\\": "src/"
  3796. }
  3797. },
  3798. "notification-url": "https://packagist.org/downloads/",
  3799. "license": [
  3800. "MIT"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "Maatwebsite.nl",
  3805. "email": "patrick@maatwebsite.nl"
  3806. }
  3807. ],
  3808. "description": "Supercharged Excel exports in Laravel",
  3809. "keywords": [
  3810. "PHPExcel",
  3811. "batch",
  3812. "csv",
  3813. "excel",
  3814. "export",
  3815. "import",
  3816. "laravel"
  3817. ],
  3818. "time": "2018-09-04T19:00:09+00:00"
  3819. },
  3820. {
  3821. "name": "marktopper/doctrine-dbal-timestamp-type",
  3822. "version": "v1.0.2",
  3823. "source": {
  3824. "type": "git",
  3825. "url": "https://github.com/marktopper/doctrine-dbal-timestamp-type.git",
  3826. "reference": "e028dda876204e271d0fc921f013544d58770638"
  3827. },
  3828. "dist": {
  3829. "type": "zip",
  3830. "url": "https://api.github.com/repos/marktopper/doctrine-dbal-timestamp-type/zipball/e028dda876204e271d0fc921f013544d58770638",
  3831. "reference": "e028dda876204e271d0fc921f013544d58770638",
  3832. "shasum": "",
  3833. "mirrors": [
  3834. {
  3835. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3836. "preferred": true
  3837. }
  3838. ]
  3839. },
  3840. "require": {
  3841. "doctrine/dbal": "^2.5",
  3842. "php": ">=5.6.4"
  3843. },
  3844. "type": "package",
  3845. "autoload": {
  3846. "psr-4": {
  3847. "MarkTopper\\DoctrineDBALTimestampType\\": "src/"
  3848. }
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "MIT"
  3853. ],
  3854. "description": "Add the timestamp type for Doctrine/DBAL",
  3855. "keywords": [
  3856. "database",
  3857. "dbal",
  3858. "doctrine",
  3859. "laravel",
  3860. "mysql",
  3861. "timestamp"
  3862. ],
  3863. "time": "2018-11-11T09:54:26+00:00"
  3864. },
  3865. {
  3866. "name": "milon/barcode",
  3867. "version": "5.3.6",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/milon/barcode.git",
  3871. "reference": "ca2f3efbf46142ff7f7afe3b0f3660ea4a067576"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/milon/barcode/zipball/ca2f3efbf46142ff7f7afe3b0f3660ea4a067576",
  3876. "reference": "ca2f3efbf46142ff7f7afe3b0f3660ea4a067576",
  3877. "shasum": "",
  3878. "mirrors": [
  3879. {
  3880. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3881. "preferred": true
  3882. }
  3883. ]
  3884. },
  3885. "require": {
  3886. "illuminate/support": "5.*",
  3887. "php": ">=5.6.0"
  3888. },
  3889. "type": "library",
  3890. "autoload": {
  3891. "psr-0": {
  3892. "Milon\\Barcode": "src/"
  3893. }
  3894. },
  3895. "notification-url": "https://packagist.org/downloads/",
  3896. "license": [
  3897. "LGPL-3.0"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "Nuruzzaman Milon",
  3902. "email": "contact@milon.im"
  3903. }
  3904. ],
  3905. "description": "Barcode generator like Qr Code , PDF417,C39, C39+,C39E,C39E+,C93,S25,S25+,I25,I25+,C128,C128A,C128B,C128C,2-Digits UPC-Based Extention,5-Digits UPC-Based Extention,EAN 8,EAN 13,UPC-A,UPC-E,MSI (Variation of Plessey code) ",
  3906. "keywords": [
  3907. "CODABAR",
  3908. "CODE 128",
  3909. "CODE 39",
  3910. "barcode",
  3911. "datamatrix",
  3912. "ean",
  3913. "laravel",
  3914. "pdf417",
  3915. "qr code",
  3916. "qrcode"
  3917. ],
  3918. "time": "2017-07-28T00:33:38+00:00"
  3919. },
  3920. {
  3921. "name": "mobiledetect/mobiledetectlib",
  3922. "version": "2.8.33",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3926. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  3931. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  3932. "shasum": "",
  3933. "mirrors": [
  3934. {
  3935. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3936. "preferred": true
  3937. }
  3938. ]
  3939. },
  3940. "require": {
  3941. "php": ">=5.0.0"
  3942. },
  3943. "require-dev": {
  3944. "phpunit/phpunit": "~4.8.35||~5.7"
  3945. },
  3946. "type": "library",
  3947. "autoload": {
  3948. "classmap": [
  3949. "Mobile_Detect.php"
  3950. ],
  3951. "psr-0": {
  3952. "Detection": "namespaced/"
  3953. }
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Serban Ghita",
  3962. "email": "serbanghita@gmail.com",
  3963. "homepage": "http://mobiledetect.net",
  3964. "role": "Developer"
  3965. }
  3966. ],
  3967. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3968. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3969. "keywords": [
  3970. "detect mobile devices",
  3971. "mobile",
  3972. "mobile detect",
  3973. "mobile detector",
  3974. "php mobile detect"
  3975. ],
  3976. "time": "2018-09-01T15:05:15+00:00"
  3977. },
  3978. {
  3979. "name": "monolog/monolog",
  3980. "version": "1.24.0",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/Seldaek/monolog.git",
  3984. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  3989. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  3990. "shasum": "",
  3991. "mirrors": [
  3992. {
  3993. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3994. "preferred": true
  3995. }
  3996. ]
  3997. },
  3998. "require": {
  3999. "php": ">=5.3.0",
  4000. "psr/log": "~1.0"
  4001. },
  4002. "provide": {
  4003. "psr/log-implementation": "1.0.0"
  4004. },
  4005. "require-dev": {
  4006. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4007. "doctrine/couchdb": "~1.0@dev",
  4008. "graylog2/gelf-php": "~1.0",
  4009. "jakub-onderka/php-parallel-lint": "0.9",
  4010. "php-amqplib/php-amqplib": "~2.4",
  4011. "php-console/php-console": "^3.1.3",
  4012. "phpunit/phpunit": "~4.5",
  4013. "phpunit/phpunit-mock-objects": "2.3.0",
  4014. "ruflin/elastica": ">=0.90 <3.0",
  4015. "sentry/sentry": "^0.13",
  4016. "swiftmailer/swiftmailer": "^5.3|^6.0"
  4017. },
  4018. "suggest": {
  4019. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4020. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4021. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4022. "ext-mongo": "Allow sending log messages to a MongoDB server",
  4023. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4024. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  4025. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4026. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4027. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4028. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  4029. "sentry/sentry": "Allow sending log messages to a Sentry server"
  4030. },
  4031. "type": "library",
  4032. "extra": {
  4033. "branch-alias": {
  4034. "dev-master": "2.0.x-dev"
  4035. }
  4036. },
  4037. "autoload": {
  4038. "psr-4": {
  4039. "Monolog\\": "src/Monolog"
  4040. }
  4041. },
  4042. "notification-url": "https://packagist.org/downloads/",
  4043. "license": [
  4044. "MIT"
  4045. ],
  4046. "authors": [
  4047. {
  4048. "name": "Jordi Boggiano",
  4049. "email": "j.boggiano@seld.be",
  4050. "homepage": "http://seld.be"
  4051. }
  4052. ],
  4053. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4054. "homepage": "http://github.com/Seldaek/monolog",
  4055. "keywords": [
  4056. "log",
  4057. "logging",
  4058. "psr-3"
  4059. ],
  4060. "time": "2018-11-05T09:00:11+00:00"
  4061. },
  4062. {
  4063. "name": "mtdowling/cron-expression",
  4064. "version": "v1.2.1",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://github.com/mtdowling/cron-expression.git",
  4068. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  4073. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  4074. "shasum": "",
  4075. "mirrors": [
  4076. {
  4077. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4078. "preferred": true
  4079. }
  4080. ]
  4081. },
  4082. "require": {
  4083. "php": ">=5.3.2"
  4084. },
  4085. "require-dev": {
  4086. "phpunit/phpunit": "~4.0|~5.0"
  4087. },
  4088. "type": "library",
  4089. "autoload": {
  4090. "psr-4": {
  4091. "Cron\\": "src/Cron/"
  4092. }
  4093. },
  4094. "notification-url": "https://packagist.org/downloads/",
  4095. "license": [
  4096. "MIT"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "Michael Dowling",
  4101. "email": "mtdowling@gmail.com",
  4102. "homepage": "https://github.com/mtdowling"
  4103. }
  4104. ],
  4105. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  4106. "keywords": [
  4107. "cron",
  4108. "schedule"
  4109. ],
  4110. "time": "2017-01-23T04:29:33+00:00"
  4111. },
  4112. {
  4113. "name": "nesbot/carbon",
  4114. "version": "1.36.1",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/briannesbitt/Carbon.git",
  4118. "reference": "63da8cdf89d7a5efe43aabc794365f6e7b7b8983"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/63da8cdf89d7a5efe43aabc794365f6e7b7b8983",
  4123. "reference": "63da8cdf89d7a5efe43aabc794365f6e7b7b8983",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": ">=5.3.9",
  4134. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  4135. },
  4136. "require-dev": {
  4137. "phpunit/phpunit": "^4.8.35 || ^5.7"
  4138. },
  4139. "suggest": {
  4140. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  4141. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "laravel": {
  4146. "providers": [
  4147. "Carbon\\Laravel\\ServiceProvider"
  4148. ]
  4149. }
  4150. },
  4151. "autoload": {
  4152. "psr-4": {
  4153. "": "src/"
  4154. }
  4155. },
  4156. "notification-url": "https://packagist.org/downloads/",
  4157. "license": [
  4158. "MIT"
  4159. ],
  4160. "authors": [
  4161. {
  4162. "name": "Brian Nesbitt",
  4163. "email": "brian@nesbot.com",
  4164. "homepage": "http://nesbot.com"
  4165. }
  4166. ],
  4167. "description": "A simple API extension for DateTime.",
  4168. "homepage": "http://carbon.nesbot.com",
  4169. "keywords": [
  4170. "date",
  4171. "datetime",
  4172. "time"
  4173. ],
  4174. "time": "2018-11-22T18:23:02+00:00"
  4175. },
  4176. {
  4177. "name": "nikic/php-parser",
  4178. "version": "v4.1.0",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/nikic/PHP-Parser.git",
  4182. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  4187. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  4188. "shasum": "",
  4189. "mirrors": [
  4190. {
  4191. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4192. "preferred": true
  4193. }
  4194. ]
  4195. },
  4196. "require": {
  4197. "ext-tokenizer": "*",
  4198. "php": ">=7.0"
  4199. },
  4200. "require-dev": {
  4201. "phpunit/phpunit": "^6.5 || ^7.0"
  4202. },
  4203. "bin": [
  4204. "bin/php-parse"
  4205. ],
  4206. "type": "library",
  4207. "extra": {
  4208. "branch-alias": {
  4209. "dev-master": "4.1-dev"
  4210. }
  4211. },
  4212. "autoload": {
  4213. "psr-4": {
  4214. "PhpParser\\": "lib/PhpParser"
  4215. }
  4216. },
  4217. "notification-url": "https://packagist.org/downloads/",
  4218. "license": [
  4219. "BSD-3-Clause"
  4220. ],
  4221. "authors": [
  4222. {
  4223. "name": "Nikita Popov"
  4224. }
  4225. ],
  4226. "description": "A PHP parser written in PHP",
  4227. "keywords": [
  4228. "parser",
  4229. "php"
  4230. ],
  4231. "time": "2018-10-10T09:24:14+00:00"
  4232. },
  4233. {
  4234. "name": "overtrue/easy-sms",
  4235. "version": "1.1.6",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://github.com/overtrue/easy-sms.git",
  4239. "reference": "d7e8fd6d6e2919787295020aa976ae08f39c7b9d"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/d7e8fd6d6e2919787295020aa976ae08f39c7b9d",
  4244. "reference": "d7e8fd6d6e2919787295020aa976ae08f39c7b9d",
  4245. "shasum": "",
  4246. "mirrors": [
  4247. {
  4248. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4249. "preferred": true
  4250. }
  4251. ]
  4252. },
  4253. "require": {
  4254. "guzzlehttp/guzzle": "^6.2",
  4255. "php": ">=5.6"
  4256. },
  4257. "require-dev": {
  4258. "mockery/mockery": "1.0.x-dev",
  4259. "phpunit/phpunit": "^5.6"
  4260. },
  4261. "type": "library",
  4262. "autoload": {
  4263. "psr-4": {
  4264. "Overtrue\\EasySms\\": "src"
  4265. }
  4266. },
  4267. "notification-url": "https://packagist.org/downloads/",
  4268. "license": [
  4269. "MIT"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "overtrue",
  4274. "email": "i@overtrue.me"
  4275. }
  4276. ],
  4277. "description": "The easiest way to send short message.",
  4278. "time": "2018-09-14T13:43:38+00:00"
  4279. },
  4280. {
  4281. "name": "overtrue/laravel-uploader",
  4282. "version": "0.0.8",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/overtrue/laravel-uploader.git",
  4286. "reference": "a47f0573f523372db985f00827fe7e86cb64b6dd"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/overtrue/laravel-uploader/zipball/a47f0573f523372db985f00827fe7e86cb64b6dd",
  4291. "reference": "a47f0573f523372db985f00827fe7e86cb64b6dd",
  4292. "shasum": "",
  4293. "mirrors": [
  4294. {
  4295. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4296. "preferred": true
  4297. }
  4298. ]
  4299. },
  4300. "require": {
  4301. "php": ">=5.5.9"
  4302. },
  4303. "type": "library",
  4304. "extra": {
  4305. "laravel": {
  4306. "providers": [
  4307. "\\Overtrue\\LaravelUploader\\UploadServiceProvider"
  4308. ],
  4309. "aliases": {
  4310. "LaravelUploader": "\\Overtrue\\LaravelUploader\\LaravelUploader"
  4311. }
  4312. }
  4313. },
  4314. "autoload": {
  4315. "psr-4": {
  4316. "Overtrue\\LaravelUploader\\": "src/LaravelUploader"
  4317. },
  4318. "files": [
  4319. "src/LaravelUploader/helpers.php"
  4320. ]
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "overtrue",
  4329. "email": "i@overtrue.me"
  4330. }
  4331. ],
  4332. "time": "2018-04-13T01:26:50+00:00"
  4333. },
  4334. {
  4335. "name": "overtrue/laravel-wechat",
  4336. "version": "4.0.22",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/overtrue/laravel-wechat.git",
  4340. "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1d985af7c2d3b27ae5046dbdd3678172fd028490",
  4345. "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490",
  4346. "shasum": "",
  4347. "mirrors": [
  4348. {
  4349. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4350. "preferred": true
  4351. }
  4352. ]
  4353. },
  4354. "require": {
  4355. "illuminate/container": "^5.1",
  4356. "overtrue/wechat": "^4.0"
  4357. },
  4358. "type": "library",
  4359. "extra": {
  4360. "laravel": {
  4361. "providers": [
  4362. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4363. ],
  4364. "aliases": {
  4365. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4366. }
  4367. }
  4368. },
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Overtrue\\LaravelWeChat\\": "src/"
  4372. }
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "overtrue",
  4381. "email": "anzhengchao@gmail.com"
  4382. }
  4383. ],
  4384. "description": "微信 SDK for Laravel",
  4385. "keywords": [
  4386. "laravel",
  4387. "sdk",
  4388. "wechat",
  4389. "weixin"
  4390. ],
  4391. "time": "2018-05-23T14:03:58+00:00"
  4392. },
  4393. {
  4394. "name": "overtrue/socialite",
  4395. "version": "2.0.3",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/overtrue/socialite.git",
  4399. "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/overtrue/socialite/zipball/20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
  4404. "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
  4405. "shasum": "",
  4406. "mirrors": [
  4407. {
  4408. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4409. "preferred": true
  4410. }
  4411. ]
  4412. },
  4413. "require": {
  4414. "guzzlehttp/guzzle": "~5.0|~6.0",
  4415. "php": ">=7.0",
  4416. "symfony/http-foundation": "^2.7|^3.0|^4.0"
  4417. },
  4418. "require-dev": {
  4419. "mockery/mockery": "~0.9",
  4420. "phpunit/phpunit": "~4.0"
  4421. },
  4422. "type": "library",
  4423. "autoload": {
  4424. "psr-4": {
  4425. "Overtrue\\Socialite\\": "src/"
  4426. }
  4427. },
  4428. "notification-url": "https://packagist.org/downloads/",
  4429. "license": [
  4430. "MIT"
  4431. ],
  4432. "authors": [
  4433. {
  4434. "name": "overtrue",
  4435. "email": "anzhengchao@gmail.com"
  4436. }
  4437. ],
  4438. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4439. "keywords": [
  4440. "login",
  4441. "oauth",
  4442. "qq",
  4443. "social",
  4444. "wechat",
  4445. "weibo"
  4446. ],
  4447. "time": "2018-03-28T02:22:49+00:00"
  4448. },
  4449. {
  4450. "name": "overtrue/wechat",
  4451. "version": "4.1.15",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/overtrue/wechat.git",
  4455. "reference": "438057687bfd47d75413c7df32a698c72be751c1"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/overtrue/wechat/zipball/438057687bfd47d75413c7df32a698c72be751c1",
  4460. "reference": "438057687bfd47d75413c7df32a698c72be751c1",
  4461. "shasum": "",
  4462. "mirrors": [
  4463. {
  4464. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4465. "preferred": true
  4466. }
  4467. ]
  4468. },
  4469. "require": {
  4470. "easywechat-composer/easywechat-composer": "^1.1",
  4471. "ext-fileinfo": "*",
  4472. "ext-openssl": "*",
  4473. "ext-simplexml": "*",
  4474. "guzzlehttp/guzzle": "^6.2",
  4475. "monolog/monolog": "^1.22",
  4476. "overtrue/socialite": "~2.0",
  4477. "php": ">=7.0",
  4478. "pimple/pimple": "^3.0",
  4479. "symfony/cache": "^3.3 || ^4.0",
  4480. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
  4481. "symfony/psr-http-message-bridge": "^0.3 || ^1.0"
  4482. },
  4483. "require-dev": {
  4484. "mikey179/vfsstream": "^1.6",
  4485. "mockery/mockery": "^1.0",
  4486. "overtrue/phplint": "dev-master",
  4487. "phpunit/phpunit": "~6.0"
  4488. },
  4489. "type": "library",
  4490. "autoload": {
  4491. "psr-4": {
  4492. "EasyWeChat\\": "src/"
  4493. },
  4494. "files": [
  4495. "src/Kernel/Support/Helpers.php",
  4496. "src/Kernel/Helpers.php"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "overtrue",
  4506. "email": "anzhengchao@gmail.com"
  4507. }
  4508. ],
  4509. "description": "微信SDK",
  4510. "keywords": [
  4511. "sdk",
  4512. "wechat",
  4513. "weixin",
  4514. "weixin-sdk"
  4515. ],
  4516. "time": "2018-11-28T08:07:26+00:00"
  4517. },
  4518. {
  4519. "name": "paragonie/random_compat",
  4520. "version": "v2.0.17",
  4521. "source": {
  4522. "type": "git",
  4523. "url": "https://github.com/paragonie/random_compat.git",
  4524. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  4525. },
  4526. "dist": {
  4527. "type": "zip",
  4528. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  4529. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  4530. "shasum": "",
  4531. "mirrors": [
  4532. {
  4533. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4534. "preferred": true
  4535. }
  4536. ]
  4537. },
  4538. "require": {
  4539. "php": ">=5.2.0"
  4540. },
  4541. "require-dev": {
  4542. "phpunit/phpunit": "4.*|5.*"
  4543. },
  4544. "suggest": {
  4545. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4546. },
  4547. "type": "library",
  4548. "autoload": {
  4549. "files": [
  4550. "lib/random.php"
  4551. ]
  4552. },
  4553. "notification-url": "https://packagist.org/downloads/",
  4554. "license": [
  4555. "MIT"
  4556. ],
  4557. "authors": [
  4558. {
  4559. "name": "Paragon Initiative Enterprises",
  4560. "email": "security@paragonie.com",
  4561. "homepage": "https://paragonie.com"
  4562. }
  4563. ],
  4564. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4565. "keywords": [
  4566. "csprng",
  4567. "polyfill",
  4568. "pseudorandom",
  4569. "random"
  4570. ],
  4571. "time": "2018-07-04T16:31:37+00:00"
  4572. },
  4573. {
  4574. "name": "phpdocumentor/reflection-common",
  4575. "version": "1.0.1",
  4576. "source": {
  4577. "type": "git",
  4578. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4579. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  4580. },
  4581. "dist": {
  4582. "type": "zip",
  4583. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4584. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4585. "shasum": "",
  4586. "mirrors": [
  4587. {
  4588. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4589. "preferred": true
  4590. }
  4591. ]
  4592. },
  4593. "require": {
  4594. "php": ">=5.5"
  4595. },
  4596. "require-dev": {
  4597. "phpunit/phpunit": "^4.6"
  4598. },
  4599. "type": "library",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-master": "1.0.x-dev"
  4603. }
  4604. },
  4605. "autoload": {
  4606. "psr-4": {
  4607. "phpDocumentor\\Reflection\\": [
  4608. "src"
  4609. ]
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Jaap van Otterdijk",
  4619. "email": "opensource@ijaap.nl"
  4620. }
  4621. ],
  4622. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4623. "homepage": "http://www.phpdoc.org",
  4624. "keywords": [
  4625. "FQSEN",
  4626. "phpDocumentor",
  4627. "phpdoc",
  4628. "reflection",
  4629. "static analysis"
  4630. ],
  4631. "time": "2017-09-11T18:02:19+00:00"
  4632. },
  4633. {
  4634. "name": "phpdocumentor/reflection-docblock",
  4635. "version": "3.3.2",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4639. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  4644. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  4645. "shasum": "",
  4646. "mirrors": [
  4647. {
  4648. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4649. "preferred": true
  4650. }
  4651. ]
  4652. },
  4653. "require": {
  4654. "php": "^5.6 || ^7.0",
  4655. "phpdocumentor/reflection-common": "^1.0.0",
  4656. "phpdocumentor/type-resolver": "^0.4.0",
  4657. "webmozart/assert": "^1.0"
  4658. },
  4659. "require-dev": {
  4660. "mockery/mockery": "^0.9.4",
  4661. "phpunit/phpunit": "^4.4"
  4662. },
  4663. "type": "library",
  4664. "autoload": {
  4665. "psr-4": {
  4666. "phpDocumentor\\Reflection\\": [
  4667. "src/"
  4668. ]
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Mike van Riel",
  4678. "email": "me@mikevanriel.com"
  4679. }
  4680. ],
  4681. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4682. "time": "2017-11-10T14:09:06+00:00"
  4683. },
  4684. {
  4685. "name": "phpdocumentor/type-resolver",
  4686. "version": "0.4.0",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4690. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  4695. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  4696. "shasum": "",
  4697. "mirrors": [
  4698. {
  4699. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4700. "preferred": true
  4701. }
  4702. ]
  4703. },
  4704. "require": {
  4705. "php": "^5.5 || ^7.0",
  4706. "phpdocumentor/reflection-common": "^1.0"
  4707. },
  4708. "require-dev": {
  4709. "mockery/mockery": "^0.9.4",
  4710. "phpunit/phpunit": "^5.2||^4.8.24"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "branch-alias": {
  4715. "dev-master": "1.0.x-dev"
  4716. }
  4717. },
  4718. "autoload": {
  4719. "psr-4": {
  4720. "phpDocumentor\\Reflection\\": [
  4721. "src/"
  4722. ]
  4723. }
  4724. },
  4725. "notification-url": "https://packagist.org/downloads/",
  4726. "license": [
  4727. "MIT"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "Mike van Riel",
  4732. "email": "me@mikevanriel.com"
  4733. }
  4734. ],
  4735. "time": "2017-07-14T14:27:02+00:00"
  4736. },
  4737. {
  4738. "name": "phpoffice/phpexcel",
  4739. "version": "1.8.2",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/PHPOffice/PHPExcel.git",
  4743. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  4748. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  4749. "shasum": "",
  4750. "mirrors": [
  4751. {
  4752. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4753. "preferred": true
  4754. }
  4755. ]
  4756. },
  4757. "require": {
  4758. "ext-mbstring": "*",
  4759. "ext-xml": "*",
  4760. "ext-xmlwriter": "*",
  4761. "php": "^5.2|^7.0"
  4762. },
  4763. "require-dev": {
  4764. "squizlabs/php_codesniffer": "2.*"
  4765. },
  4766. "type": "library",
  4767. "autoload": {
  4768. "psr-0": {
  4769. "PHPExcel": "Classes/"
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "LGPL-2.1"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Maarten Balliauw",
  4779. "homepage": "http://blog.maartenballiauw.be"
  4780. },
  4781. {
  4782. "name": "Erik Tilt"
  4783. },
  4784. {
  4785. "name": "Franck Lefevre",
  4786. "homepage": "http://rootslabs.net"
  4787. },
  4788. {
  4789. "name": "Mark Baker",
  4790. "homepage": "http://markbakeruk.net"
  4791. }
  4792. ],
  4793. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4794. "homepage": "https://github.com/PHPOffice/PHPExcel",
  4795. "keywords": [
  4796. "OpenXML",
  4797. "excel",
  4798. "php",
  4799. "spreadsheet",
  4800. "xls",
  4801. "xlsx"
  4802. ],
  4803. "abandoned": "phpoffice/phpspreadsheet",
  4804. "time": "2018-11-22T23:07:24+00:00"
  4805. },
  4806. {
  4807. "name": "phpseclib/phpseclib",
  4808. "version": "2.0.12",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/phpseclib/phpseclib.git",
  4812. "reference": "8814dc7841db159daed0b32c2b08fb7e03c6afe7"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/8814dc7841db159daed0b32c2b08fb7e03c6afe7",
  4817. "reference": "8814dc7841db159daed0b32c2b08fb7e03c6afe7",
  4818. "shasum": "",
  4819. "mirrors": [
  4820. {
  4821. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4822. "preferred": true
  4823. }
  4824. ]
  4825. },
  4826. "require": {
  4827. "php": ">=5.3.3"
  4828. },
  4829. "require-dev": {
  4830. "phing/phing": "~2.7",
  4831. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  4832. "sami/sami": "~2.0",
  4833. "squizlabs/php_codesniffer": "~2.0"
  4834. },
  4835. "suggest": {
  4836. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4837. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4838. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4839. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4840. },
  4841. "type": "library",
  4842. "autoload": {
  4843. "files": [
  4844. "phpseclib/bootstrap.php"
  4845. ],
  4846. "psr-4": {
  4847. "phpseclib\\": "phpseclib/"
  4848. }
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "Jim Wigginton",
  4857. "email": "terrafrost@php.net",
  4858. "role": "Lead Developer"
  4859. },
  4860. {
  4861. "name": "Patrick Monnerat",
  4862. "email": "pm@datasphere.ch",
  4863. "role": "Developer"
  4864. },
  4865. {
  4866. "name": "Andreas Fischer",
  4867. "email": "bantu@phpbb.com",
  4868. "role": "Developer"
  4869. },
  4870. {
  4871. "name": "Hans-Jürgen Petrich",
  4872. "email": "petrich@tronic-media.com",
  4873. "role": "Developer"
  4874. },
  4875. {
  4876. "name": "Graham Campbell",
  4877. "email": "graham@alt-three.com",
  4878. "role": "Developer"
  4879. }
  4880. ],
  4881. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4882. "homepage": "http://phpseclib.sourceforge.net",
  4883. "keywords": [
  4884. "BigInteger",
  4885. "aes",
  4886. "asn.1",
  4887. "asn1",
  4888. "blowfish",
  4889. "crypto",
  4890. "cryptography",
  4891. "encryption",
  4892. "rsa",
  4893. "security",
  4894. "sftp",
  4895. "signature",
  4896. "signing",
  4897. "ssh",
  4898. "twofish",
  4899. "x.509",
  4900. "x509"
  4901. ],
  4902. "time": "2018-11-04T05:45:48+00:00"
  4903. },
  4904. {
  4905. "name": "pimple/pimple",
  4906. "version": "v3.2.3",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/silexphp/Pimple.git",
  4910. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  4915. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  4916. "shasum": "",
  4917. "mirrors": [
  4918. {
  4919. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4920. "preferred": true
  4921. }
  4922. ]
  4923. },
  4924. "require": {
  4925. "php": ">=5.3.0",
  4926. "psr/container": "^1.0"
  4927. },
  4928. "require-dev": {
  4929. "symfony/phpunit-bridge": "^3.2"
  4930. },
  4931. "type": "library",
  4932. "extra": {
  4933. "branch-alias": {
  4934. "dev-master": "3.2.x-dev"
  4935. }
  4936. },
  4937. "autoload": {
  4938. "psr-0": {
  4939. "Pimple": "src/"
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Fabien Potencier",
  4949. "email": "fabien@symfony.com"
  4950. }
  4951. ],
  4952. "description": "Pimple, a simple Dependency Injection Container",
  4953. "homepage": "http://pimple.sensiolabs.org",
  4954. "keywords": [
  4955. "container",
  4956. "dependency injection"
  4957. ],
  4958. "time": "2018-01-21T07:42:36+00:00"
  4959. },
  4960. {
  4961. "name": "predis/predis",
  4962. "version": "v1.1.1",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/nrk/predis.git",
  4966. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  4971. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  4972. "shasum": "",
  4973. "mirrors": [
  4974. {
  4975. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4976. "preferred": true
  4977. }
  4978. ]
  4979. },
  4980. "require": {
  4981. "php": ">=5.3.9"
  4982. },
  4983. "require-dev": {
  4984. "phpunit/phpunit": "~4.8"
  4985. },
  4986. "suggest": {
  4987. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4988. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4989. },
  4990. "type": "library",
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Predis\\": "src/"
  4994. }
  4995. },
  4996. "notification-url": "https://packagist.org/downloads/",
  4997. "license": [
  4998. "MIT"
  4999. ],
  5000. "authors": [
  5001. {
  5002. "name": "Daniele Alessandri",
  5003. "email": "suppakilla@gmail.com",
  5004. "homepage": "http://clorophilla.net"
  5005. }
  5006. ],
  5007. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  5008. "homepage": "http://github.com/nrk/predis",
  5009. "keywords": [
  5010. "nosql",
  5011. "predis",
  5012. "redis"
  5013. ],
  5014. "time": "2016-06-16T16:22:20+00:00"
  5015. },
  5016. {
  5017. "name": "prettus/l5-repository",
  5018. "version": "2.6.32",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/andersao/l5-repository.git",
  5022. "reference": "f6ebfffee80a38e1d2dcf479e70b1a9ead397c24"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/f6ebfffee80a38e1d2dcf479e70b1a9ead397c24",
  5027. "reference": "f6ebfffee80a38e1d2dcf479e70b1a9ead397c24",
  5028. "shasum": "",
  5029. "mirrors": [
  5030. {
  5031. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5032. "preferred": true
  5033. }
  5034. ]
  5035. },
  5036. "require": {
  5037. "illuminate/config": "~5.0",
  5038. "illuminate/console": "~5.0",
  5039. "illuminate/database": "~5.0",
  5040. "illuminate/filesystem": "~5.0",
  5041. "illuminate/http": "~5.0",
  5042. "illuminate/pagination": "~5.0",
  5043. "illuminate/support": "~5.0",
  5044. "prettus/laravel-validation": "1.1.*"
  5045. },
  5046. "suggest": {
  5047. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5048. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5049. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5050. },
  5051. "type": "library",
  5052. "extra": {
  5053. "laravel": {
  5054. "providers": [
  5055. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5056. ]
  5057. }
  5058. },
  5059. "autoload": {
  5060. "psr-4": {
  5061. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5062. }
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Anderson Andrade",
  5071. "email": "contato@andersonandra.de",
  5072. "role": "Developer"
  5073. }
  5074. ],
  5075. "description": "Laravel 5 - Repositories to the database layer",
  5076. "keywords": [
  5077. "cache",
  5078. "eloquent",
  5079. "laravel",
  5080. "model",
  5081. "repository"
  5082. ],
  5083. "time": "2018-01-27T15:53:20+00:00"
  5084. },
  5085. {
  5086. "name": "prettus/laravel-validation",
  5087. "version": "1.1.5",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/andersao/laravel-validator.git",
  5091. "reference": "d9eb401fb3518a890b117e83bd25a4109fcdb704"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/d9eb401fb3518a890b117e83bd25a4109fcdb704",
  5096. "reference": "d9eb401fb3518a890b117e83bd25a4109fcdb704",
  5097. "shasum": "",
  5098. "mirrors": [
  5099. {
  5100. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5101. "preferred": true
  5102. }
  5103. ]
  5104. },
  5105. "require": {
  5106. "illuminate/support": "~5.4",
  5107. "illuminate/validation": "~5.4",
  5108. "php": ">=5.4.0"
  5109. },
  5110. "type": "library",
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5114. }
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "authors": [
  5118. {
  5119. "name": "Anderson Andrade",
  5120. "email": "contato@andersonandra.de"
  5121. }
  5122. ],
  5123. "description": "Laravel Validation Service",
  5124. "keywords": [
  5125. "laravel",
  5126. "service",
  5127. "validation"
  5128. ],
  5129. "time": "2017-08-28T23:28:32+00:00"
  5130. },
  5131. {
  5132. "name": "psr/cache",
  5133. "version": "1.0.1",
  5134. "source": {
  5135. "type": "git",
  5136. "url": "https://github.com/php-fig/cache.git",
  5137. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5138. },
  5139. "dist": {
  5140. "type": "zip",
  5141. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5142. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5143. "shasum": "",
  5144. "mirrors": [
  5145. {
  5146. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5147. "preferred": true
  5148. }
  5149. ]
  5150. },
  5151. "require": {
  5152. "php": ">=5.3.0"
  5153. },
  5154. "type": "library",
  5155. "extra": {
  5156. "branch-alias": {
  5157. "dev-master": "1.0.x-dev"
  5158. }
  5159. },
  5160. "autoload": {
  5161. "psr-4": {
  5162. "Psr\\Cache\\": "src/"
  5163. }
  5164. },
  5165. "notification-url": "https://packagist.org/downloads/",
  5166. "license": [
  5167. "MIT"
  5168. ],
  5169. "authors": [
  5170. {
  5171. "name": "PHP-FIG",
  5172. "homepage": "http://www.php-fig.org/"
  5173. }
  5174. ],
  5175. "description": "Common interface for caching libraries",
  5176. "keywords": [
  5177. "cache",
  5178. "psr",
  5179. "psr-6"
  5180. ],
  5181. "time": "2016-08-06T20:24:11+00:00"
  5182. },
  5183. {
  5184. "name": "psr/container",
  5185. "version": "1.0.0",
  5186. "source": {
  5187. "type": "git",
  5188. "url": "https://github.com/php-fig/container.git",
  5189. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  5190. },
  5191. "dist": {
  5192. "type": "zip",
  5193. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5194. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5195. "shasum": "",
  5196. "mirrors": [
  5197. {
  5198. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5199. "preferred": true
  5200. }
  5201. ]
  5202. },
  5203. "require": {
  5204. "php": ">=5.3.0"
  5205. },
  5206. "type": "library",
  5207. "extra": {
  5208. "branch-alias": {
  5209. "dev-master": "1.0.x-dev"
  5210. }
  5211. },
  5212. "autoload": {
  5213. "psr-4": {
  5214. "Psr\\Container\\": "src/"
  5215. }
  5216. },
  5217. "notification-url": "https://packagist.org/downloads/",
  5218. "license": [
  5219. "MIT"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "PHP-FIG",
  5224. "homepage": "http://www.php-fig.org/"
  5225. }
  5226. ],
  5227. "description": "Common Container Interface (PHP FIG PSR-11)",
  5228. "homepage": "https://github.com/php-fig/container",
  5229. "keywords": [
  5230. "PSR-11",
  5231. "container",
  5232. "container-interface",
  5233. "container-interop",
  5234. "psr"
  5235. ],
  5236. "time": "2017-02-14T16:28:37+00:00"
  5237. },
  5238. {
  5239. "name": "psr/http-message",
  5240. "version": "1.0.1",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/php-fig/http-message.git",
  5244. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5249. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5250. "shasum": "",
  5251. "mirrors": [
  5252. {
  5253. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5254. "preferred": true
  5255. }
  5256. ]
  5257. },
  5258. "require": {
  5259. "php": ">=5.3.0"
  5260. },
  5261. "type": "library",
  5262. "extra": {
  5263. "branch-alias": {
  5264. "dev-master": "1.0.x-dev"
  5265. }
  5266. },
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Psr\\Http\\Message\\": "src/"
  5270. }
  5271. },
  5272. "notification-url": "https://packagist.org/downloads/",
  5273. "license": [
  5274. "MIT"
  5275. ],
  5276. "authors": [
  5277. {
  5278. "name": "PHP-FIG",
  5279. "homepage": "http://www.php-fig.org/"
  5280. }
  5281. ],
  5282. "description": "Common interface for HTTP messages",
  5283. "homepage": "https://github.com/php-fig/http-message",
  5284. "keywords": [
  5285. "http",
  5286. "http-message",
  5287. "psr",
  5288. "psr-7",
  5289. "request",
  5290. "response"
  5291. ],
  5292. "time": "2016-08-06T14:39:51+00:00"
  5293. },
  5294. {
  5295. "name": "psr/log",
  5296. "version": "1.1.0",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/php-fig/log.git",
  5300. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  5305. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  5306. "shasum": "",
  5307. "mirrors": [
  5308. {
  5309. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5310. "preferred": true
  5311. }
  5312. ]
  5313. },
  5314. "require": {
  5315. "php": ">=5.3.0"
  5316. },
  5317. "type": "library",
  5318. "extra": {
  5319. "branch-alias": {
  5320. "dev-master": "1.0.x-dev"
  5321. }
  5322. },
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Psr\\Log\\": "Psr/Log/"
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "PHP-FIG",
  5335. "homepage": "http://www.php-fig.org/"
  5336. }
  5337. ],
  5338. "description": "Common interface for logging libraries",
  5339. "homepage": "https://github.com/php-fig/log",
  5340. "keywords": [
  5341. "log",
  5342. "psr",
  5343. "psr-3"
  5344. ],
  5345. "time": "2018-11-20T15:27:04+00:00"
  5346. },
  5347. {
  5348. "name": "psr/simple-cache",
  5349. "version": "1.0.1",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/php-fig/simple-cache.git",
  5353. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5358. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "php": ">=5.3.0"
  5369. },
  5370. "type": "library",
  5371. "extra": {
  5372. "branch-alias": {
  5373. "dev-master": "1.0.x-dev"
  5374. }
  5375. },
  5376. "autoload": {
  5377. "psr-4": {
  5378. "Psr\\SimpleCache\\": "src/"
  5379. }
  5380. },
  5381. "notification-url": "https://packagist.org/downloads/",
  5382. "license": [
  5383. "MIT"
  5384. ],
  5385. "authors": [
  5386. {
  5387. "name": "PHP-FIG",
  5388. "homepage": "http://www.php-fig.org/"
  5389. }
  5390. ],
  5391. "description": "Common interfaces for simple caching",
  5392. "keywords": [
  5393. "cache",
  5394. "caching",
  5395. "psr",
  5396. "psr-16",
  5397. "simple-cache"
  5398. ],
  5399. "time": "2017-10-23T01:57:42+00:00"
  5400. },
  5401. {
  5402. "name": "psy/psysh",
  5403. "version": "v0.9.9",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/bobthecow/psysh.git",
  5407. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  5412. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  5413. "shasum": "",
  5414. "mirrors": [
  5415. {
  5416. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5417. "preferred": true
  5418. }
  5419. ]
  5420. },
  5421. "require": {
  5422. "dnoegel/php-xdg-base-dir": "0.1",
  5423. "ext-json": "*",
  5424. "ext-tokenizer": "*",
  5425. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5426. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  5427. "php": ">=5.4.0",
  5428. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  5429. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  5430. },
  5431. "require-dev": {
  5432. "bamarni/composer-bin-plugin": "^1.2",
  5433. "hoa/console": "~2.15|~3.16",
  5434. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  5435. },
  5436. "suggest": {
  5437. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5438. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5439. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5440. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5441. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5442. },
  5443. "bin": [
  5444. "bin/psysh"
  5445. ],
  5446. "type": "library",
  5447. "extra": {
  5448. "branch-alias": {
  5449. "dev-develop": "0.9.x-dev"
  5450. }
  5451. },
  5452. "autoload": {
  5453. "files": [
  5454. "src/functions.php"
  5455. ],
  5456. "psr-4": {
  5457. "Psy\\": "src/"
  5458. }
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "MIT"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Justin Hileman",
  5467. "email": "justin@justinhileman.info",
  5468. "homepage": "http://justinhileman.com"
  5469. }
  5470. ],
  5471. "description": "An interactive shell for modern PHP.",
  5472. "homepage": "http://psysh.org",
  5473. "keywords": [
  5474. "REPL",
  5475. "console",
  5476. "interactive",
  5477. "shell"
  5478. ],
  5479. "time": "2018-10-13T15:16:03+00:00"
  5480. },
  5481. {
  5482. "name": "qiniu/php-sdk",
  5483. "version": "v7.2.7",
  5484. "source": {
  5485. "type": "git",
  5486. "url": "https://github.com/qiniu/php-sdk.git",
  5487. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6"
  5488. },
  5489. "dist": {
  5490. "type": "zip",
  5491. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  5492. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  5493. "shasum": "",
  5494. "mirrors": [
  5495. {
  5496. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5497. "preferred": true
  5498. }
  5499. ]
  5500. },
  5501. "require": {
  5502. "php": ">=5.3.3"
  5503. },
  5504. "require-dev": {
  5505. "phpunit/phpunit": "~4.0",
  5506. "squizlabs/php_codesniffer": "~2.3"
  5507. },
  5508. "type": "library",
  5509. "autoload": {
  5510. "psr-4": {
  5511. "Qiniu\\": "src/Qiniu"
  5512. },
  5513. "files": [
  5514. "src/Qiniu/functions.php"
  5515. ]
  5516. },
  5517. "notification-url": "https://packagist.org/downloads/",
  5518. "license": [
  5519. "MIT"
  5520. ],
  5521. "authors": [
  5522. {
  5523. "name": "Qiniu",
  5524. "email": "sdk@qiniu.com",
  5525. "homepage": "http://www.qiniu.com"
  5526. }
  5527. ],
  5528. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  5529. "homepage": "http://developer.qiniu.com/",
  5530. "keywords": [
  5531. "cloud",
  5532. "qiniu",
  5533. "sdk",
  5534. "storage"
  5535. ],
  5536. "time": "2018-11-06T13:34:32+00:00"
  5537. },
  5538. {
  5539. "name": "ramsey/uuid",
  5540. "version": "3.8.0",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/ramsey/uuid.git",
  5544. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  5549. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  5550. "shasum": "",
  5551. "mirrors": [
  5552. {
  5553. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5554. "preferred": true
  5555. }
  5556. ]
  5557. },
  5558. "require": {
  5559. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  5560. "php": "^5.4 || ^7.0",
  5561. "symfony/polyfill-ctype": "^1.8"
  5562. },
  5563. "replace": {
  5564. "rhumsaa/uuid": "self.version"
  5565. },
  5566. "require-dev": {
  5567. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  5568. "doctrine/annotations": "~1.2.0",
  5569. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  5570. "ircmaxell/random-lib": "^1.1",
  5571. "jakub-onderka/php-parallel-lint": "^0.9.0",
  5572. "mockery/mockery": "^0.9.9",
  5573. "moontoast/math": "^1.1",
  5574. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  5575. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  5576. "squizlabs/php_codesniffer": "^2.3"
  5577. },
  5578. "suggest": {
  5579. "ext-ctype": "Provides support for PHP Ctype functions",
  5580. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  5581. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  5582. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5583. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  5584. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  5585. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5586. },
  5587. "type": "library",
  5588. "extra": {
  5589. "branch-alias": {
  5590. "dev-master": "3.x-dev"
  5591. }
  5592. },
  5593. "autoload": {
  5594. "psr-4": {
  5595. "Ramsey\\Uuid\\": "src/"
  5596. }
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "MIT"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Marijn Huizendveld",
  5605. "email": "marijn.huizendveld@gmail.com"
  5606. },
  5607. {
  5608. "name": "Thibaud Fabre",
  5609. "email": "thibaud@aztech.io"
  5610. },
  5611. {
  5612. "name": "Ben Ramsey",
  5613. "email": "ben@benramsey.com",
  5614. "homepage": "https://benramsey.com"
  5615. }
  5616. ],
  5617. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  5618. "homepage": "https://github.com/ramsey/uuid",
  5619. "keywords": [
  5620. "guid",
  5621. "identifier",
  5622. "uuid"
  5623. ],
  5624. "time": "2018-07-19T23:38:55+00:00"
  5625. },
  5626. {
  5627. "name": "simplesoftwareio/simple-qrcode",
  5628. "version": "1.5.1",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  5632. "reference": "0d8fbf73f7adc166ec5aabbf898b7327f6c69600"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/0d8fbf73f7adc166ec5aabbf898b7327f6c69600",
  5637. "reference": "0d8fbf73f7adc166ec5aabbf898b7327f6c69600",
  5638. "shasum": "",
  5639. "mirrors": [
  5640. {
  5641. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5642. "preferred": true
  5643. }
  5644. ]
  5645. },
  5646. "require": {
  5647. "bacon/bacon-qr-code": "1.0.*",
  5648. "ext-gd": "*",
  5649. "illuminate/support": ">=4.2.0",
  5650. "php": ">=5.4.0"
  5651. },
  5652. "require-dev": {
  5653. "mockery/mockery": "0.9.*",
  5654. "phpunit/phpunit": "~5"
  5655. },
  5656. "type": "library",
  5657. "autoload": {
  5658. "psr-0": {
  5659. "SimpleSoftwareIO\\QrCode\\": "src"
  5660. }
  5661. },
  5662. "notification-url": "https://packagist.org/downloads/",
  5663. "license": [
  5664. "MIT"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "Simple Software LLC",
  5669. "email": "support@simplesoftware.io"
  5670. }
  5671. ],
  5672. "description": "Simple QrCode is a QR code generator made for Laravel.",
  5673. "homepage": "http://www.simplesoftware.io",
  5674. "keywords": [
  5675. "Simple",
  5676. "generator",
  5677. "laravel",
  5678. "qrcode",
  5679. "wrapper"
  5680. ],
  5681. "time": "2016-12-06T01:39:52+00:00"
  5682. },
  5683. {
  5684. "name": "spatie/db-dumper",
  5685. "version": "2.11.1",
  5686. "source": {
  5687. "type": "git",
  5688. "url": "https://github.com/spatie/db-dumper.git",
  5689. "reference": "858ea38e341e2e5f74a5b59cc8184c5c7e94b50d"
  5690. },
  5691. "dist": {
  5692. "type": "zip",
  5693. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/858ea38e341e2e5f74a5b59cc8184c5c7e94b50d",
  5694. "reference": "858ea38e341e2e5f74a5b59cc8184c5c7e94b50d",
  5695. "shasum": "",
  5696. "mirrors": [
  5697. {
  5698. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5699. "preferred": true
  5700. }
  5701. ]
  5702. },
  5703. "require": {
  5704. "php": "^7.0",
  5705. "symfony/process": "^3.0|^4.0"
  5706. },
  5707. "require-dev": {
  5708. "phpunit/phpunit": "^6.0"
  5709. },
  5710. "type": "library",
  5711. "autoload": {
  5712. "psr-4": {
  5713. "Spatie\\DbDumper\\": "src"
  5714. }
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Freek Van der Herten",
  5723. "email": "freek@spatie.be",
  5724. "homepage": "https://spatie.be",
  5725. "role": "Developer"
  5726. }
  5727. ],
  5728. "description": "Dump databases",
  5729. "homepage": "https://github.com/spatie/db-dumper",
  5730. "keywords": [
  5731. "database",
  5732. "db-dumper",
  5733. "dump",
  5734. "mysqldump",
  5735. "spatie"
  5736. ],
  5737. "time": "2018-09-27T06:30:34+00:00"
  5738. },
  5739. {
  5740. "name": "spatie/laravel-backup",
  5741. "version": "5.11.3",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://github.com/spatie/laravel-backup.git",
  5745. "reference": "ff06262cfa2fa1104f727e758fc4111a6f7413da"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/ff06262cfa2fa1104f727e758fc4111a6f7413da",
  5750. "reference": "ff06262cfa2fa1104f727e758fc4111a6f7413da",
  5751. "shasum": "",
  5752. "mirrors": [
  5753. {
  5754. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5755. "preferred": true
  5756. }
  5757. ]
  5758. },
  5759. "require": {
  5760. "laravel/framework": "~5.5.0|~5.6.0|~5.7.0",
  5761. "league/flysystem": "^1.0.27",
  5762. "php": "^7.1",
  5763. "spatie/db-dumper": "^2.11.1",
  5764. "spatie/temporary-directory": "^1.1",
  5765. "symfony/finder": "^3.3|^4.0"
  5766. },
  5767. "require-dev": {
  5768. "mockery/mockery": "^1.0",
  5769. "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
  5770. "phpunit/phpunit": "^7.3"
  5771. },
  5772. "suggest": {
  5773. "guzzlehttp/guzzle": "Allows notifications to be sent via Slack"
  5774. },
  5775. "type": "library",
  5776. "extra": {
  5777. "laravel": {
  5778. "providers": [
  5779. "Spatie\\Backup\\BackupServiceProvider"
  5780. ]
  5781. }
  5782. },
  5783. "autoload": {
  5784. "psr-4": {
  5785. "Spatie\\Backup\\": "src"
  5786. },
  5787. "files": [
  5788. "src/Helpers/functions.php"
  5789. ]
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "Freek Van der Herten",
  5798. "email": "freek@spatie.be",
  5799. "homepage": "https://spatie.be",
  5800. "role": "Developer"
  5801. }
  5802. ],
  5803. "description": "A Laravel 5 package to backup your application",
  5804. "homepage": "https://github.com/spatie/laravel-backup",
  5805. "keywords": [
  5806. "backup",
  5807. "database",
  5808. "laravel-backup",
  5809. "spatie"
  5810. ],
  5811. "time": "2018-11-05T13:09:53+00:00"
  5812. },
  5813. {
  5814. "name": "spatie/temporary-directory",
  5815. "version": "1.1.4",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/spatie/temporary-directory.git",
  5819. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  5824. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  5825. "shasum": "",
  5826. "mirrors": [
  5827. {
  5828. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5829. "preferred": true
  5830. }
  5831. ]
  5832. },
  5833. "require": {
  5834. "php": "^7.0"
  5835. },
  5836. "require-dev": {
  5837. "phpunit/phpunit": "^6.3"
  5838. },
  5839. "type": "library",
  5840. "autoload": {
  5841. "psr-4": {
  5842. "Spatie\\TemporaryDirectory\\": "src"
  5843. }
  5844. },
  5845. "notification-url": "https://packagist.org/downloads/",
  5846. "license": [
  5847. "MIT"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Alex Vanderbist",
  5852. "email": "alex@spatie.be",
  5853. "homepage": "https://spatie.be",
  5854. "role": "Developer"
  5855. }
  5856. ],
  5857. "description": "Easily create, use and destroy temporary directories",
  5858. "homepage": "https://github.com/spatie/temporary-directory",
  5859. "keywords": [
  5860. "spatie",
  5861. "temporary-directory"
  5862. ],
  5863. "time": "2018-04-12T09:34:43+00:00"
  5864. },
  5865. {
  5866. "name": "swiftmailer/swiftmailer",
  5867. "version": "v6.1.3",
  5868. "source": {
  5869. "type": "git",
  5870. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5871. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
  5872. },
  5873. "dist": {
  5874. "type": "zip",
  5875. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  5876. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  5877. "shasum": "",
  5878. "mirrors": [
  5879. {
  5880. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5881. "preferred": true
  5882. }
  5883. ]
  5884. },
  5885. "require": {
  5886. "egulias/email-validator": "~2.0",
  5887. "php": ">=7.0.0"
  5888. },
  5889. "require-dev": {
  5890. "mockery/mockery": "~0.9.1",
  5891. "symfony/phpunit-bridge": "~3.3@dev"
  5892. },
  5893. "suggest": {
  5894. "ext-intl": "Needed to support internationalized email addresses",
  5895. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-master": "6.1-dev"
  5901. }
  5902. },
  5903. "autoload": {
  5904. "files": [
  5905. "lib/swift_required.php"
  5906. ]
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Chris Corbyn"
  5915. },
  5916. {
  5917. "name": "Fabien Potencier",
  5918. "email": "fabien@symfony.com"
  5919. }
  5920. ],
  5921. "description": "Swiftmailer, free feature-rich PHP mailer",
  5922. "homepage": "https://swiftmailer.symfony.com",
  5923. "keywords": [
  5924. "email",
  5925. "mail",
  5926. "mailer"
  5927. ],
  5928. "time": "2018-09-11T07:12:52+00:00"
  5929. },
  5930. {
  5931. "name": "symfony/cache",
  5932. "version": "v4.1.8",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://github.com/symfony/cache.git",
  5936. "reference": "edd24c37db22520e23fa182afeed7816722ee4f4"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://api.github.com/repos/symfony/cache/zipball/edd24c37db22520e23fa182afeed7816722ee4f4",
  5941. "reference": "edd24c37db22520e23fa182afeed7816722ee4f4",
  5942. "shasum": "",
  5943. "mirrors": [
  5944. {
  5945. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5946. "preferred": true
  5947. }
  5948. ]
  5949. },
  5950. "require": {
  5951. "php": "^7.1.3",
  5952. "psr/cache": "~1.0",
  5953. "psr/log": "~1.0",
  5954. "psr/simple-cache": "^1.0"
  5955. },
  5956. "conflict": {
  5957. "symfony/var-dumper": "<3.4"
  5958. },
  5959. "provide": {
  5960. "psr/cache-implementation": "1.0",
  5961. "psr/simple-cache-implementation": "1.0"
  5962. },
  5963. "require-dev": {
  5964. "cache/integration-tests": "dev-master",
  5965. "doctrine/cache": "~1.6",
  5966. "doctrine/dbal": "~2.4",
  5967. "predis/predis": "~1.0"
  5968. },
  5969. "type": "library",
  5970. "extra": {
  5971. "branch-alias": {
  5972. "dev-master": "4.1-dev"
  5973. }
  5974. },
  5975. "autoload": {
  5976. "psr-4": {
  5977. "Symfony\\Component\\Cache\\": ""
  5978. },
  5979. "exclude-from-classmap": [
  5980. "/Tests/"
  5981. ]
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "MIT"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Nicolas Grekas",
  5990. "email": "p@tchwork.com"
  5991. },
  5992. {
  5993. "name": "Symfony Community",
  5994. "homepage": "https://symfony.com/contributors"
  5995. }
  5996. ],
  5997. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  5998. "homepage": "https://symfony.com",
  5999. "keywords": [
  6000. "caching",
  6001. "psr6"
  6002. ],
  6003. "time": "2018-11-20T16:14:00+00:00"
  6004. },
  6005. {
  6006. "name": "symfony/console",
  6007. "version": "v3.4.19",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/symfony/console.git",
  6011. "reference": "8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/symfony/console/zipball/8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb",
  6016. "reference": "8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb",
  6017. "shasum": "",
  6018. "mirrors": [
  6019. {
  6020. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6021. "preferred": true
  6022. }
  6023. ]
  6024. },
  6025. "require": {
  6026. "php": "^5.5.9|>=7.0.8",
  6027. "symfony/debug": "~2.8|~3.0|~4.0",
  6028. "symfony/polyfill-mbstring": "~1.0"
  6029. },
  6030. "conflict": {
  6031. "symfony/dependency-injection": "<3.4",
  6032. "symfony/process": "<3.3"
  6033. },
  6034. "require-dev": {
  6035. "psr/log": "~1.0",
  6036. "symfony/config": "~3.3|~4.0",
  6037. "symfony/dependency-injection": "~3.4|~4.0",
  6038. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  6039. "symfony/lock": "~3.4|~4.0",
  6040. "symfony/process": "~3.3|~4.0"
  6041. },
  6042. "suggest": {
  6043. "psr/log-implementation": "For using the console logger",
  6044. "symfony/event-dispatcher": "",
  6045. "symfony/lock": "",
  6046. "symfony/process": ""
  6047. },
  6048. "type": "library",
  6049. "extra": {
  6050. "branch-alias": {
  6051. "dev-master": "3.4-dev"
  6052. }
  6053. },
  6054. "autoload": {
  6055. "psr-4": {
  6056. "Symfony\\Component\\Console\\": ""
  6057. },
  6058. "exclude-from-classmap": [
  6059. "/Tests/"
  6060. ]
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "MIT"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Fabien Potencier",
  6069. "email": "fabien@symfony.com"
  6070. },
  6071. {
  6072. "name": "Symfony Community",
  6073. "homepage": "https://symfony.com/contributors"
  6074. }
  6075. ],
  6076. "description": "Symfony Console Component",
  6077. "homepage": "https://symfony.com",
  6078. "time": "2018-11-26T12:48:07+00:00"
  6079. },
  6080. {
  6081. "name": "symfony/css-selector",
  6082. "version": "v4.1.8",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/symfony/css-selector.git",
  6086. "reference": "9e4dc57949853315561f0cd5eb84d0707465502a"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9e4dc57949853315561f0cd5eb84d0707465502a",
  6091. "reference": "9e4dc57949853315561f0cd5eb84d0707465502a",
  6092. "shasum": "",
  6093. "mirrors": [
  6094. {
  6095. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6096. "preferred": true
  6097. }
  6098. ]
  6099. },
  6100. "require": {
  6101. "php": "^7.1.3"
  6102. },
  6103. "type": "library",
  6104. "extra": {
  6105. "branch-alias": {
  6106. "dev-master": "4.1-dev"
  6107. }
  6108. },
  6109. "autoload": {
  6110. "psr-4": {
  6111. "Symfony\\Component\\CssSelector\\": ""
  6112. },
  6113. "exclude-from-classmap": [
  6114. "/Tests/"
  6115. ]
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Jean-François Simon",
  6124. "email": "jeanfrancois.simon@sensiolabs.com"
  6125. },
  6126. {
  6127. "name": "Fabien Potencier",
  6128. "email": "fabien@symfony.com"
  6129. },
  6130. {
  6131. "name": "Symfony Community",
  6132. "homepage": "https://symfony.com/contributors"
  6133. }
  6134. ],
  6135. "description": "Symfony CssSelector Component",
  6136. "homepage": "https://symfony.com",
  6137. "time": "2018-11-11T19:51:29+00:00"
  6138. },
  6139. {
  6140. "name": "symfony/debug",
  6141. "version": "v3.4.19",
  6142. "source": {
  6143. "type": "git",
  6144. "url": "https://github.com/symfony/debug.git",
  6145. "reference": "2016b3eec2e49c127dd02d0ef44a35c53181560d"
  6146. },
  6147. "dist": {
  6148. "type": "zip",
  6149. "url": "https://api.github.com/repos/symfony/debug/zipball/2016b3eec2e49c127dd02d0ef44a35c53181560d",
  6150. "reference": "2016b3eec2e49c127dd02d0ef44a35c53181560d",
  6151. "shasum": "",
  6152. "mirrors": [
  6153. {
  6154. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6155. "preferred": true
  6156. }
  6157. ]
  6158. },
  6159. "require": {
  6160. "php": "^5.5.9|>=7.0.8",
  6161. "psr/log": "~1.0"
  6162. },
  6163. "conflict": {
  6164. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  6165. },
  6166. "require-dev": {
  6167. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  6168. },
  6169. "type": "library",
  6170. "extra": {
  6171. "branch-alias": {
  6172. "dev-master": "3.4-dev"
  6173. }
  6174. },
  6175. "autoload": {
  6176. "psr-4": {
  6177. "Symfony\\Component\\Debug\\": ""
  6178. },
  6179. "exclude-from-classmap": [
  6180. "/Tests/"
  6181. ]
  6182. },
  6183. "notification-url": "https://packagist.org/downloads/",
  6184. "license": [
  6185. "MIT"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Fabien Potencier",
  6190. "email": "fabien@symfony.com"
  6191. },
  6192. {
  6193. "name": "Symfony Community",
  6194. "homepage": "https://symfony.com/contributors"
  6195. }
  6196. ],
  6197. "description": "Symfony Debug Component",
  6198. "homepage": "https://symfony.com",
  6199. "time": "2018-11-11T19:48:54+00:00"
  6200. },
  6201. {
  6202. "name": "symfony/dom-crawler",
  6203. "version": "v3.4.19",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/symfony/dom-crawler.git",
  6207. "reference": "b6e94248eb4f8602a5825301b0bea1eb8cc82cfa"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b6e94248eb4f8602a5825301b0bea1eb8cc82cfa",
  6212. "reference": "b6e94248eb4f8602a5825301b0bea1eb8cc82cfa",
  6213. "shasum": "",
  6214. "mirrors": [
  6215. {
  6216. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6217. "preferred": true
  6218. }
  6219. ]
  6220. },
  6221. "require": {
  6222. "php": "^5.5.9|>=7.0.8",
  6223. "symfony/polyfill-ctype": "~1.8",
  6224. "symfony/polyfill-mbstring": "~1.0"
  6225. },
  6226. "require-dev": {
  6227. "symfony/css-selector": "~2.8|~3.0|~4.0"
  6228. },
  6229. "suggest": {
  6230. "symfony/css-selector": ""
  6231. },
  6232. "type": "library",
  6233. "extra": {
  6234. "branch-alias": {
  6235. "dev-master": "3.4-dev"
  6236. }
  6237. },
  6238. "autoload": {
  6239. "psr-4": {
  6240. "Symfony\\Component\\DomCrawler\\": ""
  6241. },
  6242. "exclude-from-classmap": [
  6243. "/Tests/"
  6244. ]
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Fabien Potencier",
  6253. "email": "fabien@symfony.com"
  6254. },
  6255. {
  6256. "name": "Symfony Community",
  6257. "homepage": "https://symfony.com/contributors"
  6258. }
  6259. ],
  6260. "description": "Symfony DomCrawler Component",
  6261. "homepage": "https://symfony.com",
  6262. "time": "2018-11-26T10:17:44+00:00"
  6263. },
  6264. {
  6265. "name": "symfony/event-dispatcher",
  6266. "version": "v4.1.8",
  6267. "source": {
  6268. "type": "git",
  6269. "url": "https://github.com/symfony/event-dispatcher.git",
  6270. "reference": "8b93ce06506d58485893e2da366767dcc5390862"
  6271. },
  6272. "dist": {
  6273. "type": "zip",
  6274. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8b93ce06506d58485893e2da366767dcc5390862",
  6275. "reference": "8b93ce06506d58485893e2da366767dcc5390862",
  6276. "shasum": "",
  6277. "mirrors": [
  6278. {
  6279. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6280. "preferred": true
  6281. }
  6282. ]
  6283. },
  6284. "require": {
  6285. "php": "^7.1.3"
  6286. },
  6287. "conflict": {
  6288. "symfony/dependency-injection": "<3.4"
  6289. },
  6290. "require-dev": {
  6291. "psr/log": "~1.0",
  6292. "symfony/config": "~3.4|~4.0",
  6293. "symfony/dependency-injection": "~3.4|~4.0",
  6294. "symfony/expression-language": "~3.4|~4.0",
  6295. "symfony/stopwatch": "~3.4|~4.0"
  6296. },
  6297. "suggest": {
  6298. "symfony/dependency-injection": "",
  6299. "symfony/http-kernel": ""
  6300. },
  6301. "type": "library",
  6302. "extra": {
  6303. "branch-alias": {
  6304. "dev-master": "4.1-dev"
  6305. }
  6306. },
  6307. "autoload": {
  6308. "psr-4": {
  6309. "Symfony\\Component\\EventDispatcher\\": ""
  6310. },
  6311. "exclude-from-classmap": [
  6312. "/Tests/"
  6313. ]
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Fabien Potencier",
  6322. "email": "fabien@symfony.com"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony EventDispatcher Component",
  6330. "homepage": "https://symfony.com",
  6331. "time": "2018-11-26T10:26:29+00:00"
  6332. },
  6333. {
  6334. "name": "symfony/finder",
  6335. "version": "v3.4.19",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/symfony/finder.git",
  6339. "reference": "6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/symfony/finder/zipball/6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442",
  6344. "reference": "6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442",
  6345. "shasum": "",
  6346. "mirrors": [
  6347. {
  6348. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6349. "preferred": true
  6350. }
  6351. ]
  6352. },
  6353. "require": {
  6354. "php": "^5.5.9|>=7.0.8"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-master": "3.4-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "psr-4": {
  6364. "Symfony\\Component\\Finder\\": ""
  6365. },
  6366. "exclude-from-classmap": [
  6367. "/Tests/"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Fabien Potencier",
  6377. "email": "fabien@symfony.com"
  6378. },
  6379. {
  6380. "name": "Symfony Community",
  6381. "homepage": "https://symfony.com/contributors"
  6382. }
  6383. ],
  6384. "description": "Symfony Finder Component",
  6385. "homepage": "https://symfony.com",
  6386. "time": "2018-11-11T19:48:54+00:00"
  6387. },
  6388. {
  6389. "name": "symfony/http-foundation",
  6390. "version": "v3.4.19",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/symfony/http-foundation.git",
  6394. "reference": "ea61dd57c4399b0b2a4162e1820cd9d0783acd38"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ea61dd57c4399b0b2a4162e1820cd9d0783acd38",
  6399. "reference": "ea61dd57c4399b0b2a4162e1820cd9d0783acd38",
  6400. "shasum": "",
  6401. "mirrors": [
  6402. {
  6403. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6404. "preferred": true
  6405. }
  6406. ]
  6407. },
  6408. "require": {
  6409. "php": "^5.5.9|>=7.0.8",
  6410. "symfony/polyfill-mbstring": "~1.1",
  6411. "symfony/polyfill-php70": "~1.6"
  6412. },
  6413. "require-dev": {
  6414. "symfony/expression-language": "~2.8|~3.0|~4.0"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-master": "3.4-dev"
  6420. }
  6421. },
  6422. "autoload": {
  6423. "psr-4": {
  6424. "Symfony\\Component\\HttpFoundation\\": ""
  6425. },
  6426. "exclude-from-classmap": [
  6427. "/Tests/"
  6428. ]
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "license": [
  6432. "MIT"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "Fabien Potencier",
  6437. "email": "fabien@symfony.com"
  6438. },
  6439. {
  6440. "name": "Symfony Community",
  6441. "homepage": "https://symfony.com/contributors"
  6442. }
  6443. ],
  6444. "description": "Symfony HttpFoundation Component",
  6445. "homepage": "https://symfony.com",
  6446. "time": "2018-11-26T10:17:44+00:00"
  6447. },
  6448. {
  6449. "name": "symfony/http-kernel",
  6450. "version": "v3.4.19",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/symfony/http-kernel.git",
  6454. "reference": "78528325d90e5ad54a6e9eca750fe176932bc4fa"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/78528325d90e5ad54a6e9eca750fe176932bc4fa",
  6459. "reference": "78528325d90e5ad54a6e9eca750fe176932bc4fa",
  6460. "shasum": "",
  6461. "mirrors": [
  6462. {
  6463. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6464. "preferred": true
  6465. }
  6466. ]
  6467. },
  6468. "require": {
  6469. "php": "^5.5.9|>=7.0.8",
  6470. "psr/log": "~1.0",
  6471. "symfony/debug": "~2.8|~3.0|~4.0",
  6472. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  6473. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  6474. "symfony/polyfill-ctype": "~1.8"
  6475. },
  6476. "conflict": {
  6477. "symfony/config": "<2.8",
  6478. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  6479. "symfony/var-dumper": "<3.3",
  6480. "twig/twig": "<1.34|<2.4,>=2"
  6481. },
  6482. "provide": {
  6483. "psr/log-implementation": "1.0"
  6484. },
  6485. "require-dev": {
  6486. "psr/cache": "~1.0",
  6487. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  6488. "symfony/class-loader": "~2.8|~3.0",
  6489. "symfony/config": "~2.8|~3.0|~4.0",
  6490. "symfony/console": "~2.8|~3.0|~4.0",
  6491. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6492. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  6493. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  6494. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6495. "symfony/finder": "~2.8|~3.0|~4.0",
  6496. "symfony/process": "~2.8|~3.0|~4.0",
  6497. "symfony/routing": "~3.4|~4.0",
  6498. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  6499. "symfony/templating": "~2.8|~3.0|~4.0",
  6500. "symfony/translation": "~2.8|~3.0|~4.0",
  6501. "symfony/var-dumper": "~3.3|~4.0"
  6502. },
  6503. "suggest": {
  6504. "symfony/browser-kit": "",
  6505. "symfony/config": "",
  6506. "symfony/console": "",
  6507. "symfony/dependency-injection": "",
  6508. "symfony/finder": "",
  6509. "symfony/var-dumper": ""
  6510. },
  6511. "type": "library",
  6512. "extra": {
  6513. "branch-alias": {
  6514. "dev-master": "3.4-dev"
  6515. }
  6516. },
  6517. "autoload": {
  6518. "psr-4": {
  6519. "Symfony\\Component\\HttpKernel\\": ""
  6520. },
  6521. "exclude-from-classmap": [
  6522. "/Tests/"
  6523. ]
  6524. },
  6525. "notification-url": "https://packagist.org/downloads/",
  6526. "license": [
  6527. "MIT"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "Fabien Potencier",
  6532. "email": "fabien@symfony.com"
  6533. },
  6534. {
  6535. "name": "Symfony Community",
  6536. "homepage": "https://symfony.com/contributors"
  6537. }
  6538. ],
  6539. "description": "Symfony HttpKernel Component",
  6540. "homepage": "https://symfony.com",
  6541. "time": "2018-11-26T14:04:48+00:00"
  6542. },
  6543. {
  6544. "name": "symfony/polyfill-ctype",
  6545. "version": "v1.10.0",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/symfony/polyfill-ctype.git",
  6549. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  6554. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  6555. "shasum": "",
  6556. "mirrors": [
  6557. {
  6558. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6559. "preferred": true
  6560. }
  6561. ]
  6562. },
  6563. "require": {
  6564. "php": ">=5.3.3"
  6565. },
  6566. "suggest": {
  6567. "ext-ctype": "For best performance"
  6568. },
  6569. "type": "library",
  6570. "extra": {
  6571. "branch-alias": {
  6572. "dev-master": "1.9-dev"
  6573. }
  6574. },
  6575. "autoload": {
  6576. "psr-4": {
  6577. "Symfony\\Polyfill\\Ctype\\": ""
  6578. },
  6579. "files": [
  6580. "bootstrap.php"
  6581. ]
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Symfony Community",
  6590. "homepage": "https://symfony.com/contributors"
  6591. },
  6592. {
  6593. "name": "Gert de Pagter",
  6594. "email": "BackEndTea@gmail.com"
  6595. }
  6596. ],
  6597. "description": "Symfony polyfill for ctype functions",
  6598. "homepage": "https://symfony.com",
  6599. "keywords": [
  6600. "compatibility",
  6601. "ctype",
  6602. "polyfill",
  6603. "portable"
  6604. ],
  6605. "time": "2018-08-06T14:22:27+00:00"
  6606. },
  6607. {
  6608. "name": "symfony/polyfill-mbstring",
  6609. "version": "v1.10.0",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6613. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  6618. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  6619. "shasum": "",
  6620. "mirrors": [
  6621. {
  6622. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6623. "preferred": true
  6624. }
  6625. ]
  6626. },
  6627. "require": {
  6628. "php": ">=5.3.3"
  6629. },
  6630. "suggest": {
  6631. "ext-mbstring": "For best performance"
  6632. },
  6633. "type": "library",
  6634. "extra": {
  6635. "branch-alias": {
  6636. "dev-master": "1.9-dev"
  6637. }
  6638. },
  6639. "autoload": {
  6640. "psr-4": {
  6641. "Symfony\\Polyfill\\Mbstring\\": ""
  6642. },
  6643. "files": [
  6644. "bootstrap.php"
  6645. ]
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "MIT"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Nicolas Grekas",
  6654. "email": "p@tchwork.com"
  6655. },
  6656. {
  6657. "name": "Symfony Community",
  6658. "homepage": "https://symfony.com/contributors"
  6659. }
  6660. ],
  6661. "description": "Symfony polyfill for the Mbstring extension",
  6662. "homepage": "https://symfony.com",
  6663. "keywords": [
  6664. "compatibility",
  6665. "mbstring",
  6666. "polyfill",
  6667. "portable",
  6668. "shim"
  6669. ],
  6670. "time": "2018-09-21T13:07:52+00:00"
  6671. },
  6672. {
  6673. "name": "symfony/polyfill-php56",
  6674. "version": "v1.10.0",
  6675. "source": {
  6676. "type": "git",
  6677. "url": "https://github.com/symfony/polyfill-php56.git",
  6678. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  6679. },
  6680. "dist": {
  6681. "type": "zip",
  6682. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  6683. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  6684. "shasum": "",
  6685. "mirrors": [
  6686. {
  6687. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6688. "preferred": true
  6689. }
  6690. ]
  6691. },
  6692. "require": {
  6693. "php": ">=5.3.3",
  6694. "symfony/polyfill-util": "~1.0"
  6695. },
  6696. "type": "library",
  6697. "extra": {
  6698. "branch-alias": {
  6699. "dev-master": "1.9-dev"
  6700. }
  6701. },
  6702. "autoload": {
  6703. "psr-4": {
  6704. "Symfony\\Polyfill\\Php56\\": ""
  6705. },
  6706. "files": [
  6707. "bootstrap.php"
  6708. ]
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Nicolas Grekas",
  6717. "email": "p@tchwork.com"
  6718. },
  6719. {
  6720. "name": "Symfony Community",
  6721. "homepage": "https://symfony.com/contributors"
  6722. }
  6723. ],
  6724. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6725. "homepage": "https://symfony.com",
  6726. "keywords": [
  6727. "compatibility",
  6728. "polyfill",
  6729. "portable",
  6730. "shim"
  6731. ],
  6732. "time": "2018-09-21T06:26:08+00:00"
  6733. },
  6734. {
  6735. "name": "symfony/polyfill-php70",
  6736. "version": "v1.10.0",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/symfony/polyfill-php70.git",
  6740. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  6745. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  6746. "shasum": "",
  6747. "mirrors": [
  6748. {
  6749. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6750. "preferred": true
  6751. }
  6752. ]
  6753. },
  6754. "require": {
  6755. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  6756. "php": ">=5.3.3"
  6757. },
  6758. "type": "library",
  6759. "extra": {
  6760. "branch-alias": {
  6761. "dev-master": "1.9-dev"
  6762. }
  6763. },
  6764. "autoload": {
  6765. "psr-4": {
  6766. "Symfony\\Polyfill\\Php70\\": ""
  6767. },
  6768. "files": [
  6769. "bootstrap.php"
  6770. ],
  6771. "classmap": [
  6772. "Resources/stubs"
  6773. ]
  6774. },
  6775. "notification-url": "https://packagist.org/downloads/",
  6776. "license": [
  6777. "MIT"
  6778. ],
  6779. "authors": [
  6780. {
  6781. "name": "Nicolas Grekas",
  6782. "email": "p@tchwork.com"
  6783. },
  6784. {
  6785. "name": "Symfony Community",
  6786. "homepage": "https://symfony.com/contributors"
  6787. }
  6788. ],
  6789. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  6790. "homepage": "https://symfony.com",
  6791. "keywords": [
  6792. "compatibility",
  6793. "polyfill",
  6794. "portable",
  6795. "shim"
  6796. ],
  6797. "time": "2018-09-21T06:26:08+00:00"
  6798. },
  6799. {
  6800. "name": "symfony/polyfill-util",
  6801. "version": "v1.10.0",
  6802. "source": {
  6803. "type": "git",
  6804. "url": "https://github.com/symfony/polyfill-util.git",
  6805. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  6806. },
  6807. "dist": {
  6808. "type": "zip",
  6809. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  6810. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  6811. "shasum": "",
  6812. "mirrors": [
  6813. {
  6814. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6815. "preferred": true
  6816. }
  6817. ]
  6818. },
  6819. "require": {
  6820. "php": ">=5.3.3"
  6821. },
  6822. "type": "library",
  6823. "extra": {
  6824. "branch-alias": {
  6825. "dev-master": "1.9-dev"
  6826. }
  6827. },
  6828. "autoload": {
  6829. "psr-4": {
  6830. "Symfony\\Polyfill\\Util\\": ""
  6831. }
  6832. },
  6833. "notification-url": "https://packagist.org/downloads/",
  6834. "license": [
  6835. "MIT"
  6836. ],
  6837. "authors": [
  6838. {
  6839. "name": "Nicolas Grekas",
  6840. "email": "p@tchwork.com"
  6841. },
  6842. {
  6843. "name": "Symfony Community",
  6844. "homepage": "https://symfony.com/contributors"
  6845. }
  6846. ],
  6847. "description": "Symfony utilities for portability of PHP codes",
  6848. "homepage": "https://symfony.com",
  6849. "keywords": [
  6850. "compat",
  6851. "compatibility",
  6852. "polyfill",
  6853. "shim"
  6854. ],
  6855. "time": "2018-09-30T16:36:12+00:00"
  6856. },
  6857. {
  6858. "name": "symfony/process",
  6859. "version": "v3.4.19",
  6860. "source": {
  6861. "type": "git",
  6862. "url": "https://github.com/symfony/process.git",
  6863. "reference": "abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2"
  6864. },
  6865. "dist": {
  6866. "type": "zip",
  6867. "url": "https://api.github.com/repos/symfony/process/zipball/abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2",
  6868. "reference": "abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2",
  6869. "shasum": "",
  6870. "mirrors": [
  6871. {
  6872. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6873. "preferred": true
  6874. }
  6875. ]
  6876. },
  6877. "require": {
  6878. "php": "^5.5.9|>=7.0.8"
  6879. },
  6880. "type": "library",
  6881. "extra": {
  6882. "branch-alias": {
  6883. "dev-master": "3.4-dev"
  6884. }
  6885. },
  6886. "autoload": {
  6887. "psr-4": {
  6888. "Symfony\\Component\\Process\\": ""
  6889. },
  6890. "exclude-from-classmap": [
  6891. "/Tests/"
  6892. ]
  6893. },
  6894. "notification-url": "https://packagist.org/downloads/",
  6895. "license": [
  6896. "MIT"
  6897. ],
  6898. "authors": [
  6899. {
  6900. "name": "Fabien Potencier",
  6901. "email": "fabien@symfony.com"
  6902. },
  6903. {
  6904. "name": "Symfony Community",
  6905. "homepage": "https://symfony.com/contributors"
  6906. }
  6907. ],
  6908. "description": "Symfony Process Component",
  6909. "homepage": "https://symfony.com",
  6910. "time": "2018-11-20T16:10:26+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/psr-http-message-bridge",
  6914. "version": "v1.1.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6918. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  6923. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  6924. "shasum": "",
  6925. "mirrors": [
  6926. {
  6927. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6928. "preferred": true
  6929. }
  6930. ]
  6931. },
  6932. "require": {
  6933. "php": "^5.3.3 || ^7.0",
  6934. "psr/http-message": "^1.0",
  6935. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  6936. },
  6937. "require-dev": {
  6938. "symfony/phpunit-bridge": "^3.4 || 4.0"
  6939. },
  6940. "suggest": {
  6941. "psr/http-factory-implementation": "To use the PSR-17 factory",
  6942. "psr/http-message-implementation": "To use the HttpFoundation factory",
  6943. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  6944. },
  6945. "type": "symfony-bridge",
  6946. "extra": {
  6947. "branch-alias": {
  6948. "dev-master": "1.1-dev"
  6949. }
  6950. },
  6951. "autoload": {
  6952. "psr-4": {
  6953. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6954. }
  6955. },
  6956. "notification-url": "https://packagist.org/downloads/",
  6957. "license": [
  6958. "MIT"
  6959. ],
  6960. "authors": [
  6961. {
  6962. "name": "Symfony Community",
  6963. "homepage": "http://symfony.com/contributors"
  6964. },
  6965. {
  6966. "name": "Fabien Potencier",
  6967. "email": "fabien@symfony.com"
  6968. }
  6969. ],
  6970. "description": "PSR HTTP message bridge",
  6971. "homepage": "http://symfony.com",
  6972. "keywords": [
  6973. "http",
  6974. "http-message",
  6975. "psr-7"
  6976. ],
  6977. "time": "2018-08-30T16:28:28+00:00"
  6978. },
  6979. {
  6980. "name": "symfony/routing",
  6981. "version": "v3.4.19",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/symfony/routing.git",
  6985. "reference": "86eb1a581279b5e40ca280a4f63a15e37d51d16c"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/symfony/routing/zipball/86eb1a581279b5e40ca280a4f63a15e37d51d16c",
  6990. "reference": "86eb1a581279b5e40ca280a4f63a15e37d51d16c",
  6991. "shasum": "",
  6992. "mirrors": [
  6993. {
  6994. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6995. "preferred": true
  6996. }
  6997. ]
  6998. },
  6999. "require": {
  7000. "php": "^5.5.9|>=7.0.8"
  7001. },
  7002. "conflict": {
  7003. "symfony/config": "<3.3.1",
  7004. "symfony/dependency-injection": "<3.3",
  7005. "symfony/yaml": "<3.4"
  7006. },
  7007. "require-dev": {
  7008. "doctrine/annotations": "~1.0",
  7009. "psr/log": "~1.0",
  7010. "symfony/config": "^3.3.1|~4.0",
  7011. "symfony/dependency-injection": "~3.3|~4.0",
  7012. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7013. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7014. "symfony/yaml": "~3.4|~4.0"
  7015. },
  7016. "suggest": {
  7017. "doctrine/annotations": "For using the annotation loader",
  7018. "symfony/config": "For using the all-in-one router or any loader",
  7019. "symfony/dependency-injection": "For loading routes from a service",
  7020. "symfony/expression-language": "For using expression matching",
  7021. "symfony/http-foundation": "For using a Symfony Request object",
  7022. "symfony/yaml": "For using the YAML loader"
  7023. },
  7024. "type": "library",
  7025. "extra": {
  7026. "branch-alias": {
  7027. "dev-master": "3.4-dev"
  7028. }
  7029. },
  7030. "autoload": {
  7031. "psr-4": {
  7032. "Symfony\\Component\\Routing\\": ""
  7033. },
  7034. "exclude-from-classmap": [
  7035. "/Tests/"
  7036. ]
  7037. },
  7038. "notification-url": "https://packagist.org/downloads/",
  7039. "license": [
  7040. "MIT"
  7041. ],
  7042. "authors": [
  7043. {
  7044. "name": "Fabien Potencier",
  7045. "email": "fabien@symfony.com"
  7046. },
  7047. {
  7048. "name": "Symfony Community",
  7049. "homepage": "https://symfony.com/contributors"
  7050. }
  7051. ],
  7052. "description": "Symfony Routing Component",
  7053. "homepage": "https://symfony.com",
  7054. "keywords": [
  7055. "router",
  7056. "routing",
  7057. "uri",
  7058. "url"
  7059. ],
  7060. "time": "2018-11-26T08:40:22+00:00"
  7061. },
  7062. {
  7063. "name": "symfony/translation",
  7064. "version": "v4.1.8",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/symfony/translation.git",
  7068. "reference": "615e3cf75d00a7d6788316d9631957991ba9c26a"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/symfony/translation/zipball/615e3cf75d00a7d6788316d9631957991ba9c26a",
  7073. "reference": "615e3cf75d00a7d6788316d9631957991ba9c26a",
  7074. "shasum": "",
  7075. "mirrors": [
  7076. {
  7077. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7078. "preferred": true
  7079. }
  7080. ]
  7081. },
  7082. "require": {
  7083. "php": "^7.1.3",
  7084. "symfony/polyfill-mbstring": "~1.0"
  7085. },
  7086. "conflict": {
  7087. "symfony/config": "<3.4",
  7088. "symfony/dependency-injection": "<3.4",
  7089. "symfony/yaml": "<3.4"
  7090. },
  7091. "require-dev": {
  7092. "psr/log": "~1.0",
  7093. "symfony/config": "~3.4|~4.0",
  7094. "symfony/console": "~3.4|~4.0",
  7095. "symfony/dependency-injection": "~3.4|~4.0",
  7096. "symfony/finder": "~2.8|~3.0|~4.0",
  7097. "symfony/intl": "~3.4|~4.0",
  7098. "symfony/yaml": "~3.4|~4.0"
  7099. },
  7100. "suggest": {
  7101. "psr/log-implementation": "To use logging capability in translator",
  7102. "symfony/config": "",
  7103. "symfony/yaml": ""
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "branch-alias": {
  7108. "dev-master": "4.1-dev"
  7109. }
  7110. },
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Symfony\\Component\\Translation\\": ""
  7114. },
  7115. "exclude-from-classmap": [
  7116. "/Tests/"
  7117. ]
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "Fabien Potencier",
  7126. "email": "fabien@symfony.com"
  7127. },
  7128. {
  7129. "name": "Symfony Community",
  7130. "homepage": "https://symfony.com/contributors"
  7131. }
  7132. ],
  7133. "description": "Symfony Translation Component",
  7134. "homepage": "https://symfony.com",
  7135. "time": "2018-11-26T10:26:29+00:00"
  7136. },
  7137. {
  7138. "name": "symfony/var-dumper",
  7139. "version": "v3.4.19",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/symfony/var-dumper.git",
  7143. "reference": "6867713afe6c50ade2f34ed6435563b065a52145"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6867713afe6c50ade2f34ed6435563b065a52145",
  7148. "reference": "6867713afe6c50ade2f34ed6435563b065a52145",
  7149. "shasum": "",
  7150. "mirrors": [
  7151. {
  7152. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7153. "preferred": true
  7154. }
  7155. ]
  7156. },
  7157. "require": {
  7158. "php": "^5.5.9|>=7.0.8",
  7159. "symfony/polyfill-mbstring": "~1.0"
  7160. },
  7161. "conflict": {
  7162. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  7163. },
  7164. "require-dev": {
  7165. "ext-iconv": "*",
  7166. "twig/twig": "~1.34|~2.4"
  7167. },
  7168. "suggest": {
  7169. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7170. "ext-intl": "To show region name in time zone dump",
  7171. "ext-symfony_debug": ""
  7172. },
  7173. "type": "library",
  7174. "extra": {
  7175. "branch-alias": {
  7176. "dev-master": "3.4-dev"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "files": [
  7181. "Resources/functions/dump.php"
  7182. ],
  7183. "psr-4": {
  7184. "Symfony\\Component\\VarDumper\\": ""
  7185. },
  7186. "exclude-from-classmap": [
  7187. "/Tests/"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7205. "homepage": "https://symfony.com",
  7206. "keywords": [
  7207. "debug",
  7208. "dump"
  7209. ],
  7210. "time": "2018-11-20T16:10:26+00:00"
  7211. },
  7212. {
  7213. "name": "tijsverkoyen/css-to-inline-styles",
  7214. "version": "2.2.1",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7218. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  7223. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  7224. "shasum": "",
  7225. "mirrors": [
  7226. {
  7227. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7228. "preferred": true
  7229. }
  7230. ]
  7231. },
  7232. "require": {
  7233. "php": "^5.5 || ^7.0",
  7234. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  7235. },
  7236. "require-dev": {
  7237. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "branch-alias": {
  7242. "dev-master": "2.2.x-dev"
  7243. }
  7244. },
  7245. "autoload": {
  7246. "psr-4": {
  7247. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7248. }
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "BSD-3-Clause"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Tijs Verkoyen",
  7257. "email": "css_to_inline_styles@verkoyen.eu",
  7258. "role": "Developer"
  7259. }
  7260. ],
  7261. "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.",
  7262. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7263. "time": "2017-11-27T11:13:29+00:00"
  7264. },
  7265. {
  7266. "name": "vinkla/hashids",
  7267. "version": "3.3.0",
  7268. "source": {
  7269. "type": "git",
  7270. "url": "https://github.com/vinkla/laravel-hashids.git",
  7271. "reference": "052ee165751cb4dfcd2801d234e9e5835a1c0d56"
  7272. },
  7273. "dist": {
  7274. "type": "zip",
  7275. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/052ee165751cb4dfcd2801d234e9e5835a1c0d56",
  7276. "reference": "052ee165751cb4dfcd2801d234e9e5835a1c0d56",
  7277. "shasum": "",
  7278. "mirrors": [
  7279. {
  7280. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7281. "preferred": true
  7282. }
  7283. ]
  7284. },
  7285. "require": {
  7286. "graham-campbell/manager": "^3.0",
  7287. "hashids/hashids": "^2.0",
  7288. "illuminate/contracts": "5.5.*",
  7289. "illuminate/support": "5.5.*",
  7290. "php": "^7.0"
  7291. },
  7292. "require-dev": {
  7293. "graham-campbell/analyzer": "^1.1",
  7294. "graham-campbell/testbench": "^4.0",
  7295. "mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583",
  7296. "orchestra/testbench": "^3.5",
  7297. "phpunit/phpunit": "^6.3"
  7298. },
  7299. "type": "library",
  7300. "extra": {
  7301. "branch-alias": {
  7302. "dev-master": "3.3-dev"
  7303. },
  7304. "laravel": {
  7305. "providers": [
  7306. "Vinkla\\Hashids\\HashidsServiceProvider"
  7307. ],
  7308. "aliases": {
  7309. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7310. }
  7311. }
  7312. },
  7313. "autoload": {
  7314. "psr-4": {
  7315. "Vinkla\\Hashids\\": "src/"
  7316. }
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Vincent Klaiber",
  7325. "email": "hello@vinkla.com",
  7326. "homepage": "https://vinkla.com"
  7327. }
  7328. ],
  7329. "description": "A Hashids bridge for Laravel",
  7330. "keywords": [
  7331. "bitly",
  7332. "decrypt",
  7333. "encrypt",
  7334. "hash",
  7335. "hashid",
  7336. "hashids",
  7337. "ids",
  7338. "laravel",
  7339. "obfuscate",
  7340. "youtube"
  7341. ],
  7342. "time": "2017-09-02T21:55:08+00:00"
  7343. },
  7344. {
  7345. "name": "vlucas/phpdotenv",
  7346. "version": "v2.5.1",
  7347. "source": {
  7348. "type": "git",
  7349. "url": "https://github.com/vlucas/phpdotenv.git",
  7350. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
  7351. },
  7352. "dist": {
  7353. "type": "zip",
  7354. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  7355. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  7356. "shasum": "",
  7357. "mirrors": [
  7358. {
  7359. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7360. "preferred": true
  7361. }
  7362. ]
  7363. },
  7364. "require": {
  7365. "php": ">=5.3.9"
  7366. },
  7367. "require-dev": {
  7368. "phpunit/phpunit": "^4.8.35 || ^5.0"
  7369. },
  7370. "type": "library",
  7371. "extra": {
  7372. "branch-alias": {
  7373. "dev-master": "2.5-dev"
  7374. }
  7375. },
  7376. "autoload": {
  7377. "psr-4": {
  7378. "Dotenv\\": "src/"
  7379. }
  7380. },
  7381. "notification-url": "https://packagist.org/downloads/",
  7382. "license": [
  7383. "BSD-3-Clause"
  7384. ],
  7385. "authors": [
  7386. {
  7387. "name": "Vance Lucas",
  7388. "email": "vance@vancelucas.com",
  7389. "homepage": "http://www.vancelucas.com"
  7390. }
  7391. ],
  7392. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7393. "keywords": [
  7394. "dotenv",
  7395. "env",
  7396. "environment"
  7397. ],
  7398. "time": "2018-07-29T20:33:41+00:00"
  7399. },
  7400. {
  7401. "name": "webmozart/assert",
  7402. "version": "1.3.0",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/webmozart/assert.git",
  7406. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  7411. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  7412. "shasum": "",
  7413. "mirrors": [
  7414. {
  7415. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7416. "preferred": true
  7417. }
  7418. ]
  7419. },
  7420. "require": {
  7421. "php": "^5.3.3 || ^7.0"
  7422. },
  7423. "require-dev": {
  7424. "phpunit/phpunit": "^4.6",
  7425. "sebastian/version": "^1.0.1"
  7426. },
  7427. "type": "library",
  7428. "extra": {
  7429. "branch-alias": {
  7430. "dev-master": "1.3-dev"
  7431. }
  7432. },
  7433. "autoload": {
  7434. "psr-4": {
  7435. "Webmozart\\Assert\\": "src/"
  7436. }
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "MIT"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Bernhard Schussek",
  7445. "email": "bschussek@gmail.com"
  7446. }
  7447. ],
  7448. "description": "Assertions to validate method input/output with nice error messages.",
  7449. "keywords": [
  7450. "assert",
  7451. "check",
  7452. "validate"
  7453. ],
  7454. "time": "2018-01-29T19:49:41+00:00"
  7455. },
  7456. {
  7457. "name": "wikimedia/composer-merge-plugin",
  7458. "version": "v1.4.1",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  7462. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  7467. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  7468. "shasum": "",
  7469. "mirrors": [
  7470. {
  7471. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7472. "preferred": true
  7473. }
  7474. ]
  7475. },
  7476. "require": {
  7477. "composer-plugin-api": "^1.0",
  7478. "php": ">=5.3.2"
  7479. },
  7480. "require-dev": {
  7481. "composer/composer": "~1.0.0",
  7482. "jakub-onderka/php-parallel-lint": "~0.8",
  7483. "phpunit/phpunit": "~4.8|~5.0",
  7484. "squizlabs/php_codesniffer": "~2.1.0"
  7485. },
  7486. "type": "composer-plugin",
  7487. "extra": {
  7488. "branch-alias": {
  7489. "dev-master": "1.3.x-dev"
  7490. },
  7491. "class": "Wikimedia\\Composer\\MergePlugin"
  7492. },
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Wikimedia\\Composer\\": "src/"
  7496. }
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Bryan Davis",
  7505. "email": "bd808@wikimedia.org"
  7506. }
  7507. ],
  7508. "description": "Composer plugin to merge multiple composer.json files",
  7509. "time": "2017-04-25T02:31:25+00:00"
  7510. },
  7511. {
  7512. "name": "yansongda/pay",
  7513. "version": "v2.5.9",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/yansongda/pay.git",
  7517. "reference": "1130dfbfdd7c3f91b5d1921a03ad129555ddd89e"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/yansongda/pay/zipball/1130dfbfdd7c3f91b5d1921a03ad129555ddd89e",
  7522. "reference": "1130dfbfdd7c3f91b5d1921a03ad129555ddd89e",
  7523. "shasum": "",
  7524. "mirrors": [
  7525. {
  7526. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7527. "preferred": true
  7528. }
  7529. ]
  7530. },
  7531. "require": {
  7532. "ext-openssl": "*",
  7533. "ext-simplexml": "*",
  7534. "monolog/monolog": "^1.23",
  7535. "php": ">=7.0",
  7536. "symfony/http-foundation": "^3.0|^4.0",
  7537. "yansongda/supports": "^1.8"
  7538. },
  7539. "require-dev": {
  7540. "mockery/mockery": "1.0.x-dev",
  7541. "phpunit/phpunit": "^6.2"
  7542. },
  7543. "type": "library",
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Yansongda\\Pay\\": "src"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "yansongda",
  7556. "email": "me@yansongda.cn"
  7557. }
  7558. ],
  7559. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  7560. "keywords": [
  7561. "alipay",
  7562. "pay",
  7563. "wechat"
  7564. ],
  7565. "time": "2018-11-29T13:27:14+00:00"
  7566. },
  7567. {
  7568. "name": "yansongda/supports",
  7569. "version": "v1.8.4",
  7570. "source": {
  7571. "type": "git",
  7572. "url": "https://github.com/yansongda/supports.git",
  7573. "reference": "e5a8d80dd18ab5361187adfd33c398573943de39"
  7574. },
  7575. "dist": {
  7576. "type": "zip",
  7577. "url": "https://api.github.com/repos/yansongda/supports/zipball/e5a8d80dd18ab5361187adfd33c398573943de39",
  7578. "reference": "e5a8d80dd18ab5361187adfd33c398573943de39",
  7579. "shasum": "",
  7580. "mirrors": [
  7581. {
  7582. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7583. "preferred": true
  7584. }
  7585. ]
  7586. },
  7587. "require": {
  7588. "guzzlehttp/guzzle": "^6.2",
  7589. "monolog/monolog": "^1.23",
  7590. "php": ">=5.5"
  7591. },
  7592. "type": "library",
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Yansongda\\Supports\\": "src/"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "yansongda",
  7605. "email": "me@yansongda.cn"
  7606. }
  7607. ],
  7608. "description": "common components",
  7609. "keywords": [
  7610. "Guzzle",
  7611. "array",
  7612. "collection",
  7613. "config",
  7614. "http",
  7615. "support"
  7616. ],
  7617. "time": "2018-11-22T02:57:45+00:00"
  7618. },
  7619. {
  7620. "name": "zendframework/zend-diactoros",
  7621. "version": "1.8.6",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/zendframework/zend-diactoros.git",
  7625. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  7630. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  7631. "shasum": "",
  7632. "mirrors": [
  7633. {
  7634. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7635. "preferred": true
  7636. }
  7637. ]
  7638. },
  7639. "require": {
  7640. "php": "^5.6 || ^7.0",
  7641. "psr/http-message": "^1.0"
  7642. },
  7643. "provide": {
  7644. "psr/http-message-implementation": "1.0"
  7645. },
  7646. "require-dev": {
  7647. "ext-dom": "*",
  7648. "ext-libxml": "*",
  7649. "php-http/psr7-integration-tests": "dev-master",
  7650. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  7651. "zendframework/zend-coding-standard": "~1.0"
  7652. },
  7653. "type": "library",
  7654. "extra": {
  7655. "branch-alias": {
  7656. "dev-master": "1.8.x-dev",
  7657. "dev-develop": "1.9.x-dev",
  7658. "dev-release-2.0": "2.0.x-dev"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "files": [
  7663. "src/functions/create_uploaded_file.php",
  7664. "src/functions/marshal_headers_from_sapi.php",
  7665. "src/functions/marshal_method_from_sapi.php",
  7666. "src/functions/marshal_protocol_version_from_sapi.php",
  7667. "src/functions/marshal_uri_from_sapi.php",
  7668. "src/functions/normalize_server.php",
  7669. "src/functions/normalize_uploaded_files.php",
  7670. "src/functions/parse_cookie_header.php"
  7671. ],
  7672. "psr-4": {
  7673. "Zend\\Diactoros\\": "src/"
  7674. }
  7675. },
  7676. "notification-url": "https://packagist.org/downloads/",
  7677. "license": [
  7678. "BSD-2-Clause"
  7679. ],
  7680. "description": "PSR HTTP Message implementations",
  7681. "homepage": "https://github.com/zendframework/zend-diactoros",
  7682. "keywords": [
  7683. "http",
  7684. "psr",
  7685. "psr-7"
  7686. ],
  7687. "time": "2018-09-05T19:29:37+00:00"
  7688. }
  7689. ],
  7690. "packages-dev": [
  7691. {
  7692. "name": "barryvdh/laravel-debugbar",
  7693. "version": "v2.4.3",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7697. "reference": "d7c88f08131f6404cb714f3f6cf0642f6afa3903"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/d7c88f08131f6404cb714f3f6cf0642f6afa3903",
  7702. "reference": "d7c88f08131f6404cb714f3f6cf0642f6afa3903",
  7703. "shasum": "",
  7704. "mirrors": [
  7705. {
  7706. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7707. "preferred": true
  7708. }
  7709. ]
  7710. },
  7711. "require": {
  7712. "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  7713. "maximebf/debugbar": "~1.13.0",
  7714. "php": ">=5.5.9",
  7715. "symfony/finder": "~2.7|~3.0"
  7716. },
  7717. "type": "library",
  7718. "autoload": {
  7719. "psr-4": {
  7720. "Barryvdh\\Debugbar\\": "src/"
  7721. },
  7722. "files": [
  7723. "src/helpers.php"
  7724. ]
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "MIT"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Barry vd. Heuvel",
  7733. "email": "barryvdh@gmail.com"
  7734. }
  7735. ],
  7736. "description": "PHP Debugbar integration for Laravel",
  7737. "keywords": [
  7738. "debug",
  7739. "debugbar",
  7740. "laravel",
  7741. "profiler",
  7742. "webprofiler"
  7743. ],
  7744. "time": "2017-07-21T11:56:48+00:00"
  7745. },
  7746. {
  7747. "name": "barryvdh/laravel-ide-helper",
  7748. "version": "v2.5.2",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7752. "reference": "981ff45b43e0cf808af0a5a5f40f6369e0e29499"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/981ff45b43e0cf808af0a5a5f40f6369e0e29499",
  7757. "reference": "981ff45b43e0cf808af0a5a5f40f6369e0e29499",
  7758. "shasum": "",
  7759. "mirrors": [
  7760. {
  7761. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7762. "preferred": true
  7763. }
  7764. ]
  7765. },
  7766. "require": {
  7767. "barryvdh/reflection-docblock": "^2.0.4",
  7768. "composer/composer": "^1.6",
  7769. "illuminate/console": "^5.5,<5.8",
  7770. "illuminate/filesystem": "^5.5,<5.8",
  7771. "illuminate/support": "^5.5,<5.8",
  7772. "php": ">=7"
  7773. },
  7774. "require-dev": {
  7775. "doctrine/dbal": "~2.3",
  7776. "illuminate/config": "^5.1,<5.8",
  7777. "illuminate/view": "^5.1,<5.8",
  7778. "phpro/grumphp": "^0.14",
  7779. "phpunit/phpunit": "4.*",
  7780. "scrutinizer/ocular": "~1.1",
  7781. "squizlabs/php_codesniffer": "^3"
  7782. },
  7783. "suggest": {
  7784. "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
  7785. },
  7786. "type": "library",
  7787. "extra": {
  7788. "branch-alias": {
  7789. "dev-master": "2.5-dev"
  7790. },
  7791. "laravel": {
  7792. "providers": [
  7793. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7794. ]
  7795. }
  7796. },
  7797. "autoload": {
  7798. "psr-4": {
  7799. "Barryvdh\\LaravelIdeHelper\\": "src"
  7800. }
  7801. },
  7802. "notification-url": "https://packagist.org/downloads/",
  7803. "license": [
  7804. "MIT"
  7805. ],
  7806. "authors": [
  7807. {
  7808. "name": "Barry vd. Heuvel",
  7809. "email": "barryvdh@gmail.com"
  7810. }
  7811. ],
  7812. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7813. "keywords": [
  7814. "autocomplete",
  7815. "codeintel",
  7816. "helper",
  7817. "ide",
  7818. "laravel",
  7819. "netbeans",
  7820. "phpdoc",
  7821. "phpstorm",
  7822. "sublime"
  7823. ],
  7824. "time": "2018-10-06T09:35:51+00:00"
  7825. },
  7826. {
  7827. "name": "barryvdh/reflection-docblock",
  7828. "version": "v2.0.5",
  7829. "source": {
  7830. "type": "git",
  7831. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7832. "reference": "64165bd4ba9a550d11ea57569463b7c722dc6b0a"
  7833. },
  7834. "dist": {
  7835. "type": "zip",
  7836. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/64165bd4ba9a550d11ea57569463b7c722dc6b0a",
  7837. "reference": "64165bd4ba9a550d11ea57569463b7c722dc6b0a",
  7838. "shasum": "",
  7839. "mirrors": [
  7840. {
  7841. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7842. "preferred": true
  7843. }
  7844. ]
  7845. },
  7846. "require": {
  7847. "php": ">=5.3.3"
  7848. },
  7849. "require-dev": {
  7850. "phpunit/phpunit": "~4.0,<4.5"
  7851. },
  7852. "suggest": {
  7853. "dflydev/markdown": "~1.0",
  7854. "erusev/parsedown": "~1.0"
  7855. },
  7856. "type": "library",
  7857. "extra": {
  7858. "branch-alias": {
  7859. "dev-master": "2.0.x-dev"
  7860. }
  7861. },
  7862. "autoload": {
  7863. "psr-0": {
  7864. "Barryvdh": [
  7865. "src/"
  7866. ]
  7867. }
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "MIT"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "Mike van Riel",
  7876. "email": "mike.vanriel@naenius.com"
  7877. }
  7878. ],
  7879. "time": "2018-10-25T19:09:52+00:00"
  7880. },
  7881. {
  7882. "name": "composer/ca-bundle",
  7883. "version": "1.1.3",
  7884. "source": {
  7885. "type": "git",
  7886. "url": "https://github.com/composer/ca-bundle.git",
  7887. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660"
  7888. },
  7889. "dist": {
  7890. "type": "zip",
  7891. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8afa52cd417f4ec417b4bfe86b68106538a87660",
  7892. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660",
  7893. "shasum": "",
  7894. "mirrors": [
  7895. {
  7896. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7897. "preferred": true
  7898. }
  7899. ]
  7900. },
  7901. "require": {
  7902. "ext-openssl": "*",
  7903. "ext-pcre": "*",
  7904. "php": "^5.3.2 || ^7.0"
  7905. },
  7906. "require-dev": {
  7907. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  7908. "psr/log": "^1.0",
  7909. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  7910. },
  7911. "type": "library",
  7912. "extra": {
  7913. "branch-alias": {
  7914. "dev-master": "1.x-dev"
  7915. }
  7916. },
  7917. "autoload": {
  7918. "psr-4": {
  7919. "Composer\\CaBundle\\": "src"
  7920. }
  7921. },
  7922. "notification-url": "https://packagist.org/downloads/",
  7923. "license": [
  7924. "MIT"
  7925. ],
  7926. "authors": [
  7927. {
  7928. "name": "Jordi Boggiano",
  7929. "email": "j.boggiano@seld.be",
  7930. "homepage": "http://seld.be"
  7931. }
  7932. ],
  7933. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  7934. "keywords": [
  7935. "cabundle",
  7936. "cacert",
  7937. "certificate",
  7938. "ssl",
  7939. "tls"
  7940. ],
  7941. "time": "2018-10-18T06:09:13+00:00"
  7942. },
  7943. {
  7944. "name": "composer/composer",
  7945. "version": "1.7.3",
  7946. "source": {
  7947. "type": "git",
  7948. "url": "https://github.com/composer/composer.git",
  7949. "reference": "e965b9aaa8854c3067f1ed2ae45f436572d73eb7"
  7950. },
  7951. "dist": {
  7952. "type": "zip",
  7953. "url": "https://api.github.com/repos/composer/composer/zipball/e965b9aaa8854c3067f1ed2ae45f436572d73eb7",
  7954. "reference": "e965b9aaa8854c3067f1ed2ae45f436572d73eb7",
  7955. "shasum": "",
  7956. "mirrors": [
  7957. {
  7958. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7959. "preferred": true
  7960. }
  7961. ]
  7962. },
  7963. "require": {
  7964. "composer/ca-bundle": "^1.0",
  7965. "composer/semver": "^1.0",
  7966. "composer/spdx-licenses": "^1.2",
  7967. "composer/xdebug-handler": "^1.1",
  7968. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  7969. "php": "^5.3.2 || ^7.0",
  7970. "psr/log": "^1.0",
  7971. "seld/jsonlint": "^1.4",
  7972. "seld/phar-utils": "^1.0",
  7973. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  7974. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  7975. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  7976. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  7977. },
  7978. "conflict": {
  7979. "symfony/console": "2.8.38"
  7980. },
  7981. "require-dev": {
  7982. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7983. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  7984. },
  7985. "suggest": {
  7986. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7987. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7988. "ext-zlib": "Allow gzip compression of HTTP requests"
  7989. },
  7990. "bin": [
  7991. "bin/composer"
  7992. ],
  7993. "type": "library",
  7994. "extra": {
  7995. "branch-alias": {
  7996. "dev-master": "1.7-dev"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "psr-4": {
  8001. "Composer\\": "src/Composer"
  8002. }
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "MIT"
  8007. ],
  8008. "authors": [
  8009. {
  8010. "name": "Nils Adermann",
  8011. "email": "naderman@naderman.de",
  8012. "homepage": "http://www.naderman.de"
  8013. },
  8014. {
  8015. "name": "Jordi Boggiano",
  8016. "email": "j.boggiano@seld.be",
  8017. "homepage": "http://seld.be"
  8018. }
  8019. ],
  8020. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  8021. "homepage": "https://getcomposer.org/",
  8022. "keywords": [
  8023. "autoload",
  8024. "dependency",
  8025. "package"
  8026. ],
  8027. "time": "2018-11-01T09:05:06+00:00"
  8028. },
  8029. {
  8030. "name": "composer/semver",
  8031. "version": "1.4.2",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/composer/semver.git",
  8035. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  8040. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  8041. "shasum": "",
  8042. "mirrors": [
  8043. {
  8044. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8045. "preferred": true
  8046. }
  8047. ]
  8048. },
  8049. "require": {
  8050. "php": "^5.3.2 || ^7.0"
  8051. },
  8052. "require-dev": {
  8053. "phpunit/phpunit": "^4.5 || ^5.0.5",
  8054. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  8055. },
  8056. "type": "library",
  8057. "extra": {
  8058. "branch-alias": {
  8059. "dev-master": "1.x-dev"
  8060. }
  8061. },
  8062. "autoload": {
  8063. "psr-4": {
  8064. "Composer\\Semver\\": "src"
  8065. }
  8066. },
  8067. "notification-url": "https://packagist.org/downloads/",
  8068. "license": [
  8069. "MIT"
  8070. ],
  8071. "authors": [
  8072. {
  8073. "name": "Nils Adermann",
  8074. "email": "naderman@naderman.de",
  8075. "homepage": "http://www.naderman.de"
  8076. },
  8077. {
  8078. "name": "Jordi Boggiano",
  8079. "email": "j.boggiano@seld.be",
  8080. "homepage": "http://seld.be"
  8081. },
  8082. {
  8083. "name": "Rob Bast",
  8084. "email": "rob.bast@gmail.com",
  8085. "homepage": "http://robbast.nl"
  8086. }
  8087. ],
  8088. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8089. "keywords": [
  8090. "semantic",
  8091. "semver",
  8092. "validation",
  8093. "versioning"
  8094. ],
  8095. "time": "2016-08-30T16:08:34+00:00"
  8096. },
  8097. {
  8098. "name": "composer/spdx-licenses",
  8099. "version": "1.5.0",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/composer/spdx-licenses.git",
  8103. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  8108. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  8109. "shasum": "",
  8110. "mirrors": [
  8111. {
  8112. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8113. "preferred": true
  8114. }
  8115. ]
  8116. },
  8117. "require": {
  8118. "php": "^5.3.2 || ^7.0"
  8119. },
  8120. "require-dev": {
  8121. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  8122. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  8123. },
  8124. "type": "library",
  8125. "extra": {
  8126. "branch-alias": {
  8127. "dev-master": "1.x-dev"
  8128. }
  8129. },
  8130. "autoload": {
  8131. "psr-4": {
  8132. "Composer\\Spdx\\": "src"
  8133. }
  8134. },
  8135. "notification-url": "https://packagist.org/downloads/",
  8136. "license": [
  8137. "MIT"
  8138. ],
  8139. "authors": [
  8140. {
  8141. "name": "Nils Adermann",
  8142. "email": "naderman@naderman.de",
  8143. "homepage": "http://www.naderman.de"
  8144. },
  8145. {
  8146. "name": "Jordi Boggiano",
  8147. "email": "j.boggiano@seld.be",
  8148. "homepage": "http://seld.be"
  8149. },
  8150. {
  8151. "name": "Rob Bast",
  8152. "email": "rob.bast@gmail.com",
  8153. "homepage": "http://robbast.nl"
  8154. }
  8155. ],
  8156. "description": "SPDX licenses list and validation library.",
  8157. "keywords": [
  8158. "license",
  8159. "spdx",
  8160. "validator"
  8161. ],
  8162. "time": "2018-11-01T09:45:54+00:00"
  8163. },
  8164. {
  8165. "name": "composer/xdebug-handler",
  8166. "version": "1.3.1",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/composer/xdebug-handler.git",
  8170. "reference": "dc523135366eb68f22268d069ea7749486458562"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/dc523135366eb68f22268d069ea7749486458562",
  8175. "reference": "dc523135366eb68f22268d069ea7749486458562",
  8176. "shasum": "",
  8177. "mirrors": [
  8178. {
  8179. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8180. "preferred": true
  8181. }
  8182. ]
  8183. },
  8184. "require": {
  8185. "php": "^5.3.2 || ^7.0",
  8186. "psr/log": "^1.0"
  8187. },
  8188. "require-dev": {
  8189. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  8190. },
  8191. "type": "library",
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Composer\\XdebugHandler\\": "src"
  8195. }
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "John Stevenson",
  8204. "email": "john-stevenson@blueyonder.co.uk"
  8205. }
  8206. ],
  8207. "description": "Restarts a process without xdebug.",
  8208. "keywords": [
  8209. "Xdebug",
  8210. "performance"
  8211. ],
  8212. "time": "2018-11-29T10:59:02+00:00"
  8213. },
  8214. {
  8215. "name": "doctrine/instantiator",
  8216. "version": "1.1.0",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/doctrine/instantiator.git",
  8220. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  8225. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  8226. "shasum": "",
  8227. "mirrors": [
  8228. {
  8229. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8230. "preferred": true
  8231. }
  8232. ]
  8233. },
  8234. "require": {
  8235. "php": "^7.1"
  8236. },
  8237. "require-dev": {
  8238. "athletic/athletic": "~0.1.8",
  8239. "ext-pdo": "*",
  8240. "ext-phar": "*",
  8241. "phpunit/phpunit": "^6.2.3",
  8242. "squizlabs/php_codesniffer": "^3.0.2"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-master": "1.2.x-dev"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "psr-4": {
  8252. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "MIT"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Marco Pivetta",
  8262. "email": "ocramius@gmail.com",
  8263. "homepage": "http://ocramius.github.com/"
  8264. }
  8265. ],
  8266. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8267. "homepage": "https://github.com/doctrine/instantiator",
  8268. "keywords": [
  8269. "constructor",
  8270. "instantiate"
  8271. ],
  8272. "time": "2017-07-22T11:58:36+00:00"
  8273. },
  8274. {
  8275. "name": "filp/whoops",
  8276. "version": "2.3.1",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/filp/whoops.git",
  8280. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  8285. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  8286. "shasum": "",
  8287. "mirrors": [
  8288. {
  8289. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8290. "preferred": true
  8291. }
  8292. ]
  8293. },
  8294. "require": {
  8295. "php": "^5.5.9 || ^7.0",
  8296. "psr/log": "^1.0.1"
  8297. },
  8298. "require-dev": {
  8299. "mockery/mockery": "^0.9 || ^1.0",
  8300. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8301. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  8302. },
  8303. "suggest": {
  8304. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8305. "whoops/soap": "Formats errors as SOAP responses"
  8306. },
  8307. "type": "library",
  8308. "extra": {
  8309. "branch-alias": {
  8310. "dev-master": "2.2-dev"
  8311. }
  8312. },
  8313. "autoload": {
  8314. "psr-4": {
  8315. "Whoops\\": "src/Whoops/"
  8316. }
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "MIT"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Filipe Dobreira",
  8325. "homepage": "https://github.com/filp",
  8326. "role": "Developer"
  8327. }
  8328. ],
  8329. "description": "php error handling for cool kids",
  8330. "homepage": "https://filp.github.io/whoops/",
  8331. "keywords": [
  8332. "error",
  8333. "exception",
  8334. "handling",
  8335. "library",
  8336. "throwable",
  8337. "whoops"
  8338. ],
  8339. "time": "2018-10-23T09:00:00+00:00"
  8340. },
  8341. {
  8342. "name": "fzaninotto/faker",
  8343. "version": "v1.8.0",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/fzaninotto/Faker.git",
  8347. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  8352. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  8353. "shasum": "",
  8354. "mirrors": [
  8355. {
  8356. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8357. "preferred": true
  8358. }
  8359. ]
  8360. },
  8361. "require": {
  8362. "php": "^5.3.3 || ^7.0"
  8363. },
  8364. "require-dev": {
  8365. "ext-intl": "*",
  8366. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8367. "squizlabs/php_codesniffer": "^1.5"
  8368. },
  8369. "type": "library",
  8370. "extra": {
  8371. "branch-alias": {
  8372. "dev-master": "1.8-dev"
  8373. }
  8374. },
  8375. "autoload": {
  8376. "psr-4": {
  8377. "Faker\\": "src/Faker/"
  8378. }
  8379. },
  8380. "notification-url": "https://packagist.org/downloads/",
  8381. "license": [
  8382. "MIT"
  8383. ],
  8384. "authors": [
  8385. {
  8386. "name": "François Zaninotto"
  8387. }
  8388. ],
  8389. "description": "Faker is a PHP library that generates fake data for you.",
  8390. "keywords": [
  8391. "data",
  8392. "faker",
  8393. "fixtures"
  8394. ],
  8395. "time": "2018-07-12T10:23:15+00:00"
  8396. },
  8397. {
  8398. "name": "hamcrest/hamcrest-php",
  8399. "version": "v2.0.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8403. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  8408. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  8409. "shasum": "",
  8410. "mirrors": [
  8411. {
  8412. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8413. "preferred": true
  8414. }
  8415. ]
  8416. },
  8417. "require": {
  8418. "php": "^5.3|^7.0"
  8419. },
  8420. "replace": {
  8421. "cordoval/hamcrest-php": "*",
  8422. "davedevelopment/hamcrest-php": "*",
  8423. "kodova/hamcrest-php": "*"
  8424. },
  8425. "require-dev": {
  8426. "phpunit/php-file-iterator": "1.3.3",
  8427. "phpunit/phpunit": "~4.0",
  8428. "satooshi/php-coveralls": "^1.0"
  8429. },
  8430. "type": "library",
  8431. "extra": {
  8432. "branch-alias": {
  8433. "dev-master": "2.0-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "classmap": [
  8438. "hamcrest"
  8439. ]
  8440. },
  8441. "notification-url": "https://packagist.org/downloads/",
  8442. "license": [
  8443. "BSD"
  8444. ],
  8445. "description": "This is the PHP port of Hamcrest Matchers",
  8446. "keywords": [
  8447. "test"
  8448. ],
  8449. "time": "2016-01-20T08:20:44+00:00"
  8450. },
  8451. {
  8452. "name": "justinrainbow/json-schema",
  8453. "version": "5.2.7",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/justinrainbow/json-schema.git",
  8457. "reference": "8560d4314577199ba51bf2032f02cd1315587c23"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8560d4314577199ba51bf2032f02cd1315587c23",
  8462. "reference": "8560d4314577199ba51bf2032f02cd1315587c23",
  8463. "shasum": "",
  8464. "mirrors": [
  8465. {
  8466. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8467. "preferred": true
  8468. }
  8469. ]
  8470. },
  8471. "require": {
  8472. "php": ">=5.3.3"
  8473. },
  8474. "require-dev": {
  8475. "friendsofphp/php-cs-fixer": "^2.1",
  8476. "json-schema/json-schema-test-suite": "1.2.0",
  8477. "phpunit/phpunit": "^4.8.35"
  8478. },
  8479. "bin": [
  8480. "bin/validate-json"
  8481. ],
  8482. "type": "library",
  8483. "extra": {
  8484. "branch-alias": {
  8485. "dev-master": "5.0.x-dev"
  8486. }
  8487. },
  8488. "autoload": {
  8489. "psr-4": {
  8490. "JsonSchema\\": "src/JsonSchema/"
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Bruno Prieto Reis",
  8500. "email": "bruno.p.reis@gmail.com"
  8501. },
  8502. {
  8503. "name": "Justin Rainbow",
  8504. "email": "justin.rainbow@gmail.com"
  8505. },
  8506. {
  8507. "name": "Igor Wiedler",
  8508. "email": "igor@wiedler.ch"
  8509. },
  8510. {
  8511. "name": "Robert Schönthal",
  8512. "email": "seroscho@googlemail.com"
  8513. }
  8514. ],
  8515. "description": "A library to validate a json schema.",
  8516. "homepage": "https://github.com/justinrainbow/json-schema",
  8517. "keywords": [
  8518. "json",
  8519. "schema"
  8520. ],
  8521. "time": "2018-02-14T22:26:30+00:00"
  8522. },
  8523. {
  8524. "name": "maximebf/debugbar",
  8525. "version": "1.13.1",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/maximebf/php-debugbar.git",
  8529. "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/afee79a236348e39a44cb837106b7c5b4897ac2a",
  8534. "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a",
  8535. "shasum": "",
  8536. "mirrors": [
  8537. {
  8538. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8539. "preferred": true
  8540. }
  8541. ]
  8542. },
  8543. "require": {
  8544. "php": ">=5.3.0",
  8545. "psr/log": "^1.0",
  8546. "symfony/var-dumper": "^2.6|^3.0"
  8547. },
  8548. "require-dev": {
  8549. "phpunit/phpunit": "^4.0|^5.0"
  8550. },
  8551. "suggest": {
  8552. "kriswallsmith/assetic": "The best way to manage assets",
  8553. "monolog/monolog": "Log using Monolog",
  8554. "predis/predis": "Redis storage"
  8555. },
  8556. "type": "library",
  8557. "extra": {
  8558. "branch-alias": {
  8559. "dev-master": "1.13-dev"
  8560. }
  8561. },
  8562. "autoload": {
  8563. "psr-4": {
  8564. "DebugBar\\": "src/DebugBar/"
  8565. }
  8566. },
  8567. "notification-url": "https://packagist.org/downloads/",
  8568. "license": [
  8569. "MIT"
  8570. ],
  8571. "authors": [
  8572. {
  8573. "name": "Maxime Bouroumeau-Fuseau",
  8574. "email": "maxime.bouroumeau@gmail.com",
  8575. "homepage": "http://maximebf.com"
  8576. },
  8577. {
  8578. "name": "Barry vd. Heuvel",
  8579. "email": "barryvdh@gmail.com"
  8580. }
  8581. ],
  8582. "description": "Debug bar in the browser for php application",
  8583. "homepage": "https://github.com/maximebf/php-debugbar",
  8584. "keywords": [
  8585. "debug",
  8586. "debugbar"
  8587. ],
  8588. "time": "2017-01-05T08:46:19+00:00"
  8589. },
  8590. {
  8591. "name": "mockery/mockery",
  8592. "version": "1.2.0",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/mockery/mockery.git",
  8596. "reference": "100633629bf76d57430b86b7098cd6beb996a35a"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/mockery/mockery/zipball/100633629bf76d57430b86b7098cd6beb996a35a",
  8601. "reference": "100633629bf76d57430b86b7098cd6beb996a35a",
  8602. "shasum": "",
  8603. "mirrors": [
  8604. {
  8605. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8606. "preferred": true
  8607. }
  8608. ]
  8609. },
  8610. "require": {
  8611. "hamcrest/hamcrest-php": "~2.0",
  8612. "lib-pcre": ">=7.0",
  8613. "php": ">=5.6.0"
  8614. },
  8615. "require-dev": {
  8616. "phpunit/phpunit": "~5.7.10|~6.5|~7.0"
  8617. },
  8618. "type": "library",
  8619. "extra": {
  8620. "branch-alias": {
  8621. "dev-master": "1.0.x-dev"
  8622. }
  8623. },
  8624. "autoload": {
  8625. "psr-0": {
  8626. "Mockery": "library/"
  8627. }
  8628. },
  8629. "notification-url": "https://packagist.org/downloads/",
  8630. "license": [
  8631. "BSD-3-Clause"
  8632. ],
  8633. "authors": [
  8634. {
  8635. "name": "Pádraic Brady",
  8636. "email": "padraic.brady@gmail.com",
  8637. "homepage": "http://blog.astrumfutura.com"
  8638. },
  8639. {
  8640. "name": "Dave Marshall",
  8641. "email": "dave.marshall@atstsolutions.co.uk",
  8642. "homepage": "http://davedevelopment.co.uk"
  8643. }
  8644. ],
  8645. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8646. "homepage": "https://github.com/mockery/mockery",
  8647. "keywords": [
  8648. "BDD",
  8649. "TDD",
  8650. "library",
  8651. "mock",
  8652. "mock objects",
  8653. "mockery",
  8654. "stub",
  8655. "test",
  8656. "test double",
  8657. "testing"
  8658. ],
  8659. "time": "2018-10-02T21:52:37+00:00"
  8660. },
  8661. {
  8662. "name": "myclabs/deep-copy",
  8663. "version": "1.8.1",
  8664. "source": {
  8665. "type": "git",
  8666. "url": "https://github.com/myclabs/DeepCopy.git",
  8667. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  8668. },
  8669. "dist": {
  8670. "type": "zip",
  8671. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  8672. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  8673. "shasum": "",
  8674. "mirrors": [
  8675. {
  8676. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8677. "preferred": true
  8678. }
  8679. ]
  8680. },
  8681. "require": {
  8682. "php": "^7.1"
  8683. },
  8684. "replace": {
  8685. "myclabs/deep-copy": "self.version"
  8686. },
  8687. "require-dev": {
  8688. "doctrine/collections": "^1.0",
  8689. "doctrine/common": "^2.6",
  8690. "phpunit/phpunit": "^7.1"
  8691. },
  8692. "type": "library",
  8693. "autoload": {
  8694. "psr-4": {
  8695. "DeepCopy\\": "src/DeepCopy/"
  8696. },
  8697. "files": [
  8698. "src/DeepCopy/deep_copy.php"
  8699. ]
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "MIT"
  8704. ],
  8705. "description": "Create deep copies (clones) of your objects",
  8706. "keywords": [
  8707. "clone",
  8708. "copy",
  8709. "duplicate",
  8710. "object",
  8711. "object graph"
  8712. ],
  8713. "time": "2018-06-11T23:09:50+00:00"
  8714. },
  8715. {
  8716. "name": "orchestra/database",
  8717. "version": "v3.5.3",
  8718. "source": {
  8719. "type": "git",
  8720. "url": "https://github.com/orchestral/database.git",
  8721. "reference": "abcfcd827c0b1196cd200315390720e52a4a2a7b"
  8722. },
  8723. "dist": {
  8724. "type": "zip",
  8725. "url": "https://api.github.com/repos/orchestral/database/zipball/abcfcd827c0b1196cd200315390720e52a4a2a7b",
  8726. "reference": "abcfcd827c0b1196cd200315390720e52a4a2a7b",
  8727. "shasum": "",
  8728. "mirrors": [
  8729. {
  8730. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8731. "preferred": true
  8732. }
  8733. ]
  8734. },
  8735. "require": {
  8736. "illuminate/contracts": "~5.5.0",
  8737. "illuminate/database": "~5.5.0",
  8738. "php": ">=7.0"
  8739. },
  8740. "type": "library",
  8741. "extra": {
  8742. "branch-alias": {
  8743. "dev-master": "3.5-dev"
  8744. }
  8745. },
  8746. "autoload": {
  8747. "psr-4": {
  8748. "Orchestra\\Database\\": ""
  8749. }
  8750. },
  8751. "notification-url": "https://packagist.org/downloads/",
  8752. "license": [
  8753. "MIT"
  8754. ],
  8755. "authors": [
  8756. {
  8757. "name": "Mior Muhammad Zaki",
  8758. "email": "crynobone@gmail.com",
  8759. "homepage": "https://github.com/crynobone"
  8760. },
  8761. {
  8762. "name": "Taylor Otwell",
  8763. "email": "taylorotwell@gmail.com",
  8764. "homepage": "https://github.com/taylorotwell"
  8765. }
  8766. ],
  8767. "description": "Database Component for Orchestra Platform",
  8768. "keywords": [
  8769. "database",
  8770. "orchestra-platform",
  8771. "orchestral"
  8772. ],
  8773. "time": "2017-11-03T02:33:29+00:00"
  8774. },
  8775. {
  8776. "name": "orchestra/testbench",
  8777. "version": "v3.5.5",
  8778. "source": {
  8779. "type": "git",
  8780. "url": "https://github.com/orchestral/testbench.git",
  8781. "reference": "fd032489df469d611a264083e62db96677c9061e"
  8782. },
  8783. "dist": {
  8784. "type": "zip",
  8785. "url": "https://api.github.com/repos/orchestral/testbench/zipball/fd032489df469d611a264083e62db96677c9061e",
  8786. "reference": "fd032489df469d611a264083e62db96677c9061e",
  8787. "shasum": "",
  8788. "mirrors": [
  8789. {
  8790. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8791. "preferred": true
  8792. }
  8793. ]
  8794. },
  8795. "require": {
  8796. "laravel/framework": "~5.5.34",
  8797. "orchestra/testbench-core": "~3.5.9",
  8798. "php": ">=7.0",
  8799. "phpunit/phpunit": "~6.0"
  8800. },
  8801. "require-dev": {
  8802. "mockery/mockery": "~1.0",
  8803. "orchestra/database": "~3.5.0"
  8804. },
  8805. "suggest": {
  8806. "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5)."
  8807. },
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-master": "3.5-dev"
  8812. }
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "MIT"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Mior Muhammad Zaki",
  8821. "email": "crynobone@gmail.com",
  8822. "homepage": "https://github.com/crynobone"
  8823. }
  8824. ],
  8825. "description": "Laravel Testing Helper for Packages Development",
  8826. "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
  8827. "keywords": [
  8828. "BDD",
  8829. "TDD",
  8830. "laravel",
  8831. "orchestra-platform",
  8832. "orchestral",
  8833. "testing"
  8834. ],
  8835. "time": "2018-02-20T05:30:39+00:00"
  8836. },
  8837. {
  8838. "name": "orchestra/testbench-core",
  8839. "version": "v3.5.10",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/orchestral/testbench-core.git",
  8843. "reference": "09a57dc446a24fd19a75ff57b679b86094251f8e"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/09a57dc446a24fd19a75ff57b679b86094251f8e",
  8848. "reference": "09a57dc446a24fd19a75ff57b679b86094251f8e",
  8849. "shasum": "",
  8850. "mirrors": [
  8851. {
  8852. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8853. "preferred": true
  8854. }
  8855. ]
  8856. },
  8857. "require": {
  8858. "fzaninotto/faker": "~1.4",
  8859. "php": ">=7.0"
  8860. },
  8861. "require-dev": {
  8862. "laravel/framework": "~5.5.0",
  8863. "mockery/mockery": "~1.0",
  8864. "orchestra/database": "~3.5.0",
  8865. "phpunit/phpunit": "~6.0"
  8866. },
  8867. "suggest": {
  8868. "laravel/framework": "Required for testing (~5.5.0).",
  8869. "mockery/mockery": "Allow to use Mockery for testing (~1.0).",
  8870. "orchestra/database": "Allow to use --realpath migration for testing (~3.5).",
  8871. "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5).",
  8872. "orchestra/testbench-dusk": "Allow to use Laravel Dusk for testing (~3.5).",
  8873. "phpunit/phpunit": "Allow to use PHPUnit for testing (~6.0)."
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "3.5-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "psr-4": {
  8883. "Orchestra\\Testbench\\": "src/"
  8884. }
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "MIT"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Mior Muhammad Zaki",
  8893. "email": "crynobone@gmail.com",
  8894. "homepage": "https://github.com/crynobone"
  8895. }
  8896. ],
  8897. "description": "Testing Helper for Laravel Development",
  8898. "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
  8899. "keywords": [
  8900. "BDD",
  8901. "TDD",
  8902. "laravel",
  8903. "orchestra-platform",
  8904. "orchestral",
  8905. "testing"
  8906. ],
  8907. "time": "2018-03-13T02:35:58+00:00"
  8908. },
  8909. {
  8910. "name": "phar-io/manifest",
  8911. "version": "1.0.1",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/phar-io/manifest.git",
  8915. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  8920. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  8921. "shasum": "",
  8922. "mirrors": [
  8923. {
  8924. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8925. "preferred": true
  8926. }
  8927. ]
  8928. },
  8929. "require": {
  8930. "ext-dom": "*",
  8931. "ext-phar": "*",
  8932. "phar-io/version": "^1.0.1",
  8933. "php": "^5.6 || ^7.0"
  8934. },
  8935. "type": "library",
  8936. "extra": {
  8937. "branch-alias": {
  8938. "dev-master": "1.0.x-dev"
  8939. }
  8940. },
  8941. "autoload": {
  8942. "classmap": [
  8943. "src/"
  8944. ]
  8945. },
  8946. "notification-url": "https://packagist.org/downloads/",
  8947. "license": [
  8948. "BSD-3-Clause"
  8949. ],
  8950. "authors": [
  8951. {
  8952. "name": "Arne Blankerts",
  8953. "email": "arne@blankerts.de",
  8954. "role": "Developer"
  8955. },
  8956. {
  8957. "name": "Sebastian Heuer",
  8958. "email": "sebastian@phpeople.de",
  8959. "role": "Developer"
  8960. },
  8961. {
  8962. "name": "Sebastian Bergmann",
  8963. "email": "sebastian@phpunit.de",
  8964. "role": "Developer"
  8965. }
  8966. ],
  8967. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8968. "time": "2017-03-05T18:14:27+00:00"
  8969. },
  8970. {
  8971. "name": "phar-io/version",
  8972. "version": "1.0.1",
  8973. "source": {
  8974. "type": "git",
  8975. "url": "https://github.com/phar-io/version.git",
  8976. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  8977. },
  8978. "dist": {
  8979. "type": "zip",
  8980. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  8981. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  8982. "shasum": "",
  8983. "mirrors": [
  8984. {
  8985. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8986. "preferred": true
  8987. }
  8988. ]
  8989. },
  8990. "require": {
  8991. "php": "^5.6 || ^7.0"
  8992. },
  8993. "type": "library",
  8994. "autoload": {
  8995. "classmap": [
  8996. "src/"
  8997. ]
  8998. },
  8999. "notification-url": "https://packagist.org/downloads/",
  9000. "license": [
  9001. "BSD-3-Clause"
  9002. ],
  9003. "authors": [
  9004. {
  9005. "name": "Arne Blankerts",
  9006. "email": "arne@blankerts.de",
  9007. "role": "Developer"
  9008. },
  9009. {
  9010. "name": "Sebastian Heuer",
  9011. "email": "sebastian@phpeople.de",
  9012. "role": "Developer"
  9013. },
  9014. {
  9015. "name": "Sebastian Bergmann",
  9016. "email": "sebastian@phpunit.de",
  9017. "role": "Developer"
  9018. }
  9019. ],
  9020. "description": "Library for handling version information and constraints",
  9021. "time": "2017-03-05T17:38:23+00:00"
  9022. },
  9023. {
  9024. "name": "phpspec/prophecy",
  9025. "version": "1.8.0",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/phpspec/prophecy.git",
  9029. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9034. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9035. "shasum": "",
  9036. "mirrors": [
  9037. {
  9038. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9039. "preferred": true
  9040. }
  9041. ]
  9042. },
  9043. "require": {
  9044. "doctrine/instantiator": "^1.0.2",
  9045. "php": "^5.3|^7.0",
  9046. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  9047. "sebastian/comparator": "^1.1|^2.0|^3.0",
  9048. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  9049. },
  9050. "require-dev": {
  9051. "phpspec/phpspec": "^2.5|^3.2",
  9052. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "1.8.x-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "psr-0": {
  9062. "Prophecy\\": "src/"
  9063. }
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "MIT"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Konstantin Kudryashov",
  9072. "email": "ever.zet@gmail.com",
  9073. "homepage": "http://everzet.com"
  9074. },
  9075. {
  9076. "name": "Marcello Duarte",
  9077. "email": "marcello.duarte@gmail.com"
  9078. }
  9079. ],
  9080. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9081. "homepage": "https://github.com/phpspec/prophecy",
  9082. "keywords": [
  9083. "Double",
  9084. "Dummy",
  9085. "fake",
  9086. "mock",
  9087. "spy",
  9088. "stub"
  9089. ],
  9090. "time": "2018-08-05T17:53:17+00:00"
  9091. },
  9092. {
  9093. "name": "phpunit/php-code-coverage",
  9094. "version": "5.3.2",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9098. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  9103. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  9104. "shasum": "",
  9105. "mirrors": [
  9106. {
  9107. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9108. "preferred": true
  9109. }
  9110. ]
  9111. },
  9112. "require": {
  9113. "ext-dom": "*",
  9114. "ext-xmlwriter": "*",
  9115. "php": "^7.0",
  9116. "phpunit/php-file-iterator": "^1.4.2",
  9117. "phpunit/php-text-template": "^1.2.1",
  9118. "phpunit/php-token-stream": "^2.0.1",
  9119. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9120. "sebastian/environment": "^3.0",
  9121. "sebastian/version": "^2.0.1",
  9122. "theseer/tokenizer": "^1.1"
  9123. },
  9124. "require-dev": {
  9125. "phpunit/phpunit": "^6.0"
  9126. },
  9127. "suggest": {
  9128. "ext-xdebug": "^2.5.5"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "branch-alias": {
  9133. "dev-master": "5.3.x-dev"
  9134. }
  9135. },
  9136. "autoload": {
  9137. "classmap": [
  9138. "src/"
  9139. ]
  9140. },
  9141. "notification-url": "https://packagist.org/downloads/",
  9142. "license": [
  9143. "BSD-3-Clause"
  9144. ],
  9145. "authors": [
  9146. {
  9147. "name": "Sebastian Bergmann",
  9148. "email": "sebastian@phpunit.de",
  9149. "role": "lead"
  9150. }
  9151. ],
  9152. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9153. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9154. "keywords": [
  9155. "coverage",
  9156. "testing",
  9157. "xunit"
  9158. ],
  9159. "time": "2018-04-06T15:36:58+00:00"
  9160. },
  9161. {
  9162. "name": "phpunit/php-file-iterator",
  9163. "version": "1.4.5",
  9164. "source": {
  9165. "type": "git",
  9166. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9167. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  9168. },
  9169. "dist": {
  9170. "type": "zip",
  9171. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  9172. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  9173. "shasum": "",
  9174. "mirrors": [
  9175. {
  9176. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9177. "preferred": true
  9178. }
  9179. ]
  9180. },
  9181. "require": {
  9182. "php": ">=5.3.3"
  9183. },
  9184. "type": "library",
  9185. "extra": {
  9186. "branch-alias": {
  9187. "dev-master": "1.4.x-dev"
  9188. }
  9189. },
  9190. "autoload": {
  9191. "classmap": [
  9192. "src/"
  9193. ]
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "BSD-3-Clause"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Sebastian Bergmann",
  9202. "email": "sb@sebastian-bergmann.de",
  9203. "role": "lead"
  9204. }
  9205. ],
  9206. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9207. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9208. "keywords": [
  9209. "filesystem",
  9210. "iterator"
  9211. ],
  9212. "time": "2017-11-27T13:52:08+00:00"
  9213. },
  9214. {
  9215. "name": "phpunit/php-text-template",
  9216. "version": "1.2.1",
  9217. "source": {
  9218. "type": "git",
  9219. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9220. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9221. },
  9222. "dist": {
  9223. "type": "zip",
  9224. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9225. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9226. "shasum": "",
  9227. "mirrors": [
  9228. {
  9229. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9230. "preferred": true
  9231. }
  9232. ]
  9233. },
  9234. "require": {
  9235. "php": ">=5.3.3"
  9236. },
  9237. "type": "library",
  9238. "autoload": {
  9239. "classmap": [
  9240. "src/"
  9241. ]
  9242. },
  9243. "notification-url": "https://packagist.org/downloads/",
  9244. "license": [
  9245. "BSD-3-Clause"
  9246. ],
  9247. "authors": [
  9248. {
  9249. "name": "Sebastian Bergmann",
  9250. "email": "sebastian@phpunit.de",
  9251. "role": "lead"
  9252. }
  9253. ],
  9254. "description": "Simple template engine.",
  9255. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9256. "keywords": [
  9257. "template"
  9258. ],
  9259. "time": "2015-06-21T13:50:34+00:00"
  9260. },
  9261. {
  9262. "name": "phpunit/php-timer",
  9263. "version": "1.0.9",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9267. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  9272. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  9273. "shasum": "",
  9274. "mirrors": [
  9275. {
  9276. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9277. "preferred": true
  9278. }
  9279. ]
  9280. },
  9281. "require": {
  9282. "php": "^5.3.3 || ^7.0"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-master": "1.0-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "classmap": [
  9295. "src/"
  9296. ]
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "license": [
  9300. "BSD-3-Clause"
  9301. ],
  9302. "authors": [
  9303. {
  9304. "name": "Sebastian Bergmann",
  9305. "email": "sb@sebastian-bergmann.de",
  9306. "role": "lead"
  9307. }
  9308. ],
  9309. "description": "Utility class for timing",
  9310. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9311. "keywords": [
  9312. "timer"
  9313. ],
  9314. "time": "2017-02-26T11:10:40+00:00"
  9315. },
  9316. {
  9317. "name": "phpunit/php-token-stream",
  9318. "version": "2.0.2",
  9319. "source": {
  9320. "type": "git",
  9321. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9322. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  9323. },
  9324. "dist": {
  9325. "type": "zip",
  9326. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  9327. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  9328. "shasum": "",
  9329. "mirrors": [
  9330. {
  9331. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9332. "preferred": true
  9333. }
  9334. ]
  9335. },
  9336. "require": {
  9337. "ext-tokenizer": "*",
  9338. "php": "^7.0"
  9339. },
  9340. "require-dev": {
  9341. "phpunit/phpunit": "^6.2.4"
  9342. },
  9343. "type": "library",
  9344. "extra": {
  9345. "branch-alias": {
  9346. "dev-master": "2.0-dev"
  9347. }
  9348. },
  9349. "autoload": {
  9350. "classmap": [
  9351. "src/"
  9352. ]
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "license": [
  9356. "BSD-3-Clause"
  9357. ],
  9358. "authors": [
  9359. {
  9360. "name": "Sebastian Bergmann",
  9361. "email": "sebastian@phpunit.de"
  9362. }
  9363. ],
  9364. "description": "Wrapper around PHP's tokenizer extension.",
  9365. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9366. "keywords": [
  9367. "tokenizer"
  9368. ],
  9369. "time": "2017-11-27T05:48:46+00:00"
  9370. },
  9371. {
  9372. "name": "phpunit/phpunit",
  9373. "version": "6.5.13",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9377. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  9382. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  9383. "shasum": "",
  9384. "mirrors": [
  9385. {
  9386. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9387. "preferred": true
  9388. }
  9389. ]
  9390. },
  9391. "require": {
  9392. "ext-dom": "*",
  9393. "ext-json": "*",
  9394. "ext-libxml": "*",
  9395. "ext-mbstring": "*",
  9396. "ext-xml": "*",
  9397. "myclabs/deep-copy": "^1.6.1",
  9398. "phar-io/manifest": "^1.0.1",
  9399. "phar-io/version": "^1.0",
  9400. "php": "^7.0",
  9401. "phpspec/prophecy": "^1.7",
  9402. "phpunit/php-code-coverage": "^5.3",
  9403. "phpunit/php-file-iterator": "^1.4.3",
  9404. "phpunit/php-text-template": "^1.2.1",
  9405. "phpunit/php-timer": "^1.0.9",
  9406. "phpunit/phpunit-mock-objects": "^5.0.9",
  9407. "sebastian/comparator": "^2.1",
  9408. "sebastian/diff": "^2.0",
  9409. "sebastian/environment": "^3.1",
  9410. "sebastian/exporter": "^3.1",
  9411. "sebastian/global-state": "^2.0",
  9412. "sebastian/object-enumerator": "^3.0.3",
  9413. "sebastian/resource-operations": "^1.0",
  9414. "sebastian/version": "^2.0.1"
  9415. },
  9416. "conflict": {
  9417. "phpdocumentor/reflection-docblock": "3.0.2",
  9418. "phpunit/dbunit": "<3.0"
  9419. },
  9420. "require-dev": {
  9421. "ext-pdo": "*"
  9422. },
  9423. "suggest": {
  9424. "ext-xdebug": "*",
  9425. "phpunit/php-invoker": "^1.1"
  9426. },
  9427. "bin": [
  9428. "phpunit"
  9429. ],
  9430. "type": "library",
  9431. "extra": {
  9432. "branch-alias": {
  9433. "dev-master": "6.5.x-dev"
  9434. }
  9435. },
  9436. "autoload": {
  9437. "classmap": [
  9438. "src/"
  9439. ]
  9440. },
  9441. "notification-url": "https://packagist.org/downloads/",
  9442. "license": [
  9443. "BSD-3-Clause"
  9444. ],
  9445. "authors": [
  9446. {
  9447. "name": "Sebastian Bergmann",
  9448. "email": "sebastian@phpunit.de",
  9449. "role": "lead"
  9450. }
  9451. ],
  9452. "description": "The PHP Unit Testing framework.",
  9453. "homepage": "https://phpunit.de/",
  9454. "keywords": [
  9455. "phpunit",
  9456. "testing",
  9457. "xunit"
  9458. ],
  9459. "time": "2018-09-08T15:10:43+00:00"
  9460. },
  9461. {
  9462. "name": "phpunit/phpunit-mock-objects",
  9463. "version": "5.0.10",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  9467. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  9472. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  9473. "shasum": "",
  9474. "mirrors": [
  9475. {
  9476. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9477. "preferred": true
  9478. }
  9479. ]
  9480. },
  9481. "require": {
  9482. "doctrine/instantiator": "^1.0.5",
  9483. "php": "^7.0",
  9484. "phpunit/php-text-template": "^1.2.1",
  9485. "sebastian/exporter": "^3.1"
  9486. },
  9487. "conflict": {
  9488. "phpunit/phpunit": "<6.0"
  9489. },
  9490. "require-dev": {
  9491. "phpunit/phpunit": "^6.5.11"
  9492. },
  9493. "suggest": {
  9494. "ext-soap": "*"
  9495. },
  9496. "type": "library",
  9497. "extra": {
  9498. "branch-alias": {
  9499. "dev-master": "5.0.x-dev"
  9500. }
  9501. },
  9502. "autoload": {
  9503. "classmap": [
  9504. "src/"
  9505. ]
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "BSD-3-Clause"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Sebastian Bergmann",
  9514. "email": "sebastian@phpunit.de",
  9515. "role": "lead"
  9516. }
  9517. ],
  9518. "description": "Mock Object library for PHPUnit",
  9519. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  9520. "keywords": [
  9521. "mock",
  9522. "xunit"
  9523. ],
  9524. "time": "2018-08-09T05:50:03+00:00"
  9525. },
  9526. {
  9527. "name": "sebastian/code-unit-reverse-lookup",
  9528. "version": "1.0.1",
  9529. "source": {
  9530. "type": "git",
  9531. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9532. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9533. },
  9534. "dist": {
  9535. "type": "zip",
  9536. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9537. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9538. "shasum": "",
  9539. "mirrors": [
  9540. {
  9541. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9542. "preferred": true
  9543. }
  9544. ]
  9545. },
  9546. "require": {
  9547. "php": "^5.6 || ^7.0"
  9548. },
  9549. "require-dev": {
  9550. "phpunit/phpunit": "^5.7 || ^6.0"
  9551. },
  9552. "type": "library",
  9553. "extra": {
  9554. "branch-alias": {
  9555. "dev-master": "1.0.x-dev"
  9556. }
  9557. },
  9558. "autoload": {
  9559. "classmap": [
  9560. "src/"
  9561. ]
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "license": [
  9565. "BSD-3-Clause"
  9566. ],
  9567. "authors": [
  9568. {
  9569. "name": "Sebastian Bergmann",
  9570. "email": "sebastian@phpunit.de"
  9571. }
  9572. ],
  9573. "description": "Looks up which function or method a line of code belongs to",
  9574. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9575. "time": "2017-03-04T06:30:41+00:00"
  9576. },
  9577. {
  9578. "name": "sebastian/comparator",
  9579. "version": "2.1.3",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/sebastianbergmann/comparator.git",
  9583. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  9588. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  9589. "shasum": "",
  9590. "mirrors": [
  9591. {
  9592. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9593. "preferred": true
  9594. }
  9595. ]
  9596. },
  9597. "require": {
  9598. "php": "^7.0",
  9599. "sebastian/diff": "^2.0 || ^3.0",
  9600. "sebastian/exporter": "^3.1"
  9601. },
  9602. "require-dev": {
  9603. "phpunit/phpunit": "^6.4"
  9604. },
  9605. "type": "library",
  9606. "extra": {
  9607. "branch-alias": {
  9608. "dev-master": "2.1.x-dev"
  9609. }
  9610. },
  9611. "autoload": {
  9612. "classmap": [
  9613. "src/"
  9614. ]
  9615. },
  9616. "notification-url": "https://packagist.org/downloads/",
  9617. "license": [
  9618. "BSD-3-Clause"
  9619. ],
  9620. "authors": [
  9621. {
  9622. "name": "Jeff Welch",
  9623. "email": "whatthejeff@gmail.com"
  9624. },
  9625. {
  9626. "name": "Volker Dusch",
  9627. "email": "github@wallbash.com"
  9628. },
  9629. {
  9630. "name": "Bernhard Schussek",
  9631. "email": "bschussek@2bepublished.at"
  9632. },
  9633. {
  9634. "name": "Sebastian Bergmann",
  9635. "email": "sebastian@phpunit.de"
  9636. }
  9637. ],
  9638. "description": "Provides the functionality to compare PHP values for equality",
  9639. "homepage": "https://github.com/sebastianbergmann/comparator",
  9640. "keywords": [
  9641. "comparator",
  9642. "compare",
  9643. "equality"
  9644. ],
  9645. "time": "2018-02-01T13:46:46+00:00"
  9646. },
  9647. {
  9648. "name": "sebastian/diff",
  9649. "version": "2.0.1",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/sebastianbergmann/diff.git",
  9653. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  9658. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  9659. "shasum": "",
  9660. "mirrors": [
  9661. {
  9662. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9663. "preferred": true
  9664. }
  9665. ]
  9666. },
  9667. "require": {
  9668. "php": "^7.0"
  9669. },
  9670. "require-dev": {
  9671. "phpunit/phpunit": "^6.2"
  9672. },
  9673. "type": "library",
  9674. "extra": {
  9675. "branch-alias": {
  9676. "dev-master": "2.0-dev"
  9677. }
  9678. },
  9679. "autoload": {
  9680. "classmap": [
  9681. "src/"
  9682. ]
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "BSD-3-Clause"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Kore Nordmann",
  9691. "email": "mail@kore-nordmann.de"
  9692. },
  9693. {
  9694. "name": "Sebastian Bergmann",
  9695. "email": "sebastian@phpunit.de"
  9696. }
  9697. ],
  9698. "description": "Diff implementation",
  9699. "homepage": "https://github.com/sebastianbergmann/diff",
  9700. "keywords": [
  9701. "diff"
  9702. ],
  9703. "time": "2017-08-03T08:09:46+00:00"
  9704. },
  9705. {
  9706. "name": "sebastian/environment",
  9707. "version": "3.1.0",
  9708. "source": {
  9709. "type": "git",
  9710. "url": "https://github.com/sebastianbergmann/environment.git",
  9711. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  9712. },
  9713. "dist": {
  9714. "type": "zip",
  9715. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  9716. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  9717. "shasum": "",
  9718. "mirrors": [
  9719. {
  9720. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9721. "preferred": true
  9722. }
  9723. ]
  9724. },
  9725. "require": {
  9726. "php": "^7.0"
  9727. },
  9728. "require-dev": {
  9729. "phpunit/phpunit": "^6.1"
  9730. },
  9731. "type": "library",
  9732. "extra": {
  9733. "branch-alias": {
  9734. "dev-master": "3.1.x-dev"
  9735. }
  9736. },
  9737. "autoload": {
  9738. "classmap": [
  9739. "src/"
  9740. ]
  9741. },
  9742. "notification-url": "https://packagist.org/downloads/",
  9743. "license": [
  9744. "BSD-3-Clause"
  9745. ],
  9746. "authors": [
  9747. {
  9748. "name": "Sebastian Bergmann",
  9749. "email": "sebastian@phpunit.de"
  9750. }
  9751. ],
  9752. "description": "Provides functionality to handle HHVM/PHP environments",
  9753. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9754. "keywords": [
  9755. "Xdebug",
  9756. "environment",
  9757. "hhvm"
  9758. ],
  9759. "time": "2017-07-01T08:51:00+00:00"
  9760. },
  9761. {
  9762. "name": "sebastian/exporter",
  9763. "version": "3.1.0",
  9764. "source": {
  9765. "type": "git",
  9766. "url": "https://github.com/sebastianbergmann/exporter.git",
  9767. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  9768. },
  9769. "dist": {
  9770. "type": "zip",
  9771. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  9772. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  9773. "shasum": "",
  9774. "mirrors": [
  9775. {
  9776. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9777. "preferred": true
  9778. }
  9779. ]
  9780. },
  9781. "require": {
  9782. "php": "^7.0",
  9783. "sebastian/recursion-context": "^3.0"
  9784. },
  9785. "require-dev": {
  9786. "ext-mbstring": "*",
  9787. "phpunit/phpunit": "^6.0"
  9788. },
  9789. "type": "library",
  9790. "extra": {
  9791. "branch-alias": {
  9792. "dev-master": "3.1.x-dev"
  9793. }
  9794. },
  9795. "autoload": {
  9796. "classmap": [
  9797. "src/"
  9798. ]
  9799. },
  9800. "notification-url": "https://packagist.org/downloads/",
  9801. "license": [
  9802. "BSD-3-Clause"
  9803. ],
  9804. "authors": [
  9805. {
  9806. "name": "Jeff Welch",
  9807. "email": "whatthejeff@gmail.com"
  9808. },
  9809. {
  9810. "name": "Volker Dusch",
  9811. "email": "github@wallbash.com"
  9812. },
  9813. {
  9814. "name": "Bernhard Schussek",
  9815. "email": "bschussek@2bepublished.at"
  9816. },
  9817. {
  9818. "name": "Sebastian Bergmann",
  9819. "email": "sebastian@phpunit.de"
  9820. },
  9821. {
  9822. "name": "Adam Harvey",
  9823. "email": "aharvey@php.net"
  9824. }
  9825. ],
  9826. "description": "Provides the functionality to export PHP variables for visualization",
  9827. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9828. "keywords": [
  9829. "export",
  9830. "exporter"
  9831. ],
  9832. "time": "2017-04-03T13:19:02+00:00"
  9833. },
  9834. {
  9835. "name": "sebastian/global-state",
  9836. "version": "2.0.0",
  9837. "source": {
  9838. "type": "git",
  9839. "url": "https://github.com/sebastianbergmann/global-state.git",
  9840. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  9841. },
  9842. "dist": {
  9843. "type": "zip",
  9844. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  9845. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  9846. "shasum": "",
  9847. "mirrors": [
  9848. {
  9849. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9850. "preferred": true
  9851. }
  9852. ]
  9853. },
  9854. "require": {
  9855. "php": "^7.0"
  9856. },
  9857. "require-dev": {
  9858. "phpunit/phpunit": "^6.0"
  9859. },
  9860. "suggest": {
  9861. "ext-uopz": "*"
  9862. },
  9863. "type": "library",
  9864. "extra": {
  9865. "branch-alias": {
  9866. "dev-master": "2.0-dev"
  9867. }
  9868. },
  9869. "autoload": {
  9870. "classmap": [
  9871. "src/"
  9872. ]
  9873. },
  9874. "notification-url": "https://packagist.org/downloads/",
  9875. "license": [
  9876. "BSD-3-Clause"
  9877. ],
  9878. "authors": [
  9879. {
  9880. "name": "Sebastian Bergmann",
  9881. "email": "sebastian@phpunit.de"
  9882. }
  9883. ],
  9884. "description": "Snapshotting of global state",
  9885. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9886. "keywords": [
  9887. "global state"
  9888. ],
  9889. "time": "2017-04-27T15:39:26+00:00"
  9890. },
  9891. {
  9892. "name": "sebastian/object-enumerator",
  9893. "version": "3.0.3",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9897. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9902. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9903. "shasum": "",
  9904. "mirrors": [
  9905. {
  9906. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9907. "preferred": true
  9908. }
  9909. ]
  9910. },
  9911. "require": {
  9912. "php": "^7.0",
  9913. "sebastian/object-reflector": "^1.1.1",
  9914. "sebastian/recursion-context": "^3.0"
  9915. },
  9916. "require-dev": {
  9917. "phpunit/phpunit": "^6.0"
  9918. },
  9919. "type": "library",
  9920. "extra": {
  9921. "branch-alias": {
  9922. "dev-master": "3.0.x-dev"
  9923. }
  9924. },
  9925. "autoload": {
  9926. "classmap": [
  9927. "src/"
  9928. ]
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "BSD-3-Clause"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Sebastian Bergmann",
  9937. "email": "sebastian@phpunit.de"
  9938. }
  9939. ],
  9940. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9941. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9942. "time": "2017-08-03T12:35:26+00:00"
  9943. },
  9944. {
  9945. "name": "sebastian/object-reflector",
  9946. "version": "1.1.1",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9950. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9955. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9956. "shasum": "",
  9957. "mirrors": [
  9958. {
  9959. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9960. "preferred": true
  9961. }
  9962. ]
  9963. },
  9964. "require": {
  9965. "php": "^7.0"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^6.0"
  9969. },
  9970. "type": "library",
  9971. "extra": {
  9972. "branch-alias": {
  9973. "dev-master": "1.1-dev"
  9974. }
  9975. },
  9976. "autoload": {
  9977. "classmap": [
  9978. "src/"
  9979. ]
  9980. },
  9981. "notification-url": "https://packagist.org/downloads/",
  9982. "license": [
  9983. "BSD-3-Clause"
  9984. ],
  9985. "authors": [
  9986. {
  9987. "name": "Sebastian Bergmann",
  9988. "email": "sebastian@phpunit.de"
  9989. }
  9990. ],
  9991. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9992. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9993. "time": "2017-03-29T09:07:27+00:00"
  9994. },
  9995. {
  9996. "name": "sebastian/recursion-context",
  9997. "version": "3.0.0",
  9998. "source": {
  9999. "type": "git",
  10000. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10001. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10002. },
  10003. "dist": {
  10004. "type": "zip",
  10005. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10006. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10007. "shasum": "",
  10008. "mirrors": [
  10009. {
  10010. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10011. "preferred": true
  10012. }
  10013. ]
  10014. },
  10015. "require": {
  10016. "php": "^7.0"
  10017. },
  10018. "require-dev": {
  10019. "phpunit/phpunit": "^6.0"
  10020. },
  10021. "type": "library",
  10022. "extra": {
  10023. "branch-alias": {
  10024. "dev-master": "3.0.x-dev"
  10025. }
  10026. },
  10027. "autoload": {
  10028. "classmap": [
  10029. "src/"
  10030. ]
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "BSD-3-Clause"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Jeff Welch",
  10039. "email": "whatthejeff@gmail.com"
  10040. },
  10041. {
  10042. "name": "Sebastian Bergmann",
  10043. "email": "sebastian@phpunit.de"
  10044. },
  10045. {
  10046. "name": "Adam Harvey",
  10047. "email": "aharvey@php.net"
  10048. }
  10049. ],
  10050. "description": "Provides functionality to recursively process PHP variables",
  10051. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10052. "time": "2017-03-03T06:23:57+00:00"
  10053. },
  10054. {
  10055. "name": "sebastian/resource-operations",
  10056. "version": "1.0.0",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10060. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10065. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10066. "shasum": "",
  10067. "mirrors": [
  10068. {
  10069. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10070. "preferred": true
  10071. }
  10072. ]
  10073. },
  10074. "require": {
  10075. "php": ">=5.6.0"
  10076. },
  10077. "type": "library",
  10078. "extra": {
  10079. "branch-alias": {
  10080. "dev-master": "1.0.x-dev"
  10081. }
  10082. },
  10083. "autoload": {
  10084. "classmap": [
  10085. "src/"
  10086. ]
  10087. },
  10088. "notification-url": "https://packagist.org/downloads/",
  10089. "license": [
  10090. "BSD-3-Clause"
  10091. ],
  10092. "authors": [
  10093. {
  10094. "name": "Sebastian Bergmann",
  10095. "email": "sebastian@phpunit.de"
  10096. }
  10097. ],
  10098. "description": "Provides a list of PHP built-in functions that operate on resources",
  10099. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10100. "time": "2015-07-28T20:34:47+00:00"
  10101. },
  10102. {
  10103. "name": "sebastian/version",
  10104. "version": "2.0.1",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/sebastianbergmann/version.git",
  10108. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10113. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10114. "shasum": "",
  10115. "mirrors": [
  10116. {
  10117. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10118. "preferred": true
  10119. }
  10120. ]
  10121. },
  10122. "require": {
  10123. "php": ">=5.6"
  10124. },
  10125. "type": "library",
  10126. "extra": {
  10127. "branch-alias": {
  10128. "dev-master": "2.0.x-dev"
  10129. }
  10130. },
  10131. "autoload": {
  10132. "classmap": [
  10133. "src/"
  10134. ]
  10135. },
  10136. "notification-url": "https://packagist.org/downloads/",
  10137. "license": [
  10138. "BSD-3-Clause"
  10139. ],
  10140. "authors": [
  10141. {
  10142. "name": "Sebastian Bergmann",
  10143. "email": "sebastian@phpunit.de",
  10144. "role": "lead"
  10145. }
  10146. ],
  10147. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10148. "homepage": "https://github.com/sebastianbergmann/version",
  10149. "time": "2016-10-03T07:35:21+00:00"
  10150. },
  10151. {
  10152. "name": "seld/jsonlint",
  10153. "version": "1.7.1",
  10154. "source": {
  10155. "type": "git",
  10156. "url": "https://github.com/Seldaek/jsonlint.git",
  10157. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  10158. },
  10159. "dist": {
  10160. "type": "zip",
  10161. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  10162. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  10163. "shasum": "",
  10164. "mirrors": [
  10165. {
  10166. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10167. "preferred": true
  10168. }
  10169. ]
  10170. },
  10171. "require": {
  10172. "php": "^5.3 || ^7.0"
  10173. },
  10174. "require-dev": {
  10175. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10176. },
  10177. "bin": [
  10178. "bin/jsonlint"
  10179. ],
  10180. "type": "library",
  10181. "autoload": {
  10182. "psr-4": {
  10183. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10184. }
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "license": [
  10188. "MIT"
  10189. ],
  10190. "authors": [
  10191. {
  10192. "name": "Jordi Boggiano",
  10193. "email": "j.boggiano@seld.be",
  10194. "homepage": "http://seld.be"
  10195. }
  10196. ],
  10197. "description": "JSON Linter",
  10198. "keywords": [
  10199. "json",
  10200. "linter",
  10201. "parser",
  10202. "validator"
  10203. ],
  10204. "time": "2018-01-24T12:46:19+00:00"
  10205. },
  10206. {
  10207. "name": "seld/phar-utils",
  10208. "version": "1.0.1",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/Seldaek/phar-utils.git",
  10212. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  10217. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  10218. "shasum": "",
  10219. "mirrors": [
  10220. {
  10221. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10222. "preferred": true
  10223. }
  10224. ]
  10225. },
  10226. "require": {
  10227. "php": ">=5.3"
  10228. },
  10229. "type": "library",
  10230. "extra": {
  10231. "branch-alias": {
  10232. "dev-master": "1.x-dev"
  10233. }
  10234. },
  10235. "autoload": {
  10236. "psr-4": {
  10237. "Seld\\PharUtils\\": "src/"
  10238. }
  10239. },
  10240. "notification-url": "https://packagist.org/downloads/",
  10241. "license": [
  10242. "MIT"
  10243. ],
  10244. "authors": [
  10245. {
  10246. "name": "Jordi Boggiano",
  10247. "email": "j.boggiano@seld.be"
  10248. }
  10249. ],
  10250. "description": "PHAR file format utilities, for when PHP phars you up",
  10251. "keywords": [
  10252. "phra"
  10253. ],
  10254. "time": "2015-10-13T18:44:15+00:00"
  10255. },
  10256. {
  10257. "name": "symfony/filesystem",
  10258. "version": "v4.1.8",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/symfony/filesystem.git",
  10262. "reference": "71cc7693940bdad4dac4b038acd46b4f1ae7d2ca"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/symfony/filesystem/zipball/71cc7693940bdad4dac4b038acd46b4f1ae7d2ca",
  10267. "reference": "71cc7693940bdad4dac4b038acd46b4f1ae7d2ca",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": "^7.1.3",
  10278. "symfony/polyfill-ctype": "~1.8"
  10279. },
  10280. "type": "library",
  10281. "extra": {
  10282. "branch-alias": {
  10283. "dev-master": "4.1-dev"
  10284. }
  10285. },
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Symfony\\Component\\Filesystem\\": ""
  10289. },
  10290. "exclude-from-classmap": [
  10291. "/Tests/"
  10292. ]
  10293. },
  10294. "notification-url": "https://packagist.org/downloads/",
  10295. "license": [
  10296. "MIT"
  10297. ],
  10298. "authors": [
  10299. {
  10300. "name": "Fabien Potencier",
  10301. "email": "fabien@symfony.com"
  10302. },
  10303. {
  10304. "name": "Symfony Community",
  10305. "homepage": "https://symfony.com/contributors"
  10306. }
  10307. ],
  10308. "description": "Symfony Filesystem Component",
  10309. "homepage": "https://symfony.com",
  10310. "time": "2018-11-11T19:51:29+00:00"
  10311. },
  10312. {
  10313. "name": "symfony/thanks",
  10314. "version": "v1.1.0",
  10315. "source": {
  10316. "type": "git",
  10317. "url": "https://github.com/symfony/thanks.git",
  10318. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  10319. },
  10320. "dist": {
  10321. "type": "zip",
  10322. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  10323. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  10324. "shasum": "",
  10325. "mirrors": [
  10326. {
  10327. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10328. "preferred": true
  10329. }
  10330. ]
  10331. },
  10332. "require": {
  10333. "composer-plugin-api": "^1.0",
  10334. "php": "^5.5.9|^7.0.0"
  10335. },
  10336. "type": "composer-plugin",
  10337. "extra": {
  10338. "branch-alias": {
  10339. "dev-master": "1.0-dev"
  10340. },
  10341. "class": "Symfony\\Thanks\\Thanks"
  10342. },
  10343. "autoload": {
  10344. "psr-4": {
  10345. "Symfony\\Thanks\\": "src"
  10346. }
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "MIT"
  10351. ],
  10352. "authors": [
  10353. {
  10354. "name": "Nicolas Grekas",
  10355. "email": "p@tchwork.com"
  10356. }
  10357. ],
  10358. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  10359. "time": "2018-08-24T14:08:13+00:00"
  10360. },
  10361. {
  10362. "name": "theseer/tokenizer",
  10363. "version": "1.1.0",
  10364. "source": {
  10365. "type": "git",
  10366. "url": "https://github.com/theseer/tokenizer.git",
  10367. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  10368. },
  10369. "dist": {
  10370. "type": "zip",
  10371. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  10372. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  10373. "shasum": "",
  10374. "mirrors": [
  10375. {
  10376. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10377. "preferred": true
  10378. }
  10379. ]
  10380. },
  10381. "require": {
  10382. "ext-dom": "*",
  10383. "ext-tokenizer": "*",
  10384. "ext-xmlwriter": "*",
  10385. "php": "^7.0"
  10386. },
  10387. "type": "library",
  10388. "autoload": {
  10389. "classmap": [
  10390. "src/"
  10391. ]
  10392. },
  10393. "notification-url": "https://packagist.org/downloads/",
  10394. "license": [
  10395. "BSD-3-Clause"
  10396. ],
  10397. "authors": [
  10398. {
  10399. "name": "Arne Blankerts",
  10400. "email": "arne@blankerts.de",
  10401. "role": "Developer"
  10402. }
  10403. ],
  10404. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10405. "time": "2017-04-07T12:08:54+00:00"
  10406. }
  10407. ],
  10408. "aliases": [],
  10409. "minimum-stability": "stable",
  10410. "stability-flags": {
  10411. "dingo/api": 15,
  10412. "ibrand/backend": 20
  10413. },
  10414. "prefer-stable": false,
  10415. "prefer-lowest": false,
  10416. "platform": {
  10417. "php": ">=7.0.0"
  10418. },
  10419. "platform-dev": []
  10420. }