composer.lock 227 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460
  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": "3b106a4d1a271673896d67cbdc8623e1",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.3.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  20. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^0.12.55",
  30. "psr/log": "^1.0",
  31. "symfony/phpunit-bridge": "^4.2 || ^5",
  32. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.3.3"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2022-07-20T07:14:26+00:00"
  84. },
  85. {
  86. "name": "composer/semver",
  87. "version": "1.7.2",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/semver.git",
  91. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  96. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "php": "^5.3.2 || ^7.0 || ^8.0"
  101. },
  102. "require-dev": {
  103. "phpunit/phpunit": "^4.5 || ^5.0.5"
  104. },
  105. "type": "library",
  106. "extra": {
  107. "branch-alias": {
  108. "dev-master": "1.x-dev"
  109. }
  110. },
  111. "autoload": {
  112. "psr-4": {
  113. "Composer\\Semver\\": "src"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "MIT"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Nils Adermann",
  123. "email": "naderman@naderman.de",
  124. "homepage": "http://www.naderman.de"
  125. },
  126. {
  127. "name": "Jordi Boggiano",
  128. "email": "j.boggiano@seld.be",
  129. "homepage": "http://seld.be"
  130. },
  131. {
  132. "name": "Rob Bast",
  133. "email": "rob.bast@gmail.com",
  134. "homepage": "http://robbast.nl"
  135. }
  136. ],
  137. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  138. "keywords": [
  139. "semantic",
  140. "semver",
  141. "validation",
  142. "versioning"
  143. ],
  144. "support": {
  145. "irc": "irc://irc.freenode.org/composer",
  146. "issues": "https://github.com/composer/semver/issues",
  147. "source": "https://github.com/composer/semver/tree/1.7.2"
  148. },
  149. "funding": [
  150. {
  151. "url": "https://packagist.com",
  152. "type": "custom"
  153. },
  154. {
  155. "url": "https://github.com/composer",
  156. "type": "github"
  157. },
  158. {
  159. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  160. "type": "tidelift"
  161. }
  162. ],
  163. "time": "2020-12-03T15:47:16+00:00"
  164. },
  165. {
  166. "name": "doctrine/cache",
  167. "version": "1.13.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/cache.git",
  171. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  176. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "php": "~7.1 || ^8.0"
  181. },
  182. "conflict": {
  183. "doctrine/common": ">2.2,<2.4"
  184. },
  185. "require-dev": {
  186. "alcaeus/mongo-php-adapter": "^1.1",
  187. "cache/integration-tests": "dev-master",
  188. "doctrine/coding-standard": "^9",
  189. "mongodb/mongodb": "^1.1",
  190. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  191. "predis/predis": "~1.0",
  192. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  193. "symfony/cache": "^4.4 || ^5.4 || ^6",
  194. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  195. },
  196. "suggest": {
  197. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  198. },
  199. "type": "library",
  200. "autoload": {
  201. "psr-4": {
  202. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "MIT"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Guilherme Blanco",
  212. "email": "guilhermeblanco@gmail.com"
  213. },
  214. {
  215. "name": "Roman Borschel",
  216. "email": "roman@code-factory.org"
  217. },
  218. {
  219. "name": "Benjamin Eberlei",
  220. "email": "kontakt@beberlei.de"
  221. },
  222. {
  223. "name": "Jonathan Wage",
  224. "email": "jonwage@gmail.com"
  225. },
  226. {
  227. "name": "Johannes Schmitt",
  228. "email": "schmittjoh@gmail.com"
  229. }
  230. ],
  231. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  232. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  233. "keywords": [
  234. "abstraction",
  235. "apcu",
  236. "cache",
  237. "caching",
  238. "couchdb",
  239. "memcached",
  240. "php",
  241. "redis",
  242. "xcache"
  243. ],
  244. "support": {
  245. "issues": "https://github.com/doctrine/cache/issues",
  246. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  247. },
  248. "funding": [
  249. {
  250. "url": "https://www.doctrine-project.org/sponsorship.html",
  251. "type": "custom"
  252. },
  253. {
  254. "url": "https://www.patreon.com/phpdoctrine",
  255. "type": "patreon"
  256. },
  257. {
  258. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  259. "type": "tidelift"
  260. }
  261. ],
  262. "time": "2022-05-20T20:06:54+00:00"
  263. },
  264. {
  265. "name": "doctrine/collections",
  266. "version": "1.8.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/doctrine/collections.git",
  270. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  275. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "doctrine/deprecations": "^0.5.3 || ^1",
  280. "php": "^7.1.3 || ^8.0"
  281. },
  282. "require-dev": {
  283. "doctrine/coding-standard": "^9.0 || ^10.0",
  284. "phpstan/phpstan": "^1.4.8",
  285. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  286. "vimeo/psalm": "^4.22"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  321. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  322. "keywords": [
  323. "array",
  324. "collections",
  325. "iterators",
  326. "php"
  327. ],
  328. "support": {
  329. "issues": "https://github.com/doctrine/collections/issues",
  330. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  331. },
  332. "time": "2022-09-01T20:12:10+00:00"
  333. },
  334. {
  335. "name": "doctrine/deprecations",
  336. "version": "v1.0.0",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/deprecations.git",
  340. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  345. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "php": "^7.1|^8.0"
  350. },
  351. "require-dev": {
  352. "doctrine/coding-standard": "^9",
  353. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  354. "psr/log": "^1|^2|^3"
  355. },
  356. "suggest": {
  357. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  358. },
  359. "type": "library",
  360. "autoload": {
  361. "psr-4": {
  362. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  363. }
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  370. "homepage": "https://www.doctrine-project.org/",
  371. "support": {
  372. "issues": "https://github.com/doctrine/deprecations/issues",
  373. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  374. },
  375. "time": "2022-05-02T15:47:09+00:00"
  376. },
  377. {
  378. "name": "donatj/phpuseragentparser",
  379. "version": "v1.7.0",
  380. "source": {
  381. "type": "git",
  382. "url": "https://github.com/donatj/PhpUserAgent.git",
  383. "reference": "a35900b93530715f8669c10e49756adde5c8e6fc"
  384. },
  385. "dist": {
  386. "type": "zip",
  387. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/a35900b93530715f8669c10e49756adde5c8e6fc",
  388. "reference": "a35900b93530715f8669c10e49756adde5c8e6fc",
  389. "shasum": ""
  390. },
  391. "require": {
  392. "php": ">=5.4.0"
  393. },
  394. "require-dev": {
  395. "camspiers/json-pretty": "~1.0",
  396. "donatj/drop": "*",
  397. "ext-json": "*",
  398. "phpunit/phpunit": "~4.8|~9"
  399. },
  400. "type": "library",
  401. "autoload": {
  402. "files": [
  403. "src/UserAgentParser.php"
  404. ],
  405. "psr-4": {
  406. "donatj\\UserAgent\\": "src/UserAgent"
  407. }
  408. },
  409. "notification-url": "https://packagist.org/downloads/",
  410. "license": [
  411. "MIT"
  412. ],
  413. "authors": [
  414. {
  415. "name": "Jesse G. Donat",
  416. "email": "donatj@gmail.com",
  417. "homepage": "https://donatstudios.com",
  418. "role": "Developer"
  419. }
  420. ],
  421. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  422. "homepage": "https://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  423. "keywords": [
  424. "browser",
  425. "browser detection",
  426. "parser",
  427. "user agent",
  428. "useragent"
  429. ],
  430. "support": {
  431. "issues": "https://github.com/donatj/PhpUserAgent/issues",
  432. "source": "https://github.com/donatj/PhpUserAgent/tree/v1.7.0"
  433. },
  434. "funding": [
  435. {
  436. "url": "https://www.paypal.me/donatj/15",
  437. "type": "custom"
  438. },
  439. {
  440. "url": "https://github.com/donatj",
  441. "type": "github"
  442. }
  443. ],
  444. "time": "2022-08-06T15:41:58+00:00"
  445. },
  446. {
  447. "name": "dragonmantank/cron-expression",
  448. "version": "v1.2.1",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/dragonmantank/cron-expression.git",
  452. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  457. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": ">=5.3.2"
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "~4.0|~5.0"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Cron\\": "src/Cron/"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Michael Dowling",
  479. "email": "mtdowling@gmail.com",
  480. "homepage": "https://github.com/mtdowling"
  481. }
  482. ],
  483. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  484. "keywords": [
  485. "cron",
  486. "schedule"
  487. ],
  488. "support": {
  489. "source": "https://github.com/dragonmantank/cron-expression/tree/v1.2.0"
  490. },
  491. "time": "2017-01-23T04:29:33+00:00"
  492. },
  493. {
  494. "name": "erusev/parsedown",
  495. "version": "1.7.4",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/erusev/parsedown.git",
  499. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  504. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "ext-mbstring": "*",
  509. "php": ">=5.3.0"
  510. },
  511. "require-dev": {
  512. "phpunit/phpunit": "^4.8.35"
  513. },
  514. "type": "library",
  515. "autoload": {
  516. "psr-0": {
  517. "Parsedown": ""
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Emanuil Rusev",
  527. "email": "hello@erusev.com",
  528. "homepage": "http://erusev.com"
  529. }
  530. ],
  531. "description": "Parser for Markdown.",
  532. "homepage": "http://parsedown.org",
  533. "keywords": [
  534. "markdown",
  535. "parser"
  536. ],
  537. "support": {
  538. "issues": "https://github.com/erusev/parsedown/issues",
  539. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  540. },
  541. "time": "2019-12-30T22:54:17+00:00"
  542. },
  543. {
  544. "name": "erusev/parsedown-extra",
  545. "version": "0.8.1",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/erusev/parsedown-extra.git",
  549. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/91ac3ff98f0cea243bdccc688df43810f044dcef",
  554. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "erusev/parsedown": "^1.7.4"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "^4.8.35"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-0": {
  566. "ParsedownExtra": ""
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Emanuil Rusev",
  576. "email": "hello@erusev.com",
  577. "homepage": "http://erusev.com"
  578. }
  579. ],
  580. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  581. "homepage": "https://github.com/erusev/parsedown-extra",
  582. "keywords": [
  583. "markdown",
  584. "markdown extra",
  585. "parsedown",
  586. "parser"
  587. ],
  588. "support": {
  589. "issues": "https://github.com/erusev/parsedown-extra/issues",
  590. "source": "https://github.com/erusev/parsedown-extra/tree/0.8.x"
  591. },
  592. "time": "2019-12-30T23:20:37+00:00"
  593. },
  594. {
  595. "name": "filp/whoops",
  596. "version": "2.14.5",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/filp/whoops.git",
  600. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  605. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  606. "shasum": ""
  607. },
  608. "require": {
  609. "php": "^5.5.9 || ^7.0 || ^8.0",
  610. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  611. },
  612. "require-dev": {
  613. "mockery/mockery": "^0.9 || ^1.0",
  614. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  615. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  616. },
  617. "suggest": {
  618. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  619. "whoops/soap": "Formats errors as SOAP responses"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "branch-alias": {
  624. "dev-master": "2.7-dev"
  625. }
  626. },
  627. "autoload": {
  628. "psr-4": {
  629. "Whoops\\": "src/Whoops/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Filipe Dobreira",
  639. "homepage": "https://github.com/filp",
  640. "role": "Developer"
  641. }
  642. ],
  643. "description": "php error handling for cool kids",
  644. "homepage": "https://filp.github.io/whoops/",
  645. "keywords": [
  646. "error",
  647. "exception",
  648. "handling",
  649. "library",
  650. "throwable",
  651. "whoops"
  652. ],
  653. "support": {
  654. "issues": "https://github.com/filp/whoops/issues",
  655. "source": "https://github.com/filp/whoops/tree/2.14.5"
  656. },
  657. "funding": [
  658. {
  659. "url": "https://github.com/denis-sokolov",
  660. "type": "github"
  661. }
  662. ],
  663. "time": "2022-01-07T12:00:00+00:00"
  664. },
  665. {
  666. "name": "getgrav/cache",
  667. "version": "v2.0.0",
  668. "target-dir": "Gregwar/Cache",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/getgrav/Cache.git",
  672. "reference": "56fd63f752779928fcd1074ab7d12f406dde8861"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/getgrav/Cache/zipball/56fd63f752779928fcd1074ab7d12f406dde8861",
  677. "reference": "56fd63f752779928fcd1074ab7d12f406dde8861",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": ">=5.3"
  682. },
  683. "type": "library",
  684. "autoload": {
  685. "psr-0": {
  686. "Gregwar\\Cache": ""
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Gregwar",
  696. "email": "g.passault@gmail.com"
  697. },
  698. {
  699. "name": "Grav CMS",
  700. "email": "hello@getgrav.org",
  701. "homepage": "https://getgrav.org"
  702. }
  703. ],
  704. "description": "A lightweight file-system cache system",
  705. "keywords": [
  706. "cache",
  707. "caching",
  708. "file-system",
  709. "system"
  710. ],
  711. "support": {
  712. "source": "https://github.com/getgrav/Cache/tree/v2.0.0"
  713. },
  714. "time": "2021-04-20T05:48:00+00:00"
  715. },
  716. {
  717. "name": "getgrav/image",
  718. "version": "v3.0.0",
  719. "target-dir": "Gregwar/Image",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/getgrav/Image.git",
  723. "reference": "02c1bb2c179dd894c4f6610c9c49da364ee7d264"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/getgrav/Image/zipball/02c1bb2c179dd894c4f6610c9c49da364ee7d264",
  728. "reference": "02c1bb2c179dd894c4f6610c9c49da364ee7d264",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "ext-gd": "*",
  733. "getgrav/cache": "^2.0",
  734. "php": "^5.6 || ^7.0 || ^8.0"
  735. },
  736. "require-dev": {
  737. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  738. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  739. },
  740. "suggest": {
  741. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-0": {
  746. "Gregwar\\Image": ""
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Grégoire Passault",
  756. "email": "g.passault@gmail.com",
  757. "homepage": "http://www.gregwar.com/"
  758. },
  759. {
  760. "name": "Grav CMS",
  761. "email": "hello@getgrav.org",
  762. "homepage": "https://getgrav.org"
  763. }
  764. ],
  765. "description": "Image handling",
  766. "homepage": "https://github.com/Gregwar/Image",
  767. "keywords": [
  768. "gd",
  769. "image"
  770. ],
  771. "support": {
  772. "source": "https://github.com/getgrav/Image/tree/v3.0.0"
  773. },
  774. "time": "2021-04-20T05:50:18+00:00"
  775. },
  776. {
  777. "name": "guzzlehttp/psr7",
  778. "version": "1.9.0",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/guzzle/psr7.git",
  782. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  787. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  788. "shasum": ""
  789. },
  790. "require": {
  791. "php": ">=5.4.0",
  792. "psr/http-message": "~1.0",
  793. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  794. },
  795. "provide": {
  796. "psr/http-message-implementation": "1.0"
  797. },
  798. "require-dev": {
  799. "ext-zlib": "*",
  800. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  801. },
  802. "suggest": {
  803. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  804. },
  805. "type": "library",
  806. "extra": {
  807. "branch-alias": {
  808. "dev-master": "1.9-dev"
  809. }
  810. },
  811. "autoload": {
  812. "files": [
  813. "src/functions_include.php"
  814. ],
  815. "psr-4": {
  816. "GuzzleHttp\\Psr7\\": "src/"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "Graham Campbell",
  826. "email": "hello@gjcampbell.co.uk",
  827. "homepage": "https://github.com/GrahamCampbell"
  828. },
  829. {
  830. "name": "Michael Dowling",
  831. "email": "mtdowling@gmail.com",
  832. "homepage": "https://github.com/mtdowling"
  833. },
  834. {
  835. "name": "George Mponos",
  836. "email": "gmponos@gmail.com",
  837. "homepage": "https://github.com/gmponos"
  838. },
  839. {
  840. "name": "Tobias Nyholm",
  841. "email": "tobias.nyholm@gmail.com",
  842. "homepage": "https://github.com/Nyholm"
  843. },
  844. {
  845. "name": "Márk Sági-Kazár",
  846. "email": "mark.sagikazar@gmail.com",
  847. "homepage": "https://github.com/sagikazarmark"
  848. },
  849. {
  850. "name": "Tobias Schultze",
  851. "email": "webmaster@tubo-world.de",
  852. "homepage": "https://github.com/Tobion"
  853. }
  854. ],
  855. "description": "PSR-7 message implementation that also provides common utility methods",
  856. "keywords": [
  857. "http",
  858. "message",
  859. "psr-7",
  860. "request",
  861. "response",
  862. "stream",
  863. "uri",
  864. "url"
  865. ],
  866. "support": {
  867. "issues": "https://github.com/guzzle/psr7/issues",
  868. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  869. },
  870. "funding": [
  871. {
  872. "url": "https://github.com/GrahamCampbell",
  873. "type": "github"
  874. },
  875. {
  876. "url": "https://github.com/Nyholm",
  877. "type": "github"
  878. },
  879. {
  880. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  881. "type": "tidelift"
  882. }
  883. ],
  884. "time": "2022-06-20T21:43:03+00:00"
  885. },
  886. {
  887. "name": "itsgoingd/clockwork",
  888. "version": "v5.1.8",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/itsgoingd/clockwork.git",
  892. "reference": "74ee05a61296aa7298164ef5346f0a568aa6106e"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/itsgoingd/clockwork/zipball/74ee05a61296aa7298164ef5346f0a568aa6106e",
  897. "reference": "74ee05a61296aa7298164ef5346f0a568aa6106e",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "ext-json": "*",
  902. "php": ">=5.6"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "laravel": {
  907. "providers": [
  908. "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
  909. ],
  910. "aliases": {
  911. "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
  912. }
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Clockwork\\": "Clockwork/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "itsgoingd",
  927. "email": "itsgoingd@luzer.sk",
  928. "homepage": "https://twitter.com/itsgoingd"
  929. }
  930. ],
  931. "description": "php dev tools in your browser",
  932. "homepage": "https://underground.works/clockwork",
  933. "keywords": [
  934. "Devtools",
  935. "debugging",
  936. "laravel",
  937. "logging",
  938. "lumen",
  939. "profiling",
  940. "slim"
  941. ],
  942. "support": {
  943. "issues": "https://github.com/itsgoingd/clockwork/issues",
  944. "source": "https://github.com/itsgoingd/clockwork/tree/v5.1.8"
  945. },
  946. "funding": [
  947. {
  948. "url": "https://github.com/itsgoingd",
  949. "type": "github"
  950. }
  951. ],
  952. "time": "2022-09-25T20:21:14+00:00"
  953. },
  954. {
  955. "name": "league/climate",
  956. "version": "3.8.2",
  957. "source": {
  958. "type": "git",
  959. "url": "https://github.com/thephpleague/climate.git",
  960. "reference": "a785a3ac8f584eed4abd45e4e16fe64c46659a28"
  961. },
  962. "dist": {
  963. "type": "zip",
  964. "url": "https://api.github.com/repos/thephpleague/climate/zipball/a785a3ac8f584eed4abd45e4e16fe64c46659a28",
  965. "reference": "a785a3ac8f584eed4abd45e4e16fe64c46659a28",
  966. "shasum": ""
  967. },
  968. "require": {
  969. "php": "^7.3 || ^8.0",
  970. "psr/log": "^1.0 || ^2.0 || ^3.0",
  971. "seld/cli-prompt": "^1.0"
  972. },
  973. "require-dev": {
  974. "mikey179/vfsstream": "^1.6.10",
  975. "mockery/mockery": "^1.4.2",
  976. "phpunit/phpunit": "^9.5.10"
  977. },
  978. "suggest": {
  979. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  980. },
  981. "type": "library",
  982. "autoload": {
  983. "psr-4": {
  984. "League\\CLImate\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Joe Tannenbaum",
  994. "email": "hey@joe.codes",
  995. "homepage": "http://joe.codes/",
  996. "role": "Developer"
  997. },
  998. {
  999. "name": "Craig Duncan",
  1000. "email": "git@duncanc.co.uk",
  1001. "homepage": "https://github.com/duncan3dc",
  1002. "role": "Developer"
  1003. }
  1004. ],
  1005. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  1006. "keywords": [
  1007. "cli",
  1008. "colors",
  1009. "command",
  1010. "php",
  1011. "terminal"
  1012. ],
  1013. "support": {
  1014. "issues": "https://github.com/thephpleague/climate/issues",
  1015. "source": "https://github.com/thephpleague/climate/tree/3.8.2"
  1016. },
  1017. "time": "2022-06-18T14:42:08+00:00"
  1018. },
  1019. {
  1020. "name": "matthiasmullie/minify",
  1021. "version": "1.3.69",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/matthiasmullie/minify.git",
  1025. "reference": "a61c949cccd086808063611ef9698eabe42ef22f"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/a61c949cccd086808063611ef9698eabe42ef22f",
  1030. "reference": "a61c949cccd086808063611ef9698eabe42ef22f",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "ext-pcre": "*",
  1035. "matthiasmullie/path-converter": "~1.1",
  1036. "php": ">=5.3.0"
  1037. },
  1038. "require-dev": {
  1039. "friendsofphp/php-cs-fixer": "~2.0",
  1040. "matthiasmullie/scrapbook": "dev-master",
  1041. "phpunit/phpunit": ">=4.8"
  1042. },
  1043. "suggest": {
  1044. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  1045. },
  1046. "bin": [
  1047. "bin/minifycss",
  1048. "bin/minifyjs"
  1049. ],
  1050. "type": "library",
  1051. "autoload": {
  1052. "psr-4": {
  1053. "MatthiasMullie\\Minify\\": "src/"
  1054. }
  1055. },
  1056. "notification-url": "https://packagist.org/downloads/",
  1057. "license": [
  1058. "MIT"
  1059. ],
  1060. "authors": [
  1061. {
  1062. "name": "Matthias Mullie",
  1063. "email": "minify@mullie.eu",
  1064. "homepage": "http://www.mullie.eu",
  1065. "role": "Developer"
  1066. }
  1067. ],
  1068. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  1069. "homepage": "http://www.minifier.org",
  1070. "keywords": [
  1071. "JS",
  1072. "css",
  1073. "javascript",
  1074. "minifier",
  1075. "minify"
  1076. ],
  1077. "support": {
  1078. "issues": "https://github.com/matthiasmullie/minify/issues",
  1079. "source": "https://github.com/matthiasmullie/minify/tree/1.3.69"
  1080. },
  1081. "funding": [
  1082. {
  1083. "url": "https://github.com/matthiasmullie",
  1084. "type": "github"
  1085. }
  1086. ],
  1087. "time": "2022-08-01T09:00:18+00:00"
  1088. },
  1089. {
  1090. "name": "matthiasmullie/path-converter",
  1091. "version": "1.1.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/matthiasmullie/path-converter.git",
  1095. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1100. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "ext-pcre": "*",
  1105. "php": ">=5.3.0"
  1106. },
  1107. "require-dev": {
  1108. "phpunit/phpunit": "~4.8"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "MatthiasMullie\\PathConverter\\": "src/"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Matthias Mullie",
  1123. "email": "pathconverter@mullie.eu",
  1124. "homepage": "http://www.mullie.eu",
  1125. "role": "Developer"
  1126. }
  1127. ],
  1128. "description": "Relative path converter",
  1129. "homepage": "http://github.com/matthiasmullie/path-converter",
  1130. "keywords": [
  1131. "converter",
  1132. "path",
  1133. "paths",
  1134. "relative"
  1135. ],
  1136. "support": {
  1137. "issues": "https://github.com/matthiasmullie/path-converter/issues",
  1138. "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"
  1139. },
  1140. "time": "2019-02-05T23:41:09+00:00"
  1141. },
  1142. {
  1143. "name": "maximebf/debugbar",
  1144. "version": "v1.18.1",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/maximebf/php-debugbar.git",
  1148. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  1153. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "php": "^7.1|^8",
  1158. "psr/log": "^1|^2|^3",
  1159. "symfony/var-dumper": "^2.6|^3|^4|^5|^6"
  1160. },
  1161. "require-dev": {
  1162. "phpunit/phpunit": "^7.5.20 || ^9.4.2",
  1163. "twig/twig": "^1.38|^2.7|^3.0"
  1164. },
  1165. "suggest": {
  1166. "kriswallsmith/assetic": "The best way to manage assets",
  1167. "monolog/monolog": "Log using Monolog",
  1168. "predis/predis": "Redis storage"
  1169. },
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "1.18-dev"
  1174. }
  1175. },
  1176. "autoload": {
  1177. "psr-4": {
  1178. "DebugBar\\": "src/DebugBar/"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Maxime Bouroumeau-Fuseau",
  1188. "email": "maxime.bouroumeau@gmail.com",
  1189. "homepage": "http://maximebf.com"
  1190. },
  1191. {
  1192. "name": "Barry vd. Heuvel",
  1193. "email": "barryvdh@gmail.com"
  1194. }
  1195. ],
  1196. "description": "Debug bar in the browser for php application",
  1197. "homepage": "https://github.com/maximebf/php-debugbar",
  1198. "keywords": [
  1199. "debug",
  1200. "debugbar"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/maximebf/php-debugbar/issues",
  1204. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.1"
  1205. },
  1206. "time": "2022-03-31T14:55:54+00:00"
  1207. },
  1208. {
  1209. "name": "miljar/php-exif",
  1210. "version": "v0.6.5",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/PHPExif/php-exif.git",
  1214. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1219. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": ">=5.4"
  1224. },
  1225. "require-dev": {
  1226. "jakub-onderka/php-parallel-lint": "^1.0",
  1227. "phpmd/phpmd": "~2.2",
  1228. "phpunit/phpunit": ">=4.0 <6.0",
  1229. "satooshi/php-coveralls": "~0.6",
  1230. "sebastian/phpcpd": "1.4.*@stable",
  1231. "squizlabs/php_codesniffer": "1.4.*@stable"
  1232. },
  1233. "suggest": {
  1234. "ext-exif": "Use exif PHP extension as adapter",
  1235. "lib-exiftool": "Use perl lib exiftool as adapter"
  1236. },
  1237. "type": "library",
  1238. "autoload": {
  1239. "psr-0": {
  1240. "PHPExif": "lib/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Tom Van Herreweghe",
  1250. "homepage": "http://theanalogguy.be",
  1251. "role": "Developer"
  1252. }
  1253. ],
  1254. "description": "Object-Oriented EXIF parsing",
  1255. "keywords": [
  1256. "IPTC",
  1257. "exif",
  1258. "exiftool",
  1259. "jpeg",
  1260. "tiff"
  1261. ],
  1262. "support": {
  1263. "issues": "https://github.com/PHPExif/php-exif/issues",
  1264. "source": "https://github.com/PHPExif/php-exif/tree/v0.6.5"
  1265. },
  1266. "time": "2019-02-11T13:47:52+00:00"
  1267. },
  1268. {
  1269. "name": "monolog/monolog",
  1270. "version": "1.27.1",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/Seldaek/monolog.git",
  1274. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1",
  1279. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": ">=5.3.0",
  1284. "psr/log": "~1.0"
  1285. },
  1286. "provide": {
  1287. "psr/log-implementation": "1.0.0"
  1288. },
  1289. "require-dev": {
  1290. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1291. "doctrine/couchdb": "~1.0@dev",
  1292. "graylog2/gelf-php": "~1.0",
  1293. "php-amqplib/php-amqplib": "~2.4",
  1294. "php-console/php-console": "^3.1.3",
  1295. "phpstan/phpstan": "^0.12.59",
  1296. "phpunit/phpunit": "~4.5",
  1297. "ruflin/elastica": ">=0.90 <3.0",
  1298. "sentry/sentry": "^0.13",
  1299. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1300. },
  1301. "suggest": {
  1302. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1303. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1304. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1305. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1306. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1307. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1308. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1309. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1310. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1311. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1312. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1313. },
  1314. "type": "library",
  1315. "autoload": {
  1316. "psr-4": {
  1317. "Monolog\\": "src/Monolog"
  1318. }
  1319. },
  1320. "notification-url": "https://packagist.org/downloads/",
  1321. "license": [
  1322. "MIT"
  1323. ],
  1324. "authors": [
  1325. {
  1326. "name": "Jordi Boggiano",
  1327. "email": "j.boggiano@seld.be",
  1328. "homepage": "http://seld.be"
  1329. }
  1330. ],
  1331. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1332. "homepage": "http://github.com/Seldaek/monolog",
  1333. "keywords": [
  1334. "log",
  1335. "logging",
  1336. "psr-3"
  1337. ],
  1338. "support": {
  1339. "issues": "https://github.com/Seldaek/monolog/issues",
  1340. "source": "https://github.com/Seldaek/monolog/tree/1.27.1"
  1341. },
  1342. "funding": [
  1343. {
  1344. "url": "https://github.com/Seldaek",
  1345. "type": "github"
  1346. },
  1347. {
  1348. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1349. "type": "tidelift"
  1350. }
  1351. ],
  1352. "time": "2022-06-09T08:53:42+00:00"
  1353. },
  1354. {
  1355. "name": "multiavatar/multiavatar-php",
  1356. "version": "v1.0.5",
  1357. "source": {
  1358. "type": "git",
  1359. "url": "https://github.com/multiavatar/multiavatar-php.git",
  1360. "reference": "13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574"
  1361. },
  1362. "dist": {
  1363. "type": "zip",
  1364. "url": "https://api.github.com/repos/multiavatar/multiavatar-php/zipball/13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574",
  1365. "reference": "13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574",
  1366. "shasum": ""
  1367. },
  1368. "type": "library",
  1369. "autoload": {
  1370. "classmap": [
  1371. "Multiavatar.php"
  1372. ]
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "proprietary"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Gie Katon",
  1381. "homepage": "https://giekaton.com"
  1382. }
  1383. ],
  1384. "description": "Multicultural Avatar Generator",
  1385. "homepage": "https://multiavatar.com",
  1386. "keywords": [
  1387. "avatar",
  1388. "creator",
  1389. "generator",
  1390. "image",
  1391. "maker",
  1392. "picture",
  1393. "profile"
  1394. ],
  1395. "support": {
  1396. "issues": "https://github.com/multiavatar/multiavatar-php/issues",
  1397. "source": "https://github.com/multiavatar/multiavatar-php/tree/v1.0.5"
  1398. },
  1399. "time": "2021-03-02T07:33:46+00:00"
  1400. },
  1401. {
  1402. "name": "nyholm/psr7",
  1403. "version": "1.5.1",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/Nyholm/psr7.git",
  1407. "reference": "f734364e38a876a23be4d906a2a089e1315be18a"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/f734364e38a876a23be4d906a2a089e1315be18a",
  1412. "reference": "f734364e38a876a23be4d906a2a089e1315be18a",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "php": ">=7.1",
  1417. "php-http/message-factory": "^1.0",
  1418. "psr/http-factory": "^1.0",
  1419. "psr/http-message": "^1.0"
  1420. },
  1421. "provide": {
  1422. "psr/http-factory-implementation": "1.0",
  1423. "psr/http-message-implementation": "1.0"
  1424. },
  1425. "require-dev": {
  1426. "http-interop/http-factory-tests": "^0.9",
  1427. "php-http/psr7-integration-tests": "^1.0",
  1428. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  1429. "symfony/error-handler": "^4.4"
  1430. },
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "1.4-dev"
  1435. }
  1436. },
  1437. "autoload": {
  1438. "psr-4": {
  1439. "Nyholm\\Psr7\\": "src/"
  1440. }
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "MIT"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Tobias Nyholm",
  1449. "email": "tobias.nyholm@gmail.com"
  1450. },
  1451. {
  1452. "name": "Martijn van der Ven",
  1453. "email": "martijn@vanderven.se"
  1454. }
  1455. ],
  1456. "description": "A fast PHP7 implementation of PSR-7",
  1457. "homepage": "https://tnyholm.se",
  1458. "keywords": [
  1459. "psr-17",
  1460. "psr-7"
  1461. ],
  1462. "support": {
  1463. "issues": "https://github.com/Nyholm/psr7/issues",
  1464. "source": "https://github.com/Nyholm/psr7/tree/1.5.1"
  1465. },
  1466. "funding": [
  1467. {
  1468. "url": "https://github.com/Zegnat",
  1469. "type": "github"
  1470. },
  1471. {
  1472. "url": "https://github.com/nyholm",
  1473. "type": "github"
  1474. }
  1475. ],
  1476. "time": "2022-06-22T07:13:36+00:00"
  1477. },
  1478. {
  1479. "name": "nyholm/psr7-server",
  1480. "version": "1.0.2",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/Nyholm/psr7-server.git",
  1484. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  1489. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  1490. "shasum": ""
  1491. },
  1492. "require": {
  1493. "php": "^7.1 || ^8.0",
  1494. "psr/http-factory": "^1.0",
  1495. "psr/http-message": "^1.0"
  1496. },
  1497. "require-dev": {
  1498. "nyholm/nsa": "^1.1",
  1499. "nyholm/psr7": "^1.3",
  1500. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  1501. },
  1502. "type": "library",
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Nyholm\\Psr7Server\\": "src/"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Tobias Nyholm",
  1515. "email": "tobias.nyholm@gmail.com"
  1516. },
  1517. {
  1518. "name": "Martijn van der Ven",
  1519. "email": "martijn@vanderven.se"
  1520. }
  1521. ],
  1522. "description": "Helper classes to handle PSR-7 server requests",
  1523. "homepage": "http://tnyholm.se",
  1524. "keywords": [
  1525. "psr-17",
  1526. "psr-7"
  1527. ],
  1528. "support": {
  1529. "issues": "https://github.com/Nyholm/psr7-server/issues",
  1530. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  1531. },
  1532. "funding": [
  1533. {
  1534. "url": "https://github.com/Zegnat",
  1535. "type": "github"
  1536. },
  1537. {
  1538. "url": "https://github.com/nyholm",
  1539. "type": "github"
  1540. }
  1541. ],
  1542. "time": "2021-05-12T11:11:27+00:00"
  1543. },
  1544. {
  1545. "name": "php-http/message-factory",
  1546. "version": "v1.0.2",
  1547. "source": {
  1548. "type": "git",
  1549. "url": "https://github.com/php-http/message-factory.git",
  1550. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1551. },
  1552. "dist": {
  1553. "type": "zip",
  1554. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1555. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1556. "shasum": ""
  1557. },
  1558. "require": {
  1559. "php": ">=5.4",
  1560. "psr/http-message": "^1.0"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "1.0-dev"
  1566. }
  1567. },
  1568. "autoload": {
  1569. "psr-4": {
  1570. "Http\\Message\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Márk Sági-Kazár",
  1580. "email": "mark.sagikazar@gmail.com"
  1581. }
  1582. ],
  1583. "description": "Factory interfaces for PSR-7 HTTP Message",
  1584. "homepage": "http://php-http.org",
  1585. "keywords": [
  1586. "factory",
  1587. "http",
  1588. "message",
  1589. "stream",
  1590. "uri"
  1591. ],
  1592. "support": {
  1593. "issues": "https://github.com/php-http/message-factory/issues",
  1594. "source": "https://github.com/php-http/message-factory/tree/master"
  1595. },
  1596. "time": "2015-12-19T14:08:53+00:00"
  1597. },
  1598. {
  1599. "name": "pimple/pimple",
  1600. "version": "v3.5.0",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/silexphp/Pimple.git",
  1604. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1609. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=7.2.5",
  1614. "psr/container": "^1.1 || ^2.0"
  1615. },
  1616. "require-dev": {
  1617. "symfony/phpunit-bridge": "^5.4@dev"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "branch-alias": {
  1622. "dev-master": "3.4.x-dev"
  1623. }
  1624. },
  1625. "autoload": {
  1626. "psr-0": {
  1627. "Pimple": "src/"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Fabien Potencier",
  1637. "email": "fabien@symfony.com"
  1638. }
  1639. ],
  1640. "description": "Pimple, a simple Dependency Injection Container",
  1641. "homepage": "https://pimple.symfony.com",
  1642. "keywords": [
  1643. "container",
  1644. "dependency injection"
  1645. ],
  1646. "support": {
  1647. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1648. },
  1649. "time": "2021-10-28T11:13:42+00:00"
  1650. },
  1651. {
  1652. "name": "psr/cache",
  1653. "version": "1.0.1",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/php-fig/cache.git",
  1657. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1662. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "php": ">=5.3.0"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "1.0.x-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "Psr\\Cache\\": "src/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "PHP-FIG",
  1686. "homepage": "http://www.php-fig.org/"
  1687. }
  1688. ],
  1689. "description": "Common interface for caching libraries",
  1690. "keywords": [
  1691. "cache",
  1692. "psr",
  1693. "psr-6"
  1694. ],
  1695. "support": {
  1696. "source": "https://github.com/php-fig/cache/tree/master"
  1697. },
  1698. "time": "2016-08-06T20:24:11+00:00"
  1699. },
  1700. {
  1701. "name": "psr/container",
  1702. "version": "1.1.1",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/php-fig/container.git",
  1706. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1711. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "php": ">=7.2.0"
  1716. },
  1717. "type": "library",
  1718. "autoload": {
  1719. "psr-4": {
  1720. "Psr\\Container\\": "src/"
  1721. }
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "PHP-FIG",
  1730. "homepage": "https://www.php-fig.org/"
  1731. }
  1732. ],
  1733. "description": "Common Container Interface (PHP FIG PSR-11)",
  1734. "homepage": "https://github.com/php-fig/container",
  1735. "keywords": [
  1736. "PSR-11",
  1737. "container",
  1738. "container-interface",
  1739. "container-interop",
  1740. "psr"
  1741. ],
  1742. "support": {
  1743. "issues": "https://github.com/php-fig/container/issues",
  1744. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1745. },
  1746. "time": "2021-03-05T17:36:06+00:00"
  1747. },
  1748. {
  1749. "name": "psr/http-factory",
  1750. "version": "1.0.1",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/php-fig/http-factory.git",
  1754. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1759. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": ">=7.0.0",
  1764. "psr/http-message": "^1.0"
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "1.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Psr\\Http\\Message\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "PHP-FIG",
  1784. "homepage": "http://www.php-fig.org/"
  1785. }
  1786. ],
  1787. "description": "Common interfaces for PSR-7 HTTP message factories",
  1788. "keywords": [
  1789. "factory",
  1790. "http",
  1791. "message",
  1792. "psr",
  1793. "psr-17",
  1794. "psr-7",
  1795. "request",
  1796. "response"
  1797. ],
  1798. "support": {
  1799. "source": "https://github.com/php-fig/http-factory/tree/master"
  1800. },
  1801. "time": "2019-04-30T12:38:16+00:00"
  1802. },
  1803. {
  1804. "name": "psr/http-message",
  1805. "version": "1.0.1",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/php-fig/http-message.git",
  1809. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1814. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": ">=5.3.0"
  1819. },
  1820. "type": "library",
  1821. "extra": {
  1822. "branch-alias": {
  1823. "dev-master": "1.0.x-dev"
  1824. }
  1825. },
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Psr\\Http\\Message\\": "src/"
  1829. }
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "MIT"
  1834. ],
  1835. "authors": [
  1836. {
  1837. "name": "PHP-FIG",
  1838. "homepage": "http://www.php-fig.org/"
  1839. }
  1840. ],
  1841. "description": "Common interface for HTTP messages",
  1842. "homepage": "https://github.com/php-fig/http-message",
  1843. "keywords": [
  1844. "http",
  1845. "http-message",
  1846. "psr",
  1847. "psr-7",
  1848. "request",
  1849. "response"
  1850. ],
  1851. "support": {
  1852. "source": "https://github.com/php-fig/http-message/tree/master"
  1853. },
  1854. "time": "2016-08-06T14:39:51+00:00"
  1855. },
  1856. {
  1857. "name": "psr/http-server-handler",
  1858. "version": "1.0.1",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/php-fig/http-server-handler.git",
  1862. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1867. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": ">=7.0",
  1872. "psr/http-message": "^1.0"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "1.0.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-4": {
  1882. "Psr\\Http\\Server\\": "src/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "PHP-FIG",
  1892. "homepage": "http://www.php-fig.org/"
  1893. }
  1894. ],
  1895. "description": "Common interface for HTTP server-side request handler",
  1896. "keywords": [
  1897. "handler",
  1898. "http",
  1899. "http-interop",
  1900. "psr",
  1901. "psr-15",
  1902. "psr-7",
  1903. "request",
  1904. "response",
  1905. "server"
  1906. ],
  1907. "support": {
  1908. "issues": "https://github.com/php-fig/http-server-handler/issues",
  1909. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  1910. },
  1911. "time": "2018-10-30T16:46:14+00:00"
  1912. },
  1913. {
  1914. "name": "psr/http-server-middleware",
  1915. "version": "1.0.1",
  1916. "source": {
  1917. "type": "git",
  1918. "url": "https://github.com/php-fig/http-server-middleware.git",
  1919. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1920. },
  1921. "dist": {
  1922. "type": "zip",
  1923. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1924. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1925. "shasum": ""
  1926. },
  1927. "require": {
  1928. "php": ">=7.0",
  1929. "psr/http-message": "^1.0",
  1930. "psr/http-server-handler": "^1.0"
  1931. },
  1932. "type": "library",
  1933. "extra": {
  1934. "branch-alias": {
  1935. "dev-master": "1.0.x-dev"
  1936. }
  1937. },
  1938. "autoload": {
  1939. "psr-4": {
  1940. "Psr\\Http\\Server\\": "src/"
  1941. }
  1942. },
  1943. "notification-url": "https://packagist.org/downloads/",
  1944. "license": [
  1945. "MIT"
  1946. ],
  1947. "authors": [
  1948. {
  1949. "name": "PHP-FIG",
  1950. "homepage": "http://www.php-fig.org/"
  1951. }
  1952. ],
  1953. "description": "Common interface for HTTP server-side middleware",
  1954. "keywords": [
  1955. "http",
  1956. "http-interop",
  1957. "middleware",
  1958. "psr",
  1959. "psr-15",
  1960. "psr-7",
  1961. "request",
  1962. "response"
  1963. ],
  1964. "support": {
  1965. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  1966. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  1967. },
  1968. "time": "2018-10-30T17:12:04+00:00"
  1969. },
  1970. {
  1971. "name": "psr/log",
  1972. "version": "1.1.4",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/php-fig/log.git",
  1976. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1981. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1982. "shasum": ""
  1983. },
  1984. "require": {
  1985. "php": ">=5.3.0"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "1.1.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Psr\\Log\\": "Psr/Log/"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "PHP-FIG",
  2005. "homepage": "https://www.php-fig.org/"
  2006. }
  2007. ],
  2008. "description": "Common interface for logging libraries",
  2009. "homepage": "https://github.com/php-fig/log",
  2010. "keywords": [
  2011. "log",
  2012. "psr",
  2013. "psr-3"
  2014. ],
  2015. "support": {
  2016. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2017. },
  2018. "time": "2021-05-03T11:20:27+00:00"
  2019. },
  2020. {
  2021. "name": "psr/simple-cache",
  2022. "version": "1.0.1",
  2023. "source": {
  2024. "type": "git",
  2025. "url": "https://github.com/php-fig/simple-cache.git",
  2026. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2027. },
  2028. "dist": {
  2029. "type": "zip",
  2030. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2031. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2032. "shasum": ""
  2033. },
  2034. "require": {
  2035. "php": ">=5.3.0"
  2036. },
  2037. "type": "library",
  2038. "extra": {
  2039. "branch-alias": {
  2040. "dev-master": "1.0.x-dev"
  2041. }
  2042. },
  2043. "autoload": {
  2044. "psr-4": {
  2045. "Psr\\SimpleCache\\": "src/"
  2046. }
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "MIT"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "PHP-FIG",
  2055. "homepage": "http://www.php-fig.org/"
  2056. }
  2057. ],
  2058. "description": "Common interfaces for simple caching",
  2059. "keywords": [
  2060. "cache",
  2061. "caching",
  2062. "psr",
  2063. "psr-16",
  2064. "simple-cache"
  2065. ],
  2066. "support": {
  2067. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2068. },
  2069. "time": "2017-10-23T01:57:42+00:00"
  2070. },
  2071. {
  2072. "name": "ralouphie/getallheaders",
  2073. "version": "3.0.3",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/ralouphie/getallheaders.git",
  2077. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2082. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": ">=5.6"
  2087. },
  2088. "require-dev": {
  2089. "php-coveralls/php-coveralls": "^2.1",
  2090. "phpunit/phpunit": "^5 || ^6.5"
  2091. },
  2092. "type": "library",
  2093. "autoload": {
  2094. "files": [
  2095. "src/getallheaders.php"
  2096. ]
  2097. },
  2098. "notification-url": "https://packagist.org/downloads/",
  2099. "license": [
  2100. "MIT"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "Ralph Khattar",
  2105. "email": "ralph.khattar@gmail.com"
  2106. }
  2107. ],
  2108. "description": "A polyfill for getallheaders.",
  2109. "support": {
  2110. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2111. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2112. },
  2113. "time": "2019-03-08T08:55:37+00:00"
  2114. },
  2115. {
  2116. "name": "rhukster/dom-sanitizer",
  2117. "version": "1.0.6",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/rhukster/dom-sanitizer.git",
  2121. "reference": "4db3ef1ac3d5505d044c5eb12aa106ba745bf129"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/rhukster/dom-sanitizer/zipball/4db3ef1ac3d5505d044c5eb12aa106ba745bf129",
  2126. "reference": "4db3ef1ac3d5505d044c5eb12aa106ba745bf129",
  2127. "shasum": ""
  2128. },
  2129. "require": {
  2130. "ext-dom": "*",
  2131. "ext-libxml": "*",
  2132. "php": ">=7.3"
  2133. },
  2134. "require-dev": {
  2135. "phpunit/phpunit": "^9"
  2136. },
  2137. "type": "library",
  2138. "autoload": {
  2139. "psr-4": {
  2140. "Rhukster\\DomSanitizer\\": "src"
  2141. }
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "Andy Miller",
  2150. "email": "rhuk@rhuk.net"
  2151. }
  2152. ],
  2153. "description": "A simple but effective DOM/SVG/MathML Sanitizer for PHP 7.4+",
  2154. "support": {
  2155. "issues": "https://github.com/rhukster/dom-sanitizer/issues",
  2156. "source": "https://github.com/rhukster/dom-sanitizer/tree/1.0.6"
  2157. },
  2158. "time": "2021-09-30T15:41:33+00:00"
  2159. },
  2160. {
  2161. "name": "rockettheme/toolbox",
  2162. "version": "1.6.2",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/rockettheme/toolbox.git",
  2166. "reference": "99448a20a2f78d6480035d72821ecb9e4dc17032"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/99448a20a2f78d6480035d72821ecb9e4dc17032",
  2171. "reference": "99448a20a2f78d6480035d72821ecb9e4dc17032",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "ext-json": "*",
  2176. "php": ">=5.6.0",
  2177. "pimple/pimple": "^3.0",
  2178. "symfony/event-dispatcher": "^3.4|^4.0",
  2179. "symfony/yaml": "^3.4|^4.0|^5.0"
  2180. },
  2181. "type": "library",
  2182. "autoload": {
  2183. "psr-4": {
  2184. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  2185. "RocketTheme\\Toolbox\\File\\": "File/src",
  2186. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  2187. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  2188. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  2189. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  2190. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  2191. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src",
  2192. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src"
  2193. },
  2194. "exclude-from-classmap": [
  2195. "**/tests/"
  2196. ]
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "description": "RocketTheme Toolbox Library",
  2203. "homepage": "http://www.rockettheme.com",
  2204. "keywords": [
  2205. "php",
  2206. "rockettheme"
  2207. ],
  2208. "support": {
  2209. "issues": "https://github.com/rockettheme/toolbox/issues",
  2210. "source": "https://github.com/rockettheme/toolbox/tree/1.6.2"
  2211. },
  2212. "time": "2022-06-14T16:24:33+00:00"
  2213. },
  2214. {
  2215. "name": "seld/cli-prompt",
  2216. "version": "1.0.4",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/Seldaek/cli-prompt.git",
  2220. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/b8dfcf02094b8c03b40322c229493bb2884423c5",
  2225. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "php": ">=5.3"
  2230. },
  2231. "require-dev": {
  2232. "phpstan/phpstan": "^0.12.63"
  2233. },
  2234. "type": "library",
  2235. "extra": {
  2236. "branch-alias": {
  2237. "dev-master": "1.x-dev"
  2238. }
  2239. },
  2240. "autoload": {
  2241. "psr-4": {
  2242. "Seld\\CliPrompt\\": "src/"
  2243. }
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Jordi Boggiano",
  2252. "email": "j.boggiano@seld.be"
  2253. }
  2254. ],
  2255. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2256. "keywords": [
  2257. "cli",
  2258. "console",
  2259. "hidden",
  2260. "input",
  2261. "prompt"
  2262. ],
  2263. "support": {
  2264. "issues": "https://github.com/Seldaek/cli-prompt/issues",
  2265. "source": "https://github.com/Seldaek/cli-prompt/tree/1.0.4"
  2266. },
  2267. "time": "2020-12-15T21:32:01+00:00"
  2268. },
  2269. {
  2270. "name": "symfony/console",
  2271. "version": "v4.4.45",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/symfony/console.git",
  2275. "reference": "28b77970939500fb04180166a1f716e75a871ef8"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/symfony/console/zipball/28b77970939500fb04180166a1f716e75a871ef8",
  2280. "reference": "28b77970939500fb04180166a1f716e75a871ef8",
  2281. "shasum": ""
  2282. },
  2283. "require": {
  2284. "php": ">=7.1.3",
  2285. "symfony/polyfill-mbstring": "~1.0",
  2286. "symfony/polyfill-php73": "^1.8",
  2287. "symfony/polyfill-php80": "^1.16",
  2288. "symfony/service-contracts": "^1.1|^2"
  2289. },
  2290. "conflict": {
  2291. "psr/log": ">=3",
  2292. "symfony/dependency-injection": "<3.4",
  2293. "symfony/event-dispatcher": "<4.3|>=5",
  2294. "symfony/lock": "<4.4",
  2295. "symfony/process": "<3.3"
  2296. },
  2297. "provide": {
  2298. "psr/log-implementation": "1.0|2.0"
  2299. },
  2300. "require-dev": {
  2301. "psr/log": "^1|^2",
  2302. "symfony/config": "^3.4|^4.0|^5.0",
  2303. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2304. "symfony/event-dispatcher": "^4.3",
  2305. "symfony/lock": "^4.4|^5.0",
  2306. "symfony/process": "^3.4|^4.0|^5.0",
  2307. "symfony/var-dumper": "^4.3|^5.0"
  2308. },
  2309. "suggest": {
  2310. "psr/log": "For using the console logger",
  2311. "symfony/event-dispatcher": "",
  2312. "symfony/lock": "",
  2313. "symfony/process": ""
  2314. },
  2315. "type": "library",
  2316. "autoload": {
  2317. "psr-4": {
  2318. "Symfony\\Component\\Console\\": ""
  2319. },
  2320. "exclude-from-classmap": [
  2321. "/Tests/"
  2322. ]
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "Fabien Potencier",
  2331. "email": "fabien@symfony.com"
  2332. },
  2333. {
  2334. "name": "Symfony Community",
  2335. "homepage": "https://symfony.com/contributors"
  2336. }
  2337. ],
  2338. "description": "Eases the creation of beautiful and testable command line interfaces",
  2339. "homepage": "https://symfony.com",
  2340. "support": {
  2341. "source": "https://github.com/symfony/console/tree/v4.4.45"
  2342. },
  2343. "funding": [
  2344. {
  2345. "url": "https://symfony.com/sponsor",
  2346. "type": "custom"
  2347. },
  2348. {
  2349. "url": "https://github.com/fabpot",
  2350. "type": "github"
  2351. },
  2352. {
  2353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2354. "type": "tidelift"
  2355. }
  2356. ],
  2357. "time": "2022-08-17T14:50:19+00:00"
  2358. },
  2359. {
  2360. "name": "symfony/contracts",
  2361. "version": "v1.1.13",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/symfony/contracts.git",
  2365. "reference": "9e27f5c175ecbd6fff554d839ff4a432da797168"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/symfony/contracts/zipball/9e27f5c175ecbd6fff554d839ff4a432da797168",
  2370. "reference": "9e27f5c175ecbd6fff554d839ff4a432da797168",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "php": ">=7.1.3",
  2375. "psr/cache": "^1.0|^2.0|^3.0",
  2376. "psr/container": "^1.0"
  2377. },
  2378. "replace": {
  2379. "symfony/cache-contracts": "self.version",
  2380. "symfony/event-dispatcher-contracts": "self.version",
  2381. "symfony/http-client-contracts": "self.version",
  2382. "symfony/service-contracts": "self.version",
  2383. "symfony/translation-contracts": "self.version"
  2384. },
  2385. "require-dev": {
  2386. "symfony/polyfill-intl-idn": "^1.10"
  2387. },
  2388. "suggest": {
  2389. "psr/event-dispatcher": "When using the EventDispatcher contracts",
  2390. "symfony/cache-implementation": "",
  2391. "symfony/event-dispatcher-implementation": "",
  2392. "symfony/http-client-implementation": "",
  2393. "symfony/service-implementation": "",
  2394. "symfony/translation-implementation": ""
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-main": "1.1-dev"
  2400. }
  2401. },
  2402. "autoload": {
  2403. "psr-4": {
  2404. "Symfony\\Contracts\\": ""
  2405. },
  2406. "exclude-from-classmap": [
  2407. "**/Tests/"
  2408. ]
  2409. },
  2410. "notification-url": "https://packagist.org/downloads/",
  2411. "license": [
  2412. "MIT"
  2413. ],
  2414. "authors": [
  2415. {
  2416. "name": "Nicolas Grekas",
  2417. "email": "p@tchwork.com"
  2418. },
  2419. {
  2420. "name": "Symfony Community",
  2421. "homepage": "https://symfony.com/contributors"
  2422. }
  2423. ],
  2424. "description": "A set of abstractions extracted out of the Symfony components",
  2425. "homepage": "https://symfony.com",
  2426. "keywords": [
  2427. "abstractions",
  2428. "contracts",
  2429. "decoupling",
  2430. "interfaces",
  2431. "interoperability",
  2432. "standards"
  2433. ],
  2434. "support": {
  2435. "source": "https://github.com/symfony/contracts/tree/v1.1.13"
  2436. },
  2437. "funding": [
  2438. {
  2439. "url": "https://symfony.com/sponsor",
  2440. "type": "custom"
  2441. },
  2442. {
  2443. "url": "https://github.com/fabpot",
  2444. "type": "github"
  2445. },
  2446. {
  2447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2448. "type": "tidelift"
  2449. }
  2450. ],
  2451. "time": "2022-06-27T13:16:42+00:00"
  2452. },
  2453. {
  2454. "name": "symfony/event-dispatcher",
  2455. "version": "v4.4.44",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://github.com/symfony/event-dispatcher.git",
  2459. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2464. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2465. "shasum": ""
  2466. },
  2467. "require": {
  2468. "php": ">=7.1.3",
  2469. "symfony/event-dispatcher-contracts": "^1.1",
  2470. "symfony/polyfill-php80": "^1.16"
  2471. },
  2472. "conflict": {
  2473. "symfony/dependency-injection": "<3.4"
  2474. },
  2475. "provide": {
  2476. "psr/event-dispatcher-implementation": "1.0",
  2477. "symfony/event-dispatcher-implementation": "1.1"
  2478. },
  2479. "require-dev": {
  2480. "psr/log": "^1|^2|^3",
  2481. "symfony/config": "^3.4|^4.0|^5.0",
  2482. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2483. "symfony/error-handler": "~3.4|~4.4",
  2484. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2485. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2486. "symfony/service-contracts": "^1.1|^2",
  2487. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2488. },
  2489. "suggest": {
  2490. "symfony/dependency-injection": "",
  2491. "symfony/http-kernel": ""
  2492. },
  2493. "type": "library",
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Symfony\\Component\\EventDispatcher\\": ""
  2497. },
  2498. "exclude-from-classmap": [
  2499. "/Tests/"
  2500. ]
  2501. },
  2502. "notification-url": "https://packagist.org/downloads/",
  2503. "license": [
  2504. "MIT"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Fabien Potencier",
  2509. "email": "fabien@symfony.com"
  2510. },
  2511. {
  2512. "name": "Symfony Community",
  2513. "homepage": "https://symfony.com/contributors"
  2514. }
  2515. ],
  2516. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2517. "homepage": "https://symfony.com",
  2518. "support": {
  2519. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  2520. },
  2521. "funding": [
  2522. {
  2523. "url": "https://symfony.com/sponsor",
  2524. "type": "custom"
  2525. },
  2526. {
  2527. "url": "https://github.com/fabpot",
  2528. "type": "github"
  2529. },
  2530. {
  2531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2532. "type": "tidelift"
  2533. }
  2534. ],
  2535. "time": "2022-07-20T09:59:04+00:00"
  2536. },
  2537. {
  2538. "name": "symfony/http-client",
  2539. "version": "v4.4.46",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/symfony/http-client.git",
  2543. "reference": "095274039721d26d23225d7b7ba441423b1b2413"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/symfony/http-client/zipball/095274039721d26d23225d7b7ba441423b1b2413",
  2548. "reference": "095274039721d26d23225d7b7ba441423b1b2413",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "php": ">=7.1.3",
  2553. "psr/log": "^1|^2|^3",
  2554. "symfony/http-client-contracts": "^1.1.10|^2",
  2555. "symfony/polyfill-php73": "^1.11",
  2556. "symfony/polyfill-php80": "^1.16",
  2557. "symfony/service-contracts": "^1.0|^2"
  2558. },
  2559. "provide": {
  2560. "php-http/async-client-implementation": "*",
  2561. "php-http/client-implementation": "*",
  2562. "psr/http-client-implementation": "1.0",
  2563. "symfony/http-client-implementation": "1.1|2.0"
  2564. },
  2565. "require-dev": {
  2566. "guzzlehttp/promises": "^1.4",
  2567. "nyholm/psr7": "^1.0",
  2568. "php-http/httplug": "^1.0|^2.0",
  2569. "psr/http-client": "^1.0",
  2570. "symfony/dependency-injection": "^4.3|^5.0",
  2571. "symfony/http-kernel": "^4.4.13",
  2572. "symfony/process": "^4.2|^5.0"
  2573. },
  2574. "type": "library",
  2575. "autoload": {
  2576. "psr-4": {
  2577. "Symfony\\Component\\HttpClient\\": ""
  2578. },
  2579. "exclude-from-classmap": [
  2580. "/Tests/"
  2581. ]
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Nicolas Grekas",
  2590. "email": "p@tchwork.com"
  2591. },
  2592. {
  2593. "name": "Symfony Community",
  2594. "homepage": "https://symfony.com/contributors"
  2595. }
  2596. ],
  2597. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  2598. "homepage": "https://symfony.com",
  2599. "support": {
  2600. "source": "https://github.com/symfony/http-client/tree/v4.4.46"
  2601. },
  2602. "funding": [
  2603. {
  2604. "url": "https://symfony.com/sponsor",
  2605. "type": "custom"
  2606. },
  2607. {
  2608. "url": "https://github.com/fabpot",
  2609. "type": "github"
  2610. },
  2611. {
  2612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2613. "type": "tidelift"
  2614. }
  2615. ],
  2616. "time": "2022-09-04T17:31:03+00:00"
  2617. },
  2618. {
  2619. "name": "symfony/polyfill-ctype",
  2620. "version": "v1.26.0",
  2621. "source": {
  2622. "type": "git",
  2623. "url": "https://github.com/symfony/polyfill-ctype.git",
  2624. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  2625. },
  2626. "dist": {
  2627. "type": "zip",
  2628. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  2629. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  2630. "shasum": ""
  2631. },
  2632. "require": {
  2633. "php": ">=7.1"
  2634. },
  2635. "provide": {
  2636. "ext-ctype": "*"
  2637. },
  2638. "suggest": {
  2639. "ext-ctype": "For best performance"
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-main": "1.26-dev"
  2645. },
  2646. "thanks": {
  2647. "name": "symfony/polyfill",
  2648. "url": "https://github.com/symfony/polyfill"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "files": [
  2653. "bootstrap.php"
  2654. ],
  2655. "psr-4": {
  2656. "Symfony\\Polyfill\\Ctype\\": ""
  2657. }
  2658. },
  2659. "notification-url": "https://packagist.org/downloads/",
  2660. "license": [
  2661. "MIT"
  2662. ],
  2663. "authors": [
  2664. {
  2665. "name": "Gert de Pagter",
  2666. "email": "BackEndTea@gmail.com"
  2667. },
  2668. {
  2669. "name": "Symfony Community",
  2670. "homepage": "https://symfony.com/contributors"
  2671. }
  2672. ],
  2673. "description": "Symfony polyfill for ctype functions",
  2674. "homepage": "https://symfony.com",
  2675. "keywords": [
  2676. "compatibility",
  2677. "ctype",
  2678. "polyfill",
  2679. "portable"
  2680. ],
  2681. "support": {
  2682. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  2683. },
  2684. "funding": [
  2685. {
  2686. "url": "https://symfony.com/sponsor",
  2687. "type": "custom"
  2688. },
  2689. {
  2690. "url": "https://github.com/fabpot",
  2691. "type": "github"
  2692. },
  2693. {
  2694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2695. "type": "tidelift"
  2696. }
  2697. ],
  2698. "time": "2022-05-24T11:49:31+00:00"
  2699. },
  2700. {
  2701. "name": "symfony/polyfill-iconv",
  2702. "version": "v1.26.0",
  2703. "source": {
  2704. "type": "git",
  2705. "url": "https://github.com/symfony/polyfill-iconv.git",
  2706. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  2707. },
  2708. "dist": {
  2709. "type": "zip",
  2710. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  2711. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  2712. "shasum": ""
  2713. },
  2714. "require": {
  2715. "php": ">=7.1"
  2716. },
  2717. "provide": {
  2718. "ext-iconv": "*"
  2719. },
  2720. "suggest": {
  2721. "ext-iconv": "For best performance"
  2722. },
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-main": "1.26-dev"
  2727. },
  2728. "thanks": {
  2729. "name": "symfony/polyfill",
  2730. "url": "https://github.com/symfony/polyfill"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "files": [
  2735. "bootstrap.php"
  2736. ],
  2737. "psr-4": {
  2738. "Symfony\\Polyfill\\Iconv\\": ""
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Nicolas Grekas",
  2748. "email": "p@tchwork.com"
  2749. },
  2750. {
  2751. "name": "Symfony Community",
  2752. "homepage": "https://symfony.com/contributors"
  2753. }
  2754. ],
  2755. "description": "Symfony polyfill for the Iconv extension",
  2756. "homepage": "https://symfony.com",
  2757. "keywords": [
  2758. "compatibility",
  2759. "iconv",
  2760. "polyfill",
  2761. "portable",
  2762. "shim"
  2763. ],
  2764. "support": {
  2765. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  2766. },
  2767. "funding": [
  2768. {
  2769. "url": "https://symfony.com/sponsor",
  2770. "type": "custom"
  2771. },
  2772. {
  2773. "url": "https://github.com/fabpot",
  2774. "type": "github"
  2775. },
  2776. {
  2777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2778. "type": "tidelift"
  2779. }
  2780. ],
  2781. "time": "2022-05-24T11:49:31+00:00"
  2782. },
  2783. {
  2784. "name": "symfony/polyfill-mbstring",
  2785. "version": "v1.26.0",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2789. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2794. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2795. "shasum": ""
  2796. },
  2797. "require": {
  2798. "php": ">=7.1"
  2799. },
  2800. "provide": {
  2801. "ext-mbstring": "*"
  2802. },
  2803. "suggest": {
  2804. "ext-mbstring": "For best performance"
  2805. },
  2806. "type": "library",
  2807. "extra": {
  2808. "branch-alias": {
  2809. "dev-main": "1.26-dev"
  2810. },
  2811. "thanks": {
  2812. "name": "symfony/polyfill",
  2813. "url": "https://github.com/symfony/polyfill"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "files": [
  2818. "bootstrap.php"
  2819. ],
  2820. "psr-4": {
  2821. "Symfony\\Polyfill\\Mbstring\\": ""
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Nicolas Grekas",
  2831. "email": "p@tchwork.com"
  2832. },
  2833. {
  2834. "name": "Symfony Community",
  2835. "homepage": "https://symfony.com/contributors"
  2836. }
  2837. ],
  2838. "description": "Symfony polyfill for the Mbstring extension",
  2839. "homepage": "https://symfony.com",
  2840. "keywords": [
  2841. "compatibility",
  2842. "mbstring",
  2843. "polyfill",
  2844. "portable",
  2845. "shim"
  2846. ],
  2847. "support": {
  2848. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  2849. },
  2850. "funding": [
  2851. {
  2852. "url": "https://symfony.com/sponsor",
  2853. "type": "custom"
  2854. },
  2855. {
  2856. "url": "https://github.com/fabpot",
  2857. "type": "github"
  2858. },
  2859. {
  2860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2861. "type": "tidelift"
  2862. }
  2863. ],
  2864. "time": "2022-05-24T11:49:31+00:00"
  2865. },
  2866. {
  2867. "name": "symfony/polyfill-php74",
  2868. "version": "v1.26.0",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/symfony/polyfill-php74.git",
  2872. "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/ad4f7d62a17b1187d9f381f0a662aab19ff3c033",
  2877. "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": ">=7.1"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-main": "1.26-dev"
  2887. },
  2888. "thanks": {
  2889. "name": "symfony/polyfill",
  2890. "url": "https://github.com/symfony/polyfill"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "files": [
  2895. "bootstrap.php"
  2896. ],
  2897. "psr-4": {
  2898. "Symfony\\Polyfill\\Php74\\": ""
  2899. }
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "MIT"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "Ion Bazan",
  2908. "email": "ion.bazan@gmail.com"
  2909. },
  2910. {
  2911. "name": "Nicolas Grekas",
  2912. "email": "p@tchwork.com"
  2913. },
  2914. {
  2915. "name": "Symfony Community",
  2916. "homepage": "https://symfony.com/contributors"
  2917. }
  2918. ],
  2919. "description": "Symfony polyfill backporting some PHP 7.4+ features to lower PHP versions",
  2920. "homepage": "https://symfony.com",
  2921. "keywords": [
  2922. "compatibility",
  2923. "polyfill",
  2924. "portable",
  2925. "shim"
  2926. ],
  2927. "support": {
  2928. "source": "https://github.com/symfony/polyfill-php74/tree/v1.26.0"
  2929. },
  2930. "funding": [
  2931. {
  2932. "url": "https://symfony.com/sponsor",
  2933. "type": "custom"
  2934. },
  2935. {
  2936. "url": "https://github.com/fabpot",
  2937. "type": "github"
  2938. },
  2939. {
  2940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2941. "type": "tidelift"
  2942. }
  2943. ],
  2944. "time": "2022-05-24T11:49:31+00:00"
  2945. },
  2946. {
  2947. "name": "symfony/polyfill-php80",
  2948. "version": "v1.26.0",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/symfony/polyfill-php80.git",
  2952. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  2957. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "php": ">=7.1"
  2962. },
  2963. "type": "library",
  2964. "extra": {
  2965. "branch-alias": {
  2966. "dev-main": "1.26-dev"
  2967. },
  2968. "thanks": {
  2969. "name": "symfony/polyfill",
  2970. "url": "https://github.com/symfony/polyfill"
  2971. }
  2972. },
  2973. "autoload": {
  2974. "files": [
  2975. "bootstrap.php"
  2976. ],
  2977. "psr-4": {
  2978. "Symfony\\Polyfill\\Php80\\": ""
  2979. },
  2980. "classmap": [
  2981. "Resources/stubs"
  2982. ]
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "MIT"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "Ion Bazan",
  2991. "email": "ion.bazan@gmail.com"
  2992. },
  2993. {
  2994. "name": "Nicolas Grekas",
  2995. "email": "p@tchwork.com"
  2996. },
  2997. {
  2998. "name": "Symfony Community",
  2999. "homepage": "https://symfony.com/contributors"
  3000. }
  3001. ],
  3002. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3003. "homepage": "https://symfony.com",
  3004. "keywords": [
  3005. "compatibility",
  3006. "polyfill",
  3007. "portable",
  3008. "shim"
  3009. ],
  3010. "support": {
  3011. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  3012. },
  3013. "funding": [
  3014. {
  3015. "url": "https://symfony.com/sponsor",
  3016. "type": "custom"
  3017. },
  3018. {
  3019. "url": "https://github.com/fabpot",
  3020. "type": "github"
  3021. },
  3022. {
  3023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3024. "type": "tidelift"
  3025. }
  3026. ],
  3027. "time": "2022-05-10T07:21:04+00:00"
  3028. },
  3029. {
  3030. "name": "symfony/polyfill-php81",
  3031. "version": "v1.26.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/symfony/polyfill-php81.git",
  3035. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  3040. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "php": ">=7.1"
  3045. },
  3046. "type": "library",
  3047. "extra": {
  3048. "branch-alias": {
  3049. "dev-main": "1.26-dev"
  3050. },
  3051. "thanks": {
  3052. "name": "symfony/polyfill",
  3053. "url": "https://github.com/symfony/polyfill"
  3054. }
  3055. },
  3056. "autoload": {
  3057. "files": [
  3058. "bootstrap.php"
  3059. ],
  3060. "psr-4": {
  3061. "Symfony\\Polyfill\\Php81\\": ""
  3062. },
  3063. "classmap": [
  3064. "Resources/stubs"
  3065. ]
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Nicolas Grekas",
  3074. "email": "p@tchwork.com"
  3075. },
  3076. {
  3077. "name": "Symfony Community",
  3078. "homepage": "https://symfony.com/contributors"
  3079. }
  3080. ],
  3081. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3082. "homepage": "https://symfony.com",
  3083. "keywords": [
  3084. "compatibility",
  3085. "polyfill",
  3086. "portable",
  3087. "shim"
  3088. ],
  3089. "support": {
  3090. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  3091. },
  3092. "funding": [
  3093. {
  3094. "url": "https://symfony.com/sponsor",
  3095. "type": "custom"
  3096. },
  3097. {
  3098. "url": "https://github.com/fabpot",
  3099. "type": "github"
  3100. },
  3101. {
  3102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3103. "type": "tidelift"
  3104. }
  3105. ],
  3106. "time": "2022-05-24T11:49:31+00:00"
  3107. },
  3108. {
  3109. "name": "symfony/process",
  3110. "version": "v4.4.44",
  3111. "source": {
  3112. "type": "git",
  3113. "url": "https://github.com/symfony/process.git",
  3114. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3115. },
  3116. "dist": {
  3117. "type": "zip",
  3118. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3119. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3120. "shasum": ""
  3121. },
  3122. "require": {
  3123. "php": ">=7.1.3",
  3124. "symfony/polyfill-php80": "^1.16"
  3125. },
  3126. "type": "library",
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Symfony\\Component\\Process\\": ""
  3130. },
  3131. "exclude-from-classmap": [
  3132. "/Tests/"
  3133. ]
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "MIT"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "Fabien Potencier",
  3142. "email": "fabien@symfony.com"
  3143. },
  3144. {
  3145. "name": "Symfony Community",
  3146. "homepage": "https://symfony.com/contributors"
  3147. }
  3148. ],
  3149. "description": "Executes commands in sub-processes",
  3150. "homepage": "https://symfony.com",
  3151. "support": {
  3152. "source": "https://github.com/symfony/process/tree/v4.4.44"
  3153. },
  3154. "funding": [
  3155. {
  3156. "url": "https://symfony.com/sponsor",
  3157. "type": "custom"
  3158. },
  3159. {
  3160. "url": "https://github.com/fabpot",
  3161. "type": "github"
  3162. },
  3163. {
  3164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3165. "type": "tidelift"
  3166. }
  3167. ],
  3168. "time": "2022-06-27T13:16:42+00:00"
  3169. },
  3170. {
  3171. "name": "symfony/var-dumper",
  3172. "version": "v4.4.46",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://github.com/symfony/var-dumper.git",
  3176. "reference": "90425fd98d1ecad98e4b2dca9f54f62069193b15"
  3177. },
  3178. "dist": {
  3179. "type": "zip",
  3180. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/90425fd98d1ecad98e4b2dca9f54f62069193b15",
  3181. "reference": "90425fd98d1ecad98e4b2dca9f54f62069193b15",
  3182. "shasum": ""
  3183. },
  3184. "require": {
  3185. "php": ">=7.1.3",
  3186. "symfony/polyfill-mbstring": "~1.0",
  3187. "symfony/polyfill-php72": "~1.5",
  3188. "symfony/polyfill-php80": "^1.16"
  3189. },
  3190. "conflict": {
  3191. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3192. "symfony/console": "<3.4"
  3193. },
  3194. "require-dev": {
  3195. "ext-iconv": "*",
  3196. "symfony/console": "^3.4|^4.0|^5.0",
  3197. "symfony/process": "^4.4|^5.0",
  3198. "twig/twig": "^1.43|^2.13|^3.0.4"
  3199. },
  3200. "suggest": {
  3201. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3202. "ext-intl": "To show region name in time zone dump",
  3203. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3204. },
  3205. "bin": [
  3206. "Resources/bin/var-dump-server"
  3207. ],
  3208. "type": "library",
  3209. "autoload": {
  3210. "files": [
  3211. "Resources/functions/dump.php"
  3212. ],
  3213. "psr-4": {
  3214. "Symfony\\Component\\VarDumper\\": ""
  3215. },
  3216. "exclude-from-classmap": [
  3217. "/Tests/"
  3218. ]
  3219. },
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "MIT"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "Nicolas Grekas",
  3227. "email": "p@tchwork.com"
  3228. },
  3229. {
  3230. "name": "Symfony Community",
  3231. "homepage": "https://symfony.com/contributors"
  3232. }
  3233. ],
  3234. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3235. "homepage": "https://symfony.com",
  3236. "keywords": [
  3237. "debug",
  3238. "dump"
  3239. ],
  3240. "support": {
  3241. "source": "https://github.com/symfony/var-dumper/tree/v4.4.46"
  3242. },
  3243. "funding": [
  3244. {
  3245. "url": "https://symfony.com/sponsor",
  3246. "type": "custom"
  3247. },
  3248. {
  3249. "url": "https://github.com/fabpot",
  3250. "type": "github"
  3251. },
  3252. {
  3253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3254. "type": "tidelift"
  3255. }
  3256. ],
  3257. "time": "2022-09-03T23:07:25+00:00"
  3258. },
  3259. {
  3260. "name": "symfony/yaml",
  3261. "version": "v4.4.45",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/symfony/yaml.git",
  3265. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  3270. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "php": ">=7.1.3",
  3275. "symfony/polyfill-ctype": "~1.8"
  3276. },
  3277. "conflict": {
  3278. "symfony/console": "<3.4"
  3279. },
  3280. "require-dev": {
  3281. "symfony/console": "^3.4|^4.0|^5.0"
  3282. },
  3283. "suggest": {
  3284. "symfony/console": "For validating YAML files using the lint command"
  3285. },
  3286. "type": "library",
  3287. "autoload": {
  3288. "psr-4": {
  3289. "Symfony\\Component\\Yaml\\": ""
  3290. },
  3291. "exclude-from-classmap": [
  3292. "/Tests/"
  3293. ]
  3294. },
  3295. "notification-url": "https://packagist.org/downloads/",
  3296. "license": [
  3297. "MIT"
  3298. ],
  3299. "authors": [
  3300. {
  3301. "name": "Fabien Potencier",
  3302. "email": "fabien@symfony.com"
  3303. },
  3304. {
  3305. "name": "Symfony Community",
  3306. "homepage": "https://symfony.com/contributors"
  3307. }
  3308. ],
  3309. "description": "Loads and dumps YAML files",
  3310. "homepage": "https://symfony.com",
  3311. "support": {
  3312. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://symfony.com/sponsor",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://github.com/fabpot",
  3321. "type": "github"
  3322. },
  3323. {
  3324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3325. "type": "tidelift"
  3326. }
  3327. ],
  3328. "time": "2022-08-02T15:47:23+00:00"
  3329. },
  3330. {
  3331. "name": "twig/twig",
  3332. "version": "v1.44.7",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/twigphp/Twig.git",
  3336. "reference": "0887422319889e442458e48e2f3d9add1a172ad5"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/twigphp/Twig/zipball/0887422319889e442458e48e2f3d9add1a172ad5",
  3341. "reference": "0887422319889e442458e48e2f3d9add1a172ad5",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": ">=7.2.5",
  3346. "symfony/polyfill-ctype": "^1.8"
  3347. },
  3348. "require-dev": {
  3349. "psr/container": "^1.0",
  3350. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  3351. },
  3352. "type": "library",
  3353. "extra": {
  3354. "branch-alias": {
  3355. "dev-master": "1.44-dev"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-0": {
  3360. "Twig_": "lib/"
  3361. },
  3362. "psr-4": {
  3363. "Twig\\": "src/"
  3364. }
  3365. },
  3366. "notification-url": "https://packagist.org/downloads/",
  3367. "license": [
  3368. "BSD-3-Clause"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Fabien Potencier",
  3373. "email": "fabien@symfony.com",
  3374. "homepage": "http://fabien.potencier.org",
  3375. "role": "Lead Developer"
  3376. },
  3377. {
  3378. "name": "Twig Team",
  3379. "role": "Contributors"
  3380. },
  3381. {
  3382. "name": "Armin Ronacher",
  3383. "email": "armin.ronacher@active-4.com",
  3384. "role": "Project Founder"
  3385. }
  3386. ],
  3387. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3388. "homepage": "https://twig.symfony.com",
  3389. "keywords": [
  3390. "templating"
  3391. ],
  3392. "support": {
  3393. "issues": "https://github.com/twigphp/Twig/issues",
  3394. "source": "https://github.com/twigphp/Twig/tree/v1.44.7"
  3395. },
  3396. "funding": [
  3397. {
  3398. "url": "https://github.com/fabpot",
  3399. "type": "github"
  3400. },
  3401. {
  3402. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  3403. "type": "tidelift"
  3404. }
  3405. ],
  3406. "time": "2022-09-28T08:38:36+00:00"
  3407. },
  3408. {
  3409. "name": "willdurand/negotiation",
  3410. "version": "3.1.0",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://github.com/willdurand/Negotiation.git",
  3414. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  3419. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  3420. "shasum": ""
  3421. },
  3422. "require": {
  3423. "php": ">=7.1.0"
  3424. },
  3425. "require-dev": {
  3426. "symfony/phpunit-bridge": "^5.0"
  3427. },
  3428. "type": "library",
  3429. "extra": {
  3430. "branch-alias": {
  3431. "dev-master": "3.0-dev"
  3432. }
  3433. },
  3434. "autoload": {
  3435. "psr-4": {
  3436. "Negotiation\\": "src/Negotiation"
  3437. }
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "MIT"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "William Durand",
  3446. "email": "will+git@drnd.me"
  3447. }
  3448. ],
  3449. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  3450. "homepage": "http://williamdurand.fr/Negotiation/",
  3451. "keywords": [
  3452. "accept",
  3453. "content",
  3454. "format",
  3455. "header",
  3456. "negotiation"
  3457. ],
  3458. "support": {
  3459. "issues": "https://github.com/willdurand/Negotiation/issues",
  3460. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  3461. },
  3462. "time": "2022-01-30T20:08:53+00:00"
  3463. }
  3464. ],
  3465. "packages-dev": [
  3466. {
  3467. "name": "behat/gherkin",
  3468. "version": "v4.9.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/Behat/Gherkin.git",
  3472. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3477. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "php": "~7.2|~8.0"
  3482. },
  3483. "require-dev": {
  3484. "cucumber/cucumber": "dev-gherkin-22.0.0",
  3485. "phpunit/phpunit": "~8|~9",
  3486. "symfony/yaml": "~3|~4|~5"
  3487. },
  3488. "suggest": {
  3489. "symfony/yaml": "If you want to parse features, represented in YAML files"
  3490. },
  3491. "type": "library",
  3492. "extra": {
  3493. "branch-alias": {
  3494. "dev-master": "4.x-dev"
  3495. }
  3496. },
  3497. "autoload": {
  3498. "psr-0": {
  3499. "Behat\\Gherkin": "src/"
  3500. }
  3501. },
  3502. "notification-url": "https://packagist.org/downloads/",
  3503. "license": [
  3504. "MIT"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "Konstantin Kudryashov",
  3509. "email": "ever.zet@gmail.com",
  3510. "homepage": "http://everzet.com"
  3511. }
  3512. ],
  3513. "description": "Gherkin DSL parser for PHP",
  3514. "homepage": "http://behat.org/",
  3515. "keywords": [
  3516. "BDD",
  3517. "Behat",
  3518. "Cucumber",
  3519. "DSL",
  3520. "gherkin",
  3521. "parser"
  3522. ],
  3523. "support": {
  3524. "issues": "https://github.com/Behat/Gherkin/issues",
  3525. "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
  3526. },
  3527. "time": "2021-10-12T13:05:09+00:00"
  3528. },
  3529. {
  3530. "name": "codeception/codeception",
  3531. "version": "4.2.2",
  3532. "source": {
  3533. "type": "git",
  3534. "url": "https://github.com/Codeception/Codeception.git",
  3535. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474"
  3536. },
  3537. "dist": {
  3538. "type": "zip",
  3539. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3540. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3541. "shasum": ""
  3542. },
  3543. "require": {
  3544. "behat/gherkin": "^4.4.0",
  3545. "codeception/lib-asserts": "^1.0 | 2.0.*@dev",
  3546. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  3547. "codeception/stub": "^2.0 | ^3.0 | ^4.0",
  3548. "ext-curl": "*",
  3549. "ext-json": "*",
  3550. "ext-mbstring": "*",
  3551. "guzzlehttp/psr7": "^1.4 | ^2.0",
  3552. "php": ">=5.6.0 <9.0",
  3553. "symfony/console": ">=2.7 <6.0",
  3554. "symfony/css-selector": ">=2.7 <6.0",
  3555. "symfony/event-dispatcher": ">=2.7 <6.0",
  3556. "symfony/finder": ">=2.7 <6.0",
  3557. "symfony/yaml": ">=2.7 <6.0"
  3558. },
  3559. "require-dev": {
  3560. "codeception/module-asserts": "^1.0 | 2.0.*@dev",
  3561. "codeception/module-cli": "^1.0 | 2.0.*@dev",
  3562. "codeception/module-db": "^1.0 | 2.0.*@dev",
  3563. "codeception/module-filesystem": "^1.0 | 2.0.*@dev",
  3564. "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev",
  3565. "codeception/specify": "~0.3",
  3566. "codeception/util-universalframework": "*@dev",
  3567. "monolog/monolog": "~1.8",
  3568. "squizlabs/php_codesniffer": "~2.0",
  3569. "symfony/process": ">=2.7 <6.0",
  3570. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  3571. },
  3572. "suggest": {
  3573. "codeception/specify": "BDD-style code blocks",
  3574. "codeception/verify": "BDD-style assertions",
  3575. "hoa/console": "For interactive console functionality",
  3576. "stecman/symfony-console-completion": "For BASH autocompletion",
  3577. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3578. },
  3579. "bin": [
  3580. "codecept"
  3581. ],
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": []
  3585. },
  3586. "autoload": {
  3587. "files": [
  3588. "functions.php"
  3589. ],
  3590. "psr-4": {
  3591. "Codeception\\": "src/Codeception",
  3592. "Codeception\\Extension\\": "ext"
  3593. }
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "Michael Bodnarchuk",
  3602. "email": "davert@mail.ua",
  3603. "homepage": "https://codegyre.com"
  3604. }
  3605. ],
  3606. "description": "BDD-style testing framework",
  3607. "homepage": "https://codeception.com/",
  3608. "keywords": [
  3609. "BDD",
  3610. "TDD",
  3611. "acceptance testing",
  3612. "functional testing",
  3613. "unit testing"
  3614. ],
  3615. "support": {
  3616. "issues": "https://github.com/Codeception/Codeception/issues",
  3617. "source": "https://github.com/Codeception/Codeception/tree/4.2.2"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://opencollective.com/codeception",
  3622. "type": "open_collective"
  3623. }
  3624. ],
  3625. "time": "2022-08-13T13:28:25+00:00"
  3626. },
  3627. {
  3628. "name": "codeception/lib-asserts",
  3629. "version": "1.13.2",
  3630. "source": {
  3631. "type": "git",
  3632. "url": "https://github.com/Codeception/lib-asserts.git",
  3633. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  3634. },
  3635. "dist": {
  3636. "type": "zip",
  3637. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  3638. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  3639. "shasum": ""
  3640. },
  3641. "require": {
  3642. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  3643. "ext-dom": "*",
  3644. "php": ">=5.6.0 <9.0"
  3645. },
  3646. "type": "library",
  3647. "autoload": {
  3648. "classmap": [
  3649. "src/"
  3650. ]
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "Michael Bodnarchuk",
  3659. "email": "davert@mail.ua",
  3660. "homepage": "http://codegyre.com"
  3661. },
  3662. {
  3663. "name": "Gintautas Miselis"
  3664. },
  3665. {
  3666. "name": "Gustavo Nieves",
  3667. "homepage": "https://medium.com/@ganieves"
  3668. }
  3669. ],
  3670. "description": "Assertion methods used by Codeception core and Asserts module",
  3671. "homepage": "https://codeception.com/",
  3672. "keywords": [
  3673. "codeception"
  3674. ],
  3675. "support": {
  3676. "issues": "https://github.com/Codeception/lib-asserts/issues",
  3677. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  3678. },
  3679. "time": "2020-10-21T16:26:20+00:00"
  3680. },
  3681. {
  3682. "name": "codeception/lib-innerbrowser",
  3683. "version": "1.5.1",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  3687. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3692. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "codeception/codeception": "4.*@dev",
  3697. "ext-dom": "*",
  3698. "ext-json": "*",
  3699. "ext-mbstring": "*",
  3700. "php": ">=5.6.0 <9.0",
  3701. "symfony/browser-kit": ">=2.7 <6.0",
  3702. "symfony/dom-crawler": ">=2.7 <6.0"
  3703. },
  3704. "conflict": {
  3705. "codeception/codeception": "<4.0"
  3706. },
  3707. "require-dev": {
  3708. "codeception/util-universalframework": "dev-master"
  3709. },
  3710. "type": "library",
  3711. "autoload": {
  3712. "classmap": [
  3713. "src/"
  3714. ]
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "MIT"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "Michael Bodnarchuk",
  3723. "email": "davert@mail.ua",
  3724. "homepage": "http://codegyre.com"
  3725. },
  3726. {
  3727. "name": "Gintautas Miselis"
  3728. }
  3729. ],
  3730. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  3731. "homepage": "https://codeception.com/",
  3732. "keywords": [
  3733. "codeception"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  3737. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1"
  3738. },
  3739. "time": "2021-08-30T15:21:42+00:00"
  3740. },
  3741. {
  3742. "name": "codeception/module-asserts",
  3743. "version": "1.3.1",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/Codeception/module-asserts.git",
  3747. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3752. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "codeception/codeception": "*@dev",
  3757. "codeception/lib-asserts": "^1.13.1",
  3758. "php": ">=5.6.0 <9.0"
  3759. },
  3760. "conflict": {
  3761. "codeception/codeception": "<4.0"
  3762. },
  3763. "type": "library",
  3764. "autoload": {
  3765. "classmap": [
  3766. "src/"
  3767. ]
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Michael Bodnarchuk"
  3776. },
  3777. {
  3778. "name": "Gintautas Miselis"
  3779. },
  3780. {
  3781. "name": "Gustavo Nieves",
  3782. "homepage": "https://medium.com/@ganieves"
  3783. }
  3784. ],
  3785. "description": "Codeception module containing various assertions",
  3786. "homepage": "https://codeception.com/",
  3787. "keywords": [
  3788. "assertions",
  3789. "asserts",
  3790. "codeception"
  3791. ],
  3792. "support": {
  3793. "issues": "https://github.com/Codeception/module-asserts/issues",
  3794. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  3795. },
  3796. "time": "2020-10-21T16:48:15+00:00"
  3797. },
  3798. {
  3799. "name": "codeception/module-phpbrowser",
  3800. "version": "1.0.3",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/Codeception/module-phpbrowser.git",
  3804. "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/8ba6bede11d0914e74d98691f427fd8f397f192e",
  3809. "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e",
  3810. "shasum": ""
  3811. },
  3812. "require": {
  3813. "codeception/codeception": "^4.1",
  3814. "codeception/lib-innerbrowser": "^1.3",
  3815. "guzzlehttp/guzzle": "^6.3|^7.0",
  3816. "php": ">=5.6.0 <9.0"
  3817. },
  3818. "conflict": {
  3819. "codeception/codeception": "<4.0"
  3820. },
  3821. "require-dev": {
  3822. "codeception/module-rest": "^1.0"
  3823. },
  3824. "suggest": {
  3825. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
  3826. },
  3827. "type": "library",
  3828. "autoload": {
  3829. "classmap": [
  3830. "src/"
  3831. ]
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "Michael Bodnarchuk"
  3840. },
  3841. {
  3842. "name": "Gintautas Miselis"
  3843. }
  3844. ],
  3845. "description": "Codeception module for testing web application over HTTP",
  3846. "homepage": "http://codeception.com/",
  3847. "keywords": [
  3848. "codeception",
  3849. "functional-testing",
  3850. "http"
  3851. ],
  3852. "support": {
  3853. "issues": "https://github.com/Codeception/module-phpbrowser/issues",
  3854. "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.3"
  3855. },
  3856. "time": "2022-05-21T13:50:41+00:00"
  3857. },
  3858. {
  3859. "name": "codeception/phpunit-wrapper",
  3860. "version": "9.0.9",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  3864. "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
  3869. "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
  3870. "shasum": ""
  3871. },
  3872. "require": {
  3873. "php": ">=7.2",
  3874. "phpunit/phpunit": "^9.0"
  3875. },
  3876. "require-dev": {
  3877. "codeception/specify": "*",
  3878. "consolidation/robo": "^3.0.0-alpha3",
  3879. "vlucas/phpdotenv": "^3.0"
  3880. },
  3881. "type": "library",
  3882. "autoload": {
  3883. "psr-4": {
  3884. "Codeception\\PHPUnit\\": "src/"
  3885. }
  3886. },
  3887. "notification-url": "https://packagist.org/downloads/",
  3888. "license": [
  3889. "MIT"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "Davert",
  3894. "email": "davert.php@resend.cc"
  3895. },
  3896. {
  3897. "name": "Naktibalda"
  3898. }
  3899. ],
  3900. "description": "PHPUnit classes used by Codeception",
  3901. "support": {
  3902. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  3903. "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.9"
  3904. },
  3905. "time": "2022-05-23T06:24:11+00:00"
  3906. },
  3907. {
  3908. "name": "codeception/stub",
  3909. "version": "3.7.0",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/Codeception/Stub.git",
  3913. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  3918. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "phpunit/phpunit": "^8.4 | ^9.0"
  3923. },
  3924. "type": "library",
  3925. "autoload": {
  3926. "psr-4": {
  3927. "Codeception\\": "src/"
  3928. }
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  3935. "support": {
  3936. "issues": "https://github.com/Codeception/Stub/issues",
  3937. "source": "https://github.com/Codeception/Stub/tree/3.7.0"
  3938. },
  3939. "time": "2020-07-03T15:54:43+00:00"
  3940. },
  3941. {
  3942. "name": "doctrine/instantiator",
  3943. "version": "1.4.1",
  3944. "source": {
  3945. "type": "git",
  3946. "url": "https://github.com/doctrine/instantiator.git",
  3947. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  3948. },
  3949. "dist": {
  3950. "type": "zip",
  3951. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  3952. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  3953. "shasum": ""
  3954. },
  3955. "require": {
  3956. "php": "^7.1 || ^8.0"
  3957. },
  3958. "require-dev": {
  3959. "doctrine/coding-standard": "^9",
  3960. "ext-pdo": "*",
  3961. "ext-phar": "*",
  3962. "phpbench/phpbench": "^0.16 || ^1",
  3963. "phpstan/phpstan": "^1.4",
  3964. "phpstan/phpstan-phpunit": "^1",
  3965. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  3966. "vimeo/psalm": "^4.22"
  3967. },
  3968. "type": "library",
  3969. "autoload": {
  3970. "psr-4": {
  3971. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Marco Pivetta",
  3981. "email": "ocramius@gmail.com",
  3982. "homepage": "https://ocramius.github.io/"
  3983. }
  3984. ],
  3985. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3986. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3987. "keywords": [
  3988. "constructor",
  3989. "instantiate"
  3990. ],
  3991. "support": {
  3992. "issues": "https://github.com/doctrine/instantiator/issues",
  3993. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://www.doctrine-project.org/sponsorship.html",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://www.patreon.com/phpdoctrine",
  4002. "type": "patreon"
  4003. },
  4004. {
  4005. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  4006. "type": "tidelift"
  4007. }
  4008. ],
  4009. "time": "2022-03-03T08:28:38+00:00"
  4010. },
  4011. {
  4012. "name": "getgrav/markdowndocs",
  4013. "version": "2.0.1",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/getgrav/PHP-Markdown-Documentation-Generator.git",
  4017. "reference": "4a24d1b64a88da17e8f1696dc64969f5ca769064"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/getgrav/PHP-Markdown-Documentation-Generator/zipball/4a24d1b64a88da17e8f1696dc64969f5ca769064",
  4022. "reference": "4a24d1b64a88da17e8f1696dc64969f5ca769064",
  4023. "shasum": ""
  4024. },
  4025. "require": {
  4026. "php": ">=5.5.0",
  4027. "symfony/console": ">=2.6"
  4028. },
  4029. "require-dev": {
  4030. "phpunit/phpunit": "3.7.23"
  4031. },
  4032. "bin": [
  4033. "bin/phpdoc-md"
  4034. ],
  4035. "type": "library",
  4036. "autoload": {
  4037. "psr-0": {
  4038. "PHPDocsMD": "src/"
  4039. }
  4040. },
  4041. "notification-url": "https://packagist.org/downloads/",
  4042. "license": [
  4043. "MIT"
  4044. ],
  4045. "authors": [
  4046. {
  4047. "name": "Victor Jonsson",
  4048. "email": "kontakt@victorjonsson.se"
  4049. },
  4050. {
  4051. "name": "Grav CMS",
  4052. "email": "hello@getgrav.org",
  4053. "homepage": "https://getgrav.org"
  4054. }
  4055. ],
  4056. "description": "Command line tool for generating markdown-formatted class documentation",
  4057. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  4058. "support": {
  4059. "source": "https://github.com/getgrav/PHP-Markdown-Documentation-Generator/tree/2.0.1"
  4060. },
  4061. "time": "2021-04-20T06:04:42+00:00"
  4062. },
  4063. {
  4064. "name": "guzzlehttp/guzzle",
  4065. "version": "7.5.0",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/guzzle/guzzle.git",
  4069. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  4074. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "ext-json": "*",
  4079. "guzzlehttp/promises": "^1.5",
  4080. "guzzlehttp/psr7": "^1.9 || ^2.4",
  4081. "php": "^7.2.5 || ^8.0",
  4082. "psr/http-client": "^1.0",
  4083. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4084. },
  4085. "provide": {
  4086. "psr/http-client-implementation": "1.0"
  4087. },
  4088. "require-dev": {
  4089. "bamarni/composer-bin-plugin": "^1.8.1",
  4090. "ext-curl": "*",
  4091. "php-http/client-integration-tests": "^3.0",
  4092. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  4093. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4094. },
  4095. "suggest": {
  4096. "ext-curl": "Required for CURL handler support",
  4097. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4098. "psr/log": "Required for using the Log middleware"
  4099. },
  4100. "type": "library",
  4101. "extra": {
  4102. "bamarni-bin": {
  4103. "bin-links": true,
  4104. "forward-command": false
  4105. },
  4106. "branch-alias": {
  4107. "dev-master": "7.5-dev"
  4108. }
  4109. },
  4110. "autoload": {
  4111. "files": [
  4112. "src/functions_include.php"
  4113. ],
  4114. "psr-4": {
  4115. "GuzzleHttp\\": "src/"
  4116. }
  4117. },
  4118. "notification-url": "https://packagist.org/downloads/",
  4119. "license": [
  4120. "MIT"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "Graham Campbell",
  4125. "email": "hello@gjcampbell.co.uk",
  4126. "homepage": "https://github.com/GrahamCampbell"
  4127. },
  4128. {
  4129. "name": "Michael Dowling",
  4130. "email": "mtdowling@gmail.com",
  4131. "homepage": "https://github.com/mtdowling"
  4132. },
  4133. {
  4134. "name": "Jeremy Lindblom",
  4135. "email": "jeremeamia@gmail.com",
  4136. "homepage": "https://github.com/jeremeamia"
  4137. },
  4138. {
  4139. "name": "George Mponos",
  4140. "email": "gmponos@gmail.com",
  4141. "homepage": "https://github.com/gmponos"
  4142. },
  4143. {
  4144. "name": "Tobias Nyholm",
  4145. "email": "tobias.nyholm@gmail.com",
  4146. "homepage": "https://github.com/Nyholm"
  4147. },
  4148. {
  4149. "name": "Márk Sági-Kazár",
  4150. "email": "mark.sagikazar@gmail.com",
  4151. "homepage": "https://github.com/sagikazarmark"
  4152. },
  4153. {
  4154. "name": "Tobias Schultze",
  4155. "email": "webmaster@tubo-world.de",
  4156. "homepage": "https://github.com/Tobion"
  4157. }
  4158. ],
  4159. "description": "Guzzle is a PHP HTTP client library",
  4160. "keywords": [
  4161. "client",
  4162. "curl",
  4163. "framework",
  4164. "http",
  4165. "http client",
  4166. "psr-18",
  4167. "psr-7",
  4168. "rest",
  4169. "web service"
  4170. ],
  4171. "support": {
  4172. "issues": "https://github.com/guzzle/guzzle/issues",
  4173. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  4174. },
  4175. "funding": [
  4176. {
  4177. "url": "https://github.com/GrahamCampbell",
  4178. "type": "github"
  4179. },
  4180. {
  4181. "url": "https://github.com/Nyholm",
  4182. "type": "github"
  4183. },
  4184. {
  4185. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4186. "type": "tidelift"
  4187. }
  4188. ],
  4189. "time": "2022-08-28T15:39:27+00:00"
  4190. },
  4191. {
  4192. "name": "guzzlehttp/promises",
  4193. "version": "1.5.2",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/guzzle/promises.git",
  4197. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  4202. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "php": ">=5.5"
  4207. },
  4208. "require-dev": {
  4209. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  4210. },
  4211. "type": "library",
  4212. "extra": {
  4213. "branch-alias": {
  4214. "dev-master": "1.5-dev"
  4215. }
  4216. },
  4217. "autoload": {
  4218. "files": [
  4219. "src/functions_include.php"
  4220. ],
  4221. "psr-4": {
  4222. "GuzzleHttp\\Promise\\": "src/"
  4223. }
  4224. },
  4225. "notification-url": "https://packagist.org/downloads/",
  4226. "license": [
  4227. "MIT"
  4228. ],
  4229. "authors": [
  4230. {
  4231. "name": "Graham Campbell",
  4232. "email": "hello@gjcampbell.co.uk",
  4233. "homepage": "https://github.com/GrahamCampbell"
  4234. },
  4235. {
  4236. "name": "Michael Dowling",
  4237. "email": "mtdowling@gmail.com",
  4238. "homepage": "https://github.com/mtdowling"
  4239. },
  4240. {
  4241. "name": "Tobias Nyholm",
  4242. "email": "tobias.nyholm@gmail.com",
  4243. "homepage": "https://github.com/Nyholm"
  4244. },
  4245. {
  4246. "name": "Tobias Schultze",
  4247. "email": "webmaster@tubo-world.de",
  4248. "homepage": "https://github.com/Tobion"
  4249. }
  4250. ],
  4251. "description": "Guzzle promises library",
  4252. "keywords": [
  4253. "promise"
  4254. ],
  4255. "support": {
  4256. "issues": "https://github.com/guzzle/promises/issues",
  4257. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  4258. },
  4259. "funding": [
  4260. {
  4261. "url": "https://github.com/GrahamCampbell",
  4262. "type": "github"
  4263. },
  4264. {
  4265. "url": "https://github.com/Nyholm",
  4266. "type": "github"
  4267. },
  4268. {
  4269. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4270. "type": "tidelift"
  4271. }
  4272. ],
  4273. "time": "2022-08-28T14:55:35+00:00"
  4274. },
  4275. {
  4276. "name": "myclabs/deep-copy",
  4277. "version": "1.11.0",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/myclabs/DeepCopy.git",
  4281. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4286. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "php": "^7.1 || ^8.0"
  4291. },
  4292. "conflict": {
  4293. "doctrine/collections": "<1.6.8",
  4294. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  4295. },
  4296. "require-dev": {
  4297. "doctrine/collections": "^1.6.8",
  4298. "doctrine/common": "^2.13.3 || ^3.2.2",
  4299. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4300. },
  4301. "type": "library",
  4302. "autoload": {
  4303. "files": [
  4304. "src/DeepCopy/deep_copy.php"
  4305. ],
  4306. "psr-4": {
  4307. "DeepCopy\\": "src/DeepCopy/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "description": "Create deep copies (clones) of your objects",
  4315. "keywords": [
  4316. "clone",
  4317. "copy",
  4318. "duplicate",
  4319. "object",
  4320. "object graph"
  4321. ],
  4322. "support": {
  4323. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4324. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  4325. },
  4326. "funding": [
  4327. {
  4328. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4329. "type": "tidelift"
  4330. }
  4331. ],
  4332. "time": "2022-03-03T13:19:32+00:00"
  4333. },
  4334. {
  4335. "name": "nikic/php-parser",
  4336. "version": "v4.15.1",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/nikic/PHP-Parser.git",
  4340. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  4345. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  4346. "shasum": ""
  4347. },
  4348. "require": {
  4349. "ext-tokenizer": "*",
  4350. "php": ">=7.0"
  4351. },
  4352. "require-dev": {
  4353. "ircmaxell/php-yacc": "^0.0.7",
  4354. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4355. },
  4356. "bin": [
  4357. "bin/php-parse"
  4358. ],
  4359. "type": "library",
  4360. "extra": {
  4361. "branch-alias": {
  4362. "dev-master": "4.9-dev"
  4363. }
  4364. },
  4365. "autoload": {
  4366. "psr-4": {
  4367. "PhpParser\\": "lib/PhpParser"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "BSD-3-Clause"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Nikita Popov"
  4377. }
  4378. ],
  4379. "description": "A PHP parser written in PHP",
  4380. "keywords": [
  4381. "parser",
  4382. "php"
  4383. ],
  4384. "support": {
  4385. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4386. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  4387. },
  4388. "time": "2022-09-04T07:30:47+00:00"
  4389. },
  4390. {
  4391. "name": "phar-io/manifest",
  4392. "version": "2.0.3",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/phar-io/manifest.git",
  4396. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  4401. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  4402. "shasum": ""
  4403. },
  4404. "require": {
  4405. "ext-dom": "*",
  4406. "ext-phar": "*",
  4407. "ext-xmlwriter": "*",
  4408. "phar-io/version": "^3.0.1",
  4409. "php": "^7.2 || ^8.0"
  4410. },
  4411. "type": "library",
  4412. "extra": {
  4413. "branch-alias": {
  4414. "dev-master": "2.0.x-dev"
  4415. }
  4416. },
  4417. "autoload": {
  4418. "classmap": [
  4419. "src/"
  4420. ]
  4421. },
  4422. "notification-url": "https://packagist.org/downloads/",
  4423. "license": [
  4424. "BSD-3-Clause"
  4425. ],
  4426. "authors": [
  4427. {
  4428. "name": "Arne Blankerts",
  4429. "email": "arne@blankerts.de",
  4430. "role": "Developer"
  4431. },
  4432. {
  4433. "name": "Sebastian Heuer",
  4434. "email": "sebastian@phpeople.de",
  4435. "role": "Developer"
  4436. },
  4437. {
  4438. "name": "Sebastian Bergmann",
  4439. "email": "sebastian@phpunit.de",
  4440. "role": "Developer"
  4441. }
  4442. ],
  4443. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4444. "support": {
  4445. "issues": "https://github.com/phar-io/manifest/issues",
  4446. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  4447. },
  4448. "time": "2021-07-20T11:28:43+00:00"
  4449. },
  4450. {
  4451. "name": "phar-io/version",
  4452. "version": "3.2.1",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/phar-io/version.git",
  4456. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4461. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "php": "^7.2 || ^8.0"
  4466. },
  4467. "type": "library",
  4468. "autoload": {
  4469. "classmap": [
  4470. "src/"
  4471. ]
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "BSD-3-Clause"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "Arne Blankerts",
  4480. "email": "arne@blankerts.de",
  4481. "role": "Developer"
  4482. },
  4483. {
  4484. "name": "Sebastian Heuer",
  4485. "email": "sebastian@phpeople.de",
  4486. "role": "Developer"
  4487. },
  4488. {
  4489. "name": "Sebastian Bergmann",
  4490. "email": "sebastian@phpunit.de",
  4491. "role": "Developer"
  4492. }
  4493. ],
  4494. "description": "Library for handling version information and constraints",
  4495. "support": {
  4496. "issues": "https://github.com/phar-io/version/issues",
  4497. "source": "https://github.com/phar-io/version/tree/3.2.1"
  4498. },
  4499. "time": "2022-02-21T01:04:05+00:00"
  4500. },
  4501. {
  4502. "name": "phpstan/phpstan",
  4503. "version": "1.8.7",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/phpstan/phpstan.git",
  4507. "reference": "536ff0ed719b5679e9f09c17aeaee9b31969cb8e"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/536ff0ed719b5679e9f09c17aeaee9b31969cb8e",
  4512. "reference": "536ff0ed719b5679e9f09c17aeaee9b31969cb8e",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": "^7.2|^8.0"
  4517. },
  4518. "conflict": {
  4519. "phpstan/phpstan-shim": "*"
  4520. },
  4521. "bin": [
  4522. "phpstan",
  4523. "phpstan.phar"
  4524. ],
  4525. "type": "library",
  4526. "autoload": {
  4527. "files": [
  4528. "bootstrap.php"
  4529. ]
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "description": "PHPStan - PHP Static Analysis Tool",
  4536. "keywords": [
  4537. "dev",
  4538. "static analysis"
  4539. ],
  4540. "support": {
  4541. "issues": "https://github.com/phpstan/phpstan/issues",
  4542. "source": "https://github.com/phpstan/phpstan/tree/1.8.7"
  4543. },
  4544. "funding": [
  4545. {
  4546. "url": "https://github.com/ondrejmirtes",
  4547. "type": "github"
  4548. },
  4549. {
  4550. "url": "https://github.com/phpstan",
  4551. "type": "github"
  4552. },
  4553. {
  4554. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  4555. "type": "tidelift"
  4556. }
  4557. ],
  4558. "time": "2022-10-04T14:09:33+00:00"
  4559. },
  4560. {
  4561. "name": "phpstan/phpstan-deprecation-rules",
  4562. "version": "1.0.0",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  4566. "reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682",
  4571. "reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682",
  4572. "shasum": ""
  4573. },
  4574. "require": {
  4575. "php": "^7.1 || ^8.0",
  4576. "phpstan/phpstan": "^1.0"
  4577. },
  4578. "require-dev": {
  4579. "php-parallel-lint/php-parallel-lint": "^1.2",
  4580. "phpstan/phpstan-phpunit": "^1.0",
  4581. "phpunit/phpunit": "^9.5"
  4582. },
  4583. "type": "phpstan-extension",
  4584. "extra": {
  4585. "branch-alias": {
  4586. "dev-master": "1.0-dev"
  4587. },
  4588. "phpstan": {
  4589. "includes": [
  4590. "rules.neon"
  4591. ]
  4592. }
  4593. },
  4594. "autoload": {
  4595. "psr-4": {
  4596. "PHPStan\\": "src/"
  4597. }
  4598. },
  4599. "notification-url": "https://packagist.org/downloads/",
  4600. "license": [
  4601. "MIT"
  4602. ],
  4603. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  4604. "support": {
  4605. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  4606. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.0.0"
  4607. },
  4608. "time": "2021-09-23T11:02:21+00:00"
  4609. },
  4610. {
  4611. "name": "phpunit/php-code-coverage",
  4612. "version": "9.2.17",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4616. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
  4621. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
  4622. "shasum": ""
  4623. },
  4624. "require": {
  4625. "ext-dom": "*",
  4626. "ext-libxml": "*",
  4627. "ext-xmlwriter": "*",
  4628. "nikic/php-parser": "^4.14",
  4629. "php": ">=7.3",
  4630. "phpunit/php-file-iterator": "^3.0.3",
  4631. "phpunit/php-text-template": "^2.0.2",
  4632. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  4633. "sebastian/complexity": "^2.0",
  4634. "sebastian/environment": "^5.1.2",
  4635. "sebastian/lines-of-code": "^1.0.3",
  4636. "sebastian/version": "^3.0.1",
  4637. "theseer/tokenizer": "^1.2.0"
  4638. },
  4639. "require-dev": {
  4640. "phpunit/phpunit": "^9.3"
  4641. },
  4642. "suggest": {
  4643. "ext-pcov": "*",
  4644. "ext-xdebug": "*"
  4645. },
  4646. "type": "library",
  4647. "extra": {
  4648. "branch-alias": {
  4649. "dev-master": "9.2-dev"
  4650. }
  4651. },
  4652. "autoload": {
  4653. "classmap": [
  4654. "src/"
  4655. ]
  4656. },
  4657. "notification-url": "https://packagist.org/downloads/",
  4658. "license": [
  4659. "BSD-3-Clause"
  4660. ],
  4661. "authors": [
  4662. {
  4663. "name": "Sebastian Bergmann",
  4664. "email": "sebastian@phpunit.de",
  4665. "role": "lead"
  4666. }
  4667. ],
  4668. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4669. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4670. "keywords": [
  4671. "coverage",
  4672. "testing",
  4673. "xunit"
  4674. ],
  4675. "support": {
  4676. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4677. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
  4678. },
  4679. "funding": [
  4680. {
  4681. "url": "https://github.com/sebastianbergmann",
  4682. "type": "github"
  4683. }
  4684. ],
  4685. "time": "2022-08-30T12:24:04+00:00"
  4686. },
  4687. {
  4688. "name": "phpunit/php-file-iterator",
  4689. "version": "3.0.6",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4693. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4698. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "php": ">=7.3"
  4703. },
  4704. "require-dev": {
  4705. "phpunit/phpunit": "^9.3"
  4706. },
  4707. "type": "library",
  4708. "extra": {
  4709. "branch-alias": {
  4710. "dev-master": "3.0-dev"
  4711. }
  4712. },
  4713. "autoload": {
  4714. "classmap": [
  4715. "src/"
  4716. ]
  4717. },
  4718. "notification-url": "https://packagist.org/downloads/",
  4719. "license": [
  4720. "BSD-3-Clause"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Sebastian Bergmann",
  4725. "email": "sebastian@phpunit.de",
  4726. "role": "lead"
  4727. }
  4728. ],
  4729. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4730. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4731. "keywords": [
  4732. "filesystem",
  4733. "iterator"
  4734. ],
  4735. "support": {
  4736. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4737. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  4738. },
  4739. "funding": [
  4740. {
  4741. "url": "https://github.com/sebastianbergmann",
  4742. "type": "github"
  4743. }
  4744. ],
  4745. "time": "2021-12-02T12:48:52+00:00"
  4746. },
  4747. {
  4748. "name": "phpunit/php-invoker",
  4749. "version": "3.1.1",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4753. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4758. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "php": ">=7.3"
  4763. },
  4764. "require-dev": {
  4765. "ext-pcntl": "*",
  4766. "phpunit/phpunit": "^9.3"
  4767. },
  4768. "suggest": {
  4769. "ext-pcntl": "*"
  4770. },
  4771. "type": "library",
  4772. "extra": {
  4773. "branch-alias": {
  4774. "dev-master": "3.1-dev"
  4775. }
  4776. },
  4777. "autoload": {
  4778. "classmap": [
  4779. "src/"
  4780. ]
  4781. },
  4782. "notification-url": "https://packagist.org/downloads/",
  4783. "license": [
  4784. "BSD-3-Clause"
  4785. ],
  4786. "authors": [
  4787. {
  4788. "name": "Sebastian Bergmann",
  4789. "email": "sebastian@phpunit.de",
  4790. "role": "lead"
  4791. }
  4792. ],
  4793. "description": "Invoke callables with a timeout",
  4794. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4795. "keywords": [
  4796. "process"
  4797. ],
  4798. "support": {
  4799. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4800. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  4801. },
  4802. "funding": [
  4803. {
  4804. "url": "https://github.com/sebastianbergmann",
  4805. "type": "github"
  4806. }
  4807. ],
  4808. "time": "2020-09-28T05:58:55+00:00"
  4809. },
  4810. {
  4811. "name": "phpunit/php-text-template",
  4812. "version": "2.0.4",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4816. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4821. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4822. "shasum": ""
  4823. },
  4824. "require": {
  4825. "php": ">=7.3"
  4826. },
  4827. "require-dev": {
  4828. "phpunit/phpunit": "^9.3"
  4829. },
  4830. "type": "library",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-master": "2.0-dev"
  4834. }
  4835. },
  4836. "autoload": {
  4837. "classmap": [
  4838. "src/"
  4839. ]
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "BSD-3-Clause"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Sebastian Bergmann",
  4848. "email": "sebastian@phpunit.de",
  4849. "role": "lead"
  4850. }
  4851. ],
  4852. "description": "Simple template engine.",
  4853. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4854. "keywords": [
  4855. "template"
  4856. ],
  4857. "support": {
  4858. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4859. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  4860. },
  4861. "funding": [
  4862. {
  4863. "url": "https://github.com/sebastianbergmann",
  4864. "type": "github"
  4865. }
  4866. ],
  4867. "time": "2020-10-26T05:33:50+00:00"
  4868. },
  4869. {
  4870. "name": "phpunit/php-timer",
  4871. "version": "5.0.3",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4875. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4880. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4881. "shasum": ""
  4882. },
  4883. "require": {
  4884. "php": ">=7.3"
  4885. },
  4886. "require-dev": {
  4887. "phpunit/phpunit": "^9.3"
  4888. },
  4889. "type": "library",
  4890. "extra": {
  4891. "branch-alias": {
  4892. "dev-master": "5.0-dev"
  4893. }
  4894. },
  4895. "autoload": {
  4896. "classmap": [
  4897. "src/"
  4898. ]
  4899. },
  4900. "notification-url": "https://packagist.org/downloads/",
  4901. "license": [
  4902. "BSD-3-Clause"
  4903. ],
  4904. "authors": [
  4905. {
  4906. "name": "Sebastian Bergmann",
  4907. "email": "sebastian@phpunit.de",
  4908. "role": "lead"
  4909. }
  4910. ],
  4911. "description": "Utility class for timing",
  4912. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4913. "keywords": [
  4914. "timer"
  4915. ],
  4916. "support": {
  4917. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4918. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4919. },
  4920. "funding": [
  4921. {
  4922. "url": "https://github.com/sebastianbergmann",
  4923. "type": "github"
  4924. }
  4925. ],
  4926. "time": "2020-10-26T13:16:10+00:00"
  4927. },
  4928. {
  4929. "name": "phpunit/phpunit",
  4930. "version": "9.5.25",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4934. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  4939. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "doctrine/instantiator": "^1.3.1",
  4944. "ext-dom": "*",
  4945. "ext-json": "*",
  4946. "ext-libxml": "*",
  4947. "ext-mbstring": "*",
  4948. "ext-xml": "*",
  4949. "ext-xmlwriter": "*",
  4950. "myclabs/deep-copy": "^1.10.1",
  4951. "phar-io/manifest": "^2.0.3",
  4952. "phar-io/version": "^3.0.2",
  4953. "php": ">=7.3",
  4954. "phpunit/php-code-coverage": "^9.2.13",
  4955. "phpunit/php-file-iterator": "^3.0.5",
  4956. "phpunit/php-invoker": "^3.1.1",
  4957. "phpunit/php-text-template": "^2.0.3",
  4958. "phpunit/php-timer": "^5.0.2",
  4959. "sebastian/cli-parser": "^1.0.1",
  4960. "sebastian/code-unit": "^1.0.6",
  4961. "sebastian/comparator": "^4.0.8",
  4962. "sebastian/diff": "^4.0.3",
  4963. "sebastian/environment": "^5.1.3",
  4964. "sebastian/exporter": "^4.0.5",
  4965. "sebastian/global-state": "^5.0.1",
  4966. "sebastian/object-enumerator": "^4.0.3",
  4967. "sebastian/resource-operations": "^3.0.3",
  4968. "sebastian/type": "^3.2",
  4969. "sebastian/version": "^3.0.2"
  4970. },
  4971. "suggest": {
  4972. "ext-soap": "*",
  4973. "ext-xdebug": "*"
  4974. },
  4975. "bin": [
  4976. "phpunit"
  4977. ],
  4978. "type": "library",
  4979. "extra": {
  4980. "branch-alias": {
  4981. "dev-master": "9.5-dev"
  4982. }
  4983. },
  4984. "autoload": {
  4985. "files": [
  4986. "src/Framework/Assert/Functions.php"
  4987. ],
  4988. "classmap": [
  4989. "src/"
  4990. ]
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "BSD-3-Clause"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "Sebastian Bergmann",
  4999. "email": "sebastian@phpunit.de",
  5000. "role": "lead"
  5001. }
  5002. ],
  5003. "description": "The PHP Unit Testing framework.",
  5004. "homepage": "https://phpunit.de/",
  5005. "keywords": [
  5006. "phpunit",
  5007. "testing",
  5008. "xunit"
  5009. ],
  5010. "support": {
  5011. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5012. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
  5013. },
  5014. "funding": [
  5015. {
  5016. "url": "https://phpunit.de/sponsors.html",
  5017. "type": "custom"
  5018. },
  5019. {
  5020. "url": "https://github.com/sebastianbergmann",
  5021. "type": "github"
  5022. },
  5023. {
  5024. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  5025. "type": "tidelift"
  5026. }
  5027. ],
  5028. "time": "2022-09-25T03:44:45+00:00"
  5029. },
  5030. {
  5031. "name": "psr/http-client",
  5032. "version": "1.0.1",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/php-fig/http-client.git",
  5036. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5041. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5042. "shasum": ""
  5043. },
  5044. "require": {
  5045. "php": "^7.0 || ^8.0",
  5046. "psr/http-message": "^1.0"
  5047. },
  5048. "type": "library",
  5049. "extra": {
  5050. "branch-alias": {
  5051. "dev-master": "1.0.x-dev"
  5052. }
  5053. },
  5054. "autoload": {
  5055. "psr-4": {
  5056. "Psr\\Http\\Client\\": "src/"
  5057. }
  5058. },
  5059. "notification-url": "https://packagist.org/downloads/",
  5060. "license": [
  5061. "MIT"
  5062. ],
  5063. "authors": [
  5064. {
  5065. "name": "PHP-FIG",
  5066. "homepage": "http://www.php-fig.org/"
  5067. }
  5068. ],
  5069. "description": "Common interface for HTTP clients",
  5070. "homepage": "https://github.com/php-fig/http-client",
  5071. "keywords": [
  5072. "http",
  5073. "http-client",
  5074. "psr",
  5075. "psr-18"
  5076. ],
  5077. "support": {
  5078. "source": "https://github.com/php-fig/http-client/tree/master"
  5079. },
  5080. "time": "2020-06-29T06:28:15+00:00"
  5081. },
  5082. {
  5083. "name": "sebastian/cli-parser",
  5084. "version": "1.0.1",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5088. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5093. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=7.3"
  5098. },
  5099. "require-dev": {
  5100. "phpunit/phpunit": "^9.3"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "1.0-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "classmap": [
  5110. "src/"
  5111. ]
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "BSD-3-Clause"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Sebastian Bergmann",
  5120. "email": "sebastian@phpunit.de",
  5121. "role": "lead"
  5122. }
  5123. ],
  5124. "description": "Library for parsing CLI options",
  5125. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5126. "support": {
  5127. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5128. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  5129. },
  5130. "funding": [
  5131. {
  5132. "url": "https://github.com/sebastianbergmann",
  5133. "type": "github"
  5134. }
  5135. ],
  5136. "time": "2020-09-28T06:08:49+00:00"
  5137. },
  5138. {
  5139. "name": "sebastian/code-unit",
  5140. "version": "1.0.8",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5144. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  5145. },
  5146. "dist": {
  5147. "type": "zip",
  5148. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5149. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5150. "shasum": ""
  5151. },
  5152. "require": {
  5153. "php": ">=7.3"
  5154. },
  5155. "require-dev": {
  5156. "phpunit/phpunit": "^9.3"
  5157. },
  5158. "type": "library",
  5159. "extra": {
  5160. "branch-alias": {
  5161. "dev-master": "1.0-dev"
  5162. }
  5163. },
  5164. "autoload": {
  5165. "classmap": [
  5166. "src/"
  5167. ]
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "BSD-3-Clause"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Sebastian Bergmann",
  5176. "email": "sebastian@phpunit.de",
  5177. "role": "lead"
  5178. }
  5179. ],
  5180. "description": "Collection of value objects that represent the PHP code units",
  5181. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5182. "support": {
  5183. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5184. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  5185. },
  5186. "funding": [
  5187. {
  5188. "url": "https://github.com/sebastianbergmann",
  5189. "type": "github"
  5190. }
  5191. ],
  5192. "time": "2020-10-26T13:08:54+00:00"
  5193. },
  5194. {
  5195. "name": "sebastian/code-unit-reverse-lookup",
  5196. "version": "2.0.3",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5200. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5205. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": ">=7.3"
  5210. },
  5211. "require-dev": {
  5212. "phpunit/phpunit": "^9.3"
  5213. },
  5214. "type": "library",
  5215. "extra": {
  5216. "branch-alias": {
  5217. "dev-master": "2.0-dev"
  5218. }
  5219. },
  5220. "autoload": {
  5221. "classmap": [
  5222. "src/"
  5223. ]
  5224. },
  5225. "notification-url": "https://packagist.org/downloads/",
  5226. "license": [
  5227. "BSD-3-Clause"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Sebastian Bergmann",
  5232. "email": "sebastian@phpunit.de"
  5233. }
  5234. ],
  5235. "description": "Looks up which function or method a line of code belongs to",
  5236. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5237. "support": {
  5238. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5239. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  5240. },
  5241. "funding": [
  5242. {
  5243. "url": "https://github.com/sebastianbergmann",
  5244. "type": "github"
  5245. }
  5246. ],
  5247. "time": "2020-09-28T05:30:19+00:00"
  5248. },
  5249. {
  5250. "name": "sebastian/comparator",
  5251. "version": "4.0.8",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://github.com/sebastianbergmann/comparator.git",
  5255. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  5260. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  5261. "shasum": ""
  5262. },
  5263. "require": {
  5264. "php": ">=7.3",
  5265. "sebastian/diff": "^4.0",
  5266. "sebastian/exporter": "^4.0"
  5267. },
  5268. "require-dev": {
  5269. "phpunit/phpunit": "^9.3"
  5270. },
  5271. "type": "library",
  5272. "extra": {
  5273. "branch-alias": {
  5274. "dev-master": "4.0-dev"
  5275. }
  5276. },
  5277. "autoload": {
  5278. "classmap": [
  5279. "src/"
  5280. ]
  5281. },
  5282. "notification-url": "https://packagist.org/downloads/",
  5283. "license": [
  5284. "BSD-3-Clause"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Sebastian Bergmann",
  5289. "email": "sebastian@phpunit.de"
  5290. },
  5291. {
  5292. "name": "Jeff Welch",
  5293. "email": "whatthejeff@gmail.com"
  5294. },
  5295. {
  5296. "name": "Volker Dusch",
  5297. "email": "github@wallbash.com"
  5298. },
  5299. {
  5300. "name": "Bernhard Schussek",
  5301. "email": "bschussek@2bepublished.at"
  5302. }
  5303. ],
  5304. "description": "Provides the functionality to compare PHP values for equality",
  5305. "homepage": "https://github.com/sebastianbergmann/comparator",
  5306. "keywords": [
  5307. "comparator",
  5308. "compare",
  5309. "equality"
  5310. ],
  5311. "support": {
  5312. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5313. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  5314. },
  5315. "funding": [
  5316. {
  5317. "url": "https://github.com/sebastianbergmann",
  5318. "type": "github"
  5319. }
  5320. ],
  5321. "time": "2022-09-14T12:41:17+00:00"
  5322. },
  5323. {
  5324. "name": "sebastian/complexity",
  5325. "version": "2.0.2",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/sebastianbergmann/complexity.git",
  5329. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  5334. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  5335. "shasum": ""
  5336. },
  5337. "require": {
  5338. "nikic/php-parser": "^4.7",
  5339. "php": ">=7.3"
  5340. },
  5341. "require-dev": {
  5342. "phpunit/phpunit": "^9.3"
  5343. },
  5344. "type": "library",
  5345. "extra": {
  5346. "branch-alias": {
  5347. "dev-master": "2.0-dev"
  5348. }
  5349. },
  5350. "autoload": {
  5351. "classmap": [
  5352. "src/"
  5353. ]
  5354. },
  5355. "notification-url": "https://packagist.org/downloads/",
  5356. "license": [
  5357. "BSD-3-Clause"
  5358. ],
  5359. "authors": [
  5360. {
  5361. "name": "Sebastian Bergmann",
  5362. "email": "sebastian@phpunit.de",
  5363. "role": "lead"
  5364. }
  5365. ],
  5366. "description": "Library for calculating the complexity of PHP code units",
  5367. "homepage": "https://github.com/sebastianbergmann/complexity",
  5368. "support": {
  5369. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5370. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  5371. },
  5372. "funding": [
  5373. {
  5374. "url": "https://github.com/sebastianbergmann",
  5375. "type": "github"
  5376. }
  5377. ],
  5378. "time": "2020-10-26T15:52:27+00:00"
  5379. },
  5380. {
  5381. "name": "sebastian/diff",
  5382. "version": "4.0.4",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/sebastianbergmann/diff.git",
  5386. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  5391. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": ">=7.3"
  5396. },
  5397. "require-dev": {
  5398. "phpunit/phpunit": "^9.3",
  5399. "symfony/process": "^4.2 || ^5"
  5400. },
  5401. "type": "library",
  5402. "extra": {
  5403. "branch-alias": {
  5404. "dev-master": "4.0-dev"
  5405. }
  5406. },
  5407. "autoload": {
  5408. "classmap": [
  5409. "src/"
  5410. ]
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "BSD-3-Clause"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Sebastian Bergmann",
  5419. "email": "sebastian@phpunit.de"
  5420. },
  5421. {
  5422. "name": "Kore Nordmann",
  5423. "email": "mail@kore-nordmann.de"
  5424. }
  5425. ],
  5426. "description": "Diff implementation",
  5427. "homepage": "https://github.com/sebastianbergmann/diff",
  5428. "keywords": [
  5429. "diff",
  5430. "udiff",
  5431. "unidiff",
  5432. "unified diff"
  5433. ],
  5434. "support": {
  5435. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5436. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  5437. },
  5438. "funding": [
  5439. {
  5440. "url": "https://github.com/sebastianbergmann",
  5441. "type": "github"
  5442. }
  5443. ],
  5444. "time": "2020-10-26T13:10:38+00:00"
  5445. },
  5446. {
  5447. "name": "sebastian/environment",
  5448. "version": "5.1.4",
  5449. "source": {
  5450. "type": "git",
  5451. "url": "https://github.com/sebastianbergmann/environment.git",
  5452. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  5453. },
  5454. "dist": {
  5455. "type": "zip",
  5456. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  5457. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  5458. "shasum": ""
  5459. },
  5460. "require": {
  5461. "php": ">=7.3"
  5462. },
  5463. "require-dev": {
  5464. "phpunit/phpunit": "^9.3"
  5465. },
  5466. "suggest": {
  5467. "ext-posix": "*"
  5468. },
  5469. "type": "library",
  5470. "extra": {
  5471. "branch-alias": {
  5472. "dev-master": "5.1-dev"
  5473. }
  5474. },
  5475. "autoload": {
  5476. "classmap": [
  5477. "src/"
  5478. ]
  5479. },
  5480. "notification-url": "https://packagist.org/downloads/",
  5481. "license": [
  5482. "BSD-3-Clause"
  5483. ],
  5484. "authors": [
  5485. {
  5486. "name": "Sebastian Bergmann",
  5487. "email": "sebastian@phpunit.de"
  5488. }
  5489. ],
  5490. "description": "Provides functionality to handle HHVM/PHP environments",
  5491. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5492. "keywords": [
  5493. "Xdebug",
  5494. "environment",
  5495. "hhvm"
  5496. ],
  5497. "support": {
  5498. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5499. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  5500. },
  5501. "funding": [
  5502. {
  5503. "url": "https://github.com/sebastianbergmann",
  5504. "type": "github"
  5505. }
  5506. ],
  5507. "time": "2022-04-03T09:37:03+00:00"
  5508. },
  5509. {
  5510. "name": "sebastian/exporter",
  5511. "version": "4.0.5",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://github.com/sebastianbergmann/exporter.git",
  5515. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  5520. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  5521. "shasum": ""
  5522. },
  5523. "require": {
  5524. "php": ">=7.3",
  5525. "sebastian/recursion-context": "^4.0"
  5526. },
  5527. "require-dev": {
  5528. "ext-mbstring": "*",
  5529. "phpunit/phpunit": "^9.3"
  5530. },
  5531. "type": "library",
  5532. "extra": {
  5533. "branch-alias": {
  5534. "dev-master": "4.0-dev"
  5535. }
  5536. },
  5537. "autoload": {
  5538. "classmap": [
  5539. "src/"
  5540. ]
  5541. },
  5542. "notification-url": "https://packagist.org/downloads/",
  5543. "license": [
  5544. "BSD-3-Clause"
  5545. ],
  5546. "authors": [
  5547. {
  5548. "name": "Sebastian Bergmann",
  5549. "email": "sebastian@phpunit.de"
  5550. },
  5551. {
  5552. "name": "Jeff Welch",
  5553. "email": "whatthejeff@gmail.com"
  5554. },
  5555. {
  5556. "name": "Volker Dusch",
  5557. "email": "github@wallbash.com"
  5558. },
  5559. {
  5560. "name": "Adam Harvey",
  5561. "email": "aharvey@php.net"
  5562. },
  5563. {
  5564. "name": "Bernhard Schussek",
  5565. "email": "bschussek@gmail.com"
  5566. }
  5567. ],
  5568. "description": "Provides the functionality to export PHP variables for visualization",
  5569. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5570. "keywords": [
  5571. "export",
  5572. "exporter"
  5573. ],
  5574. "support": {
  5575. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5576. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  5577. },
  5578. "funding": [
  5579. {
  5580. "url": "https://github.com/sebastianbergmann",
  5581. "type": "github"
  5582. }
  5583. ],
  5584. "time": "2022-09-14T06:03:37+00:00"
  5585. },
  5586. {
  5587. "name": "sebastian/global-state",
  5588. "version": "5.0.5",
  5589. "source": {
  5590. "type": "git",
  5591. "url": "https://github.com/sebastianbergmann/global-state.git",
  5592. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  5593. },
  5594. "dist": {
  5595. "type": "zip",
  5596. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5597. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5598. "shasum": ""
  5599. },
  5600. "require": {
  5601. "php": ">=7.3",
  5602. "sebastian/object-reflector": "^2.0",
  5603. "sebastian/recursion-context": "^4.0"
  5604. },
  5605. "require-dev": {
  5606. "ext-dom": "*",
  5607. "phpunit/phpunit": "^9.3"
  5608. },
  5609. "suggest": {
  5610. "ext-uopz": "*"
  5611. },
  5612. "type": "library",
  5613. "extra": {
  5614. "branch-alias": {
  5615. "dev-master": "5.0-dev"
  5616. }
  5617. },
  5618. "autoload": {
  5619. "classmap": [
  5620. "src/"
  5621. ]
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "BSD-3-Clause"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Sebastian Bergmann",
  5630. "email": "sebastian@phpunit.de"
  5631. }
  5632. ],
  5633. "description": "Snapshotting of global state",
  5634. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5635. "keywords": [
  5636. "global state"
  5637. ],
  5638. "support": {
  5639. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5640. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  5641. },
  5642. "funding": [
  5643. {
  5644. "url": "https://github.com/sebastianbergmann",
  5645. "type": "github"
  5646. }
  5647. ],
  5648. "time": "2022-02-14T08:28:10+00:00"
  5649. },
  5650. {
  5651. "name": "sebastian/lines-of-code",
  5652. "version": "1.0.3",
  5653. "source": {
  5654. "type": "git",
  5655. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5656. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  5657. },
  5658. "dist": {
  5659. "type": "zip",
  5660. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5661. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5662. "shasum": ""
  5663. },
  5664. "require": {
  5665. "nikic/php-parser": "^4.6",
  5666. "php": ">=7.3"
  5667. },
  5668. "require-dev": {
  5669. "phpunit/phpunit": "^9.3"
  5670. },
  5671. "type": "library",
  5672. "extra": {
  5673. "branch-alias": {
  5674. "dev-master": "1.0-dev"
  5675. }
  5676. },
  5677. "autoload": {
  5678. "classmap": [
  5679. "src/"
  5680. ]
  5681. },
  5682. "notification-url": "https://packagist.org/downloads/",
  5683. "license": [
  5684. "BSD-3-Clause"
  5685. ],
  5686. "authors": [
  5687. {
  5688. "name": "Sebastian Bergmann",
  5689. "email": "sebastian@phpunit.de",
  5690. "role": "lead"
  5691. }
  5692. ],
  5693. "description": "Library for counting the lines of code in PHP source code",
  5694. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5695. "support": {
  5696. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5697. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://github.com/sebastianbergmann",
  5702. "type": "github"
  5703. }
  5704. ],
  5705. "time": "2020-11-28T06:42:11+00:00"
  5706. },
  5707. {
  5708. "name": "sebastian/object-enumerator",
  5709. "version": "4.0.4",
  5710. "source": {
  5711. "type": "git",
  5712. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5713. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  5714. },
  5715. "dist": {
  5716. "type": "zip",
  5717. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  5718. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  5719. "shasum": ""
  5720. },
  5721. "require": {
  5722. "php": ">=7.3",
  5723. "sebastian/object-reflector": "^2.0",
  5724. "sebastian/recursion-context": "^4.0"
  5725. },
  5726. "require-dev": {
  5727. "phpunit/phpunit": "^9.3"
  5728. },
  5729. "type": "library",
  5730. "extra": {
  5731. "branch-alias": {
  5732. "dev-master": "4.0-dev"
  5733. }
  5734. },
  5735. "autoload": {
  5736. "classmap": [
  5737. "src/"
  5738. ]
  5739. },
  5740. "notification-url": "https://packagist.org/downloads/",
  5741. "license": [
  5742. "BSD-3-Clause"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "Sebastian Bergmann",
  5747. "email": "sebastian@phpunit.de"
  5748. }
  5749. ],
  5750. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5751. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5752. "support": {
  5753. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5754. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5755. },
  5756. "funding": [
  5757. {
  5758. "url": "https://github.com/sebastianbergmann",
  5759. "type": "github"
  5760. }
  5761. ],
  5762. "time": "2020-10-26T13:12:34+00:00"
  5763. },
  5764. {
  5765. "name": "sebastian/object-reflector",
  5766. "version": "2.0.4",
  5767. "source": {
  5768. "type": "git",
  5769. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5770. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5771. },
  5772. "dist": {
  5773. "type": "zip",
  5774. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5775. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5776. "shasum": ""
  5777. },
  5778. "require": {
  5779. "php": ">=7.3"
  5780. },
  5781. "require-dev": {
  5782. "phpunit/phpunit": "^9.3"
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "branch-alias": {
  5787. "dev-master": "2.0-dev"
  5788. }
  5789. },
  5790. "autoload": {
  5791. "classmap": [
  5792. "src/"
  5793. ]
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "BSD-3-Clause"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Sebastian Bergmann",
  5802. "email": "sebastian@phpunit.de"
  5803. }
  5804. ],
  5805. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5806. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5807. "support": {
  5808. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5809. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5810. },
  5811. "funding": [
  5812. {
  5813. "url": "https://github.com/sebastianbergmann",
  5814. "type": "github"
  5815. }
  5816. ],
  5817. "time": "2020-10-26T13:14:26+00:00"
  5818. },
  5819. {
  5820. "name": "sebastian/recursion-context",
  5821. "version": "4.0.4",
  5822. "source": {
  5823. "type": "git",
  5824. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5825. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  5826. },
  5827. "dist": {
  5828. "type": "zip",
  5829. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  5830. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  5831. "shasum": ""
  5832. },
  5833. "require": {
  5834. "php": ">=7.3"
  5835. },
  5836. "require-dev": {
  5837. "phpunit/phpunit": "^9.3"
  5838. },
  5839. "type": "library",
  5840. "extra": {
  5841. "branch-alias": {
  5842. "dev-master": "4.0-dev"
  5843. }
  5844. },
  5845. "autoload": {
  5846. "classmap": [
  5847. "src/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "BSD-3-Clause"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Sebastian Bergmann",
  5857. "email": "sebastian@phpunit.de"
  5858. },
  5859. {
  5860. "name": "Jeff Welch",
  5861. "email": "whatthejeff@gmail.com"
  5862. },
  5863. {
  5864. "name": "Adam Harvey",
  5865. "email": "aharvey@php.net"
  5866. }
  5867. ],
  5868. "description": "Provides functionality to recursively process PHP variables",
  5869. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5870. "support": {
  5871. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5872. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  5873. },
  5874. "funding": [
  5875. {
  5876. "url": "https://github.com/sebastianbergmann",
  5877. "type": "github"
  5878. }
  5879. ],
  5880. "time": "2020-10-26T13:17:30+00:00"
  5881. },
  5882. {
  5883. "name": "sebastian/resource-operations",
  5884. "version": "3.0.3",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5888. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5893. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.3"
  5898. },
  5899. "require-dev": {
  5900. "phpunit/phpunit": "^9.0"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-master": "3.0-dev"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "classmap": [
  5910. "src/"
  5911. ]
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "BSD-3-Clause"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Sebastian Bergmann",
  5920. "email": "sebastian@phpunit.de"
  5921. }
  5922. ],
  5923. "description": "Provides a list of PHP built-in functions that operate on resources",
  5924. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5925. "support": {
  5926. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5927. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5928. },
  5929. "funding": [
  5930. {
  5931. "url": "https://github.com/sebastianbergmann",
  5932. "type": "github"
  5933. }
  5934. ],
  5935. "time": "2020-09-28T06:45:17+00:00"
  5936. },
  5937. {
  5938. "name": "sebastian/type",
  5939. "version": "3.2.0",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/sebastianbergmann/type.git",
  5943. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  5948. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=7.3"
  5953. },
  5954. "require-dev": {
  5955. "phpunit/phpunit": "^9.5"
  5956. },
  5957. "type": "library",
  5958. "extra": {
  5959. "branch-alias": {
  5960. "dev-master": "3.2-dev"
  5961. }
  5962. },
  5963. "autoload": {
  5964. "classmap": [
  5965. "src/"
  5966. ]
  5967. },
  5968. "notification-url": "https://packagist.org/downloads/",
  5969. "license": [
  5970. "BSD-3-Clause"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Sebastian Bergmann",
  5975. "email": "sebastian@phpunit.de",
  5976. "role": "lead"
  5977. }
  5978. ],
  5979. "description": "Collection of value objects that represent the types of the PHP type system",
  5980. "homepage": "https://github.com/sebastianbergmann/type",
  5981. "support": {
  5982. "issues": "https://github.com/sebastianbergmann/type/issues",
  5983. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  5984. },
  5985. "funding": [
  5986. {
  5987. "url": "https://github.com/sebastianbergmann",
  5988. "type": "github"
  5989. }
  5990. ],
  5991. "time": "2022-09-12T14:47:03+00:00"
  5992. },
  5993. {
  5994. "name": "sebastian/version",
  5995. "version": "3.0.2",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/sebastianbergmann/version.git",
  5999. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  6004. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=7.3"
  6009. },
  6010. "type": "library",
  6011. "extra": {
  6012. "branch-alias": {
  6013. "dev-master": "3.0-dev"
  6014. }
  6015. },
  6016. "autoload": {
  6017. "classmap": [
  6018. "src/"
  6019. ]
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "BSD-3-Clause"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "Sebastian Bergmann",
  6028. "email": "sebastian@phpunit.de",
  6029. "role": "lead"
  6030. }
  6031. ],
  6032. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6033. "homepage": "https://github.com/sebastianbergmann/version",
  6034. "support": {
  6035. "issues": "https://github.com/sebastianbergmann/version/issues",
  6036. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  6037. },
  6038. "funding": [
  6039. {
  6040. "url": "https://github.com/sebastianbergmann",
  6041. "type": "github"
  6042. }
  6043. ],
  6044. "time": "2020-09-28T06:39:44+00:00"
  6045. },
  6046. {
  6047. "name": "symfony/browser-kit",
  6048. "version": "v5.4.11",
  6049. "source": {
  6050. "type": "git",
  6051. "url": "https://github.com/symfony/browser-kit.git",
  6052. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027"
  6053. },
  6054. "dist": {
  6055. "type": "zip",
  6056. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  6057. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  6058. "shasum": ""
  6059. },
  6060. "require": {
  6061. "php": ">=7.2.5",
  6062. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6063. "symfony/polyfill-php80": "^1.16"
  6064. },
  6065. "require-dev": {
  6066. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6067. "symfony/http-client": "^4.4|^5.0|^6.0",
  6068. "symfony/mime": "^4.4|^5.0|^6.0",
  6069. "symfony/process": "^4.4|^5.0|^6.0"
  6070. },
  6071. "suggest": {
  6072. "symfony/process": ""
  6073. },
  6074. "type": "library",
  6075. "autoload": {
  6076. "psr-4": {
  6077. "Symfony\\Component\\BrowserKit\\": ""
  6078. },
  6079. "exclude-from-classmap": [
  6080. "/Tests/"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Fabien Potencier",
  6090. "email": "fabien@symfony.com"
  6091. },
  6092. {
  6093. "name": "Symfony Community",
  6094. "homepage": "https://symfony.com/contributors"
  6095. }
  6096. ],
  6097. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  6098. "homepage": "https://symfony.com",
  6099. "support": {
  6100. "source": "https://github.com/symfony/browser-kit/tree/v5.4.11"
  6101. },
  6102. "funding": [
  6103. {
  6104. "url": "https://symfony.com/sponsor",
  6105. "type": "custom"
  6106. },
  6107. {
  6108. "url": "https://github.com/fabpot",
  6109. "type": "github"
  6110. },
  6111. {
  6112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6113. "type": "tidelift"
  6114. }
  6115. ],
  6116. "time": "2022-07-27T15:50:05+00:00"
  6117. },
  6118. {
  6119. "name": "symfony/css-selector",
  6120. "version": "v5.4.11",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/symfony/css-selector.git",
  6124. "reference": "c1681789f059ab756001052164726ae88512ae3d"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
  6129. "reference": "c1681789f059ab756001052164726ae88512ae3d",
  6130. "shasum": ""
  6131. },
  6132. "require": {
  6133. "php": ">=7.2.5",
  6134. "symfony/polyfill-php80": "^1.16"
  6135. },
  6136. "type": "library",
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Symfony\\Component\\CssSelector\\": ""
  6140. },
  6141. "exclude-from-classmap": [
  6142. "/Tests/"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Fabien Potencier",
  6152. "email": "fabien@symfony.com"
  6153. },
  6154. {
  6155. "name": "Jean-François Simon",
  6156. "email": "jeanfrancois.simon@sensiolabs.com"
  6157. },
  6158. {
  6159. "name": "Symfony Community",
  6160. "homepage": "https://symfony.com/contributors"
  6161. }
  6162. ],
  6163. "description": "Converts CSS selectors to XPath expressions",
  6164. "homepage": "https://symfony.com",
  6165. "support": {
  6166. "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
  6167. },
  6168. "funding": [
  6169. {
  6170. "url": "https://symfony.com/sponsor",
  6171. "type": "custom"
  6172. },
  6173. {
  6174. "url": "https://github.com/fabpot",
  6175. "type": "github"
  6176. },
  6177. {
  6178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6179. "type": "tidelift"
  6180. }
  6181. ],
  6182. "time": "2022-06-27T16:58:25+00:00"
  6183. },
  6184. {
  6185. "name": "symfony/deprecation-contracts",
  6186. "version": "v2.5.2",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://github.com/symfony/deprecation-contracts.git",
  6190. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6195. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6196. "shasum": ""
  6197. },
  6198. "require": {
  6199. "php": ">=7.1"
  6200. },
  6201. "type": "library",
  6202. "extra": {
  6203. "branch-alias": {
  6204. "dev-main": "2.5-dev"
  6205. },
  6206. "thanks": {
  6207. "name": "symfony/contracts",
  6208. "url": "https://github.com/symfony/contracts"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "files": [
  6213. "function.php"
  6214. ]
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Nicolas Grekas",
  6223. "email": "p@tchwork.com"
  6224. },
  6225. {
  6226. "name": "Symfony Community",
  6227. "homepage": "https://symfony.com/contributors"
  6228. }
  6229. ],
  6230. "description": "A generic function and convention to trigger deprecation notices",
  6231. "homepage": "https://symfony.com",
  6232. "support": {
  6233. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  6234. },
  6235. "funding": [
  6236. {
  6237. "url": "https://symfony.com/sponsor",
  6238. "type": "custom"
  6239. },
  6240. {
  6241. "url": "https://github.com/fabpot",
  6242. "type": "github"
  6243. },
  6244. {
  6245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6246. "type": "tidelift"
  6247. }
  6248. ],
  6249. "time": "2022-01-02T09:53:40+00:00"
  6250. },
  6251. {
  6252. "name": "symfony/dom-crawler",
  6253. "version": "v5.4.12",
  6254. "source": {
  6255. "type": "git",
  6256. "url": "https://github.com/symfony/dom-crawler.git",
  6257. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f"
  6258. },
  6259. "dist": {
  6260. "type": "zip",
  6261. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291c1e92281a09152dda089f782e23dedd34bd4f",
  6262. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f",
  6263. "shasum": ""
  6264. },
  6265. "require": {
  6266. "php": ">=7.2.5",
  6267. "symfony/deprecation-contracts": "^2.1|^3",
  6268. "symfony/polyfill-ctype": "~1.8",
  6269. "symfony/polyfill-mbstring": "~1.0",
  6270. "symfony/polyfill-php80": "^1.16"
  6271. },
  6272. "conflict": {
  6273. "masterminds/html5": "<2.6"
  6274. },
  6275. "require-dev": {
  6276. "masterminds/html5": "^2.6",
  6277. "symfony/css-selector": "^4.4|^5.0|^6.0"
  6278. },
  6279. "suggest": {
  6280. "symfony/css-selector": ""
  6281. },
  6282. "type": "library",
  6283. "autoload": {
  6284. "psr-4": {
  6285. "Symfony\\Component\\DomCrawler\\": ""
  6286. },
  6287. "exclude-from-classmap": [
  6288. "/Tests/"
  6289. ]
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "MIT"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "Fabien Potencier",
  6298. "email": "fabien@symfony.com"
  6299. },
  6300. {
  6301. "name": "Symfony Community",
  6302. "homepage": "https://symfony.com/contributors"
  6303. }
  6304. ],
  6305. "description": "Eases DOM navigation for HTML and XML documents",
  6306. "homepage": "https://symfony.com",
  6307. "support": {
  6308. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.12"
  6309. },
  6310. "funding": [
  6311. {
  6312. "url": "https://symfony.com/sponsor",
  6313. "type": "custom"
  6314. },
  6315. {
  6316. "url": "https://github.com/fabpot",
  6317. "type": "github"
  6318. },
  6319. {
  6320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6321. "type": "tidelift"
  6322. }
  6323. ],
  6324. "time": "2022-08-03T13:09:21+00:00"
  6325. },
  6326. {
  6327. "name": "symfony/finder",
  6328. "version": "v5.4.11",
  6329. "source": {
  6330. "type": "git",
  6331. "url": "https://github.com/symfony/finder.git",
  6332. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  6333. },
  6334. "dist": {
  6335. "type": "zip",
  6336. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  6337. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  6338. "shasum": ""
  6339. },
  6340. "require": {
  6341. "php": ">=7.2.5",
  6342. "symfony/deprecation-contracts": "^2.1|^3",
  6343. "symfony/polyfill-php80": "^1.16"
  6344. },
  6345. "type": "library",
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Symfony\\Component\\Finder\\": ""
  6349. },
  6350. "exclude-from-classmap": [
  6351. "/Tests/"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Fabien Potencier",
  6361. "email": "fabien@symfony.com"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Finds files and directories via an intuitive fluent interface",
  6369. "homepage": "https://symfony.com",
  6370. "support": {
  6371. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  6372. },
  6373. "funding": [
  6374. {
  6375. "url": "https://symfony.com/sponsor",
  6376. "type": "custom"
  6377. },
  6378. {
  6379. "url": "https://github.com/fabpot",
  6380. "type": "github"
  6381. },
  6382. {
  6383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6384. "type": "tidelift"
  6385. }
  6386. ],
  6387. "time": "2022-07-29T07:37:50+00:00"
  6388. },
  6389. {
  6390. "name": "theseer/tokenizer",
  6391. "version": "1.2.1",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/theseer/tokenizer.git",
  6395. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  6400. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "ext-dom": "*",
  6405. "ext-tokenizer": "*",
  6406. "ext-xmlwriter": "*",
  6407. "php": "^7.2 || ^8.0"
  6408. },
  6409. "type": "library",
  6410. "autoload": {
  6411. "classmap": [
  6412. "src/"
  6413. ]
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "BSD-3-Clause"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Arne Blankerts",
  6422. "email": "arne@blankerts.de",
  6423. "role": "Developer"
  6424. }
  6425. ],
  6426. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6427. "support": {
  6428. "issues": "https://github.com/theseer/tokenizer/issues",
  6429. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  6430. },
  6431. "funding": [
  6432. {
  6433. "url": "https://github.com/theseer",
  6434. "type": "github"
  6435. }
  6436. ],
  6437. "time": "2021-07-28T10:34:58+00:00"
  6438. }
  6439. ],
  6440. "aliases": [],
  6441. "minimum-stability": "stable",
  6442. "stability-flags": [],
  6443. "prefer-stable": false,
  6444. "prefer-lowest": false,
  6445. "platform": {
  6446. "php": "^7.3.6 || ^8.0",
  6447. "ext-json": "*",
  6448. "ext-openssl": "*",
  6449. "ext-curl": "*",
  6450. "ext-zip": "*",
  6451. "ext-dom": "*",
  6452. "ext-libxml": "*",
  6453. "ext-gd": "*"
  6454. },
  6455. "platform-dev": [],
  6456. "platform-overrides": {
  6457. "php": "7.3.6"
  6458. },
  6459. "plugin-api-version": "2.3.0"
  6460. }