composer.lock 210 KB

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