composer.lock 208 KB

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