composer.lock 200 KB

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