composer.lock 248 KB

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