composer.lock 210 KB

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