composer.lock 221 KB

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