composer.lock 236 KB

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