composer.lock 205 KB

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