composer.lock 194 KB

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