composer.lock 198 KB

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