composer.lock 202 KB

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