composer.lock 202 KB

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