composer.lock 194 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518
  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": "9dbe59b01bc30be42026849f1dafe00b",
  8. "packages": [
  9. {
  10. "name": "apereo/phpcas",
  11. "version": "1.3.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/apereo/phpCAS.git",
  15. "reference": "b5b29102c3a42f570c4a3e852f3cf67cae6d6082"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/apereo/phpCAS/zipball/b5b29102c3a42f570c4a3e852f3cf67cae6d6082",
  20. "reference": "b5b29102c3a42f570c4a3e852f3cf67cae6d6082",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-curl": "*",
  25. "php": ">=5.4.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~3.7.10"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "1.3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "source/"
  39. ]
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "Apache-2.0"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Joachim Fritschi",
  48. "homepage": "https://wiki.jasig.org/display/~fritschi"
  49. },
  50. {
  51. "name": "Adam Franco",
  52. "homepage": "https://wiki.jasig.org/display/~adamfranco"
  53. }
  54. ],
  55. "description": "Provides a simple API for authenticating users against a CAS server",
  56. "homepage": "https://wiki.jasig.org/display/CASC/phpCAS",
  57. "keywords": [
  58. "apereo",
  59. "cas",
  60. "jasig"
  61. ],
  62. "time": "2019-04-22T19:48:16+00:00"
  63. },
  64. {
  65. "name": "composer/ca-bundle",
  66. "version": "1.1.4",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/composer/ca-bundle.git",
  70. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  75. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "ext-openssl": "*",
  80. "ext-pcre": "*",
  81. "php": "^5.3.2 || ^7.0"
  82. },
  83. "require-dev": {
  84. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  85. "psr/log": "^1.0",
  86. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  87. },
  88. "type": "library",
  89. "extra": {
  90. "branch-alias": {
  91. "dev-master": "1.x-dev"
  92. }
  93. },
  94. "autoload": {
  95. "psr-4": {
  96. "Composer\\CaBundle\\": "src"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Jordi Boggiano",
  106. "email": "j.boggiano@seld.be",
  107. "homepage": "http://seld.be"
  108. }
  109. ],
  110. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  111. "keywords": [
  112. "cabundle",
  113. "cacert",
  114. "certificate",
  115. "ssl",
  116. "tls"
  117. ],
  118. "time": "2019-01-28T09:30:10+00:00"
  119. },
  120. {
  121. "name": "diogocomposer/xmpphp",
  122. "version": "v3.0.0",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/diogogithub/xmpphp.git",
  126. "reference": "c7cdcc588aa47893ab41a1670c5dfe649674a4b0"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/diogogithub/xmpphp/zipball/c7cdcc588aa47893ab41a1670c5dfe649674a4b0",
  131. "reference": "c7cdcc588aa47893ab41a1670c5dfe649674a4b0",
  132. "shasum": ""
  133. },
  134. "require": {
  135. "ext-mbstring": "*",
  136. "ext-xml": "*",
  137. "php": ">=7.0.0"
  138. },
  139. "type": "library",
  140. "autoload": {
  141. "psr-4": {
  142. "XMPPHP\\": "XMPPHP"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "GPL-2.0+"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Ivan Borzenkov",
  152. "email": "ivan.borzenkov@gmail.com"
  153. },
  154. {
  155. "name": "bandroidx",
  156. "email": "bandroidx@gmail.com"
  157. },
  158. {
  159. "name": "BirknerAlex",
  160. "email": "alex.birkner@gmail.com"
  161. },
  162. {
  163. "name": "Stephan Wentz",
  164. "email": "stephan@wentz.it"
  165. },
  166. {
  167. "name": "Nathan Fritz",
  168. "email": "fritzy@netflint.net"
  169. },
  170. {
  171. "name": "Christian Weiske",
  172. "email": "cweiske@cweiske.de"
  173. },
  174. {
  175. "name": "Vito Tafuni",
  176. "email": "vitotafuni@gmail.com"
  177. },
  178. {
  179. "name": "Diogo Cordeiro",
  180. "email": "diogo@fc.up.pt"
  181. }
  182. ],
  183. "description": "XMPP PHP Library",
  184. "keywords": [
  185. "jabber",
  186. "xmpp",
  187. "xmpphp"
  188. ],
  189. "time": "2019-06-19T02:32:32+00:00"
  190. },
  191. {
  192. "name": "embed/embed",
  193. "version": "v3.4.0",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/oscarotero/Embed.git",
  197. "reference": "5594b253dee90888c14cdca43696183c98f078e9"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/5594b253dee90888c14cdca43696183c98f078e9",
  202. "reference": "5594b253dee90888c14cdca43696183c98f078e9",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "composer/ca-bundle": "^1.0",
  207. "ext-curl": "*",
  208. "ext-mbstring": "*",
  209. "php": "^5.6|^7.0"
  210. },
  211. "require-dev": {
  212. "friendsofphp/php-cs-fixer": "^2.0",
  213. "phpunit/phpunit": "^4.8|^5.7"
  214. },
  215. "type": "library",
  216. "autoload": {
  217. "psr-4": {
  218. "Embed\\": "src"
  219. }
  220. },
  221. "notification-url": "https://packagist.org/downloads/",
  222. "license": [
  223. "MIT"
  224. ],
  225. "authors": [
  226. {
  227. "name": "Oscar Otero",
  228. "email": "oom@oscarotero.com",
  229. "homepage": "http://oscarotero.com",
  230. "role": "Developer"
  231. }
  232. ],
  233. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  234. "homepage": "https://github.com/oscarotero/Embed",
  235. "keywords": [
  236. "embed",
  237. "embedly",
  238. "oembed",
  239. "opengraph",
  240. "twitter cards"
  241. ],
  242. "time": "2019-06-23T11:12:03+00:00"
  243. },
  244. {
  245. "name": "ezyang/htmlpurifier",
  246. "version": "v4.11.0",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/ezyang/htmlpurifier.git",
  250. "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7",
  255. "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7",
  256. "shasum": ""
  257. },
  258. "require": {
  259. "php": ">=5.2"
  260. },
  261. "require-dev": {
  262. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  263. },
  264. "type": "library",
  265. "autoload": {
  266. "psr-0": {
  267. "HTMLPurifier": "library/"
  268. },
  269. "files": [
  270. "library/HTMLPurifier.composer.php"
  271. ]
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "LGPL-2.1-or-later"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Edward Z. Yang",
  280. "email": "admin@htmlpurifier.org",
  281. "homepage": "http://ezyang.com"
  282. }
  283. ],
  284. "description": "Standards compliant HTML filter written in PHP",
  285. "homepage": "http://htmlpurifier.org/",
  286. "keywords": [
  287. "html"
  288. ],
  289. "time": "2019-07-14T18:58:38+00:00"
  290. },
  291. {
  292. "name": "hoa/consistency",
  293. "version": "1.17.05.02",
  294. "source": {
  295. "type": "git",
  296. "url": "https://github.com/hoaproject/Consistency.git",
  297. "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f"
  298. },
  299. "dist": {
  300. "type": "zip",
  301. "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f",
  302. "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f",
  303. "shasum": ""
  304. },
  305. "require": {
  306. "hoa/exception": "~1.0",
  307. "php": ">=5.5.0"
  308. },
  309. "require-dev": {
  310. "hoa/stream": "~1.0",
  311. "hoa/test": "~2.0"
  312. },
  313. "type": "library",
  314. "extra": {
  315. "branch-alias": {
  316. "dev-master": "1.x-dev"
  317. }
  318. },
  319. "autoload": {
  320. "psr-4": {
  321. "Hoa\\Consistency\\": "."
  322. },
  323. "files": [
  324. "Prelude.php"
  325. ]
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "BSD-3-Clause"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Ivan Enderlin",
  334. "email": "ivan.enderlin@hoa-project.net"
  335. },
  336. {
  337. "name": "Hoa community",
  338. "homepage": "https://hoa-project.net/"
  339. }
  340. ],
  341. "description": "The Hoa\\Consistency library.",
  342. "homepage": "https://hoa-project.net/",
  343. "keywords": [
  344. "autoloader",
  345. "callable",
  346. "consistency",
  347. "entity",
  348. "flex",
  349. "keyword",
  350. "library"
  351. ],
  352. "time": "2017-05-02T12:18:12+00:00"
  353. },
  354. {
  355. "name": "hoa/event",
  356. "version": "1.17.01.13",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/hoaproject/Event.git",
  360. "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54",
  365. "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "hoa/consistency": "~1.0",
  370. "hoa/exception": "~1.0"
  371. },
  372. "require-dev": {
  373. "hoa/test": "~2.0"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-master": "1.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Hoa\\Event\\": "."
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "BSD-3-Clause"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Ivan Enderlin",
  393. "email": "ivan.enderlin@hoa-project.net"
  394. },
  395. {
  396. "name": "Hoa community",
  397. "homepage": "https://hoa-project.net/"
  398. }
  399. ],
  400. "description": "The Hoa\\Event library.",
  401. "homepage": "https://hoa-project.net/",
  402. "keywords": [
  403. "event",
  404. "library",
  405. "listener",
  406. "observer"
  407. ],
  408. "time": "2017-01-13T15:30:50+00:00"
  409. },
  410. {
  411. "name": "hoa/exception",
  412. "version": "1.17.01.16",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/hoaproject/Exception.git",
  416. "reference": "091727d46420a3d7468ef0595651488bfc3a458f"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f",
  421. "reference": "091727d46420a3d7468ef0595651488bfc3a458f",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "hoa/consistency": "~1.0",
  426. "hoa/event": "~1.0"
  427. },
  428. "require-dev": {
  429. "hoa/test": "~2.0"
  430. },
  431. "type": "library",
  432. "extra": {
  433. "branch-alias": {
  434. "dev-master": "1.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Hoa\\Exception\\": "."
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "BSD-3-Clause"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Ivan Enderlin",
  449. "email": "ivan.enderlin@hoa-project.net"
  450. },
  451. {
  452. "name": "Hoa community",
  453. "homepage": "https://hoa-project.net/"
  454. }
  455. ],
  456. "description": "The Hoa\\Exception library.",
  457. "homepage": "https://hoa-project.net/",
  458. "keywords": [
  459. "exception",
  460. "library"
  461. ],
  462. "time": "2017-01-16T07:53:27+00:00"
  463. },
  464. {
  465. "name": "masterminds/html5",
  466. "version": "2.6.0",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/Masterminds/html5-php.git",
  470. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  475. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "ext-ctype": "*",
  480. "ext-dom": "*",
  481. "ext-libxml": "*",
  482. "php": ">=5.3.0"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "^4.8.35",
  486. "sami/sami": "~2.0",
  487. "satooshi/php-coveralls": "1.0.*"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "branch-alias": {
  492. "dev-master": "2.6-dev"
  493. }
  494. },
  495. "autoload": {
  496. "psr-4": {
  497. "Masterminds\\": "src"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Matt Butcher",
  507. "email": "technosophos@gmail.com"
  508. },
  509. {
  510. "name": "Asmir Mustafic",
  511. "email": "goetas@gmail.com"
  512. },
  513. {
  514. "name": "Matt Farina",
  515. "email": "matt@mattfarina.com"
  516. }
  517. ],
  518. "description": "An HTML5 parser and serializer.",
  519. "homepage": "http://masterminds.github.io/html5-php",
  520. "keywords": [
  521. "HTML5",
  522. "dom",
  523. "html",
  524. "parser",
  525. "querypath",
  526. "serializer",
  527. "xml"
  528. ],
  529. "time": "2019-03-10T11:41:28+00:00"
  530. },
  531. {
  532. "name": "mf2/mf2",
  533. "version": "0.4.6",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/microformats/php-mf2.git",
  537. "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/microformats/php-mf2/zipball/00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23",
  542. "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": ">=5.4.0"
  547. },
  548. "require-dev": {
  549. "mf2/tests": "@dev",
  550. "phpdocumentor/phpdocumentor": "v2.8.4",
  551. "phpunit/phpunit": "4.8.*"
  552. },
  553. "suggest": {
  554. "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
  555. "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
  556. },
  557. "bin": [
  558. "bin/fetch-mf2",
  559. "bin/parse-mf2"
  560. ],
  561. "type": "library",
  562. "autoload": {
  563. "files": [
  564. "Mf2/Parser.php"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "CC0-1.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Barnaby Walters",
  574. "homepage": "http://waterpigs.co.uk"
  575. }
  576. ],
  577. "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
  578. "keywords": [
  579. "html",
  580. "microformats",
  581. "microformats 2",
  582. "parser",
  583. "semantic"
  584. ],
  585. "time": "2018-08-24T14:47:04+00:00"
  586. },
  587. {
  588. "name": "michelf/php-markdown",
  589. "version": "1.8.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/michelf/php-markdown.git",
  593. "reference": "01ab082b355bf188d907b9929cd99b2923053495"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/michelf/php-markdown/zipball/01ab082b355bf188d907b9929cd99b2923053495",
  598. "reference": "01ab082b355bf188d907b9929cd99b2923053495",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=5.3.0"
  603. },
  604. "type": "library",
  605. "autoload": {
  606. "psr-4": {
  607. "Michelf\\": "Michelf/"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "BSD-3-Clause"
  613. ],
  614. "authors": [
  615. {
  616. "name": "Michel Fortin",
  617. "email": "michel.fortin@michelf.ca",
  618. "homepage": "https://michelf.ca/",
  619. "role": "Developer"
  620. },
  621. {
  622. "name": "John Gruber",
  623. "homepage": "https://daringfireball.net/"
  624. }
  625. ],
  626. "description": "PHP Markdown",
  627. "homepage": "https://michelf.ca/projects/php-markdown/",
  628. "keywords": [
  629. "markdown"
  630. ],
  631. "time": "2018-01-15T00:49:33+00:00"
  632. },
  633. {
  634. "name": "openid/php-openid",
  635. "version": "2.3.0",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/openid/php-openid.git",
  639. "reference": "924f9aa42453cd0f9dba72587b4e2cdf7f4de874"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/openid/php-openid/zipball/924f9aa42453cd0f9dba72587b4e2cdf7f4de874",
  644. "reference": "924f9aa42453cd0f9dba72587b4e2cdf7f4de874",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "ext-curl": "*",
  649. "ext-dom": "*",
  650. "ext-gmp": "*",
  651. "php": ">=4.3"
  652. },
  653. "type": "library",
  654. "autoload": {
  655. "classmap": [
  656. "Auth"
  657. ]
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "include-path": [
  661. "."
  662. ],
  663. "license": [
  664. "Apache-2.0"
  665. ],
  666. "authors": [
  667. {
  668. "name": "JanRain Inc.",
  669. "homepage": "http://www.openidenabled.com"
  670. }
  671. ],
  672. "description": "OpenID library for PHP5",
  673. "homepage": "http://github.com/openid/php-openid",
  674. "keywords": [
  675. "Authentication",
  676. "OpenId",
  677. "auth",
  678. "yadis"
  679. ],
  680. "time": "2015-07-30T18:07:43+00:00"
  681. },
  682. {
  683. "name": "paragonie/constant_time_encoding",
  684. "version": "v1.0.4",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/paragonie/constant_time_encoding.git",
  688. "reference": "2132f0f293d856026d7d11bd81b9f4a23a1dc1f6"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/2132f0f293d856026d7d11bd81b9f4a23a1dc1f6",
  693. "reference": "2132f0f293d856026d7d11bd81b9f4a23a1dc1f6",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "php": "^5.3|^7"
  698. },
  699. "require-dev": {
  700. "paragonie/random_compat": "^1.4|^2",
  701. "phpunit/phpunit": "4.*|5.*",
  702. "vimeo/psalm": "^0.3|^1"
  703. },
  704. "type": "library",
  705. "autoload": {
  706. "psr-4": {
  707. "ParagonIE\\ConstantTime\\": "src/"
  708. }
  709. },
  710. "notification-url": "https://packagist.org/downloads/",
  711. "license": [
  712. "MIT"
  713. ],
  714. "authors": [
  715. {
  716. "name": "Paragon Initiative Enterprises",
  717. "email": "security@paragonie.com",
  718. "homepage": "https://paragonie.com",
  719. "role": "Maintainer"
  720. },
  721. {
  722. "name": "Steve 'Sc00bz' Thomas",
  723. "email": "steve@tobtu.com",
  724. "homepage": "https://www.tobtu.com",
  725. "role": "Original Developer"
  726. }
  727. ],
  728. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  729. "keywords": [
  730. "base16",
  731. "base32",
  732. "base32_decode",
  733. "base32_encode",
  734. "base64",
  735. "base64_decode",
  736. "base64_encode",
  737. "bin2hex",
  738. "encoding",
  739. "hex",
  740. "hex2bin",
  741. "rfc4648"
  742. ],
  743. "time": "2018-04-30T17:57:16+00:00"
  744. },
  745. {
  746. "name": "paragonie/random_compat",
  747. "version": "v2.0.18",
  748. "source": {
  749. "type": "git",
  750. "url": "https://github.com/paragonie/random_compat.git",
  751. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  752. },
  753. "dist": {
  754. "type": "zip",
  755. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  756. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  757. "shasum": ""
  758. },
  759. "require": {
  760. "php": ">=5.2.0"
  761. },
  762. "require-dev": {
  763. "phpunit/phpunit": "4.*|5.*"
  764. },
  765. "suggest": {
  766. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  767. },
  768. "type": "library",
  769. "autoload": {
  770. "files": [
  771. "lib/random.php"
  772. ]
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Paragon Initiative Enterprises",
  781. "email": "security@paragonie.com",
  782. "homepage": "https://paragonie.com"
  783. }
  784. ],
  785. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  786. "keywords": [
  787. "csprng",
  788. "polyfill",
  789. "pseudorandom",
  790. "random"
  791. ],
  792. "time": "2019-01-03T20:59:08+00:00"
  793. },
  794. {
  795. "name": "pear/console_getopt",
  796. "version": "v1.4.2",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/pear/Console_Getopt.git",
  800. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  805. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  806. "shasum": ""
  807. },
  808. "type": "library",
  809. "autoload": {
  810. "psr-0": {
  811. "Console": "./"
  812. }
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "include-path": [
  816. "./"
  817. ],
  818. "license": [
  819. "BSD-2-Clause"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Greg Beaver",
  824. "email": "cellog@php.net",
  825. "role": "Helper"
  826. },
  827. {
  828. "name": "Andrei Zmievski",
  829. "email": "andrei@php.net",
  830. "role": "Lead"
  831. },
  832. {
  833. "name": "Stig Bakken",
  834. "email": "stig@php.net",
  835. "role": "Developer"
  836. }
  837. ],
  838. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  839. "time": "2019-02-06T16:52:33+00:00"
  840. },
  841. {
  842. "name": "phpseclib/phpseclib",
  843. "version": "dev-master",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/phpseclib/phpseclib.git",
  847. "reference": "f815e43077da67d3dd5b4d18a45753f5b79c1ab9"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/f815e43077da67d3dd5b4d18a45753f5b79c1ab9",
  852. "reference": "f815e43077da67d3dd5b4d18a45753f5b79c1ab9",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "paragonie/constant_time_encoding": "^1",
  857. "paragonie/random_compat": "^1.4|^2.0",
  858. "php": ">=5.6.1"
  859. },
  860. "require-dev": {
  861. "phing/phing": "~2.7",
  862. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  863. "sami/sami": "~2.0",
  864. "squizlabs/php_codesniffer": "~2.0"
  865. },
  866. "suggest": {
  867. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  868. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  869. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  870. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  871. },
  872. "type": "library",
  873. "autoload": {
  874. "files": [
  875. "phpseclib/bootstrap.php"
  876. ],
  877. "psr-4": {
  878. "phpseclib\\": "phpseclib/"
  879. }
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "MIT"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Jim Wigginton",
  888. "email": "terrafrost@php.net",
  889. "role": "Lead Developer"
  890. },
  891. {
  892. "name": "Patrick Monnerat",
  893. "email": "pm@datasphere.ch",
  894. "role": "Developer"
  895. },
  896. {
  897. "name": "Andreas Fischer",
  898. "email": "bantu@phpbb.com",
  899. "role": "Developer"
  900. },
  901. {
  902. "name": "Hans-Jürgen Petrich",
  903. "email": "petrich@tronic-media.com",
  904. "role": "Developer"
  905. },
  906. {
  907. "name": "Graham Campbell",
  908. "email": "graham@alt-three.com",
  909. "role": "Developer"
  910. }
  911. ],
  912. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  913. "homepage": "http://phpseclib.sourceforge.net",
  914. "keywords": [
  915. "BigInteger",
  916. "aes",
  917. "asn.1",
  918. "asn1",
  919. "blowfish",
  920. "crypto",
  921. "cryptography",
  922. "encryption",
  923. "rsa",
  924. "security",
  925. "sftp",
  926. "signature",
  927. "signing",
  928. "ssh",
  929. "twofish",
  930. "x.509",
  931. "x509"
  932. ],
  933. "time": "2019-06-23T16:33:59+00:00"
  934. },
  935. {
  936. "name": "stomp-php/stomp-php",
  937. "version": "4.5.1",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/stomp-php/stomp-php.git",
  941. "reference": "4c5f0a95330085a86fd852b8ad0b1fbb4e8a4158"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/4c5f0a95330085a86fd852b8ad0b1fbb4e8a4158",
  946. "reference": "4c5f0a95330085a86fd852b8ad0b1fbb4e8a4158",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "php": "^5.6 || ^7.0"
  951. },
  952. "require-dev": {
  953. "phpunit/phpunit": "^5.7"
  954. },
  955. "type": "library",
  956. "autoload": {
  957. "psr-4": {
  958. "Stomp\\": "src/"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "Apache-2.0"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Dejan Bosnanac",
  968. "email": "dejan@nighttale.net",
  969. "homepage": "http://www.nighttale.net"
  970. },
  971. {
  972. "name": "Sören Rohweder",
  973. "email": "s.rohweder@blage.net",
  974. "homepage": "http://www.monofone.de"
  975. },
  976. {
  977. "name": "Jens Radtke",
  978. "email": "swefl@fin-sn.de",
  979. "homepage": "http://www.fin-sn.de"
  980. }
  981. ],
  982. "description": "stomp support for PHP",
  983. "homepage": "http://github.com/stomp-php/stomp-php",
  984. "keywords": [
  985. "activeMQ",
  986. "apollomq",
  987. "jms",
  988. "messaging",
  989. "rabbitmq",
  990. "stomp"
  991. ],
  992. "time": "2019-04-09T08:25:54+00:00"
  993. }
  994. ],
  995. "packages-dev": [
  996. {
  997. "name": "cilex/cilex",
  998. "version": "1.1.0",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/Cilex/Cilex.git",
  1002. "reference": "7acd965a609a56d0345e8b6071c261fbdb926cb5"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/Cilex/Cilex/zipball/7acd965a609a56d0345e8b6071c261fbdb926cb5",
  1007. "reference": "7acd965a609a56d0345e8b6071c261fbdb926cb5",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "cilex/console-service-provider": "1.*",
  1012. "php": ">=5.3.3",
  1013. "pimple/pimple": "~1.0",
  1014. "symfony/finder": "~2.1",
  1015. "symfony/process": "~2.1"
  1016. },
  1017. "require-dev": {
  1018. "phpunit/phpunit": "3.7.*",
  1019. "symfony/validator": "~2.1"
  1020. },
  1021. "suggest": {
  1022. "monolog/monolog": ">=1.0.0",
  1023. "symfony/validator": ">=1.0.0",
  1024. "symfony/yaml": ">=1.0.0"
  1025. },
  1026. "type": "library",
  1027. "extra": {
  1028. "branch-alias": {
  1029. "dev-master": "1.0-dev"
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-0": {
  1034. "Cilex": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Mike van Riel",
  1044. "email": "mike.vanriel@naenius.com"
  1045. }
  1046. ],
  1047. "description": "The PHP micro-framework for Command line tools based on the Symfony2 Components",
  1048. "homepage": "http://cilex.github.com",
  1049. "keywords": [
  1050. "cli",
  1051. "microframework"
  1052. ],
  1053. "time": "2014-03-29T14:03:13+00:00"
  1054. },
  1055. {
  1056. "name": "cilex/console-service-provider",
  1057. "version": "1.0.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/Cilex/console-service-provider.git",
  1061. "reference": "25ee3d1875243d38e1a3448ff94bdf944f70d24e"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/Cilex/console-service-provider/zipball/25ee3d1875243d38e1a3448ff94bdf944f70d24e",
  1066. "reference": "25ee3d1875243d38e1a3448ff94bdf944f70d24e",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": ">=5.3.3",
  1071. "pimple/pimple": "1.*@dev",
  1072. "symfony/console": "~2.1"
  1073. },
  1074. "require-dev": {
  1075. "cilex/cilex": "1.*@dev",
  1076. "silex/silex": "1.*@dev"
  1077. },
  1078. "type": "library",
  1079. "extra": {
  1080. "branch-alias": {
  1081. "dev-master": "1.0-dev"
  1082. }
  1083. },
  1084. "autoload": {
  1085. "psr-0": {
  1086. "Cilex\\Provider\\Console": "src"
  1087. }
  1088. },
  1089. "notification-url": "https://packagist.org/downloads/",
  1090. "license": [
  1091. "MIT"
  1092. ],
  1093. "authors": [
  1094. {
  1095. "name": "Beau Simensen",
  1096. "email": "beau@dflydev.com",
  1097. "homepage": "http://beausimensen.com"
  1098. },
  1099. {
  1100. "name": "Mike van Riel",
  1101. "email": "mike.vanriel@naenius.com"
  1102. }
  1103. ],
  1104. "description": "Console Service Provider",
  1105. "keywords": [
  1106. "cilex",
  1107. "console",
  1108. "pimple",
  1109. "service-provider",
  1110. "silex"
  1111. ],
  1112. "time": "2012-12-19T10:50:58+00:00"
  1113. },
  1114. {
  1115. "name": "container-interop/container-interop",
  1116. "version": "1.2.0",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/container-interop/container-interop.git",
  1120. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1125. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "psr/container": "^1.0"
  1130. },
  1131. "type": "library",
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Interop\\Container\\": "src/Interop/Container/"
  1135. }
  1136. },
  1137. "notification-url": "https://packagist.org/downloads/",
  1138. "license": [
  1139. "MIT"
  1140. ],
  1141. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1142. "homepage": "https://github.com/container-interop/container-interop",
  1143. "time": "2017-02-14T19:40:03+00:00"
  1144. },
  1145. {
  1146. "name": "dnoegel/php-xdg-base-dir",
  1147. "version": "0.1",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1151. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1156. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "php": ">=5.3.2"
  1161. },
  1162. "require-dev": {
  1163. "phpunit/phpunit": "@stable"
  1164. },
  1165. "type": "project",
  1166. "autoload": {
  1167. "psr-4": {
  1168. "XdgBaseDir\\": "src/"
  1169. }
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "MIT"
  1174. ],
  1175. "description": "implementation of xdg base directory specification for php",
  1176. "time": "2014-10-24T07:27:01+00:00"
  1177. },
  1178. {
  1179. "name": "doctrine/annotations",
  1180. "version": "v1.4.0",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/doctrine/annotations.git",
  1184. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1189. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "doctrine/lexer": "1.*",
  1194. "php": "^5.6 || ^7.0"
  1195. },
  1196. "require-dev": {
  1197. "doctrine/cache": "1.*",
  1198. "phpunit/phpunit": "^5.7"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "1.4.x-dev"
  1204. }
  1205. },
  1206. "autoload": {
  1207. "psr-4": {
  1208. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1209. }
  1210. },
  1211. "notification-url": "https://packagist.org/downloads/",
  1212. "license": [
  1213. "MIT"
  1214. ],
  1215. "authors": [
  1216. {
  1217. "name": "Roman Borschel",
  1218. "email": "roman@code-factory.org"
  1219. },
  1220. {
  1221. "name": "Benjamin Eberlei",
  1222. "email": "kontakt@beberlei.de"
  1223. },
  1224. {
  1225. "name": "Guilherme Blanco",
  1226. "email": "guilhermeblanco@gmail.com"
  1227. },
  1228. {
  1229. "name": "Jonathan Wage",
  1230. "email": "jonwage@gmail.com"
  1231. },
  1232. {
  1233. "name": "Johannes Schmitt",
  1234. "email": "schmittjoh@gmail.com"
  1235. }
  1236. ],
  1237. "description": "Docblock Annotations Parser",
  1238. "homepage": "http://www.doctrine-project.org",
  1239. "keywords": [
  1240. "annotations",
  1241. "docblock",
  1242. "parser"
  1243. ],
  1244. "time": "2017-02-24T16:22:25+00:00"
  1245. },
  1246. {
  1247. "name": "doctrine/instantiator",
  1248. "version": "1.0.5",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/doctrine/instantiator.git",
  1252. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1257. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "php": ">=5.3,<8.0-DEV"
  1262. },
  1263. "require-dev": {
  1264. "athletic/athletic": "~0.1.8",
  1265. "ext-pdo": "*",
  1266. "ext-phar": "*",
  1267. "phpunit/phpunit": "~4.0",
  1268. "squizlabs/php_codesniffer": "~2.0"
  1269. },
  1270. "type": "library",
  1271. "extra": {
  1272. "branch-alias": {
  1273. "dev-master": "1.0.x-dev"
  1274. }
  1275. },
  1276. "autoload": {
  1277. "psr-4": {
  1278. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1279. }
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "MIT"
  1284. ],
  1285. "authors": [
  1286. {
  1287. "name": "Marco Pivetta",
  1288. "email": "ocramius@gmail.com",
  1289. "homepage": "http://ocramius.github.com/"
  1290. }
  1291. ],
  1292. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1293. "homepage": "https://github.com/doctrine/instantiator",
  1294. "keywords": [
  1295. "constructor",
  1296. "instantiate"
  1297. ],
  1298. "time": "2015-06-14T21:17:01+00:00"
  1299. },
  1300. {
  1301. "name": "doctrine/lexer",
  1302. "version": "1.0.2",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/doctrine/lexer.git",
  1306. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1311. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "php": ">=5.3.2"
  1316. },
  1317. "require-dev": {
  1318. "phpunit/phpunit": "^4.5"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "1.0.x-dev"
  1324. }
  1325. },
  1326. "autoload": {
  1327. "psr-4": {
  1328. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1329. }
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "MIT"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Roman Borschel",
  1338. "email": "roman@code-factory.org"
  1339. },
  1340. {
  1341. "name": "Guilherme Blanco",
  1342. "email": "guilhermeblanco@gmail.com"
  1343. },
  1344. {
  1345. "name": "Johannes Schmitt",
  1346. "email": "schmittjoh@gmail.com"
  1347. }
  1348. ],
  1349. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1350. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1351. "keywords": [
  1352. "annotations",
  1353. "docblock",
  1354. "lexer",
  1355. "parser",
  1356. "php"
  1357. ],
  1358. "time": "2019-06-08T11:03:04+00:00"
  1359. },
  1360. {
  1361. "name": "erusev/parsedown",
  1362. "version": "1.7.3",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/erusev/parsedown.git",
  1366. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  1371. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "ext-mbstring": "*",
  1376. "php": ">=5.3.0"
  1377. },
  1378. "require-dev": {
  1379. "phpunit/phpunit": "^4.8.35"
  1380. },
  1381. "type": "library",
  1382. "autoload": {
  1383. "psr-0": {
  1384. "Parsedown": ""
  1385. }
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "authors": [
  1392. {
  1393. "name": "Emanuil Rusev",
  1394. "email": "hello@erusev.com",
  1395. "homepage": "http://erusev.com"
  1396. }
  1397. ],
  1398. "description": "Parser for Markdown.",
  1399. "homepage": "http://parsedown.org",
  1400. "keywords": [
  1401. "markdown",
  1402. "parser"
  1403. ],
  1404. "time": "2019-03-17T18:48:37+00:00"
  1405. },
  1406. {
  1407. "name": "herrera-io/json",
  1408. "version": "1.0.3",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/kherge-php/json.git",
  1412. "reference": "60c696c9370a1e5136816ca557c17f82a6fa83f1"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/kherge-php/json/zipball/60c696c9370a1e5136816ca557c17f82a6fa83f1",
  1417. "reference": "60c696c9370a1e5136816ca557c17f82a6fa83f1",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "ext-json": "*",
  1422. "justinrainbow/json-schema": ">=1.0,<2.0-dev",
  1423. "php": ">=5.3.3",
  1424. "seld/jsonlint": ">=1.0,<2.0-dev"
  1425. },
  1426. "require-dev": {
  1427. "herrera-io/phpunit-test-case": "1.*",
  1428. "mikey179/vfsstream": "1.1.0",
  1429. "phpunit/phpunit": "3.7.*"
  1430. },
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "1.0-dev"
  1435. }
  1436. },
  1437. "autoload": {
  1438. "files": [
  1439. "src/lib/json_version.php"
  1440. ],
  1441. "psr-0": {
  1442. "Herrera\\Json": "src/lib"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Kevin Herrera",
  1452. "email": "kevin@herrera.io",
  1453. "homepage": "http://kevin.herrera.io"
  1454. }
  1455. ],
  1456. "description": "A library for simplifying JSON linting and validation.",
  1457. "homepage": "http://herrera-io.github.com/php-json",
  1458. "keywords": [
  1459. "json",
  1460. "lint",
  1461. "schema",
  1462. "validate"
  1463. ],
  1464. "abandoned": "kherge/json",
  1465. "time": "2013-10-30T16:51:34+00:00"
  1466. },
  1467. {
  1468. "name": "herrera-io/phar-update",
  1469. "version": "1.0.3",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/kherge-abandoned/php-phar-update.git",
  1473. "reference": "00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/kherge-abandoned/php-phar-update/zipball/00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b",
  1478. "reference": "00a79e1d5b8cf3c080a2e3becf1ddf7a7fea025b",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "herrera-io/json": "1.*",
  1483. "kherge/version": "1.*",
  1484. "php": ">=5.3.3"
  1485. },
  1486. "require-dev": {
  1487. "herrera-io/phpunit-test-case": "1.*",
  1488. "mikey179/vfsstream": "1.1.0",
  1489. "phpunit/phpunit": "3.7.*"
  1490. },
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "1.0-dev"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "files": [
  1499. "src/lib/constants.php"
  1500. ],
  1501. "psr-0": {
  1502. "Herrera\\Phar\\Update": "src/lib"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Kevin Herrera",
  1512. "email": "kevin@herrera.io",
  1513. "homepage": "http://kevin.herrera.io"
  1514. }
  1515. ],
  1516. "description": "A library for self-updating Phars.",
  1517. "homepage": "http://herrera-io.github.com/php-phar-update",
  1518. "keywords": [
  1519. "phar",
  1520. "update"
  1521. ],
  1522. "abandoned": true,
  1523. "time": "2013-10-30T17:23:01+00:00"
  1524. },
  1525. {
  1526. "name": "jakub-onderka/php-console-color",
  1527. "version": "v0.2",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1531. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1536. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "php": ">=5.4.0"
  1541. },
  1542. "require-dev": {
  1543. "jakub-onderka/php-code-style": "1.0",
  1544. "jakub-onderka/php-parallel-lint": "1.0",
  1545. "jakub-onderka/php-var-dump-check": "0.*",
  1546. "phpunit/phpunit": "~4.3",
  1547. "squizlabs/php_codesniffer": "1.*"
  1548. },
  1549. "type": "library",
  1550. "autoload": {
  1551. "psr-4": {
  1552. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "BSD-2-Clause"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Jakub Onderka",
  1562. "email": "jakub.onderka@gmail.com"
  1563. }
  1564. ],
  1565. "time": "2018-09-29T17:23:10+00:00"
  1566. },
  1567. {
  1568. "name": "jakub-onderka/php-console-highlighter",
  1569. "version": "v0.4",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1573. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1578. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1579. "shasum": ""
  1580. },
  1581. "require": {
  1582. "ext-tokenizer": "*",
  1583. "jakub-onderka/php-console-color": "~0.2",
  1584. "php": ">=5.4.0"
  1585. },
  1586. "require-dev": {
  1587. "jakub-onderka/php-code-style": "~1.0",
  1588. "jakub-onderka/php-parallel-lint": "~1.0",
  1589. "jakub-onderka/php-var-dump-check": "~0.1",
  1590. "phpunit/phpunit": "~4.0",
  1591. "squizlabs/php_codesniffer": "~1.5"
  1592. },
  1593. "type": "library",
  1594. "autoload": {
  1595. "psr-4": {
  1596. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1597. }
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "Jakub Onderka",
  1606. "email": "acci@acci.cz",
  1607. "homepage": "http://www.acci.cz/"
  1608. }
  1609. ],
  1610. "description": "Highlight PHP code in terminal",
  1611. "time": "2018-09-29T18:48:56+00:00"
  1612. },
  1613. {
  1614. "name": "jms/metadata",
  1615. "version": "1.7.0",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/schmittjoh/metadata.git",
  1619. "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/e5854ab1aa643623dc64adde718a8eec32b957a8",
  1624. "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "php": ">=5.3.0"
  1629. },
  1630. "require-dev": {
  1631. "doctrine/cache": "~1.0",
  1632. "symfony/cache": "~3.1"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "1.5.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-0": {
  1642. "Metadata\\": "src/"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Asmir Mustafic",
  1652. "email": "goetas@gmail.com"
  1653. },
  1654. {
  1655. "name": "Johannes M. Schmitt",
  1656. "email": "schmittjoh@gmail.com"
  1657. }
  1658. ],
  1659. "description": "Class/method/property metadata management in PHP",
  1660. "keywords": [
  1661. "annotations",
  1662. "metadata",
  1663. "xml",
  1664. "yaml"
  1665. ],
  1666. "time": "2018-10-26T12:40:10+00:00"
  1667. },
  1668. {
  1669. "name": "jms/parser-lib",
  1670. "version": "1.0.0",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/schmittjoh/parser-lib.git",
  1674. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1679. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "1.0-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-0": {
  1693. "JMS\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "Apache2"
  1699. ],
  1700. "description": "A library for easily creating recursive-descent parsers.",
  1701. "time": "2012-11-18T18:08:43+00:00"
  1702. },
  1703. {
  1704. "name": "jms/serializer",
  1705. "version": "1.14.0",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/schmittjoh/serializer.git",
  1709. "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ee96d57024af9a7716d56fcbe3aa94b3d030f3ca",
  1714. "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "doctrine/annotations": "^1.0",
  1719. "doctrine/instantiator": "^1.0.3",
  1720. "jms/metadata": "^1.3",
  1721. "jms/parser-lib": "1.*",
  1722. "php": "^5.5|^7.0",
  1723. "phpcollection/phpcollection": "~0.1",
  1724. "phpoption/phpoption": "^1.1"
  1725. },
  1726. "conflict": {
  1727. "twig/twig": "<1.12"
  1728. },
  1729. "require-dev": {
  1730. "doctrine/orm": "~2.1",
  1731. "doctrine/phpcr-odm": "^1.3|^2.0",
  1732. "ext-pdo_sqlite": "*",
  1733. "jackalope/jackalope-doctrine-dbal": "^1.1.5",
  1734. "phpunit/phpunit": "^4.8|^5.0",
  1735. "propel/propel1": "~1.7",
  1736. "psr/container": "^1.0",
  1737. "symfony/dependency-injection": "^2.7|^3.3|^4.0",
  1738. "symfony/expression-language": "^2.6|^3.0",
  1739. "symfony/filesystem": "^2.1",
  1740. "symfony/form": "~2.1|^3.0",
  1741. "symfony/translation": "^2.1|^3.0",
  1742. "symfony/validator": "^2.2|^3.0",
  1743. "symfony/yaml": "^2.1|^3.0",
  1744. "twig/twig": "~1.12|~2.0"
  1745. },
  1746. "suggest": {
  1747. "doctrine/cache": "Required if you like to use cache functionality.",
  1748. "doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
  1749. "symfony/yaml": "Required if you'd like to serialize data to YAML format."
  1750. },
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-1.x": "1.14-dev"
  1755. }
  1756. },
  1757. "autoload": {
  1758. "psr-0": {
  1759. "JMS\\Serializer": "src/"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "MIT"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Asmir Mustafic",
  1769. "email": "goetas@gmail.com"
  1770. },
  1771. {
  1772. "name": "Johannes M. Schmitt",
  1773. "email": "schmittjoh@gmail.com"
  1774. }
  1775. ],
  1776. "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
  1777. "homepage": "http://jmsyst.com/libs/serializer",
  1778. "keywords": [
  1779. "deserialization",
  1780. "jaxb",
  1781. "json",
  1782. "serialization",
  1783. "xml"
  1784. ],
  1785. "time": "2019-04-17T08:12:16+00:00"
  1786. },
  1787. {
  1788. "name": "justinrainbow/json-schema",
  1789. "version": "1.6.1",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/justinrainbow/json-schema.git",
  1793. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/cc84765fb7317f6b07bd8ac78364747f95b86341",
  1798. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "php": ">=5.3.29"
  1803. },
  1804. "require-dev": {
  1805. "json-schema/json-schema-test-suite": "1.1.0",
  1806. "phpdocumentor/phpdocumentor": "~2",
  1807. "phpunit/phpunit": "~3.7"
  1808. },
  1809. "bin": [
  1810. "bin/validate-json"
  1811. ],
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-master": "1.6.x-dev"
  1816. }
  1817. },
  1818. "autoload": {
  1819. "psr-4": {
  1820. "JsonSchema\\": "src/JsonSchema/"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "BSD-3-Clause"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Bruno Prieto Reis",
  1830. "email": "bruno.p.reis@gmail.com"
  1831. },
  1832. {
  1833. "name": "Justin Rainbow",
  1834. "email": "justin.rainbow@gmail.com"
  1835. },
  1836. {
  1837. "name": "Igor Wiedler",
  1838. "email": "igor@wiedler.ch"
  1839. },
  1840. {
  1841. "name": "Robert Schönthal",
  1842. "email": "seroscho@googlemail.com"
  1843. }
  1844. ],
  1845. "description": "A library to validate a json schema.",
  1846. "homepage": "https://github.com/justinrainbow/json-schema",
  1847. "keywords": [
  1848. "json",
  1849. "schema"
  1850. ],
  1851. "time": "2016-01-25T15:43:01+00:00"
  1852. },
  1853. {
  1854. "name": "kherge/version",
  1855. "version": "1.0.1",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/kherge-abandoned/Version.git",
  1859. "reference": "f07cf83f8ce533be8f93d2893d96d674bbeb7e30"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/kherge-abandoned/Version/zipball/f07cf83f8ce533be8f93d2893d96d674bbeb7e30",
  1864. "reference": "f07cf83f8ce533be8f93d2893d96d674bbeb7e30",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "php": ">=5.3.3"
  1869. },
  1870. "type": "library",
  1871. "extra": {
  1872. "branch-alias": {
  1873. "dev-master": "1.0-dev"
  1874. }
  1875. },
  1876. "autoload": {
  1877. "psr-0": {
  1878. "KevinGH\\Version": "src/lib/"
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Kevin Herrera",
  1888. "email": "me@kevingh.com"
  1889. }
  1890. ],
  1891. "description": "A parsing and comparison library for semantic versioning.",
  1892. "homepage": "http://github.com/kherge/Version",
  1893. "abandoned": true,
  1894. "time": "2012-08-16T17:13:03+00:00"
  1895. },
  1896. {
  1897. "name": "monolog/monolog",
  1898. "version": "1.24.0",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/Seldaek/monolog.git",
  1902. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1907. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "php": ">=5.3.0",
  1912. "psr/log": "~1.0"
  1913. },
  1914. "provide": {
  1915. "psr/log-implementation": "1.0.0"
  1916. },
  1917. "require-dev": {
  1918. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1919. "doctrine/couchdb": "~1.0@dev",
  1920. "graylog2/gelf-php": "~1.0",
  1921. "jakub-onderka/php-parallel-lint": "0.9",
  1922. "php-amqplib/php-amqplib": "~2.4",
  1923. "php-console/php-console": "^3.1.3",
  1924. "phpunit/phpunit": "~4.5",
  1925. "phpunit/phpunit-mock-objects": "2.3.0",
  1926. "ruflin/elastica": ">=0.90 <3.0",
  1927. "sentry/sentry": "^0.13",
  1928. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1929. },
  1930. "suggest": {
  1931. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1932. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1933. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1934. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1935. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1936. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1937. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1938. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1939. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1940. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1941. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "branch-alias": {
  1946. "dev-master": "2.0.x-dev"
  1947. }
  1948. },
  1949. "autoload": {
  1950. "psr-4": {
  1951. "Monolog\\": "src/Monolog"
  1952. }
  1953. },
  1954. "notification-url": "https://packagist.org/downloads/",
  1955. "license": [
  1956. "MIT"
  1957. ],
  1958. "authors": [
  1959. {
  1960. "name": "Jordi Boggiano",
  1961. "email": "j.boggiano@seld.be",
  1962. "homepage": "http://seld.be"
  1963. }
  1964. ],
  1965. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1966. "homepage": "http://github.com/Seldaek/monolog",
  1967. "keywords": [
  1968. "log",
  1969. "logging",
  1970. "psr-3"
  1971. ],
  1972. "time": "2018-11-05T09:00:11+00:00"
  1973. },
  1974. {
  1975. "name": "myclabs/deep-copy",
  1976. "version": "1.7.0",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/myclabs/DeepCopy.git",
  1980. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1985. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": "^5.6 || ^7.0"
  1990. },
  1991. "require-dev": {
  1992. "doctrine/collections": "^1.0",
  1993. "doctrine/common": "^2.6",
  1994. "phpunit/phpunit": "^4.1"
  1995. },
  1996. "type": "library",
  1997. "autoload": {
  1998. "psr-4": {
  1999. "DeepCopy\\": "src/DeepCopy/"
  2000. },
  2001. "files": [
  2002. "src/DeepCopy/deep_copy.php"
  2003. ]
  2004. },
  2005. "notification-url": "https://packagist.org/downloads/",
  2006. "license": [
  2007. "MIT"
  2008. ],
  2009. "description": "Create deep copies (clones) of your objects",
  2010. "keywords": [
  2011. "clone",
  2012. "copy",
  2013. "duplicate",
  2014. "object",
  2015. "object graph"
  2016. ],
  2017. "time": "2017-10-19T19:58:43+00:00"
  2018. },
  2019. {
  2020. "name": "nikic/php-parser",
  2021. "version": "v1.4.1",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/nikic/PHP-Parser.git",
  2025. "reference": "f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51",
  2030. "reference": "f78af2c9c86107aa1a34cd1dbb5bbe9eeb0d9f51",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "ext-tokenizer": "*",
  2035. "php": ">=5.3"
  2036. },
  2037. "type": "library",
  2038. "extra": {
  2039. "branch-alias": {
  2040. "dev-master": "1.4-dev"
  2041. }
  2042. },
  2043. "autoload": {
  2044. "files": [
  2045. "lib/bootstrap.php"
  2046. ]
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "BSD-3-Clause"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "Nikita Popov"
  2055. }
  2056. ],
  2057. "description": "A PHP parser written in PHP",
  2058. "keywords": [
  2059. "parser",
  2060. "php"
  2061. ],
  2062. "time": "2015-09-19T14:15:08+00:00"
  2063. },
  2064. {
  2065. "name": "phar-io/manifest",
  2066. "version": "1.0.1",
  2067. "source": {
  2068. "type": "git",
  2069. "url": "https://github.com/phar-io/manifest.git",
  2070. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  2071. },
  2072. "dist": {
  2073. "type": "zip",
  2074. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2075. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2076. "shasum": ""
  2077. },
  2078. "require": {
  2079. "ext-dom": "*",
  2080. "ext-phar": "*",
  2081. "phar-io/version": "^1.0.1",
  2082. "php": "^5.6 || ^7.0"
  2083. },
  2084. "type": "library",
  2085. "extra": {
  2086. "branch-alias": {
  2087. "dev-master": "1.0.x-dev"
  2088. }
  2089. },
  2090. "autoload": {
  2091. "classmap": [
  2092. "src/"
  2093. ]
  2094. },
  2095. "notification-url": "https://packagist.org/downloads/",
  2096. "license": [
  2097. "BSD-3-Clause"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "Arne Blankerts",
  2102. "email": "arne@blankerts.de",
  2103. "role": "Developer"
  2104. },
  2105. {
  2106. "name": "Sebastian Heuer",
  2107. "email": "sebastian@phpeople.de",
  2108. "role": "Developer"
  2109. },
  2110. {
  2111. "name": "Sebastian Bergmann",
  2112. "email": "sebastian@phpunit.de",
  2113. "role": "Developer"
  2114. }
  2115. ],
  2116. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2117. "time": "2017-03-05T18:14:27+00:00"
  2118. },
  2119. {
  2120. "name": "phar-io/version",
  2121. "version": "1.0.1",
  2122. "source": {
  2123. "type": "git",
  2124. "url": "https://github.com/phar-io/version.git",
  2125. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  2126. },
  2127. "dist": {
  2128. "type": "zip",
  2129. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  2130. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  2131. "shasum": ""
  2132. },
  2133. "require": {
  2134. "php": "^5.6 || ^7.0"
  2135. },
  2136. "type": "library",
  2137. "autoload": {
  2138. "classmap": [
  2139. "src/"
  2140. ]
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "BSD-3-Clause"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Arne Blankerts",
  2149. "email": "arne@blankerts.de",
  2150. "role": "Developer"
  2151. },
  2152. {
  2153. "name": "Sebastian Heuer",
  2154. "email": "sebastian@phpeople.de",
  2155. "role": "Developer"
  2156. },
  2157. {
  2158. "name": "Sebastian Bergmann",
  2159. "email": "sebastian@phpunit.de",
  2160. "role": "Developer"
  2161. }
  2162. ],
  2163. "description": "Library for handling version information and constraints",
  2164. "time": "2017-03-05T17:38:23+00:00"
  2165. },
  2166. {
  2167. "name": "phpcollection/phpcollection",
  2168. "version": "0.5.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/schmittjoh/php-collection.git",
  2172. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  2177. "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "phpoption/phpoption": "1.*"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "0.4-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-0": {
  2191. "PhpCollection": "src/"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "Apache2"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Johannes M. Schmitt",
  2201. "email": "schmittjoh@gmail.com"
  2202. }
  2203. ],
  2204. "description": "General-Purpose Collection Library for PHP",
  2205. "keywords": [
  2206. "collection",
  2207. "list",
  2208. "map",
  2209. "sequence",
  2210. "set"
  2211. ],
  2212. "time": "2015-05-17T12:39:23+00:00"
  2213. },
  2214. {
  2215. "name": "phpdocumentor/fileset",
  2216. "version": "1.0.0",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/phpDocumentor/Fileset.git",
  2220. "reference": "bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/phpDocumentor/Fileset/zipball/bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0",
  2225. "reference": "bfa78d8fa9763dfce6d0e5d3730c1d8ab25d34b0",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "php": ">=5.3.3",
  2230. "symfony/finder": "~2.1"
  2231. },
  2232. "require-dev": {
  2233. "phpunit/phpunit": "~3.7"
  2234. },
  2235. "type": "library",
  2236. "autoload": {
  2237. "psr-0": {
  2238. "phpDocumentor": [
  2239. "src/",
  2240. "tests/unit/"
  2241. ]
  2242. }
  2243. },
  2244. "notification-url": "https://packagist.org/downloads/",
  2245. "license": [
  2246. "MIT"
  2247. ],
  2248. "description": "Fileset component for collecting a set of files given directories and file paths",
  2249. "homepage": "http://www.phpdoc.org",
  2250. "keywords": [
  2251. "files",
  2252. "fileset",
  2253. "phpdoc"
  2254. ],
  2255. "time": "2013-08-06T21:07:42+00:00"
  2256. },
  2257. {
  2258. "name": "phpdocumentor/graphviz",
  2259. "version": "1.0.4",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/phpDocumentor/GraphViz.git",
  2263. "reference": "a906a90a9f230535f25ea31caf81b2323956283f"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/phpDocumentor/GraphViz/zipball/a906a90a9f230535f25ea31caf81b2323956283f",
  2268. "reference": "a906a90a9f230535f25ea31caf81b2323956283f",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "php": ">=5.3.3"
  2273. },
  2274. "require-dev": {
  2275. "phpunit/phpunit": "~4.0"
  2276. },
  2277. "type": "library",
  2278. "autoload": {
  2279. "psr-0": {
  2280. "phpDocumentor": [
  2281. "src/",
  2282. "tests/unit"
  2283. ]
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Mike van Riel",
  2293. "email": "mike.vanriel@naenius.com"
  2294. }
  2295. ],
  2296. "time": "2016-02-02T13:00:08+00:00"
  2297. },
  2298. {
  2299. "name": "phpdocumentor/phpdocumentor",
  2300. "version": "v2.9.0",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/phpDocumentor/phpDocumentor2.git",
  2304. "reference": "be607da0eef9b9249c43c5b4820d25d631c73667"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/phpDocumentor/phpDocumentor2/zipball/be607da0eef9b9249c43c5b4820d25d631c73667",
  2309. "reference": "be607da0eef9b9249c43c5b4820d25d631c73667",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "cilex/cilex": "~1.0",
  2314. "erusev/parsedown": "~1.0",
  2315. "herrera-io/phar-update": "1.0.3",
  2316. "jms/serializer": ">=0.12",
  2317. "monolog/monolog": "~1.6",
  2318. "php": ">=5.3.3",
  2319. "phpdocumentor/fileset": "~1.0",
  2320. "phpdocumentor/graphviz": "~1.0",
  2321. "phpdocumentor/reflection": "^3.0",
  2322. "phpdocumentor/reflection-docblock": "~2.0",
  2323. "symfony/config": "~2.3",
  2324. "symfony/console": "~2.3",
  2325. "symfony/event-dispatcher": "~2.1",
  2326. "symfony/process": "~2.0",
  2327. "symfony/stopwatch": "~2.3",
  2328. "symfony/validator": "~2.2",
  2329. "twig/twig": "~1.3",
  2330. "zendframework/zend-cache": "~2.1",
  2331. "zendframework/zend-config": "~2.1",
  2332. "zendframework/zend-filter": "~2.1",
  2333. "zendframework/zend-i18n": "~2.1",
  2334. "zendframework/zend-serializer": "~2.1",
  2335. "zendframework/zend-servicemanager": "~2.1",
  2336. "zendframework/zend-stdlib": "~2.1",
  2337. "zetacomponents/document": ">=1.3.1"
  2338. },
  2339. "require-dev": {
  2340. "behat/behat": "~3.0",
  2341. "mikey179/vfsstream": "~1.2",
  2342. "mockery/mockery": "~0.9@dev",
  2343. "phpunit/phpunit": "~4.0",
  2344. "squizlabs/php_codesniffer": "~1.4",
  2345. "symfony/expression-language": "~2.4"
  2346. },
  2347. "suggest": {
  2348. "ext-twig": "Enabling the twig extension improves the generation of twig based templates.",
  2349. "ext-xslcache": "Enabling the XSLCache extension improves the generation of xml based templates."
  2350. },
  2351. "bin": [
  2352. "bin/phpdoc.php",
  2353. "bin/phpdoc"
  2354. ],
  2355. "type": "library",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-develop": "2.9-dev"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-0": {
  2363. "phpDocumentor": [
  2364. "src/",
  2365. "tests/unit/"
  2366. ],
  2367. "Cilex\\Provider": [
  2368. "src/"
  2369. ]
  2370. }
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "description": "Documentation Generator for PHP",
  2377. "homepage": "http://www.phpdoc.org",
  2378. "keywords": [
  2379. "api",
  2380. "application",
  2381. "dga",
  2382. "documentation",
  2383. "phpdoc"
  2384. ],
  2385. "time": "2016-05-22T09:50:56+00:00"
  2386. },
  2387. {
  2388. "name": "phpdocumentor/reflection",
  2389. "version": "3.0.1",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/phpDocumentor/Reflection.git",
  2393. "reference": "793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/phpDocumentor/Reflection/zipball/793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d",
  2398. "reference": "793bfd92d9a0fc96ae9608fb3e947c3f59fb3a0d",
  2399. "shasum": ""
  2400. },
  2401. "require": {
  2402. "nikic/php-parser": "^1.0",
  2403. "php": ">=5.3.3",
  2404. "phpdocumentor/reflection-docblock": "~2.0",
  2405. "psr/log": "~1.0"
  2406. },
  2407. "require-dev": {
  2408. "behat/behat": "~2.4",
  2409. "mockery/mockery": "~0.8",
  2410. "phpunit/phpunit": "~4.0"
  2411. },
  2412. "type": "library",
  2413. "extra": {
  2414. "branch-alias": {
  2415. "dev-master": "1.0.x-dev"
  2416. }
  2417. },
  2418. "autoload": {
  2419. "psr-0": {
  2420. "phpDocumentor": [
  2421. "src/",
  2422. "tests/unit/",
  2423. "tests/mocks/"
  2424. ]
  2425. }
  2426. },
  2427. "notification-url": "https://packagist.org/downloads/",
  2428. "license": [
  2429. "MIT"
  2430. ],
  2431. "description": "Reflection library to do Static Analysis for PHP Projects",
  2432. "homepage": "http://www.phpdoc.org",
  2433. "keywords": [
  2434. "phpDocumentor",
  2435. "phpdoc",
  2436. "reflection",
  2437. "static analysis"
  2438. ],
  2439. "time": "2016-05-21T08:42:32+00:00"
  2440. },
  2441. {
  2442. "name": "phpdocumentor/reflection-docblock",
  2443. "version": "2.0.5",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2447. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  2452. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": ">=5.3.3"
  2457. },
  2458. "require-dev": {
  2459. "phpunit/phpunit": "~4.0"
  2460. },
  2461. "suggest": {
  2462. "dflydev/markdown": "~1.0",
  2463. "erusev/parsedown": "~1.0"
  2464. },
  2465. "type": "library",
  2466. "extra": {
  2467. "branch-alias": {
  2468. "dev-master": "2.0.x-dev"
  2469. }
  2470. },
  2471. "autoload": {
  2472. "psr-0": {
  2473. "phpDocumentor": [
  2474. "src/"
  2475. ]
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Mike van Riel",
  2485. "email": "mike.vanriel@naenius.com"
  2486. }
  2487. ],
  2488. "time": "2016-01-25T08:17:30+00:00"
  2489. },
  2490. {
  2491. "name": "phpoption/phpoption",
  2492. "version": "1.5.0",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/schmittjoh/php-option.git",
  2496. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2501. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2502. "shasum": ""
  2503. },
  2504. "require": {
  2505. "php": ">=5.3.0"
  2506. },
  2507. "require-dev": {
  2508. "phpunit/phpunit": "4.7.*"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-master": "1.3-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-0": {
  2518. "PhpOption\\": "src/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "Apache2"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Johannes M. Schmitt",
  2528. "email": "schmittjoh@gmail.com"
  2529. }
  2530. ],
  2531. "description": "Option Type for PHP",
  2532. "keywords": [
  2533. "language",
  2534. "option",
  2535. "php",
  2536. "type"
  2537. ],
  2538. "time": "2015-07-25T16:39:46+00:00"
  2539. },
  2540. {
  2541. "name": "phpspec/prophecy",
  2542. "version": "1.8.1",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/phpspec/prophecy.git",
  2546. "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76",
  2551. "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "doctrine/instantiator": "^1.0.2",
  2556. "php": "^5.3|^7.0",
  2557. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2558. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2559. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2560. },
  2561. "require-dev": {
  2562. "phpspec/phpspec": "^2.5|^3.2",
  2563. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  2564. },
  2565. "type": "library",
  2566. "extra": {
  2567. "branch-alias": {
  2568. "dev-master": "1.8.x-dev"
  2569. }
  2570. },
  2571. "autoload": {
  2572. "psr-4": {
  2573. "Prophecy\\": "src/Prophecy"
  2574. }
  2575. },
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "MIT"
  2579. ],
  2580. "authors": [
  2581. {
  2582. "name": "Konstantin Kudryashov",
  2583. "email": "ever.zet@gmail.com",
  2584. "homepage": "http://everzet.com"
  2585. },
  2586. {
  2587. "name": "Marcello Duarte",
  2588. "email": "marcello.duarte@gmail.com"
  2589. }
  2590. ],
  2591. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2592. "homepage": "https://github.com/phpspec/prophecy",
  2593. "keywords": [
  2594. "Double",
  2595. "Dummy",
  2596. "fake",
  2597. "mock",
  2598. "spy",
  2599. "stub"
  2600. ],
  2601. "time": "2019-06-13T12:50:23+00:00"
  2602. },
  2603. {
  2604. "name": "phpunit/php-code-coverage",
  2605. "version": "5.3.2",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2609. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  2614. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  2615. "shasum": ""
  2616. },
  2617. "require": {
  2618. "ext-dom": "*",
  2619. "ext-xmlwriter": "*",
  2620. "php": "^7.0",
  2621. "phpunit/php-file-iterator": "^1.4.2",
  2622. "phpunit/php-text-template": "^1.2.1",
  2623. "phpunit/php-token-stream": "^2.0.1",
  2624. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  2625. "sebastian/environment": "^3.0",
  2626. "sebastian/version": "^2.0.1",
  2627. "theseer/tokenizer": "^1.1"
  2628. },
  2629. "require-dev": {
  2630. "phpunit/phpunit": "^6.0"
  2631. },
  2632. "suggest": {
  2633. "ext-xdebug": "^2.5.5"
  2634. },
  2635. "type": "library",
  2636. "extra": {
  2637. "branch-alias": {
  2638. "dev-master": "5.3.x-dev"
  2639. }
  2640. },
  2641. "autoload": {
  2642. "classmap": [
  2643. "src/"
  2644. ]
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "BSD-3-Clause"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Sebastian Bergmann",
  2653. "email": "sebastian@phpunit.de",
  2654. "role": "lead"
  2655. }
  2656. ],
  2657. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2658. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2659. "keywords": [
  2660. "coverage",
  2661. "testing",
  2662. "xunit"
  2663. ],
  2664. "time": "2018-04-06T15:36:58+00:00"
  2665. },
  2666. {
  2667. "name": "phpunit/php-file-iterator",
  2668. "version": "1.4.5",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2672. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2677. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2678. "shasum": ""
  2679. },
  2680. "require": {
  2681. "php": ">=5.3.3"
  2682. },
  2683. "type": "library",
  2684. "extra": {
  2685. "branch-alias": {
  2686. "dev-master": "1.4.x-dev"
  2687. }
  2688. },
  2689. "autoload": {
  2690. "classmap": [
  2691. "src/"
  2692. ]
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "BSD-3-Clause"
  2697. ],
  2698. "authors": [
  2699. {
  2700. "name": "Sebastian Bergmann",
  2701. "email": "sb@sebastian-bergmann.de",
  2702. "role": "lead"
  2703. }
  2704. ],
  2705. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2706. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2707. "keywords": [
  2708. "filesystem",
  2709. "iterator"
  2710. ],
  2711. "time": "2017-11-27T13:52:08+00:00"
  2712. },
  2713. {
  2714. "name": "phpunit/php-text-template",
  2715. "version": "1.2.1",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2719. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2724. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "php": ">=5.3.3"
  2729. },
  2730. "type": "library",
  2731. "autoload": {
  2732. "classmap": [
  2733. "src/"
  2734. ]
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "BSD-3-Clause"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "Sebastian Bergmann",
  2743. "email": "sebastian@phpunit.de",
  2744. "role": "lead"
  2745. }
  2746. ],
  2747. "description": "Simple template engine.",
  2748. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2749. "keywords": [
  2750. "template"
  2751. ],
  2752. "time": "2015-06-21T13:50:34+00:00"
  2753. },
  2754. {
  2755. "name": "phpunit/php-timer",
  2756. "version": "1.0.9",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2760. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2765. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2766. "shasum": ""
  2767. },
  2768. "require": {
  2769. "php": "^5.3.3 || ^7.0"
  2770. },
  2771. "require-dev": {
  2772. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2773. },
  2774. "type": "library",
  2775. "extra": {
  2776. "branch-alias": {
  2777. "dev-master": "1.0-dev"
  2778. }
  2779. },
  2780. "autoload": {
  2781. "classmap": [
  2782. "src/"
  2783. ]
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "BSD-3-Clause"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Sebastian Bergmann",
  2792. "email": "sb@sebastian-bergmann.de",
  2793. "role": "lead"
  2794. }
  2795. ],
  2796. "description": "Utility class for timing",
  2797. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2798. "keywords": [
  2799. "timer"
  2800. ],
  2801. "time": "2017-02-26T11:10:40+00:00"
  2802. },
  2803. {
  2804. "name": "phpunit/php-token-stream",
  2805. "version": "2.0.2",
  2806. "source": {
  2807. "type": "git",
  2808. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2809. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  2810. },
  2811. "dist": {
  2812. "type": "zip",
  2813. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  2814. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  2815. "shasum": ""
  2816. },
  2817. "require": {
  2818. "ext-tokenizer": "*",
  2819. "php": "^7.0"
  2820. },
  2821. "require-dev": {
  2822. "phpunit/phpunit": "^6.2.4"
  2823. },
  2824. "type": "library",
  2825. "extra": {
  2826. "branch-alias": {
  2827. "dev-master": "2.0-dev"
  2828. }
  2829. },
  2830. "autoload": {
  2831. "classmap": [
  2832. "src/"
  2833. ]
  2834. },
  2835. "notification-url": "https://packagist.org/downloads/",
  2836. "license": [
  2837. "BSD-3-Clause"
  2838. ],
  2839. "authors": [
  2840. {
  2841. "name": "Sebastian Bergmann",
  2842. "email": "sebastian@phpunit.de"
  2843. }
  2844. ],
  2845. "description": "Wrapper around PHP's tokenizer extension.",
  2846. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2847. "keywords": [
  2848. "tokenizer"
  2849. ],
  2850. "time": "2017-11-27T05:48:46+00:00"
  2851. },
  2852. {
  2853. "name": "phpunit/phpunit",
  2854. "version": "6.5.14",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2858. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  2863. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "ext-dom": "*",
  2868. "ext-json": "*",
  2869. "ext-libxml": "*",
  2870. "ext-mbstring": "*",
  2871. "ext-xml": "*",
  2872. "myclabs/deep-copy": "^1.6.1",
  2873. "phar-io/manifest": "^1.0.1",
  2874. "phar-io/version": "^1.0",
  2875. "php": "^7.0",
  2876. "phpspec/prophecy": "^1.7",
  2877. "phpunit/php-code-coverage": "^5.3",
  2878. "phpunit/php-file-iterator": "^1.4.3",
  2879. "phpunit/php-text-template": "^1.2.1",
  2880. "phpunit/php-timer": "^1.0.9",
  2881. "phpunit/phpunit-mock-objects": "^5.0.9",
  2882. "sebastian/comparator": "^2.1",
  2883. "sebastian/diff": "^2.0",
  2884. "sebastian/environment": "^3.1",
  2885. "sebastian/exporter": "^3.1",
  2886. "sebastian/global-state": "^2.0",
  2887. "sebastian/object-enumerator": "^3.0.3",
  2888. "sebastian/resource-operations": "^1.0",
  2889. "sebastian/version": "^2.0.1"
  2890. },
  2891. "conflict": {
  2892. "phpdocumentor/reflection-docblock": "3.0.2",
  2893. "phpunit/dbunit": "<3.0"
  2894. },
  2895. "require-dev": {
  2896. "ext-pdo": "*"
  2897. },
  2898. "suggest": {
  2899. "ext-xdebug": "*",
  2900. "phpunit/php-invoker": "^1.1"
  2901. },
  2902. "bin": [
  2903. "phpunit"
  2904. ],
  2905. "type": "library",
  2906. "extra": {
  2907. "branch-alias": {
  2908. "dev-master": "6.5.x-dev"
  2909. }
  2910. },
  2911. "autoload": {
  2912. "classmap": [
  2913. "src/"
  2914. ]
  2915. },
  2916. "notification-url": "https://packagist.org/downloads/",
  2917. "license": [
  2918. "BSD-3-Clause"
  2919. ],
  2920. "authors": [
  2921. {
  2922. "name": "Sebastian Bergmann",
  2923. "email": "sebastian@phpunit.de",
  2924. "role": "lead"
  2925. }
  2926. ],
  2927. "description": "The PHP Unit Testing framework.",
  2928. "homepage": "https://phpunit.de/",
  2929. "keywords": [
  2930. "phpunit",
  2931. "testing",
  2932. "xunit"
  2933. ],
  2934. "time": "2019-02-01T05:22:47+00:00"
  2935. },
  2936. {
  2937. "name": "phpunit/phpunit-mock-objects",
  2938. "version": "5.0.10",
  2939. "source": {
  2940. "type": "git",
  2941. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2942. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  2943. },
  2944. "dist": {
  2945. "type": "zip",
  2946. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  2947. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  2948. "shasum": ""
  2949. },
  2950. "require": {
  2951. "doctrine/instantiator": "^1.0.5",
  2952. "php": "^7.0",
  2953. "phpunit/php-text-template": "^1.2.1",
  2954. "sebastian/exporter": "^3.1"
  2955. },
  2956. "conflict": {
  2957. "phpunit/phpunit": "<6.0"
  2958. },
  2959. "require-dev": {
  2960. "phpunit/phpunit": "^6.5.11"
  2961. },
  2962. "suggest": {
  2963. "ext-soap": "*"
  2964. },
  2965. "type": "library",
  2966. "extra": {
  2967. "branch-alias": {
  2968. "dev-master": "5.0.x-dev"
  2969. }
  2970. },
  2971. "autoload": {
  2972. "classmap": [
  2973. "src/"
  2974. ]
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "BSD-3-Clause"
  2979. ],
  2980. "authors": [
  2981. {
  2982. "name": "Sebastian Bergmann",
  2983. "email": "sebastian@phpunit.de",
  2984. "role": "lead"
  2985. }
  2986. ],
  2987. "description": "Mock Object library for PHPUnit",
  2988. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2989. "keywords": [
  2990. "mock",
  2991. "xunit"
  2992. ],
  2993. "abandoned": true,
  2994. "time": "2018-08-09T05:50:03+00:00"
  2995. },
  2996. {
  2997. "name": "pimple/pimple",
  2998. "version": "v1.1.1",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/silexphp/Pimple.git",
  3002. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  3007. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": ">=5.3.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "branch-alias": {
  3016. "dev-master": "1.1.x-dev"
  3017. }
  3018. },
  3019. "autoload": {
  3020. "psr-0": {
  3021. "Pimple": "lib/"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Fabien Potencier",
  3031. "email": "fabien@symfony.com"
  3032. }
  3033. ],
  3034. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  3035. "homepage": "http://pimple.sensiolabs.org",
  3036. "keywords": [
  3037. "container",
  3038. "dependency injection"
  3039. ],
  3040. "time": "2013-11-22T08:30:29+00:00"
  3041. },
  3042. {
  3043. "name": "psr/cache",
  3044. "version": "1.0.1",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/php-fig/cache.git",
  3048. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3053. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3054. "shasum": ""
  3055. },
  3056. "require": {
  3057. "php": ">=5.3.0"
  3058. },
  3059. "type": "library",
  3060. "extra": {
  3061. "branch-alias": {
  3062. "dev-master": "1.0.x-dev"
  3063. }
  3064. },
  3065. "autoload": {
  3066. "psr-4": {
  3067. "Psr\\Cache\\": "src/"
  3068. }
  3069. },
  3070. "notification-url": "https://packagist.org/downloads/",
  3071. "license": [
  3072. "MIT"
  3073. ],
  3074. "authors": [
  3075. {
  3076. "name": "PHP-FIG",
  3077. "homepage": "http://www.php-fig.org/"
  3078. }
  3079. ],
  3080. "description": "Common interface for caching libraries",
  3081. "keywords": [
  3082. "cache",
  3083. "psr",
  3084. "psr-6"
  3085. ],
  3086. "time": "2016-08-06T20:24:11+00:00"
  3087. },
  3088. {
  3089. "name": "psr/container",
  3090. "version": "1.0.0",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/php-fig/container.git",
  3094. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3099. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3100. "shasum": ""
  3101. },
  3102. "require": {
  3103. "php": ">=5.3.0"
  3104. },
  3105. "type": "library",
  3106. "extra": {
  3107. "branch-alias": {
  3108. "dev-master": "1.0.x-dev"
  3109. }
  3110. },
  3111. "autoload": {
  3112. "psr-4": {
  3113. "Psr\\Container\\": "src/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "PHP-FIG",
  3123. "homepage": "http://www.php-fig.org/"
  3124. }
  3125. ],
  3126. "description": "Common Container Interface (PHP FIG PSR-11)",
  3127. "homepage": "https://github.com/php-fig/container",
  3128. "keywords": [
  3129. "PSR-11",
  3130. "container",
  3131. "container-interface",
  3132. "container-interop",
  3133. "psr"
  3134. ],
  3135. "time": "2017-02-14T16:28:37+00:00"
  3136. },
  3137. {
  3138. "name": "psr/log",
  3139. "version": "1.1.0",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://github.com/php-fig/log.git",
  3143. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3148. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3149. "shasum": ""
  3150. },
  3151. "require": {
  3152. "php": ">=5.3.0"
  3153. },
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-master": "1.0.x-dev"
  3158. }
  3159. },
  3160. "autoload": {
  3161. "psr-4": {
  3162. "Psr\\Log\\": "Psr/Log/"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "PHP-FIG",
  3172. "homepage": "http://www.php-fig.org/"
  3173. }
  3174. ],
  3175. "description": "Common interface for logging libraries",
  3176. "homepage": "https://github.com/php-fig/log",
  3177. "keywords": [
  3178. "log",
  3179. "psr",
  3180. "psr-3"
  3181. ],
  3182. "time": "2018-11-20T15:27:04+00:00"
  3183. },
  3184. {
  3185. "name": "psr/simple-cache",
  3186. "version": "1.0.1",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/php-fig/simple-cache.git",
  3190. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3195. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=5.3.0"
  3200. },
  3201. "type": "library",
  3202. "extra": {
  3203. "branch-alias": {
  3204. "dev-master": "1.0.x-dev"
  3205. }
  3206. },
  3207. "autoload": {
  3208. "psr-4": {
  3209. "Psr\\SimpleCache\\": "src/"
  3210. }
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "PHP-FIG",
  3219. "homepage": "http://www.php-fig.org/"
  3220. }
  3221. ],
  3222. "description": "Common interfaces for simple caching",
  3223. "keywords": [
  3224. "cache",
  3225. "caching",
  3226. "psr",
  3227. "psr-16",
  3228. "simple-cache"
  3229. ],
  3230. "time": "2017-10-23T01:57:42+00:00"
  3231. },
  3232. {
  3233. "name": "psy/psysh",
  3234. "version": "v0.9.9",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/bobthecow/psysh.git",
  3238. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3243. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "dnoegel/php-xdg-base-dir": "0.1",
  3248. "ext-json": "*",
  3249. "ext-tokenizer": "*",
  3250. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3251. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3252. "php": ">=5.4.0",
  3253. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  3254. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  3255. },
  3256. "require-dev": {
  3257. "bamarni/composer-bin-plugin": "^1.2",
  3258. "hoa/console": "~2.15|~3.16",
  3259. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3260. },
  3261. "suggest": {
  3262. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3263. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3264. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3265. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3266. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3267. },
  3268. "bin": [
  3269. "bin/psysh"
  3270. ],
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-develop": "0.9.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "files": [
  3279. "src/functions.php"
  3280. ],
  3281. "psr-4": {
  3282. "Psy\\": "src/"
  3283. }
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Justin Hileman",
  3292. "email": "justin@justinhileman.info",
  3293. "homepage": "http://justinhileman.com"
  3294. }
  3295. ],
  3296. "description": "An interactive shell for modern PHP.",
  3297. "homepage": "http://psysh.org",
  3298. "keywords": [
  3299. "REPL",
  3300. "console",
  3301. "interactive",
  3302. "shell"
  3303. ],
  3304. "time": "2018-10-13T15:16:03+00:00"
  3305. },
  3306. {
  3307. "name": "sebastian/code-unit-reverse-lookup",
  3308. "version": "1.0.1",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3312. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3317. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3318. "shasum": ""
  3319. },
  3320. "require": {
  3321. "php": "^5.6 || ^7.0"
  3322. },
  3323. "require-dev": {
  3324. "phpunit/phpunit": "^5.7 || ^6.0"
  3325. },
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "1.0.x-dev"
  3330. }
  3331. },
  3332. "autoload": {
  3333. "classmap": [
  3334. "src/"
  3335. ]
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "BSD-3-Clause"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "Sebastian Bergmann",
  3344. "email": "sebastian@phpunit.de"
  3345. }
  3346. ],
  3347. "description": "Looks up which function or method a line of code belongs to",
  3348. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3349. "time": "2017-03-04T06:30:41+00:00"
  3350. },
  3351. {
  3352. "name": "sebastian/comparator",
  3353. "version": "2.1.3",
  3354. "source": {
  3355. "type": "git",
  3356. "url": "https://github.com/sebastianbergmann/comparator.git",
  3357. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  3358. },
  3359. "dist": {
  3360. "type": "zip",
  3361. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  3362. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  3363. "shasum": ""
  3364. },
  3365. "require": {
  3366. "php": "^7.0",
  3367. "sebastian/diff": "^2.0 || ^3.0",
  3368. "sebastian/exporter": "^3.1"
  3369. },
  3370. "require-dev": {
  3371. "phpunit/phpunit": "^6.4"
  3372. },
  3373. "type": "library",
  3374. "extra": {
  3375. "branch-alias": {
  3376. "dev-master": "2.1.x-dev"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "classmap": [
  3381. "src/"
  3382. ]
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "BSD-3-Clause"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Jeff Welch",
  3391. "email": "whatthejeff@gmail.com"
  3392. },
  3393. {
  3394. "name": "Volker Dusch",
  3395. "email": "github@wallbash.com"
  3396. },
  3397. {
  3398. "name": "Bernhard Schussek",
  3399. "email": "bschussek@2bepublished.at"
  3400. },
  3401. {
  3402. "name": "Sebastian Bergmann",
  3403. "email": "sebastian@phpunit.de"
  3404. }
  3405. ],
  3406. "description": "Provides the functionality to compare PHP values for equality",
  3407. "homepage": "https://github.com/sebastianbergmann/comparator",
  3408. "keywords": [
  3409. "comparator",
  3410. "compare",
  3411. "equality"
  3412. ],
  3413. "time": "2018-02-01T13:46:46+00:00"
  3414. },
  3415. {
  3416. "name": "sebastian/diff",
  3417. "version": "2.0.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/sebastianbergmann/diff.git",
  3421. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3426. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": "^7.0"
  3431. },
  3432. "require-dev": {
  3433. "phpunit/phpunit": "^6.2"
  3434. },
  3435. "type": "library",
  3436. "extra": {
  3437. "branch-alias": {
  3438. "dev-master": "2.0-dev"
  3439. }
  3440. },
  3441. "autoload": {
  3442. "classmap": [
  3443. "src/"
  3444. ]
  3445. },
  3446. "notification-url": "https://packagist.org/downloads/",
  3447. "license": [
  3448. "BSD-3-Clause"
  3449. ],
  3450. "authors": [
  3451. {
  3452. "name": "Kore Nordmann",
  3453. "email": "mail@kore-nordmann.de"
  3454. },
  3455. {
  3456. "name": "Sebastian Bergmann",
  3457. "email": "sebastian@phpunit.de"
  3458. }
  3459. ],
  3460. "description": "Diff implementation",
  3461. "homepage": "https://github.com/sebastianbergmann/diff",
  3462. "keywords": [
  3463. "diff"
  3464. ],
  3465. "time": "2017-08-03T08:09:46+00:00"
  3466. },
  3467. {
  3468. "name": "sebastian/environment",
  3469. "version": "3.1.0",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/sebastianbergmann/environment.git",
  3473. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3478. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3479. "shasum": ""
  3480. },
  3481. "require": {
  3482. "php": "^7.0"
  3483. },
  3484. "require-dev": {
  3485. "phpunit/phpunit": "^6.1"
  3486. },
  3487. "type": "library",
  3488. "extra": {
  3489. "branch-alias": {
  3490. "dev-master": "3.1.x-dev"
  3491. }
  3492. },
  3493. "autoload": {
  3494. "classmap": [
  3495. "src/"
  3496. ]
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "BSD-3-Clause"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Sebastian Bergmann",
  3505. "email": "sebastian@phpunit.de"
  3506. }
  3507. ],
  3508. "description": "Provides functionality to handle HHVM/PHP environments",
  3509. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3510. "keywords": [
  3511. "Xdebug",
  3512. "environment",
  3513. "hhvm"
  3514. ],
  3515. "time": "2017-07-01T08:51:00+00:00"
  3516. },
  3517. {
  3518. "name": "sebastian/exporter",
  3519. "version": "3.1.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/sebastianbergmann/exporter.git",
  3523. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  3528. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "php": "^7.0",
  3533. "sebastian/recursion-context": "^3.0"
  3534. },
  3535. "require-dev": {
  3536. "ext-mbstring": "*",
  3537. "phpunit/phpunit": "^6.0"
  3538. },
  3539. "type": "library",
  3540. "extra": {
  3541. "branch-alias": {
  3542. "dev-master": "3.1.x-dev"
  3543. }
  3544. },
  3545. "autoload": {
  3546. "classmap": [
  3547. "src/"
  3548. ]
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "BSD-3-Clause"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Jeff Welch",
  3557. "email": "whatthejeff@gmail.com"
  3558. },
  3559. {
  3560. "name": "Volker Dusch",
  3561. "email": "github@wallbash.com"
  3562. },
  3563. {
  3564. "name": "Bernhard Schussek",
  3565. "email": "bschussek@2bepublished.at"
  3566. },
  3567. {
  3568. "name": "Sebastian Bergmann",
  3569. "email": "sebastian@phpunit.de"
  3570. },
  3571. {
  3572. "name": "Adam Harvey",
  3573. "email": "aharvey@php.net"
  3574. }
  3575. ],
  3576. "description": "Provides the functionality to export PHP variables for visualization",
  3577. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3578. "keywords": [
  3579. "export",
  3580. "exporter"
  3581. ],
  3582. "time": "2017-04-03T13:19:02+00:00"
  3583. },
  3584. {
  3585. "name": "sebastian/global-state",
  3586. "version": "2.0.0",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/sebastianbergmann/global-state.git",
  3590. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3595. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "php": "^7.0"
  3600. },
  3601. "require-dev": {
  3602. "phpunit/phpunit": "^6.0"
  3603. },
  3604. "suggest": {
  3605. "ext-uopz": "*"
  3606. },
  3607. "type": "library",
  3608. "extra": {
  3609. "branch-alias": {
  3610. "dev-master": "2.0-dev"
  3611. }
  3612. },
  3613. "autoload": {
  3614. "classmap": [
  3615. "src/"
  3616. ]
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "BSD-3-Clause"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Sebastian Bergmann",
  3625. "email": "sebastian@phpunit.de"
  3626. }
  3627. ],
  3628. "description": "Snapshotting of global state",
  3629. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3630. "keywords": [
  3631. "global state"
  3632. ],
  3633. "time": "2017-04-27T15:39:26+00:00"
  3634. },
  3635. {
  3636. "name": "sebastian/object-enumerator",
  3637. "version": "3.0.3",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3641. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3646. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "php": "^7.0",
  3651. "sebastian/object-reflector": "^1.1.1",
  3652. "sebastian/recursion-context": "^3.0"
  3653. },
  3654. "require-dev": {
  3655. "phpunit/phpunit": "^6.0"
  3656. },
  3657. "type": "library",
  3658. "extra": {
  3659. "branch-alias": {
  3660. "dev-master": "3.0.x-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "classmap": [
  3665. "src/"
  3666. ]
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "BSD-3-Clause"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "Sebastian Bergmann",
  3675. "email": "sebastian@phpunit.de"
  3676. }
  3677. ],
  3678. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3679. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3680. "time": "2017-08-03T12:35:26+00:00"
  3681. },
  3682. {
  3683. "name": "sebastian/object-reflector",
  3684. "version": "1.1.1",
  3685. "source": {
  3686. "type": "git",
  3687. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3688. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3689. },
  3690. "dist": {
  3691. "type": "zip",
  3692. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3693. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3694. "shasum": ""
  3695. },
  3696. "require": {
  3697. "php": "^7.0"
  3698. },
  3699. "require-dev": {
  3700. "phpunit/phpunit": "^6.0"
  3701. },
  3702. "type": "library",
  3703. "extra": {
  3704. "branch-alias": {
  3705. "dev-master": "1.1-dev"
  3706. }
  3707. },
  3708. "autoload": {
  3709. "classmap": [
  3710. "src/"
  3711. ]
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "BSD-3-Clause"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "Sebastian Bergmann",
  3720. "email": "sebastian@phpunit.de"
  3721. }
  3722. ],
  3723. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3724. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3725. "time": "2017-03-29T09:07:27+00:00"
  3726. },
  3727. {
  3728. "name": "sebastian/recursion-context",
  3729. "version": "3.0.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3733. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3738. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3739. "shasum": ""
  3740. },
  3741. "require": {
  3742. "php": "^7.0"
  3743. },
  3744. "require-dev": {
  3745. "phpunit/phpunit": "^6.0"
  3746. },
  3747. "type": "library",
  3748. "extra": {
  3749. "branch-alias": {
  3750. "dev-master": "3.0.x-dev"
  3751. }
  3752. },
  3753. "autoload": {
  3754. "classmap": [
  3755. "src/"
  3756. ]
  3757. },
  3758. "notification-url": "https://packagist.org/downloads/",
  3759. "license": [
  3760. "BSD-3-Clause"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "Jeff Welch",
  3765. "email": "whatthejeff@gmail.com"
  3766. },
  3767. {
  3768. "name": "Sebastian Bergmann",
  3769. "email": "sebastian@phpunit.de"
  3770. },
  3771. {
  3772. "name": "Adam Harvey",
  3773. "email": "aharvey@php.net"
  3774. }
  3775. ],
  3776. "description": "Provides functionality to recursively process PHP variables",
  3777. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3778. "time": "2017-03-03T06:23:57+00:00"
  3779. },
  3780. {
  3781. "name": "sebastian/resource-operations",
  3782. "version": "1.0.0",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3786. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3791. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=5.6.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.0.x-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "classmap": [
  3805. "src/"
  3806. ]
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "BSD-3-Clause"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Sebastian Bergmann",
  3815. "email": "sebastian@phpunit.de"
  3816. }
  3817. ],
  3818. "description": "Provides a list of PHP built-in functions that operate on resources",
  3819. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3820. "time": "2015-07-28T20:34:47+00:00"
  3821. },
  3822. {
  3823. "name": "sebastian/version",
  3824. "version": "2.0.1",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/sebastianbergmann/version.git",
  3828. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3833. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3834. "shasum": ""
  3835. },
  3836. "require": {
  3837. "php": ">=5.6"
  3838. },
  3839. "type": "library",
  3840. "extra": {
  3841. "branch-alias": {
  3842. "dev-master": "2.0.x-dev"
  3843. }
  3844. },
  3845. "autoload": {
  3846. "classmap": [
  3847. "src/"
  3848. ]
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "BSD-3-Clause"
  3853. ],
  3854. "authors": [
  3855. {
  3856. "name": "Sebastian Bergmann",
  3857. "email": "sebastian@phpunit.de",
  3858. "role": "lead"
  3859. }
  3860. ],
  3861. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3862. "homepage": "https://github.com/sebastianbergmann/version",
  3863. "time": "2016-10-03T07:35:21+00:00"
  3864. },
  3865. {
  3866. "name": "seld/jsonlint",
  3867. "version": "1.7.1",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/Seldaek/jsonlint.git",
  3871. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  3876. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "php": "^5.3 || ^7.0"
  3881. },
  3882. "require-dev": {
  3883. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3884. },
  3885. "bin": [
  3886. "bin/jsonlint"
  3887. ],
  3888. "type": "library",
  3889. "autoload": {
  3890. "psr-4": {
  3891. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  3892. }
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Jordi Boggiano",
  3901. "email": "j.boggiano@seld.be",
  3902. "homepage": "http://seld.be"
  3903. }
  3904. ],
  3905. "description": "JSON Linter",
  3906. "keywords": [
  3907. "json",
  3908. "linter",
  3909. "parser",
  3910. "validator"
  3911. ],
  3912. "time": "2018-01-24T12:46:19+00:00"
  3913. },
  3914. {
  3915. "name": "symfony/config",
  3916. "version": "v2.8.50",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/symfony/config.git",
  3920. "reference": "7dd5f5040dc04c118d057fb5886563963eb70011"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/symfony/config/zipball/7dd5f5040dc04c118d057fb5886563963eb70011",
  3925. "reference": "7dd5f5040dc04c118d057fb5886563963eb70011",
  3926. "shasum": ""
  3927. },
  3928. "require": {
  3929. "php": ">=5.3.9",
  3930. "symfony/filesystem": "~2.3|~3.0.0",
  3931. "symfony/polyfill-ctype": "~1.8"
  3932. },
  3933. "require-dev": {
  3934. "symfony/yaml": "~2.7|~3.0.0"
  3935. },
  3936. "suggest": {
  3937. "symfony/yaml": "To use the yaml reference dumper"
  3938. },
  3939. "type": "library",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-master": "2.8-dev"
  3943. }
  3944. },
  3945. "autoload": {
  3946. "psr-4": {
  3947. "Symfony\\Component\\Config\\": ""
  3948. },
  3949. "exclude-from-classmap": [
  3950. "/Tests/"
  3951. ]
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "authors": [
  3958. {
  3959. "name": "Fabien Potencier",
  3960. "email": "fabien@symfony.com"
  3961. },
  3962. {
  3963. "name": "Symfony Community",
  3964. "homepage": "https://symfony.com/contributors"
  3965. }
  3966. ],
  3967. "description": "Symfony Config Component",
  3968. "homepage": "https://symfony.com",
  3969. "time": "2018-11-26T09:38:12+00:00"
  3970. },
  3971. {
  3972. "name": "symfony/console",
  3973. "version": "v2.8.50",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/symfony/console.git",
  3977. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/symfony/console/zipball/cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  3982. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "php": ">=5.3.9",
  3987. "symfony/debug": "^2.7.2|~3.0.0",
  3988. "symfony/polyfill-mbstring": "~1.0"
  3989. },
  3990. "require-dev": {
  3991. "psr/log": "~1.0",
  3992. "symfony/event-dispatcher": "~2.1|~3.0.0",
  3993. "symfony/process": "~2.1|~3.0.0"
  3994. },
  3995. "suggest": {
  3996. "psr/log-implementation": "For using the console logger",
  3997. "symfony/event-dispatcher": "",
  3998. "symfony/process": ""
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "2.8-dev"
  4004. }
  4005. },
  4006. "autoload": {
  4007. "psr-4": {
  4008. "Symfony\\Component\\Console\\": ""
  4009. },
  4010. "exclude-from-classmap": [
  4011. "/Tests/"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Fabien Potencier",
  4021. "email": "fabien@symfony.com"
  4022. },
  4023. {
  4024. "name": "Symfony Community",
  4025. "homepage": "https://symfony.com/contributors"
  4026. }
  4027. ],
  4028. "description": "Symfony Console Component",
  4029. "homepage": "https://symfony.com",
  4030. "time": "2018-11-20T15:55:20+00:00"
  4031. },
  4032. {
  4033. "name": "symfony/debug",
  4034. "version": "v3.0.9",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/symfony/debug.git",
  4038. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a",
  4043. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
  4044. "shasum": ""
  4045. },
  4046. "require": {
  4047. "php": ">=5.5.9",
  4048. "psr/log": "~1.0"
  4049. },
  4050. "conflict": {
  4051. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  4052. },
  4053. "require-dev": {
  4054. "symfony/class-loader": "~2.8|~3.0",
  4055. "symfony/http-kernel": "~2.8|~3.0"
  4056. },
  4057. "type": "library",
  4058. "extra": {
  4059. "branch-alias": {
  4060. "dev-master": "3.0-dev"
  4061. }
  4062. },
  4063. "autoload": {
  4064. "psr-4": {
  4065. "Symfony\\Component\\Debug\\": ""
  4066. },
  4067. "exclude-from-classmap": [
  4068. "/Tests/"
  4069. ]
  4070. },
  4071. "notification-url": "https://packagist.org/downloads/",
  4072. "license": [
  4073. "MIT"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "Fabien Potencier",
  4078. "email": "fabien@symfony.com"
  4079. },
  4080. {
  4081. "name": "Symfony Community",
  4082. "homepage": "https://symfony.com/contributors"
  4083. }
  4084. ],
  4085. "description": "Symfony Debug Component",
  4086. "homepage": "https://symfony.com",
  4087. "time": "2016-07-30T07:22:48+00:00"
  4088. },
  4089. {
  4090. "name": "symfony/event-dispatcher",
  4091. "version": "v2.8.50",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/symfony/event-dispatcher.git",
  4095. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  4100. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "php": ">=5.3.9"
  4105. },
  4106. "require-dev": {
  4107. "psr/log": "~1.0",
  4108. "symfony/config": "^2.0.5|~3.0.0",
  4109. "symfony/dependency-injection": "~2.6|~3.0.0",
  4110. "symfony/expression-language": "~2.6|~3.0.0",
  4111. "symfony/stopwatch": "~2.3|~3.0.0"
  4112. },
  4113. "suggest": {
  4114. "symfony/dependency-injection": "",
  4115. "symfony/http-kernel": ""
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "branch-alias": {
  4120. "dev-master": "2.8-dev"
  4121. }
  4122. },
  4123. "autoload": {
  4124. "psr-4": {
  4125. "Symfony\\Component\\EventDispatcher\\": ""
  4126. },
  4127. "exclude-from-classmap": [
  4128. "/Tests/"
  4129. ]
  4130. },
  4131. "notification-url": "https://packagist.org/downloads/",
  4132. "license": [
  4133. "MIT"
  4134. ],
  4135. "authors": [
  4136. {
  4137. "name": "Fabien Potencier",
  4138. "email": "fabien@symfony.com"
  4139. },
  4140. {
  4141. "name": "Symfony Community",
  4142. "homepage": "https://symfony.com/contributors"
  4143. }
  4144. ],
  4145. "description": "Symfony EventDispatcher Component",
  4146. "homepage": "https://symfony.com",
  4147. "time": "2018-11-21T14:20:20+00:00"
  4148. },
  4149. {
  4150. "name": "symfony/filesystem",
  4151. "version": "v3.0.9",
  4152. "source": {
  4153. "type": "git",
  4154. "url": "https://github.com/symfony/filesystem.git",
  4155. "reference": "b2da5009d9bacbd91d83486aa1f44c793a8c380d"
  4156. },
  4157. "dist": {
  4158. "type": "zip",
  4159. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b2da5009d9bacbd91d83486aa1f44c793a8c380d",
  4160. "reference": "b2da5009d9bacbd91d83486aa1f44c793a8c380d",
  4161. "shasum": ""
  4162. },
  4163. "require": {
  4164. "php": ">=5.5.9"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "3.0-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "Symfony\\Component\\Filesystem\\": ""
  4175. },
  4176. "exclude-from-classmap": [
  4177. "/Tests/"
  4178. ]
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "Fabien Potencier",
  4187. "email": "fabien@symfony.com"
  4188. },
  4189. {
  4190. "name": "Symfony Community",
  4191. "homepage": "https://symfony.com/contributors"
  4192. }
  4193. ],
  4194. "description": "Symfony Filesystem Component",
  4195. "homepage": "https://symfony.com",
  4196. "time": "2016-07-20T05:43:46+00:00"
  4197. },
  4198. {
  4199. "name": "symfony/finder",
  4200. "version": "v2.8.50",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/symfony/finder.git",
  4204. "reference": "1444eac52273e345d9b95129bf914639305a9ba4"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/symfony/finder/zipball/1444eac52273e345d9b95129bf914639305a9ba4",
  4209. "reference": "1444eac52273e345d9b95129bf914639305a9ba4",
  4210. "shasum": ""
  4211. },
  4212. "require": {
  4213. "php": ">=5.3.9"
  4214. },
  4215. "type": "library",
  4216. "extra": {
  4217. "branch-alias": {
  4218. "dev-master": "2.8-dev"
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Symfony\\Component\\Finder\\": ""
  4224. },
  4225. "exclude-from-classmap": [
  4226. "/Tests/"
  4227. ]
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "Fabien Potencier",
  4236. "email": "fabien@symfony.com"
  4237. },
  4238. {
  4239. "name": "Symfony Community",
  4240. "homepage": "https://symfony.com/contributors"
  4241. }
  4242. ],
  4243. "description": "Symfony Finder Component",
  4244. "homepage": "https://symfony.com",
  4245. "time": "2018-11-11T11:18:13+00:00"
  4246. },
  4247. {
  4248. "name": "symfony/polyfill-ctype",
  4249. "version": "v1.11.0",
  4250. "source": {
  4251. "type": "git",
  4252. "url": "https://github.com/symfony/polyfill-ctype.git",
  4253. "reference": "82ebae02209c21113908c229e9883c419720738a"
  4254. },
  4255. "dist": {
  4256. "type": "zip",
  4257. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  4258. "reference": "82ebae02209c21113908c229e9883c419720738a",
  4259. "shasum": ""
  4260. },
  4261. "require": {
  4262. "php": ">=5.3.3"
  4263. },
  4264. "suggest": {
  4265. "ext-ctype": "For best performance"
  4266. },
  4267. "type": "library",
  4268. "extra": {
  4269. "branch-alias": {
  4270. "dev-master": "1.11-dev"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Polyfill\\Ctype\\": ""
  4276. },
  4277. "files": [
  4278. "bootstrap.php"
  4279. ]
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Symfony Community",
  4288. "homepage": "https://symfony.com/contributors"
  4289. },
  4290. {
  4291. "name": "Gert de Pagter",
  4292. "email": "BackEndTea@gmail.com"
  4293. }
  4294. ],
  4295. "description": "Symfony polyfill for ctype functions",
  4296. "homepage": "https://symfony.com",
  4297. "keywords": [
  4298. "compatibility",
  4299. "ctype",
  4300. "polyfill",
  4301. "portable"
  4302. ],
  4303. "time": "2019-02-06T07:57:58+00:00"
  4304. },
  4305. {
  4306. "name": "symfony/polyfill-mbstring",
  4307. "version": "v1.11.0",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4311. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  4316. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  4317. "shasum": ""
  4318. },
  4319. "require": {
  4320. "php": ">=5.3.3"
  4321. },
  4322. "suggest": {
  4323. "ext-mbstring": "For best performance"
  4324. },
  4325. "type": "library",
  4326. "extra": {
  4327. "branch-alias": {
  4328. "dev-master": "1.11-dev"
  4329. }
  4330. },
  4331. "autoload": {
  4332. "psr-4": {
  4333. "Symfony\\Polyfill\\Mbstring\\": ""
  4334. },
  4335. "files": [
  4336. "bootstrap.php"
  4337. ]
  4338. },
  4339. "notification-url": "https://packagist.org/downloads/",
  4340. "license": [
  4341. "MIT"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "Nicolas Grekas",
  4346. "email": "p@tchwork.com"
  4347. },
  4348. {
  4349. "name": "Symfony Community",
  4350. "homepage": "https://symfony.com/contributors"
  4351. }
  4352. ],
  4353. "description": "Symfony polyfill for the Mbstring extension",
  4354. "homepage": "https://symfony.com",
  4355. "keywords": [
  4356. "compatibility",
  4357. "mbstring",
  4358. "polyfill",
  4359. "portable",
  4360. "shim"
  4361. ],
  4362. "time": "2019-02-06T07:57:58+00:00"
  4363. },
  4364. {
  4365. "name": "symfony/process",
  4366. "version": "v2.8.50",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://github.com/symfony/process.git",
  4370. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://api.github.com/repos/symfony/process/zipball/c3591a09c78639822b0b290d44edb69bf9f05dc8",
  4375. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8",
  4376. "shasum": ""
  4377. },
  4378. "require": {
  4379. "php": ">=5.3.9"
  4380. },
  4381. "type": "library",
  4382. "extra": {
  4383. "branch-alias": {
  4384. "dev-master": "2.8-dev"
  4385. }
  4386. },
  4387. "autoload": {
  4388. "psr-4": {
  4389. "Symfony\\Component\\Process\\": ""
  4390. },
  4391. "exclude-from-classmap": [
  4392. "/Tests/"
  4393. ]
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Fabien Potencier",
  4402. "email": "fabien@symfony.com"
  4403. },
  4404. {
  4405. "name": "Symfony Community",
  4406. "homepage": "https://symfony.com/contributors"
  4407. }
  4408. ],
  4409. "description": "Symfony Process Component",
  4410. "homepage": "https://symfony.com",
  4411. "time": "2018-11-11T11:18:13+00:00"
  4412. },
  4413. {
  4414. "name": "symfony/stopwatch",
  4415. "version": "v2.8.50",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/symfony/stopwatch.git",
  4419. "reference": "752586c80af8a85aeb74d1ae8202411c68836663"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/752586c80af8a85aeb74d1ae8202411c68836663",
  4424. "reference": "752586c80af8a85aeb74d1ae8202411c68836663",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "php": ">=5.3.9"
  4429. },
  4430. "type": "library",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "2.8-dev"
  4434. }
  4435. },
  4436. "autoload": {
  4437. "psr-4": {
  4438. "Symfony\\Component\\Stopwatch\\": ""
  4439. },
  4440. "exclude-from-classmap": [
  4441. "/Tests/"
  4442. ]
  4443. },
  4444. "notification-url": "https://packagist.org/downloads/",
  4445. "license": [
  4446. "MIT"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "Fabien Potencier",
  4451. "email": "fabien@symfony.com"
  4452. },
  4453. {
  4454. "name": "Symfony Community",
  4455. "homepage": "https://symfony.com/contributors"
  4456. }
  4457. ],
  4458. "description": "Symfony Stopwatch Component",
  4459. "homepage": "https://symfony.com",
  4460. "time": "2018-11-11T11:18:13+00:00"
  4461. },
  4462. {
  4463. "name": "symfony/translation",
  4464. "version": "v3.0.9",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/symfony/translation.git",
  4468. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/symfony/translation/zipball/eee6c664853fd0576f21ae25725cfffeafe83f26",
  4473. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "php": ">=5.5.9",
  4478. "symfony/polyfill-mbstring": "~1.0"
  4479. },
  4480. "conflict": {
  4481. "symfony/config": "<2.8"
  4482. },
  4483. "require-dev": {
  4484. "psr/log": "~1.0",
  4485. "symfony/config": "~2.8|~3.0",
  4486. "symfony/intl": "~2.8|~3.0",
  4487. "symfony/yaml": "~2.8|~3.0"
  4488. },
  4489. "suggest": {
  4490. "psr/log": "To use logging capability in translator",
  4491. "symfony/config": "",
  4492. "symfony/yaml": ""
  4493. },
  4494. "type": "library",
  4495. "extra": {
  4496. "branch-alias": {
  4497. "dev-master": "3.0-dev"
  4498. }
  4499. },
  4500. "autoload": {
  4501. "psr-4": {
  4502. "Symfony\\Component\\Translation\\": ""
  4503. },
  4504. "exclude-from-classmap": [
  4505. "/Tests/"
  4506. ]
  4507. },
  4508. "notification-url": "https://packagist.org/downloads/",
  4509. "license": [
  4510. "MIT"
  4511. ],
  4512. "authors": [
  4513. {
  4514. "name": "Fabien Potencier",
  4515. "email": "fabien@symfony.com"
  4516. },
  4517. {
  4518. "name": "Symfony Community",
  4519. "homepage": "https://symfony.com/contributors"
  4520. }
  4521. ],
  4522. "description": "Symfony Translation Component",
  4523. "homepage": "https://symfony.com",
  4524. "time": "2016-07-30T07:22:48+00:00"
  4525. },
  4526. {
  4527. "name": "symfony/validator",
  4528. "version": "v2.8.50",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/symfony/validator.git",
  4532. "reference": "d5d2090bba3139d8ddb79959fbf516e87238fe3a"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/symfony/validator/zipball/d5d2090bba3139d8ddb79959fbf516e87238fe3a",
  4537. "reference": "d5d2090bba3139d8ddb79959fbf516e87238fe3a",
  4538. "shasum": ""
  4539. },
  4540. "require": {
  4541. "php": ">=5.3.9",
  4542. "symfony/polyfill-ctype": "~1.8",
  4543. "symfony/polyfill-mbstring": "~1.0",
  4544. "symfony/translation": "~2.4|~3.0.0"
  4545. },
  4546. "require-dev": {
  4547. "doctrine/annotations": "~1.0",
  4548. "doctrine/cache": "~1.0",
  4549. "egulias/email-validator": "^1.2.1",
  4550. "symfony/config": "~2.2|~3.0.0",
  4551. "symfony/expression-language": "~2.4|~3.0.0",
  4552. "symfony/http-foundation": "~2.3|~3.0.0",
  4553. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  4554. "symfony/property-access": "~2.3|~3.0.0",
  4555. "symfony/yaml": "^2.0.5|~3.0.0"
  4556. },
  4557. "suggest": {
  4558. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4559. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4560. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4561. "symfony/config": "",
  4562. "symfony/expression-language": "For using the 2.4 Expression validator",
  4563. "symfony/http-foundation": "",
  4564. "symfony/intl": "",
  4565. "symfony/property-access": "For using the 2.4 Validator API",
  4566. "symfony/yaml": ""
  4567. },
  4568. "type": "library",
  4569. "extra": {
  4570. "branch-alias": {
  4571. "dev-master": "2.8-dev"
  4572. }
  4573. },
  4574. "autoload": {
  4575. "psr-4": {
  4576. "Symfony\\Component\\Validator\\": ""
  4577. },
  4578. "exclude-from-classmap": [
  4579. "/Tests/"
  4580. ]
  4581. },
  4582. "notification-url": "https://packagist.org/downloads/",
  4583. "license": [
  4584. "MIT"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Fabien Potencier",
  4589. "email": "fabien@symfony.com"
  4590. },
  4591. {
  4592. "name": "Symfony Community",
  4593. "homepage": "https://symfony.com/contributors"
  4594. }
  4595. ],
  4596. "description": "Symfony Validator Component",
  4597. "homepage": "https://symfony.com",
  4598. "time": "2018-11-14T14:06:48+00:00"
  4599. },
  4600. {
  4601. "name": "symfony/var-dumper",
  4602. "version": "v3.3.6",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/symfony/var-dumper.git",
  4606. "reference": "b2623bccb969ad595c2090f9be498b74670d0663"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b2623bccb969ad595c2090f9be498b74670d0663",
  4611. "reference": "b2623bccb969ad595c2090f9be498b74670d0663",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "php": ">=5.5.9",
  4616. "symfony/polyfill-mbstring": "~1.0"
  4617. },
  4618. "conflict": {
  4619. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4620. },
  4621. "require-dev": {
  4622. "ext-iconv": "*",
  4623. "twig/twig": "~1.34|~2.4"
  4624. },
  4625. "suggest": {
  4626. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4627. "ext-symfony_debug": ""
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "branch-alias": {
  4632. "dev-master": "3.3-dev"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "files": [
  4637. "Resources/functions/dump.php"
  4638. ],
  4639. "psr-4": {
  4640. "Symfony\\Component\\VarDumper\\": ""
  4641. },
  4642. "exclude-from-classmap": [
  4643. "/Tests/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Nicolas Grekas",
  4653. "email": "p@tchwork.com"
  4654. },
  4655. {
  4656. "name": "Symfony Community",
  4657. "homepage": "https://symfony.com/contributors"
  4658. }
  4659. ],
  4660. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4661. "homepage": "https://symfony.com",
  4662. "keywords": [
  4663. "debug",
  4664. "dump"
  4665. ],
  4666. "time": "2017-07-28T06:06:09+00:00"
  4667. },
  4668. {
  4669. "name": "theseer/tokenizer",
  4670. "version": "1.1.3",
  4671. "source": {
  4672. "type": "git",
  4673. "url": "https://github.com/theseer/tokenizer.git",
  4674. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  4675. },
  4676. "dist": {
  4677. "type": "zip",
  4678. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4679. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4680. "shasum": ""
  4681. },
  4682. "require": {
  4683. "ext-dom": "*",
  4684. "ext-tokenizer": "*",
  4685. "ext-xmlwriter": "*",
  4686. "php": "^7.0"
  4687. },
  4688. "type": "library",
  4689. "autoload": {
  4690. "classmap": [
  4691. "src/"
  4692. ]
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "BSD-3-Clause"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Arne Blankerts",
  4701. "email": "arne@blankerts.de",
  4702. "role": "Developer"
  4703. }
  4704. ],
  4705. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4706. "time": "2019-06-13T22:48:21+00:00"
  4707. },
  4708. {
  4709. "name": "twig/twig",
  4710. "version": "v1.42.2",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/twigphp/Twig.git",
  4714. "reference": "21707d6ebd05476854805e4f91b836531941bcd4"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/twigphp/Twig/zipball/21707d6ebd05476854805e4f91b836531941bcd4",
  4719. "reference": "21707d6ebd05476854805e4f91b836531941bcd4",
  4720. "shasum": ""
  4721. },
  4722. "require": {
  4723. "php": ">=5.4.0",
  4724. "symfony/polyfill-ctype": "^1.8"
  4725. },
  4726. "require-dev": {
  4727. "psr/container": "^1.0",
  4728. "symfony/debug": "^2.7",
  4729. "symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5.0"
  4730. },
  4731. "type": "library",
  4732. "extra": {
  4733. "branch-alias": {
  4734. "dev-master": "1.42-dev"
  4735. }
  4736. },
  4737. "autoload": {
  4738. "psr-0": {
  4739. "Twig_": "lib/"
  4740. },
  4741. "psr-4": {
  4742. "Twig\\": "src/"
  4743. }
  4744. },
  4745. "notification-url": "https://packagist.org/downloads/",
  4746. "license": [
  4747. "BSD-3-Clause"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "Fabien Potencier",
  4752. "email": "fabien@symfony.com",
  4753. "homepage": "http://fabien.potencier.org",
  4754. "role": "Lead Developer"
  4755. },
  4756. {
  4757. "name": "Armin Ronacher",
  4758. "email": "armin.ronacher@active-4.com",
  4759. "role": "Project Founder"
  4760. },
  4761. {
  4762. "name": "Twig Team",
  4763. "homepage": "https://twig.symfony.com/contributors",
  4764. "role": "Contributors"
  4765. }
  4766. ],
  4767. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4768. "homepage": "https://twig.symfony.com",
  4769. "keywords": [
  4770. "templating"
  4771. ],
  4772. "time": "2019-06-18T15:35:16+00:00"
  4773. },
  4774. {
  4775. "name": "zendframework/zend-cache",
  4776. "version": "2.8.2",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/zendframework/zend-cache.git",
  4780. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/zendframework/zend-cache/zipball/4983dff629956490c78b88adcc8ece4711d7d8a3",
  4785. "reference": "4983dff629956490c78b88adcc8ece4711d7d8a3",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "php": "^5.6 || ^7.0",
  4790. "psr/cache": "^1.0",
  4791. "psr/simple-cache": "^1.0",
  4792. "zendframework/zend-eventmanager": "^2.6.3 || ^3.2",
  4793. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4794. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  4795. },
  4796. "provide": {
  4797. "psr/cache-implementation": "1.0",
  4798. "psr/simple-cache-implementation": "1.0"
  4799. },
  4800. "require-dev": {
  4801. "cache/integration-tests": "^0.16",
  4802. "phpbench/phpbench": "^0.13",
  4803. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  4804. "zendframework/zend-coding-standard": "~1.0.0",
  4805. "zendframework/zend-serializer": "^2.6",
  4806. "zendframework/zend-session": "^2.7.4"
  4807. },
  4808. "suggest": {
  4809. "ext-apc": "APC or compatible extension, to use the APC storage adapter",
  4810. "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter",
  4811. "ext-dba": "DBA, to use the DBA storage adapter",
  4812. "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter",
  4813. "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter",
  4814. "ext-mongo": "Mongo, to use MongoDb storage adapter",
  4815. "ext-mongodb": "MongoDB, to use the ExtMongoDb storage adapter",
  4816. "ext-redis": "Redis, to use Redis storage adapter",
  4817. "ext-wincache": "WinCache, to use the WinCache storage adapter",
  4818. "ext-xcache": "XCache, to use the XCache storage adapter",
  4819. "mongodb/mongodb": "Required for use with the ext-mongodb adapter",
  4820. "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement",
  4821. "zendframework/zend-serializer": "Zend\\Serializer component",
  4822. "zendframework/zend-session": "Zend\\Session component"
  4823. },
  4824. "type": "library",
  4825. "extra": {
  4826. "branch-alias": {
  4827. "dev-master": "2.8.x-dev",
  4828. "dev-develop": "2.9.x-dev"
  4829. },
  4830. "zf": {
  4831. "component": "Zend\\Cache",
  4832. "config-provider": "Zend\\Cache\\ConfigProvider"
  4833. }
  4834. },
  4835. "autoload": {
  4836. "files": [
  4837. "autoload/patternPluginManagerPolyfill.php"
  4838. ],
  4839. "psr-4": {
  4840. "Zend\\Cache\\": "src/"
  4841. }
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "BSD-3-Clause"
  4846. ],
  4847. "description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output",
  4848. "keywords": [
  4849. "ZendFramework",
  4850. "cache",
  4851. "psr-16",
  4852. "psr-6",
  4853. "zf"
  4854. ],
  4855. "time": "2018-05-01T21:58:00+00:00"
  4856. },
  4857. {
  4858. "name": "zendframework/zend-config",
  4859. "version": "2.6.0",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/zendframework/zend-config.git",
  4863. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  4868. "reference": "2920e877a9f6dca9fa8f6bd3b1ffc2e19bb1e30d",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "php": "^5.5 || ^7.0",
  4873. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4874. },
  4875. "require-dev": {
  4876. "fabpot/php-cs-fixer": "1.7.*",
  4877. "phpunit/phpunit": "~4.0",
  4878. "zendframework/zend-filter": "^2.6",
  4879. "zendframework/zend-i18n": "^2.5",
  4880. "zendframework/zend-json": "^2.6.1",
  4881. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  4882. },
  4883. "suggest": {
  4884. "zendframework/zend-filter": "Zend\\Filter component",
  4885. "zendframework/zend-i18n": "Zend\\I18n component",
  4886. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  4887. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  4888. },
  4889. "type": "library",
  4890. "extra": {
  4891. "branch-alias": {
  4892. "dev-master": "2.6-dev",
  4893. "dev-develop": "2.7-dev"
  4894. }
  4895. },
  4896. "autoload": {
  4897. "psr-4": {
  4898. "Zend\\Config\\": "src/"
  4899. }
  4900. },
  4901. "notification-url": "https://packagist.org/downloads/",
  4902. "license": [
  4903. "BSD-3-Clause"
  4904. ],
  4905. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  4906. "homepage": "https://github.com/zendframework/zend-config",
  4907. "keywords": [
  4908. "config",
  4909. "zf2"
  4910. ],
  4911. "time": "2016-02-04T23:01:10+00:00"
  4912. },
  4913. {
  4914. "name": "zendframework/zend-eventmanager",
  4915. "version": "3.2.1",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://github.com/zendframework/zend-eventmanager.git",
  4919. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  4924. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  4925. "shasum": ""
  4926. },
  4927. "require": {
  4928. "php": "^5.6 || ^7.0"
  4929. },
  4930. "require-dev": {
  4931. "athletic/athletic": "^0.1",
  4932. "container-interop/container-interop": "^1.1.0",
  4933. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  4934. "zendframework/zend-coding-standard": "~1.0.0",
  4935. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  4936. },
  4937. "suggest": {
  4938. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  4939. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  4940. },
  4941. "type": "library",
  4942. "extra": {
  4943. "branch-alias": {
  4944. "dev-master": "3.2-dev",
  4945. "dev-develop": "3.3-dev"
  4946. }
  4947. },
  4948. "autoload": {
  4949. "psr-4": {
  4950. "Zend\\EventManager\\": "src/"
  4951. }
  4952. },
  4953. "notification-url": "https://packagist.org/downloads/",
  4954. "license": [
  4955. "BSD-3-Clause"
  4956. ],
  4957. "description": "Trigger and listen to events within a PHP application",
  4958. "homepage": "https://github.com/zendframework/zend-eventmanager",
  4959. "keywords": [
  4960. "event",
  4961. "eventmanager",
  4962. "events",
  4963. "zf2"
  4964. ],
  4965. "time": "2018-04-25T15:33:34+00:00"
  4966. },
  4967. {
  4968. "name": "zendframework/zend-filter",
  4969. "version": "2.9.1",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/zendframework/zend-filter.git",
  4973. "reference": "1c3e6d02f9cd5f6c929c9859498f5efbe216e86f"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/zendframework/zend-filter/zipball/1c3e6d02f9cd5f6c929c9859498f5efbe216e86f",
  4978. "reference": "1c3e6d02f9cd5f6c929c9859498f5efbe216e86f",
  4979. "shasum": ""
  4980. },
  4981. "require": {
  4982. "php": "^5.6 || ^7.0",
  4983. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  4984. },
  4985. "conflict": {
  4986. "zendframework/zend-validator": "<2.10.1"
  4987. },
  4988. "require-dev": {
  4989. "pear/archive_tar": "^1.4.3",
  4990. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  4991. "psr/http-factory": "^1.0",
  4992. "zendframework/zend-coding-standard": "~1.0.0",
  4993. "zendframework/zend-crypt": "^3.2.1",
  4994. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4995. "zendframework/zend-uri": "^2.6"
  4996. },
  4997. "suggest": {
  4998. "psr/http-factory-implementation": "psr/http-factory-implementation, for creating file upload instances when consuming PSR-7 in file upload filters",
  4999. "zendframework/zend-crypt": "Zend\\Crypt component, for encryption filters",
  5000. "zendframework/zend-i18n": "Zend\\I18n component for filters depending on i18n functionality",
  5001. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for using the filter chain functionality",
  5002. "zendframework/zend-uri": "Zend\\Uri component, for the UriNormalize filter"
  5003. },
  5004. "type": "library",
  5005. "extra": {
  5006. "branch-alias": {
  5007. "dev-master": "2.9.x-dev",
  5008. "dev-develop": "2.10.x-dev"
  5009. },
  5010. "zf": {
  5011. "component": "Zend\\Filter",
  5012. "config-provider": "Zend\\Filter\\ConfigProvider"
  5013. }
  5014. },
  5015. "autoload": {
  5016. "psr-4": {
  5017. "Zend\\Filter\\": "src/"
  5018. }
  5019. },
  5020. "notification-url": "https://packagist.org/downloads/",
  5021. "license": [
  5022. "BSD-3-Clause"
  5023. ],
  5024. "description": "provides a set of commonly needed data filters",
  5025. "keywords": [
  5026. "ZendFramework",
  5027. "filter",
  5028. "zf"
  5029. ],
  5030. "time": "2018-12-17T16:00:04+00:00"
  5031. },
  5032. {
  5033. "name": "zendframework/zend-hydrator",
  5034. "version": "1.1.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/zendframework/zend-hydrator.git",
  5038. "reference": "22652e1661a5a10b3f564cf7824a2206cf5a4a65"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/22652e1661a5a10b3f564cf7824a2206cf5a4a65",
  5043. "reference": "22652e1661a5a10b3f564cf7824a2206cf5a4a65",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "php": "^5.5 || ^7.0",
  5048. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  5049. },
  5050. "require-dev": {
  5051. "phpunit/phpunit": "~4.0",
  5052. "squizlabs/php_codesniffer": "^2.0@dev",
  5053. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  5054. "zendframework/zend-filter": "^2.6",
  5055. "zendframework/zend-inputfilter": "^2.6",
  5056. "zendframework/zend-serializer": "^2.6.1",
  5057. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  5058. },
  5059. "suggest": {
  5060. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0, to support aggregate hydrator usage",
  5061. "zendframework/zend-filter": "^2.6, to support naming strategy hydrator usage",
  5062. "zendframework/zend-serializer": "^2.6.1, to use the SerializableStrategy",
  5063. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3, to support hydrator plugin manager usage"
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-release-1.0": "1.0-dev",
  5069. "dev-release-1.1": "1.1-dev",
  5070. "dev-master": "2.0-dev",
  5071. "dev-develop": "2.1-dev"
  5072. }
  5073. },
  5074. "autoload": {
  5075. "psr-4": {
  5076. "Zend\\Hydrator\\": "src/"
  5077. }
  5078. },
  5079. "notification-url": "https://packagist.org/downloads/",
  5080. "license": [
  5081. "BSD-3-Clause"
  5082. ],
  5083. "homepage": "https://github.com/zendframework/zend-hydrator",
  5084. "keywords": [
  5085. "hydrator",
  5086. "zf2"
  5087. ],
  5088. "time": "2016-02-18T22:38:26+00:00"
  5089. },
  5090. {
  5091. "name": "zendframework/zend-i18n",
  5092. "version": "2.9.0",
  5093. "source": {
  5094. "type": "git",
  5095. "url": "https://github.com/zendframework/zend-i18n.git",
  5096. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f"
  5097. },
  5098. "dist": {
  5099. "type": "zip",
  5100. "url": "https://api.github.com/repos/zendframework/zend-i18n/zipball/6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  5101. "reference": "6d69af5a04e1a4de7250043cb1322f077a0cdb7f",
  5102. "shasum": ""
  5103. },
  5104. "require": {
  5105. "php": "^5.6 || ^7.0",
  5106. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  5107. },
  5108. "require-dev": {
  5109. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5110. "zendframework/zend-cache": "^2.6.1",
  5111. "zendframework/zend-coding-standard": "~1.0.0",
  5112. "zendframework/zend-config": "^2.6",
  5113. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  5114. "zendframework/zend-filter": "^2.6.1",
  5115. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  5116. "zendframework/zend-validator": "^2.6",
  5117. "zendframework/zend-view": "^2.6.3"
  5118. },
  5119. "suggest": {
  5120. "ext-intl": "Required for most features of Zend\\I18n; included in default builds of PHP",
  5121. "zendframework/zend-cache": "Zend\\Cache component",
  5122. "zendframework/zend-config": "Zend\\Config component",
  5123. "zendframework/zend-eventmanager": "You should install this package to use the events in the translator",
  5124. "zendframework/zend-filter": "You should install this package to use the provided filters",
  5125. "zendframework/zend-i18n-resources": "Translation resources",
  5126. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  5127. "zendframework/zend-validator": "You should install this package to use the provided validators",
  5128. "zendframework/zend-view": "You should install this package to use the provided view helpers"
  5129. },
  5130. "type": "library",
  5131. "extra": {
  5132. "branch-alias": {
  5133. "dev-master": "2.9.x-dev",
  5134. "dev-develop": "2.10.x-dev"
  5135. },
  5136. "zf": {
  5137. "component": "Zend\\I18n",
  5138. "config-provider": "Zend\\I18n\\ConfigProvider"
  5139. }
  5140. },
  5141. "autoload": {
  5142. "psr-4": {
  5143. "Zend\\I18n\\": "src/"
  5144. }
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "BSD-3-Clause"
  5149. ],
  5150. "description": "Provide translations for your application, and filter and validate internationalized values",
  5151. "keywords": [
  5152. "ZendFramework",
  5153. "i18n",
  5154. "zf"
  5155. ],
  5156. "time": "2018-05-16T16:39:13+00:00"
  5157. },
  5158. {
  5159. "name": "zendframework/zend-json",
  5160. "version": "3.1.1",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/zendframework/zend-json.git",
  5164. "reference": "21c6027f3c4a5177cbef8ed08d1037b17188a0d8"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/21c6027f3c4a5177cbef8ed08d1037b17188a0d8",
  5169. "reference": "21c6027f3c4a5177cbef8ed08d1037b17188a0d8",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": "^5.6 || ^7.0"
  5174. },
  5175. "require-dev": {
  5176. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5177. "zendframework/zend-coding-standard": "~1.0.0",
  5178. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  5179. },
  5180. "suggest": {
  5181. "zendframework/zend-json-server": "For implementing JSON-RPC servers",
  5182. "zendframework/zend-xml2json": "For converting XML documents to JSON"
  5183. },
  5184. "type": "library",
  5185. "extra": {
  5186. "branch-alias": {
  5187. "dev-master": "3.1.x-dev",
  5188. "dev-develop": "3.2.x-dev"
  5189. }
  5190. },
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Zend\\Json\\": "src/"
  5194. }
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "BSD-3-Clause"
  5199. ],
  5200. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  5201. "keywords": [
  5202. "ZendFramework",
  5203. "json",
  5204. "zf"
  5205. ],
  5206. "time": "2019-06-18T10:54:52+00:00"
  5207. },
  5208. {
  5209. "name": "zendframework/zend-serializer",
  5210. "version": "2.9.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/zendframework/zend-serializer.git",
  5214. "reference": "0172690db48d8935edaf625c4cba38b79719892c"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/zendframework/zend-serializer/zipball/0172690db48d8935edaf625c4cba38b79719892c",
  5219. "reference": "0172690db48d8935edaf625c4cba38b79719892c",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "php": "^5.6 || ^7.0",
  5224. "zendframework/zend-json": "^2.5 || ^3.0",
  5225. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  5226. },
  5227. "require-dev": {
  5228. "phpunit/phpunit": "^5.7.25 || ^6.4.4",
  5229. "zendframework/zend-coding-standard": "~1.0.0",
  5230. "zendframework/zend-math": "^2.6 || ^3.0",
  5231. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  5232. },
  5233. "suggest": {
  5234. "zendframework/zend-math": "(^2.6 || ^3.0) To support Python Pickle serialization",
  5235. "zendframework/zend-servicemanager": "(^2.7.5 || ^3.0.3) To support plugin manager support"
  5236. },
  5237. "type": "library",
  5238. "extra": {
  5239. "branch-alias": {
  5240. "dev-master": "2.9.x-dev",
  5241. "dev-develop": "2.10.x-dev"
  5242. },
  5243. "zf": {
  5244. "component": "Zend\\Serializer",
  5245. "config-provider": "Zend\\Serializer\\ConfigProvider"
  5246. }
  5247. },
  5248. "autoload": {
  5249. "psr-4": {
  5250. "Zend\\Serializer\\": "src/"
  5251. }
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "BSD-3-Clause"
  5256. ],
  5257. "description": "provides an adapter based interface to simply generate storable representation of PHP types by different facilities, and recover",
  5258. "keywords": [
  5259. "ZendFramework",
  5260. "serializer",
  5261. "zf"
  5262. ],
  5263. "time": "2018-05-14T18:45:18+00:00"
  5264. },
  5265. {
  5266. "name": "zendframework/zend-servicemanager",
  5267. "version": "2.7.11",
  5268. "source": {
  5269. "type": "git",
  5270. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5271. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5272. },
  5273. "dist": {
  5274. "type": "zip",
  5275. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5276. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5277. "shasum": ""
  5278. },
  5279. "require": {
  5280. "container-interop/container-interop": "~1.0",
  5281. "php": "^5.5 || ^7.0"
  5282. },
  5283. "require-dev": {
  5284. "athletic/athletic": "dev-master",
  5285. "fabpot/php-cs-fixer": "1.7.*",
  5286. "phpunit/phpunit": "~4.0",
  5287. "zendframework/zend-di": "~2.5",
  5288. "zendframework/zend-mvc": "~2.5"
  5289. },
  5290. "suggest": {
  5291. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5292. "zendframework/zend-di": "Zend\\Di component"
  5293. },
  5294. "type": "library",
  5295. "extra": {
  5296. "branch-alias": {
  5297. "dev-master": "2.7-dev",
  5298. "dev-develop": "3.0-dev"
  5299. }
  5300. },
  5301. "autoload": {
  5302. "psr-4": {
  5303. "Zend\\ServiceManager\\": "src/"
  5304. }
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "BSD-3-Clause"
  5309. ],
  5310. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5311. "keywords": [
  5312. "servicemanager",
  5313. "zf2"
  5314. ],
  5315. "time": "2018-06-22T14:49:54+00:00"
  5316. },
  5317. {
  5318. "name": "zendframework/zend-stdlib",
  5319. "version": "2.7.7",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/zendframework/zend-stdlib.git",
  5323. "reference": "0e44eb46788f65e09e077eb7f44d2659143bcc1f"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/0e44eb46788f65e09e077eb7f44d2659143bcc1f",
  5328. "reference": "0e44eb46788f65e09e077eb7f44d2659143bcc1f",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "php": "^5.5 || ^7.0",
  5333. "zendframework/zend-hydrator": "~1.1"
  5334. },
  5335. "require-dev": {
  5336. "athletic/athletic": "~0.1",
  5337. "fabpot/php-cs-fixer": "1.7.*",
  5338. "phpunit/phpunit": "~4.0",
  5339. "zendframework/zend-config": "~2.5",
  5340. "zendframework/zend-eventmanager": "~2.5",
  5341. "zendframework/zend-filter": "~2.5",
  5342. "zendframework/zend-inputfilter": "~2.5",
  5343. "zendframework/zend-serializer": "~2.5",
  5344. "zendframework/zend-servicemanager": "~2.5"
  5345. },
  5346. "suggest": {
  5347. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  5348. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  5349. "zendframework/zend-serializer": "Zend\\Serializer component",
  5350. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  5351. },
  5352. "type": "library",
  5353. "extra": {
  5354. "branch-alias": {
  5355. "dev-release-2.7": "2.7-dev",
  5356. "dev-master": "3.0-dev",
  5357. "dev-develop": "3.1-dev"
  5358. }
  5359. },
  5360. "autoload": {
  5361. "psr-4": {
  5362. "Zend\\Stdlib\\": "src/"
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "BSD-3-Clause"
  5368. ],
  5369. "homepage": "https://github.com/zendframework/zend-stdlib",
  5370. "keywords": [
  5371. "stdlib",
  5372. "zf2"
  5373. ],
  5374. "time": "2016-04-12T21:17:31+00:00"
  5375. },
  5376. {
  5377. "name": "zetacomponents/base",
  5378. "version": "1.9.1",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://github.com/zetacomponents/Base.git",
  5382. "reference": "489e20235989ddc97fdd793af31ac803972454f1"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://api.github.com/repos/zetacomponents/Base/zipball/489e20235989ddc97fdd793af31ac803972454f1",
  5387. "reference": "489e20235989ddc97fdd793af31ac803972454f1",
  5388. "shasum": ""
  5389. },
  5390. "require-dev": {
  5391. "phpunit/phpunit": "~5.7",
  5392. "zetacomponents/unit-test": "*"
  5393. },
  5394. "type": "library",
  5395. "autoload": {
  5396. "classmap": [
  5397. "src"
  5398. ]
  5399. },
  5400. "notification-url": "https://packagist.org/downloads/",
  5401. "license": [
  5402. "Apache-2.0"
  5403. ],
  5404. "authors": [
  5405. {
  5406. "name": "Sergey Alexeev"
  5407. },
  5408. {
  5409. "name": "Sebastian Bergmann"
  5410. },
  5411. {
  5412. "name": "Jan Borsodi"
  5413. },
  5414. {
  5415. "name": "Raymond Bosman"
  5416. },
  5417. {
  5418. "name": "Frederik Holljen"
  5419. },
  5420. {
  5421. "name": "Kore Nordmann"
  5422. },
  5423. {
  5424. "name": "Derick Rethans"
  5425. },
  5426. {
  5427. "name": "Vadym Savchuk"
  5428. },
  5429. {
  5430. "name": "Tobias Schlitt"
  5431. },
  5432. {
  5433. "name": "Alexandru Stanoi"
  5434. }
  5435. ],
  5436. "description": "The Base package provides the basic infrastructure that all packages rely on. Therefore every component relies on this package.",
  5437. "homepage": "https://github.com/zetacomponents",
  5438. "time": "2017-11-28T11:30:00+00:00"
  5439. },
  5440. {
  5441. "name": "zetacomponents/document",
  5442. "version": "1.3.1",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://github.com/zetacomponents/Document.git",
  5446. "reference": "688abfde573cf3fe0730f82538fbd7aa9fc95bc8"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://api.github.com/repos/zetacomponents/Document/zipball/688abfde573cf3fe0730f82538fbd7aa9fc95bc8",
  5451. "reference": "688abfde573cf3fe0730f82538fbd7aa9fc95bc8",
  5452. "shasum": ""
  5453. },
  5454. "require": {
  5455. "zetacomponents/base": "*"
  5456. },
  5457. "require-dev": {
  5458. "zetacomponents/unit-test": "dev-master"
  5459. },
  5460. "type": "library",
  5461. "autoload": {
  5462. "classmap": [
  5463. "src"
  5464. ]
  5465. },
  5466. "notification-url": "https://packagist.org/downloads/",
  5467. "license": [
  5468. "Apache-2.0"
  5469. ],
  5470. "authors": [
  5471. {
  5472. "name": "Sebastian Bergmann"
  5473. },
  5474. {
  5475. "name": "Kore Nordmann"
  5476. },
  5477. {
  5478. "name": "Derick Rethans"
  5479. },
  5480. {
  5481. "name": "Tobias Schlitt"
  5482. },
  5483. {
  5484. "name": "Alexandru Stanoi"
  5485. }
  5486. ],
  5487. "description": "The Document components provides a general conversion framework for different semantic document markup languages like XHTML, Docbook, RST and similar.",
  5488. "homepage": "https://github.com/zetacomponents",
  5489. "time": "2013-12-19T11:40:00+00:00"
  5490. }
  5491. ],
  5492. "aliases": [],
  5493. "minimum-stability": "dev",
  5494. "stability-flags": {
  5495. "phpseclib/phpseclib": 20
  5496. },
  5497. "prefer-stable": true,
  5498. "prefer-lowest": false,
  5499. "platform": {
  5500. "php": "^7.0.0",
  5501. "ext-bcmath": "*",
  5502. "ext-curl": "*",
  5503. "ext-dom": "*",
  5504. "ext-gd": "*",
  5505. "ext-intl": "*",
  5506. "ext-json": "*",
  5507. "ext-mbstring": "*",
  5508. "ext-openssl": "*",
  5509. "ext-simplexml": "*",
  5510. "ext-xml": "*",
  5511. "ext-xmlwriter": "*"
  5512. },
  5513. "platform-dev": [],
  5514. "platform-overrides": {
  5515. "php": "7.0.0"
  5516. }
  5517. }