composer.lock 261 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282
  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": "e90ec2d19688682752adf782ffa74e6b",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.3",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  76. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.9.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.3"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://github.com/BenMorel",
  116. "type": "github"
  117. },
  118. {
  119. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  120. "type": "tidelift"
  121. }
  122. ],
  123. "time": "2021-08-15T20:50:18+00:00"
  124. },
  125. {
  126. "name": "doctrine/inflector",
  127. "version": "2.0.6",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/doctrine/inflector.git",
  131. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  136. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": "^7.2 || ^8.0"
  141. },
  142. "require-dev": {
  143. "doctrine/coding-standard": "^10",
  144. "phpstan/phpstan": "^1.8",
  145. "phpstan/phpstan-phpunit": "^1.1",
  146. "phpstan/phpstan-strict-rules": "^1.3",
  147. "phpunit/phpunit": "^8.5 || ^9.5",
  148. "vimeo/psalm": "^4.25"
  149. },
  150. "type": "library",
  151. "autoload": {
  152. "psr-4": {
  153. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Guilherme Blanco",
  163. "email": "guilhermeblanco@gmail.com"
  164. },
  165. {
  166. "name": "Roman Borschel",
  167. "email": "roman@code-factory.org"
  168. },
  169. {
  170. "name": "Benjamin Eberlei",
  171. "email": "kontakt@beberlei.de"
  172. },
  173. {
  174. "name": "Jonathan Wage",
  175. "email": "jonwage@gmail.com"
  176. },
  177. {
  178. "name": "Johannes Schmitt",
  179. "email": "schmittjoh@gmail.com"
  180. }
  181. ],
  182. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  183. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  184. "keywords": [
  185. "inflection",
  186. "inflector",
  187. "lowercase",
  188. "manipulation",
  189. "php",
  190. "plural",
  191. "singular",
  192. "strings",
  193. "uppercase",
  194. "words"
  195. ],
  196. "support": {
  197. "issues": "https://github.com/doctrine/inflector/issues",
  198. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  199. },
  200. "funding": [
  201. {
  202. "url": "https://www.doctrine-project.org/sponsorship.html",
  203. "type": "custom"
  204. },
  205. {
  206. "url": "https://www.patreon.com/phpdoctrine",
  207. "type": "patreon"
  208. },
  209. {
  210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  211. "type": "tidelift"
  212. }
  213. ],
  214. "time": "2022-10-20T09:10:12+00:00"
  215. },
  216. {
  217. "name": "doctrine/lexer",
  218. "version": "1.2.3",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/doctrine/lexer.git",
  222. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  227. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "php": "^7.1 || ^8.0"
  232. },
  233. "require-dev": {
  234. "doctrine/coding-standard": "^9.0",
  235. "phpstan/phpstan": "^1.3",
  236. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.11"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Johannes Schmitt",
  260. "email": "schmittjoh@gmail.com"
  261. }
  262. ],
  263. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  264. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  265. "keywords": [
  266. "annotations",
  267. "docblock",
  268. "lexer",
  269. "parser",
  270. "php"
  271. ],
  272. "support": {
  273. "issues": "https://github.com/doctrine/lexer/issues",
  274. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  275. },
  276. "funding": [
  277. {
  278. "url": "https://www.doctrine-project.org/sponsorship.html",
  279. "type": "custom"
  280. },
  281. {
  282. "url": "https://www.patreon.com/phpdoctrine",
  283. "type": "patreon"
  284. },
  285. {
  286. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  287. "type": "tidelift"
  288. }
  289. ],
  290. "time": "2022-02-28T11:07:21+00:00"
  291. },
  292. {
  293. "name": "dragonmantank/cron-expression",
  294. "version": "v2.3.1",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/dragonmantank/cron-expression.git",
  298. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  303. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "php": "^7.0|^8.0"
  308. },
  309. "require-dev": {
  310. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  311. },
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-master": "2.3-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Cron\\": "src/Cron/"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Michael Dowling",
  330. "email": "mtdowling@gmail.com",
  331. "homepage": "https://github.com/mtdowling"
  332. },
  333. {
  334. "name": "Chris Tankersley",
  335. "email": "chris@ctankersley.com",
  336. "homepage": "https://github.com/dragonmantank"
  337. }
  338. ],
  339. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  340. "keywords": [
  341. "cron",
  342. "schedule"
  343. ],
  344. "support": {
  345. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  346. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  347. },
  348. "funding": [
  349. {
  350. "url": "https://github.com/dragonmantank",
  351. "type": "github"
  352. }
  353. ],
  354. "time": "2020-10-13T00:52:37+00:00"
  355. },
  356. {
  357. "name": "egulias/email-validator",
  358. "version": "2.1.25",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/egulias/EmailValidator.git",
  362. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  367. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "doctrine/lexer": "^1.0.1",
  372. "php": ">=5.5",
  373. "symfony/polyfill-intl-idn": "^1.10"
  374. },
  375. "require-dev": {
  376. "dominicsayers/isemail": "^3.0.7",
  377. "phpunit/phpunit": "^4.8.36|^7.5.15",
  378. "satooshi/php-coveralls": "^1.0.1"
  379. },
  380. "suggest": {
  381. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  382. },
  383. "type": "library",
  384. "extra": {
  385. "branch-alias": {
  386. "dev-master": "2.1.x-dev"
  387. }
  388. },
  389. "autoload": {
  390. "psr-4": {
  391. "Egulias\\EmailValidator\\": "src"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "Eduardo Gulias Davis"
  401. }
  402. ],
  403. "description": "A library for validating emails against several RFCs",
  404. "homepage": "https://github.com/egulias/EmailValidator",
  405. "keywords": [
  406. "email",
  407. "emailvalidation",
  408. "emailvalidator",
  409. "validation",
  410. "validator"
  411. ],
  412. "support": {
  413. "issues": "https://github.com/egulias/EmailValidator/issues",
  414. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  415. },
  416. "funding": [
  417. {
  418. "url": "https://github.com/egulias",
  419. "type": "github"
  420. }
  421. ],
  422. "time": "2020-12-29T14:50:06+00:00"
  423. },
  424. {
  425. "name": "fideloper/proxy",
  426. "version": "4.4.2",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/fideloper/TrustedProxy.git",
  430. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  435. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  436. "shasum": ""
  437. },
  438. "require": {
  439. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  440. "php": ">=5.4.0"
  441. },
  442. "require-dev": {
  443. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  444. "mockery/mockery": "^1.0",
  445. "phpunit/phpunit": "^8.5.8|^9.3.3"
  446. },
  447. "type": "library",
  448. "extra": {
  449. "laravel": {
  450. "providers": [
  451. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  452. ]
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Fideloper\\Proxy\\": "src/"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Chris Fidao",
  467. "email": "fideloper@gmail.com"
  468. }
  469. ],
  470. "description": "Set trusted proxies for Laravel",
  471. "keywords": [
  472. "load balancing",
  473. "proxy",
  474. "trusted proxy"
  475. ],
  476. "support": {
  477. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  478. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  479. },
  480. "time": "2022-02-09T13:33:34+00:00"
  481. },
  482. {
  483. "name": "fruitcake/laravel-cors",
  484. "version": "v2.2.0",
  485. "source": {
  486. "type": "git",
  487. "url": "https://github.com/fruitcake/laravel-cors.git",
  488. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  489. },
  490. "dist": {
  491. "type": "zip",
  492. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  493. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  494. "shasum": ""
  495. },
  496. "require": {
  497. "asm89/stack-cors": "^2.0.1",
  498. "illuminate/contracts": "^6|^7|^8|^9",
  499. "illuminate/support": "^6|^7|^8|^9",
  500. "php": ">=7.2"
  501. },
  502. "require-dev": {
  503. "laravel/framework": "^6|^7.24|^8",
  504. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  505. "phpunit/phpunit": "^6|^7|^8|^9",
  506. "squizlabs/php_codesniffer": "^3.5"
  507. },
  508. "type": "library",
  509. "extra": {
  510. "branch-alias": {
  511. "dev-master": "2.1-dev"
  512. },
  513. "laravel": {
  514. "providers": [
  515. "Fruitcake\\Cors\\CorsServiceProvider"
  516. ]
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Fruitcake\\Cors\\": "src/"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Fruitcake",
  531. "homepage": "https://fruitcake.nl"
  532. },
  533. {
  534. "name": "Barry vd. Heuvel",
  535. "email": "barryvdh@gmail.com"
  536. }
  537. ],
  538. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  539. "keywords": [
  540. "api",
  541. "cors",
  542. "crossdomain",
  543. "laravel"
  544. ],
  545. "support": {
  546. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  547. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  548. },
  549. "funding": [
  550. {
  551. "url": "https://fruitcake.nl",
  552. "type": "custom"
  553. },
  554. {
  555. "url": "https://github.com/barryvdh",
  556. "type": "github"
  557. }
  558. ],
  559. "abandoned": true,
  560. "time": "2022-02-23T14:25:13+00:00"
  561. },
  562. {
  563. "name": "guzzlehttp/guzzle",
  564. "version": "7.5.0",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/guzzle/guzzle.git",
  568. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  573. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "ext-json": "*",
  578. "guzzlehttp/promises": "^1.5",
  579. "guzzlehttp/psr7": "^1.9 || ^2.4",
  580. "php": "^7.2.5 || ^8.0",
  581. "psr/http-client": "^1.0",
  582. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  583. },
  584. "provide": {
  585. "psr/http-client-implementation": "1.0"
  586. },
  587. "require-dev": {
  588. "bamarni/composer-bin-plugin": "^1.8.1",
  589. "ext-curl": "*",
  590. "php-http/client-integration-tests": "^3.0",
  591. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  592. "psr/log": "^1.1 || ^2.0 || ^3.0"
  593. },
  594. "suggest": {
  595. "ext-curl": "Required for CURL handler support",
  596. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  597. "psr/log": "Required for using the Log middleware"
  598. },
  599. "type": "library",
  600. "extra": {
  601. "bamarni-bin": {
  602. "bin-links": true,
  603. "forward-command": false
  604. },
  605. "branch-alias": {
  606. "dev-master": "7.5-dev"
  607. }
  608. },
  609. "autoload": {
  610. "files": [
  611. "src/functions_include.php"
  612. ],
  613. "psr-4": {
  614. "GuzzleHttp\\": "src/"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "authors": [
  622. {
  623. "name": "Graham Campbell",
  624. "email": "hello@gjcampbell.co.uk",
  625. "homepage": "https://github.com/GrahamCampbell"
  626. },
  627. {
  628. "name": "Michael Dowling",
  629. "email": "mtdowling@gmail.com",
  630. "homepage": "https://github.com/mtdowling"
  631. },
  632. {
  633. "name": "Jeremy Lindblom",
  634. "email": "jeremeamia@gmail.com",
  635. "homepage": "https://github.com/jeremeamia"
  636. },
  637. {
  638. "name": "George Mponos",
  639. "email": "gmponos@gmail.com",
  640. "homepage": "https://github.com/gmponos"
  641. },
  642. {
  643. "name": "Tobias Nyholm",
  644. "email": "tobias.nyholm@gmail.com",
  645. "homepage": "https://github.com/Nyholm"
  646. },
  647. {
  648. "name": "Márk Sági-Kazár",
  649. "email": "mark.sagikazar@gmail.com",
  650. "homepage": "https://github.com/sagikazarmark"
  651. },
  652. {
  653. "name": "Tobias Schultze",
  654. "email": "webmaster@tubo-world.de",
  655. "homepage": "https://github.com/Tobion"
  656. }
  657. ],
  658. "description": "Guzzle is a PHP HTTP client library",
  659. "keywords": [
  660. "client",
  661. "curl",
  662. "framework",
  663. "http",
  664. "http client",
  665. "psr-18",
  666. "psr-7",
  667. "rest",
  668. "web service"
  669. ],
  670. "support": {
  671. "issues": "https://github.com/guzzle/guzzle/issues",
  672. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  673. },
  674. "funding": [
  675. {
  676. "url": "https://github.com/GrahamCampbell",
  677. "type": "github"
  678. },
  679. {
  680. "url": "https://github.com/Nyholm",
  681. "type": "github"
  682. },
  683. {
  684. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  685. "type": "tidelift"
  686. }
  687. ],
  688. "time": "2022-08-28T15:39:27+00:00"
  689. },
  690. {
  691. "name": "guzzlehttp/promises",
  692. "version": "1.5.2",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/guzzle/promises.git",
  696. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  701. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "php": ">=5.5"
  706. },
  707. "require-dev": {
  708. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  709. },
  710. "type": "library",
  711. "extra": {
  712. "branch-alias": {
  713. "dev-master": "1.5-dev"
  714. }
  715. },
  716. "autoload": {
  717. "files": [
  718. "src/functions_include.php"
  719. ],
  720. "psr-4": {
  721. "GuzzleHttp\\Promise\\": "src/"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "authors": [
  729. {
  730. "name": "Graham Campbell",
  731. "email": "hello@gjcampbell.co.uk",
  732. "homepage": "https://github.com/GrahamCampbell"
  733. },
  734. {
  735. "name": "Michael Dowling",
  736. "email": "mtdowling@gmail.com",
  737. "homepage": "https://github.com/mtdowling"
  738. },
  739. {
  740. "name": "Tobias Nyholm",
  741. "email": "tobias.nyholm@gmail.com",
  742. "homepage": "https://github.com/Nyholm"
  743. },
  744. {
  745. "name": "Tobias Schultze",
  746. "email": "webmaster@tubo-world.de",
  747. "homepage": "https://github.com/Tobion"
  748. }
  749. ],
  750. "description": "Guzzle promises library",
  751. "keywords": [
  752. "promise"
  753. ],
  754. "support": {
  755. "issues": "https://github.com/guzzle/promises/issues",
  756. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  757. },
  758. "funding": [
  759. {
  760. "url": "https://github.com/GrahamCampbell",
  761. "type": "github"
  762. },
  763. {
  764. "url": "https://github.com/Nyholm",
  765. "type": "github"
  766. },
  767. {
  768. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  769. "type": "tidelift"
  770. }
  771. ],
  772. "time": "2022-08-28T14:55:35+00:00"
  773. },
  774. {
  775. "name": "guzzlehttp/psr7",
  776. "version": "2.4.4",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/guzzle/psr7.git",
  780. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  785. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "php": "^7.2.5 || ^8.0",
  790. "psr/http-factory": "^1.0",
  791. "psr/http-message": "^1.0",
  792. "ralouphie/getallheaders": "^3.0"
  793. },
  794. "provide": {
  795. "psr/http-factory-implementation": "1.0",
  796. "psr/http-message-implementation": "1.0"
  797. },
  798. "require-dev": {
  799. "bamarni/composer-bin-plugin": "^1.8.1",
  800. "http-interop/http-factory-tests": "^0.9",
  801. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  802. },
  803. "suggest": {
  804. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  805. },
  806. "type": "library",
  807. "extra": {
  808. "bamarni-bin": {
  809. "bin-links": true,
  810. "forward-command": false
  811. },
  812. "branch-alias": {
  813. "dev-master": "2.4-dev"
  814. }
  815. },
  816. "autoload": {
  817. "psr-4": {
  818. "GuzzleHttp\\Psr7\\": "src/"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Graham Campbell",
  828. "email": "hello@gjcampbell.co.uk",
  829. "homepage": "https://github.com/GrahamCampbell"
  830. },
  831. {
  832. "name": "Michael Dowling",
  833. "email": "mtdowling@gmail.com",
  834. "homepage": "https://github.com/mtdowling"
  835. },
  836. {
  837. "name": "George Mponos",
  838. "email": "gmponos@gmail.com",
  839. "homepage": "https://github.com/gmponos"
  840. },
  841. {
  842. "name": "Tobias Nyholm",
  843. "email": "tobias.nyholm@gmail.com",
  844. "homepage": "https://github.com/Nyholm"
  845. },
  846. {
  847. "name": "Márk Sági-Kazár",
  848. "email": "mark.sagikazar@gmail.com",
  849. "homepage": "https://github.com/sagikazarmark"
  850. },
  851. {
  852. "name": "Tobias Schultze",
  853. "email": "webmaster@tubo-world.de",
  854. "homepage": "https://github.com/Tobion"
  855. },
  856. {
  857. "name": "Márk Sági-Kazár",
  858. "email": "mark.sagikazar@gmail.com",
  859. "homepage": "https://sagikazarmark.hu"
  860. }
  861. ],
  862. "description": "PSR-7 message implementation that also provides common utility methods",
  863. "keywords": [
  864. "http",
  865. "message",
  866. "psr-7",
  867. "request",
  868. "response",
  869. "stream",
  870. "uri",
  871. "url"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/guzzle/psr7/issues",
  875. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  876. },
  877. "funding": [
  878. {
  879. "url": "https://github.com/GrahamCampbell",
  880. "type": "github"
  881. },
  882. {
  883. "url": "https://github.com/Nyholm",
  884. "type": "github"
  885. },
  886. {
  887. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  888. "type": "tidelift"
  889. }
  890. ],
  891. "time": "2023-03-09T13:19:02+00:00"
  892. },
  893. {
  894. "name": "laravel/framework",
  895. "version": "v7.30.6",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/laravel/framework.git",
  899. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  904. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "doctrine/inflector": "^1.4|^2.0",
  909. "dragonmantank/cron-expression": "^2.3.1",
  910. "egulias/email-validator": "^2.1.10",
  911. "ext-json": "*",
  912. "ext-mbstring": "*",
  913. "ext-openssl": "*",
  914. "league/commonmark": "^1.3",
  915. "league/flysystem": "^1.1",
  916. "monolog/monolog": "^2.0",
  917. "nesbot/carbon": "^2.31",
  918. "opis/closure": "^3.6",
  919. "php": "^7.2.5|^8.0",
  920. "psr/container": "^1.0",
  921. "psr/simple-cache": "^1.0",
  922. "ramsey/uuid": "^3.7|^4.0",
  923. "swiftmailer/swiftmailer": "^6.0",
  924. "symfony/console": "^5.0",
  925. "symfony/error-handler": "^5.0",
  926. "symfony/finder": "^5.0",
  927. "symfony/http-foundation": "^5.0",
  928. "symfony/http-kernel": "^5.0",
  929. "symfony/mime": "^5.0",
  930. "symfony/polyfill-php73": "^1.17",
  931. "symfony/process": "^5.0",
  932. "symfony/routing": "^5.0",
  933. "symfony/var-dumper": "^5.0",
  934. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  935. "vlucas/phpdotenv": "^4.0",
  936. "voku/portable-ascii": "^1.4.8"
  937. },
  938. "conflict": {
  939. "tightenco/collect": "<5.5.33"
  940. },
  941. "provide": {
  942. "psr/container-implementation": "1.0"
  943. },
  944. "replace": {
  945. "illuminate/auth": "self.version",
  946. "illuminate/broadcasting": "self.version",
  947. "illuminate/bus": "self.version",
  948. "illuminate/cache": "self.version",
  949. "illuminate/config": "self.version",
  950. "illuminate/console": "self.version",
  951. "illuminate/container": "self.version",
  952. "illuminate/contracts": "self.version",
  953. "illuminate/cookie": "self.version",
  954. "illuminate/database": "self.version",
  955. "illuminate/encryption": "self.version",
  956. "illuminate/events": "self.version",
  957. "illuminate/filesystem": "self.version",
  958. "illuminate/hashing": "self.version",
  959. "illuminate/http": "self.version",
  960. "illuminate/log": "self.version",
  961. "illuminate/mail": "self.version",
  962. "illuminate/notifications": "self.version",
  963. "illuminate/pagination": "self.version",
  964. "illuminate/pipeline": "self.version",
  965. "illuminate/queue": "self.version",
  966. "illuminate/redis": "self.version",
  967. "illuminate/routing": "self.version",
  968. "illuminate/session": "self.version",
  969. "illuminate/support": "self.version",
  970. "illuminate/testing": "self.version",
  971. "illuminate/translation": "self.version",
  972. "illuminate/validation": "self.version",
  973. "illuminate/view": "self.version"
  974. },
  975. "require-dev": {
  976. "aws/aws-sdk-php": "^3.155",
  977. "doctrine/dbal": "^2.6",
  978. "filp/whoops": "^2.8",
  979. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  980. "league/flysystem-cached-adapter": "^1.0",
  981. "mockery/mockery": "~1.3.3|^1.4.2",
  982. "moontoast/math": "^1.1",
  983. "orchestra/testbench-core": "^5.8",
  984. "pda/pheanstalk": "^4.0",
  985. "phpunit/phpunit": "^8.4|^9.3.3",
  986. "predis/predis": "^1.1.1",
  987. "symfony/cache": "^5.0"
  988. },
  989. "suggest": {
  990. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  991. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  992. "ext-ftp": "Required to use the Flysystem FTP driver.",
  993. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  994. "ext-memcached": "Required to use the memcache cache driver.",
  995. "ext-pcntl": "Required to use all features of the queue worker.",
  996. "ext-posix": "Required to use all features of the queue worker.",
  997. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  998. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  999. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1000. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1001. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1002. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1003. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1004. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1005. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1006. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1007. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1008. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1009. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1010. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1011. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1012. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1013. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1014. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1015. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1016. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1017. },
  1018. "type": "library",
  1019. "extra": {
  1020. "branch-alias": {
  1021. "dev-master": "7.x-dev"
  1022. }
  1023. },
  1024. "autoload": {
  1025. "files": [
  1026. "src/Illuminate/Foundation/helpers.php",
  1027. "src/Illuminate/Support/helpers.php"
  1028. ],
  1029. "psr-4": {
  1030. "Illuminate\\": "src/Illuminate/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Taylor Otwell",
  1040. "email": "taylor@laravel.com"
  1041. }
  1042. ],
  1043. "description": "The Laravel Framework.",
  1044. "homepage": "https://laravel.com",
  1045. "keywords": [
  1046. "framework",
  1047. "laravel"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/laravel/framework/issues",
  1051. "source": "https://github.com/laravel/framework"
  1052. },
  1053. "time": "2021-12-07T14:56:47+00:00"
  1054. },
  1055. {
  1056. "name": "laravel/tinker",
  1057. "version": "v2.8.1",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/laravel/tinker.git",
  1061. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1066. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1071. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1072. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1073. "php": "^7.2.5|^8.0",
  1074. "psy/psysh": "^0.10.4|^0.11.1",
  1075. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1076. },
  1077. "require-dev": {
  1078. "mockery/mockery": "~1.3.3|^1.4.2",
  1079. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1080. },
  1081. "suggest": {
  1082. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1083. },
  1084. "type": "library",
  1085. "extra": {
  1086. "branch-alias": {
  1087. "dev-master": "2.x-dev"
  1088. },
  1089. "laravel": {
  1090. "providers": [
  1091. "Laravel\\Tinker\\TinkerServiceProvider"
  1092. ]
  1093. }
  1094. },
  1095. "autoload": {
  1096. "psr-4": {
  1097. "Laravel\\Tinker\\": "src/"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Taylor Otwell",
  1107. "email": "taylor@laravel.com"
  1108. }
  1109. ],
  1110. "description": "Powerful REPL for the Laravel framework.",
  1111. "keywords": [
  1112. "REPL",
  1113. "Tinker",
  1114. "laravel",
  1115. "psysh"
  1116. ],
  1117. "support": {
  1118. "issues": "https://github.com/laravel/tinker/issues",
  1119. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1120. },
  1121. "time": "2023-02-15T16:40:09+00:00"
  1122. },
  1123. {
  1124. "name": "laravel/ui",
  1125. "version": "v2.5.0",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/laravel/ui.git",
  1129. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  1134. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "illuminate/console": "^7.0",
  1139. "illuminate/filesystem": "^7.0",
  1140. "illuminate/support": "^7.0",
  1141. "php": "^7.2.5|^8.0"
  1142. },
  1143. "type": "library",
  1144. "extra": {
  1145. "laravel": {
  1146. "providers": [
  1147. "Laravel\\Ui\\UiServiceProvider"
  1148. ]
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Laravel\\Ui\\": "src/",
  1154. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Taylor Otwell",
  1164. "email": "taylor@laravel.com"
  1165. }
  1166. ],
  1167. "description": "Laravel UI utilities and presets.",
  1168. "keywords": [
  1169. "laravel",
  1170. "ui"
  1171. ],
  1172. "support": {
  1173. "issues": "https://github.com/laravel/ui/issues",
  1174. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  1175. },
  1176. "time": "2020-11-03T19:45:19+00:00"
  1177. },
  1178. {
  1179. "name": "laravelcollective/html",
  1180. "version": "v6.4.0",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/LaravelCollective/html.git",
  1184. "reference": "ac74f580459a5120079b8def0404e5d312a09504"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/LaravelCollective/html/zipball/ac74f580459a5120079b8def0404e5d312a09504",
  1189. "reference": "ac74f580459a5120079b8def0404e5d312a09504",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1194. "illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1195. "illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1196. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1197. "illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1198. "php": ">=7.2.5"
  1199. },
  1200. "require-dev": {
  1201. "illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1202. "mockery/mockery": "~1.0",
  1203. "phpunit/phpunit": "~8.5|^9.5.10"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "6.x-dev"
  1209. },
  1210. "laravel": {
  1211. "providers": [
  1212. "Collective\\Html\\HtmlServiceProvider"
  1213. ],
  1214. "aliases": {
  1215. "Form": "Collective\\Html\\FormFacade",
  1216. "Html": "Collective\\Html\\HtmlFacade"
  1217. }
  1218. }
  1219. },
  1220. "autoload": {
  1221. "files": [
  1222. "src/helpers.php"
  1223. ],
  1224. "psr-4": {
  1225. "Collective\\Html\\": "src/"
  1226. }
  1227. },
  1228. "notification-url": "https://packagist.org/downloads/",
  1229. "license": [
  1230. "MIT"
  1231. ],
  1232. "authors": [
  1233. {
  1234. "name": "Adam Engebretson",
  1235. "email": "adam@laravelcollective.com"
  1236. },
  1237. {
  1238. "name": "Taylor Otwell",
  1239. "email": "taylorotwell@gmail.com"
  1240. }
  1241. ],
  1242. "description": "HTML and Form Builders for the Laravel Framework",
  1243. "homepage": "https://laravelcollective.com",
  1244. "support": {
  1245. "issues": "https://github.com/LaravelCollective/html/issues",
  1246. "source": "https://github.com/LaravelCollective/html"
  1247. },
  1248. "time": "2023-02-13T18:15:35+00:00"
  1249. },
  1250. {
  1251. "name": "league/commonmark",
  1252. "version": "1.6.7",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/thephpleague/commonmark.git",
  1256. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1261. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1262. "shasum": ""
  1263. },
  1264. "require": {
  1265. "ext-mbstring": "*",
  1266. "php": "^7.1 || ^8.0"
  1267. },
  1268. "conflict": {
  1269. "scrutinizer/ocular": "1.7.*"
  1270. },
  1271. "require-dev": {
  1272. "cebe/markdown": "~1.0",
  1273. "commonmark/commonmark.js": "0.29.2",
  1274. "erusev/parsedown": "~1.0",
  1275. "ext-json": "*",
  1276. "github/gfm": "0.29.0",
  1277. "michelf/php-markdown": "~1.4",
  1278. "mikehaertl/php-shellcommand": "^1.4",
  1279. "phpstan/phpstan": "^0.12.90",
  1280. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1281. "scrutinizer/ocular": "^1.5",
  1282. "symfony/finder": "^4.2"
  1283. },
  1284. "bin": [
  1285. "bin/commonmark"
  1286. ],
  1287. "type": "library",
  1288. "autoload": {
  1289. "psr-4": {
  1290. "League\\CommonMark\\": "src"
  1291. }
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "BSD-3-Clause"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Colin O'Dell",
  1300. "email": "colinodell@gmail.com",
  1301. "homepage": "https://www.colinodell.com",
  1302. "role": "Lead Developer"
  1303. }
  1304. ],
  1305. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1306. "homepage": "https://commonmark.thephpleague.com",
  1307. "keywords": [
  1308. "commonmark",
  1309. "flavored",
  1310. "gfm",
  1311. "github",
  1312. "github-flavored",
  1313. "markdown",
  1314. "md",
  1315. "parser"
  1316. ],
  1317. "support": {
  1318. "docs": "https://commonmark.thephpleague.com/",
  1319. "issues": "https://github.com/thephpleague/commonmark/issues",
  1320. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1321. "source": "https://github.com/thephpleague/commonmark"
  1322. },
  1323. "funding": [
  1324. {
  1325. "url": "https://www.colinodell.com/sponsor",
  1326. "type": "custom"
  1327. },
  1328. {
  1329. "url": "https://www.paypal.me/colinpodell/10.00",
  1330. "type": "custom"
  1331. },
  1332. {
  1333. "url": "https://github.com/colinodell",
  1334. "type": "github"
  1335. },
  1336. {
  1337. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1338. "type": "tidelift"
  1339. }
  1340. ],
  1341. "time": "2022-01-13T17:18:13+00:00"
  1342. },
  1343. {
  1344. "name": "league/flysystem",
  1345. "version": "1.1.10",
  1346. "source": {
  1347. "type": "git",
  1348. "url": "https://github.com/thephpleague/flysystem.git",
  1349. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1350. },
  1351. "dist": {
  1352. "type": "zip",
  1353. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1354. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1355. "shasum": ""
  1356. },
  1357. "require": {
  1358. "ext-fileinfo": "*",
  1359. "league/mime-type-detection": "^1.3",
  1360. "php": "^7.2.5 || ^8.0"
  1361. },
  1362. "conflict": {
  1363. "league/flysystem-sftp": "<1.0.6"
  1364. },
  1365. "require-dev": {
  1366. "phpspec/prophecy": "^1.11.1",
  1367. "phpunit/phpunit": "^8.5.8"
  1368. },
  1369. "suggest": {
  1370. "ext-ftp": "Allows you to use FTP server storage",
  1371. "ext-openssl": "Allows you to use FTPS server storage",
  1372. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1373. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1374. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1375. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1376. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1377. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1378. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1379. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1380. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1381. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1382. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1383. },
  1384. "type": "library",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-master": "1.1-dev"
  1388. }
  1389. },
  1390. "autoload": {
  1391. "psr-4": {
  1392. "League\\Flysystem\\": "src/"
  1393. }
  1394. },
  1395. "notification-url": "https://packagist.org/downloads/",
  1396. "license": [
  1397. "MIT"
  1398. ],
  1399. "authors": [
  1400. {
  1401. "name": "Frank de Jonge",
  1402. "email": "info@frenky.net"
  1403. }
  1404. ],
  1405. "description": "Filesystem abstraction: Many filesystems, one API.",
  1406. "keywords": [
  1407. "Cloud Files",
  1408. "WebDAV",
  1409. "abstraction",
  1410. "aws",
  1411. "cloud",
  1412. "copy.com",
  1413. "dropbox",
  1414. "file systems",
  1415. "files",
  1416. "filesystem",
  1417. "filesystems",
  1418. "ftp",
  1419. "rackspace",
  1420. "remote",
  1421. "s3",
  1422. "sftp",
  1423. "storage"
  1424. ],
  1425. "support": {
  1426. "issues": "https://github.com/thephpleague/flysystem/issues",
  1427. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1428. },
  1429. "funding": [
  1430. {
  1431. "url": "https://offset.earth/frankdejonge",
  1432. "type": "other"
  1433. }
  1434. ],
  1435. "time": "2022-10-04T09:16:37+00:00"
  1436. },
  1437. {
  1438. "name": "league/mime-type-detection",
  1439. "version": "1.11.0",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1443. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1448. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "ext-fileinfo": "*",
  1453. "php": "^7.2 || ^8.0"
  1454. },
  1455. "require-dev": {
  1456. "friendsofphp/php-cs-fixer": "^3.2",
  1457. "phpstan/phpstan": "^0.12.68",
  1458. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1459. },
  1460. "type": "library",
  1461. "autoload": {
  1462. "psr-4": {
  1463. "League\\MimeTypeDetection\\": "src"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Frank de Jonge",
  1473. "email": "info@frankdejonge.nl"
  1474. }
  1475. ],
  1476. "description": "Mime-type detection for Flysystem",
  1477. "support": {
  1478. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1479. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/frankdejonge",
  1484. "type": "github"
  1485. },
  1486. {
  1487. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1488. "type": "tidelift"
  1489. }
  1490. ],
  1491. "time": "2022-04-17T13:12:02+00:00"
  1492. },
  1493. {
  1494. "name": "monolog/monolog",
  1495. "version": "2.9.1",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/Seldaek/monolog.git",
  1499. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1504. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1505. "shasum": ""
  1506. },
  1507. "require": {
  1508. "php": ">=7.2",
  1509. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1510. },
  1511. "provide": {
  1512. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1513. },
  1514. "require-dev": {
  1515. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1516. "doctrine/couchdb": "~1.0@dev",
  1517. "elasticsearch/elasticsearch": "^7 || ^8",
  1518. "ext-json": "*",
  1519. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1520. "guzzlehttp/guzzle": "^7.4",
  1521. "guzzlehttp/psr7": "^2.2",
  1522. "mongodb/mongodb": "^1.8",
  1523. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1524. "phpspec/prophecy": "^1.15",
  1525. "phpstan/phpstan": "^0.12.91",
  1526. "phpunit/phpunit": "^8.5.14",
  1527. "predis/predis": "^1.1 || ^2.0",
  1528. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1529. "ruflin/elastica": "^7",
  1530. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1531. "symfony/mailer": "^5.4 || ^6",
  1532. "symfony/mime": "^5.4 || ^6"
  1533. },
  1534. "suggest": {
  1535. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1536. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1537. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1538. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1539. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1540. "ext-mbstring": "Allow to work properly with unicode symbols",
  1541. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1542. "ext-openssl": "Required to send log messages using SSL",
  1543. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1544. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1545. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1546. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1547. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1548. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1549. },
  1550. "type": "library",
  1551. "extra": {
  1552. "branch-alias": {
  1553. "dev-main": "2.x-dev"
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-4": {
  1558. "Monolog\\": "src/Monolog"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "MIT"
  1564. ],
  1565. "authors": [
  1566. {
  1567. "name": "Jordi Boggiano",
  1568. "email": "j.boggiano@seld.be",
  1569. "homepage": "https://seld.be"
  1570. }
  1571. ],
  1572. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1573. "homepage": "https://github.com/Seldaek/monolog",
  1574. "keywords": [
  1575. "log",
  1576. "logging",
  1577. "psr-3"
  1578. ],
  1579. "support": {
  1580. "issues": "https://github.com/Seldaek/monolog/issues",
  1581. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://github.com/Seldaek",
  1586. "type": "github"
  1587. },
  1588. {
  1589. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1590. "type": "tidelift"
  1591. }
  1592. ],
  1593. "time": "2023-02-06T13:44:46+00:00"
  1594. },
  1595. {
  1596. "name": "nesbot/carbon",
  1597. "version": "2.66.0",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/briannesbitt/Carbon.git",
  1601. "reference": "496712849902241f04902033b0441b269effe001"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1606. "reference": "496712849902241f04902033b0441b269effe001",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "ext-json": "*",
  1611. "php": "^7.1.8 || ^8.0",
  1612. "symfony/polyfill-mbstring": "^1.0",
  1613. "symfony/polyfill-php80": "^1.16",
  1614. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1615. },
  1616. "require-dev": {
  1617. "doctrine/dbal": "^2.0 || ^3.1.4",
  1618. "doctrine/orm": "^2.7",
  1619. "friendsofphp/php-cs-fixer": "^3.0",
  1620. "kylekatarnls/multi-tester": "^2.0",
  1621. "ondrejmirtes/better-reflection": "*",
  1622. "phpmd/phpmd": "^2.9",
  1623. "phpstan/extension-installer": "^1.0",
  1624. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1625. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1626. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1627. "squizlabs/php_codesniffer": "^3.4"
  1628. },
  1629. "bin": [
  1630. "bin/carbon"
  1631. ],
  1632. "type": "library",
  1633. "extra": {
  1634. "branch-alias": {
  1635. "dev-3.x": "3.x-dev",
  1636. "dev-master": "2.x-dev"
  1637. },
  1638. "laravel": {
  1639. "providers": [
  1640. "Carbon\\Laravel\\ServiceProvider"
  1641. ]
  1642. },
  1643. "phpstan": {
  1644. "includes": [
  1645. "extension.neon"
  1646. ]
  1647. }
  1648. },
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Carbon\\": "src/Carbon/"
  1652. }
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Brian Nesbitt",
  1661. "email": "brian@nesbot.com",
  1662. "homepage": "https://markido.com"
  1663. },
  1664. {
  1665. "name": "kylekatarnls",
  1666. "homepage": "https://github.com/kylekatarnls"
  1667. }
  1668. ],
  1669. "description": "An API extension for DateTime that supports 281 different languages.",
  1670. "homepage": "https://carbon.nesbot.com",
  1671. "keywords": [
  1672. "date",
  1673. "datetime",
  1674. "time"
  1675. ],
  1676. "support": {
  1677. "docs": "https://carbon.nesbot.com/docs",
  1678. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1679. "source": "https://github.com/briannesbitt/Carbon"
  1680. },
  1681. "funding": [
  1682. {
  1683. "url": "https://github.com/sponsors/kylekatarnls",
  1684. "type": "github"
  1685. },
  1686. {
  1687. "url": "https://opencollective.com/Carbon#sponsor",
  1688. "type": "opencollective"
  1689. },
  1690. {
  1691. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1692. "type": "tidelift"
  1693. }
  1694. ],
  1695. "time": "2023-01-29T18:53:47+00:00"
  1696. },
  1697. {
  1698. "name": "nikic/php-parser",
  1699. "version": "v4.15.4",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/nikic/PHP-Parser.git",
  1703. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1708. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1709. "shasum": ""
  1710. },
  1711. "require": {
  1712. "ext-tokenizer": "*",
  1713. "php": ">=7.0"
  1714. },
  1715. "require-dev": {
  1716. "ircmaxell/php-yacc": "^0.0.7",
  1717. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1718. },
  1719. "bin": [
  1720. "bin/php-parse"
  1721. ],
  1722. "type": "library",
  1723. "extra": {
  1724. "branch-alias": {
  1725. "dev-master": "4.9-dev"
  1726. }
  1727. },
  1728. "autoload": {
  1729. "psr-4": {
  1730. "PhpParser\\": "lib/PhpParser"
  1731. }
  1732. },
  1733. "notification-url": "https://packagist.org/downloads/",
  1734. "license": [
  1735. "BSD-3-Clause"
  1736. ],
  1737. "authors": [
  1738. {
  1739. "name": "Nikita Popov"
  1740. }
  1741. ],
  1742. "description": "A PHP parser written in PHP",
  1743. "keywords": [
  1744. "parser",
  1745. "php"
  1746. ],
  1747. "support": {
  1748. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1749. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  1750. },
  1751. "time": "2023-03-05T19:49:14+00:00"
  1752. },
  1753. {
  1754. "name": "opis/closure",
  1755. "version": "3.6.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/opis/closure.git",
  1759. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1764. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^5.4 || ^7.0 || ^8.0"
  1769. },
  1770. "require-dev": {
  1771. "jeremeamia/superclosure": "^2.0",
  1772. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1773. },
  1774. "type": "library",
  1775. "extra": {
  1776. "branch-alias": {
  1777. "dev-master": "3.6.x-dev"
  1778. }
  1779. },
  1780. "autoload": {
  1781. "files": [
  1782. "functions.php"
  1783. ],
  1784. "psr-4": {
  1785. "Opis\\Closure\\": "src/"
  1786. }
  1787. },
  1788. "notification-url": "https://packagist.org/downloads/",
  1789. "license": [
  1790. "MIT"
  1791. ],
  1792. "authors": [
  1793. {
  1794. "name": "Marius Sarca",
  1795. "email": "marius.sarca@gmail.com"
  1796. },
  1797. {
  1798. "name": "Sorin Sarca",
  1799. "email": "sarca_sorin@hotmail.com"
  1800. }
  1801. ],
  1802. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1803. "homepage": "https://opis.io/closure",
  1804. "keywords": [
  1805. "anonymous functions",
  1806. "closure",
  1807. "function",
  1808. "serializable",
  1809. "serialization",
  1810. "serialize"
  1811. ],
  1812. "support": {
  1813. "issues": "https://github.com/opis/closure/issues",
  1814. "source": "https://github.com/opis/closure/tree/3.6.3"
  1815. },
  1816. "time": "2022-01-27T09:35:39+00:00"
  1817. },
  1818. {
  1819. "name": "phpoption/phpoption",
  1820. "version": "1.9.1",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/schmittjoh/php-option.git",
  1824. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  1829. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": "^7.2.5 || ^8.0"
  1834. },
  1835. "require-dev": {
  1836. "bamarni/composer-bin-plugin": "^1.8.2",
  1837. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1838. },
  1839. "type": "library",
  1840. "extra": {
  1841. "bamarni-bin": {
  1842. "bin-links": true,
  1843. "forward-command": true
  1844. },
  1845. "branch-alias": {
  1846. "dev-master": "1.9-dev"
  1847. }
  1848. },
  1849. "autoload": {
  1850. "psr-4": {
  1851. "PhpOption\\": "src/PhpOption/"
  1852. }
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "Apache-2.0"
  1857. ],
  1858. "authors": [
  1859. {
  1860. "name": "Johannes M. Schmitt",
  1861. "email": "schmittjoh@gmail.com",
  1862. "homepage": "https://github.com/schmittjoh"
  1863. },
  1864. {
  1865. "name": "Graham Campbell",
  1866. "email": "hello@gjcampbell.co.uk",
  1867. "homepage": "https://github.com/GrahamCampbell"
  1868. }
  1869. ],
  1870. "description": "Option Type for PHP",
  1871. "keywords": [
  1872. "language",
  1873. "option",
  1874. "php",
  1875. "type"
  1876. ],
  1877. "support": {
  1878. "issues": "https://github.com/schmittjoh/php-option/issues",
  1879. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  1880. },
  1881. "funding": [
  1882. {
  1883. "url": "https://github.com/GrahamCampbell",
  1884. "type": "github"
  1885. },
  1886. {
  1887. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1888. "type": "tidelift"
  1889. }
  1890. ],
  1891. "time": "2023-02-25T19:38:58+00:00"
  1892. },
  1893. {
  1894. "name": "psr/container",
  1895. "version": "1.1.2",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/php-fig/container.git",
  1899. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1904. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "php": ">=7.4.0"
  1909. },
  1910. "type": "library",
  1911. "autoload": {
  1912. "psr-4": {
  1913. "Psr\\Container\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "PHP-FIG",
  1923. "homepage": "https://www.php-fig.org/"
  1924. }
  1925. ],
  1926. "description": "Common Container Interface (PHP FIG PSR-11)",
  1927. "homepage": "https://github.com/php-fig/container",
  1928. "keywords": [
  1929. "PSR-11",
  1930. "container",
  1931. "container-interface",
  1932. "container-interop",
  1933. "psr"
  1934. ],
  1935. "support": {
  1936. "issues": "https://github.com/php-fig/container/issues",
  1937. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1938. },
  1939. "time": "2021-11-05T16:50:12+00:00"
  1940. },
  1941. {
  1942. "name": "psr/event-dispatcher",
  1943. "version": "1.0.0",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/php-fig/event-dispatcher.git",
  1947. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1952. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "php": ">=7.2.0"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "1.0.x-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "Psr\\EventDispatcher\\": "src/"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "PHP-FIG",
  1976. "homepage": "http://www.php-fig.org/"
  1977. }
  1978. ],
  1979. "description": "Standard interfaces for event handling.",
  1980. "keywords": [
  1981. "events",
  1982. "psr",
  1983. "psr-14"
  1984. ],
  1985. "support": {
  1986. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1987. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1988. },
  1989. "time": "2019-01-08T18:20:26+00:00"
  1990. },
  1991. {
  1992. "name": "psr/http-client",
  1993. "version": "1.0.1",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/php-fig/http-client.git",
  1997. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2002. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": "^7.0 || ^8.0",
  2007. "psr/http-message": "^1.0"
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "branch-alias": {
  2012. "dev-master": "1.0.x-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Psr\\Http\\Client\\": "src/"
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "PHP-FIG",
  2027. "homepage": "http://www.php-fig.org/"
  2028. }
  2029. ],
  2030. "description": "Common interface for HTTP clients",
  2031. "homepage": "https://github.com/php-fig/http-client",
  2032. "keywords": [
  2033. "http",
  2034. "http-client",
  2035. "psr",
  2036. "psr-18"
  2037. ],
  2038. "support": {
  2039. "source": "https://github.com/php-fig/http-client/tree/master"
  2040. },
  2041. "time": "2020-06-29T06:28:15+00:00"
  2042. },
  2043. {
  2044. "name": "psr/http-factory",
  2045. "version": "1.0.1",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/php-fig/http-factory.git",
  2049. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2054. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "php": ">=7.0.0",
  2059. "psr/http-message": "^1.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.0.x-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Psr\\Http\\Message\\": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "http://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Common interfaces for PSR-7 HTTP message factories",
  2083. "keywords": [
  2084. "factory",
  2085. "http",
  2086. "message",
  2087. "psr",
  2088. "psr-17",
  2089. "psr-7",
  2090. "request",
  2091. "response"
  2092. ],
  2093. "support": {
  2094. "source": "https://github.com/php-fig/http-factory/tree/master"
  2095. },
  2096. "time": "2019-04-30T12:38:16+00:00"
  2097. },
  2098. {
  2099. "name": "psr/http-message",
  2100. "version": "1.0.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/php-fig/http-message.git",
  2104. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2109. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "php": ">=5.3.0"
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-master": "1.0.x-dev"
  2119. }
  2120. },
  2121. "autoload": {
  2122. "psr-4": {
  2123. "Psr\\Http\\Message\\": "src/"
  2124. }
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "MIT"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "PHP-FIG",
  2133. "homepage": "http://www.php-fig.org/"
  2134. }
  2135. ],
  2136. "description": "Common interface for HTTP messages",
  2137. "homepage": "https://github.com/php-fig/http-message",
  2138. "keywords": [
  2139. "http",
  2140. "http-message",
  2141. "psr",
  2142. "psr-7",
  2143. "request",
  2144. "response"
  2145. ],
  2146. "support": {
  2147. "source": "https://github.com/php-fig/http-message/tree/master"
  2148. },
  2149. "time": "2016-08-06T14:39:51+00:00"
  2150. },
  2151. {
  2152. "name": "psr/log",
  2153. "version": "1.1.4",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/php-fig/log.git",
  2157. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2162. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "php": ">=5.3.0"
  2167. },
  2168. "type": "library",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-master": "1.1.x-dev"
  2172. }
  2173. },
  2174. "autoload": {
  2175. "psr-4": {
  2176. "Psr\\Log\\": "Psr/Log/"
  2177. }
  2178. },
  2179. "notification-url": "https://packagist.org/downloads/",
  2180. "license": [
  2181. "MIT"
  2182. ],
  2183. "authors": [
  2184. {
  2185. "name": "PHP-FIG",
  2186. "homepage": "https://www.php-fig.org/"
  2187. }
  2188. ],
  2189. "description": "Common interface for logging libraries",
  2190. "homepage": "https://github.com/php-fig/log",
  2191. "keywords": [
  2192. "log",
  2193. "psr",
  2194. "psr-3"
  2195. ],
  2196. "support": {
  2197. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2198. },
  2199. "time": "2021-05-03T11:20:27+00:00"
  2200. },
  2201. {
  2202. "name": "psr/simple-cache",
  2203. "version": "1.0.1",
  2204. "source": {
  2205. "type": "git",
  2206. "url": "https://github.com/php-fig/simple-cache.git",
  2207. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2208. },
  2209. "dist": {
  2210. "type": "zip",
  2211. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2212. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2213. "shasum": ""
  2214. },
  2215. "require": {
  2216. "php": ">=5.3.0"
  2217. },
  2218. "type": "library",
  2219. "extra": {
  2220. "branch-alias": {
  2221. "dev-master": "1.0.x-dev"
  2222. }
  2223. },
  2224. "autoload": {
  2225. "psr-4": {
  2226. "Psr\\SimpleCache\\": "src/"
  2227. }
  2228. },
  2229. "notification-url": "https://packagist.org/downloads/",
  2230. "license": [
  2231. "MIT"
  2232. ],
  2233. "authors": [
  2234. {
  2235. "name": "PHP-FIG",
  2236. "homepage": "http://www.php-fig.org/"
  2237. }
  2238. ],
  2239. "description": "Common interfaces for simple caching",
  2240. "keywords": [
  2241. "cache",
  2242. "caching",
  2243. "psr",
  2244. "psr-16",
  2245. "simple-cache"
  2246. ],
  2247. "support": {
  2248. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2249. },
  2250. "time": "2017-10-23T01:57:42+00:00"
  2251. },
  2252. {
  2253. "name": "psy/psysh",
  2254. "version": "v0.11.12",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/bobthecow/psysh.git",
  2258. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2263. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "ext-json": "*",
  2268. "ext-tokenizer": "*",
  2269. "nikic/php-parser": "^4.0 || ^3.1",
  2270. "php": "^8.0 || ^7.0.8",
  2271. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2272. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2273. },
  2274. "conflict": {
  2275. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2276. },
  2277. "require-dev": {
  2278. "bamarni/composer-bin-plugin": "^1.2"
  2279. },
  2280. "suggest": {
  2281. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2282. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2283. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2284. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2285. },
  2286. "bin": [
  2287. "bin/psysh"
  2288. ],
  2289. "type": "library",
  2290. "extra": {
  2291. "branch-alias": {
  2292. "dev-main": "0.11.x-dev"
  2293. }
  2294. },
  2295. "autoload": {
  2296. "files": [
  2297. "src/functions.php"
  2298. ],
  2299. "psr-4": {
  2300. "Psy\\": "src/"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Justin Hileman",
  2310. "email": "justin@justinhileman.info",
  2311. "homepage": "http://justinhileman.com"
  2312. }
  2313. ],
  2314. "description": "An interactive shell for modern PHP.",
  2315. "homepage": "http://psysh.org",
  2316. "keywords": [
  2317. "REPL",
  2318. "console",
  2319. "interactive",
  2320. "shell"
  2321. ],
  2322. "support": {
  2323. "issues": "https://github.com/bobthecow/psysh/issues",
  2324. "source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
  2325. },
  2326. "time": "2023-01-29T21:24:40+00:00"
  2327. },
  2328. {
  2329. "name": "ralouphie/getallheaders",
  2330. "version": "3.0.3",
  2331. "source": {
  2332. "type": "git",
  2333. "url": "https://github.com/ralouphie/getallheaders.git",
  2334. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2335. },
  2336. "dist": {
  2337. "type": "zip",
  2338. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2339. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2340. "shasum": ""
  2341. },
  2342. "require": {
  2343. "php": ">=5.6"
  2344. },
  2345. "require-dev": {
  2346. "php-coveralls/php-coveralls": "^2.1",
  2347. "phpunit/phpunit": "^5 || ^6.5"
  2348. },
  2349. "type": "library",
  2350. "autoload": {
  2351. "files": [
  2352. "src/getallheaders.php"
  2353. ]
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Ralph Khattar",
  2362. "email": "ralph.khattar@gmail.com"
  2363. }
  2364. ],
  2365. "description": "A polyfill for getallheaders.",
  2366. "support": {
  2367. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2368. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2369. },
  2370. "time": "2019-03-08T08:55:37+00:00"
  2371. },
  2372. {
  2373. "name": "ramsey/collection",
  2374. "version": "1.3.0",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/ramsey/collection.git",
  2378. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2383. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2384. "shasum": ""
  2385. },
  2386. "require": {
  2387. "php": "^7.4 || ^8.0",
  2388. "symfony/polyfill-php81": "^1.23"
  2389. },
  2390. "require-dev": {
  2391. "captainhook/plugin-composer": "^5.3",
  2392. "ergebnis/composer-normalize": "^2.28.3",
  2393. "fakerphp/faker": "^1.21",
  2394. "hamcrest/hamcrest-php": "^2.0",
  2395. "jangregor/phpstan-prophecy": "^1.0",
  2396. "mockery/mockery": "^1.5",
  2397. "php-parallel-lint/php-console-highlighter": "^1.0",
  2398. "php-parallel-lint/php-parallel-lint": "^1.3",
  2399. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2400. "phpspec/prophecy-phpunit": "^2.0",
  2401. "phpstan/extension-installer": "^1.2",
  2402. "phpstan/phpstan": "^1.9",
  2403. "phpstan/phpstan-mockery": "^1.1",
  2404. "phpstan/phpstan-phpunit": "^1.3",
  2405. "phpunit/phpunit": "^9.5",
  2406. "psalm/plugin-mockery": "^1.1",
  2407. "psalm/plugin-phpunit": "^0.18.4",
  2408. "ramsey/coding-standard": "^2.0.3",
  2409. "ramsey/conventional-commits": "^1.3",
  2410. "vimeo/psalm": "^5.4"
  2411. },
  2412. "type": "library",
  2413. "extra": {
  2414. "captainhook": {
  2415. "force-install": true
  2416. },
  2417. "ramsey/conventional-commits": {
  2418. "configFile": "conventional-commits.json"
  2419. }
  2420. },
  2421. "autoload": {
  2422. "psr-4": {
  2423. "Ramsey\\Collection\\": "src/"
  2424. }
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Ben Ramsey",
  2433. "email": "ben@benramsey.com",
  2434. "homepage": "https://benramsey.com"
  2435. }
  2436. ],
  2437. "description": "A PHP library for representing and manipulating collections.",
  2438. "keywords": [
  2439. "array",
  2440. "collection",
  2441. "hash",
  2442. "map",
  2443. "queue",
  2444. "set"
  2445. ],
  2446. "support": {
  2447. "issues": "https://github.com/ramsey/collection/issues",
  2448. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  2449. },
  2450. "funding": [
  2451. {
  2452. "url": "https://github.com/ramsey",
  2453. "type": "github"
  2454. },
  2455. {
  2456. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2457. "type": "tidelift"
  2458. }
  2459. ],
  2460. "time": "2022-12-27T19:12:24+00:00"
  2461. },
  2462. {
  2463. "name": "ramsey/uuid",
  2464. "version": "4.2.3",
  2465. "source": {
  2466. "type": "git",
  2467. "url": "https://github.com/ramsey/uuid.git",
  2468. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2469. },
  2470. "dist": {
  2471. "type": "zip",
  2472. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2473. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2474. "shasum": ""
  2475. },
  2476. "require": {
  2477. "brick/math": "^0.8 || ^0.9",
  2478. "ext-json": "*",
  2479. "php": "^7.2 || ^8.0",
  2480. "ramsey/collection": "^1.0",
  2481. "symfony/polyfill-ctype": "^1.8",
  2482. "symfony/polyfill-php80": "^1.14"
  2483. },
  2484. "replace": {
  2485. "rhumsaa/uuid": "self.version"
  2486. },
  2487. "require-dev": {
  2488. "captainhook/captainhook": "^5.10",
  2489. "captainhook/plugin-composer": "^5.3",
  2490. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2491. "doctrine/annotations": "^1.8",
  2492. "ergebnis/composer-normalize": "^2.15",
  2493. "mockery/mockery": "^1.3",
  2494. "moontoast/math": "^1.1",
  2495. "paragonie/random-lib": "^2",
  2496. "php-mock/php-mock": "^2.2",
  2497. "php-mock/php-mock-mockery": "^1.3",
  2498. "php-parallel-lint/php-parallel-lint": "^1.1",
  2499. "phpbench/phpbench": "^1.0",
  2500. "phpstan/extension-installer": "^1.0",
  2501. "phpstan/phpstan": "^0.12",
  2502. "phpstan/phpstan-mockery": "^0.12",
  2503. "phpstan/phpstan-phpunit": "^0.12",
  2504. "phpunit/phpunit": "^8.5 || ^9",
  2505. "slevomat/coding-standard": "^7.0",
  2506. "squizlabs/php_codesniffer": "^3.5",
  2507. "vimeo/psalm": "^4.9"
  2508. },
  2509. "suggest": {
  2510. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2511. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2512. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2513. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2514. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2515. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2516. },
  2517. "type": "library",
  2518. "extra": {
  2519. "branch-alias": {
  2520. "dev-main": "4.x-dev"
  2521. },
  2522. "captainhook": {
  2523. "force-install": true
  2524. }
  2525. },
  2526. "autoload": {
  2527. "files": [
  2528. "src/functions.php"
  2529. ],
  2530. "psr-4": {
  2531. "Ramsey\\Uuid\\": "src/"
  2532. }
  2533. },
  2534. "notification-url": "https://packagist.org/downloads/",
  2535. "license": [
  2536. "MIT"
  2537. ],
  2538. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2539. "keywords": [
  2540. "guid",
  2541. "identifier",
  2542. "uuid"
  2543. ],
  2544. "support": {
  2545. "issues": "https://github.com/ramsey/uuid/issues",
  2546. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://github.com/ramsey",
  2551. "type": "github"
  2552. },
  2553. {
  2554. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2555. "type": "tidelift"
  2556. }
  2557. ],
  2558. "time": "2021-09-25T23:10:38+00:00"
  2559. },
  2560. {
  2561. "name": "swiftmailer/swiftmailer",
  2562. "version": "v6.3.0",
  2563. "source": {
  2564. "type": "git",
  2565. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2566. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2567. },
  2568. "dist": {
  2569. "type": "zip",
  2570. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2571. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2572. "shasum": ""
  2573. },
  2574. "require": {
  2575. "egulias/email-validator": "^2.0|^3.1",
  2576. "php": ">=7.0.0",
  2577. "symfony/polyfill-iconv": "^1.0",
  2578. "symfony/polyfill-intl-idn": "^1.10",
  2579. "symfony/polyfill-mbstring": "^1.0"
  2580. },
  2581. "require-dev": {
  2582. "mockery/mockery": "^1.0",
  2583. "symfony/phpunit-bridge": "^4.4|^5.4"
  2584. },
  2585. "suggest": {
  2586. "ext-intl": "Needed to support internationalized email addresses"
  2587. },
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "6.2-dev"
  2592. }
  2593. },
  2594. "autoload": {
  2595. "files": [
  2596. "lib/swift_required.php"
  2597. ]
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "MIT"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "Chris Corbyn"
  2606. },
  2607. {
  2608. "name": "Fabien Potencier",
  2609. "email": "fabien@symfony.com"
  2610. }
  2611. ],
  2612. "description": "Swiftmailer, free feature-rich PHP mailer",
  2613. "homepage": "https://swiftmailer.symfony.com",
  2614. "keywords": [
  2615. "email",
  2616. "mail",
  2617. "mailer"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2621. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2622. },
  2623. "funding": [
  2624. {
  2625. "url": "https://github.com/fabpot",
  2626. "type": "github"
  2627. },
  2628. {
  2629. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2630. "type": "tidelift"
  2631. }
  2632. ],
  2633. "abandoned": "symfony/mailer",
  2634. "time": "2021-10-18T15:26:12+00:00"
  2635. },
  2636. {
  2637. "name": "symfony/console",
  2638. "version": "v5.4.21",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/symfony/console.git",
  2642. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/symfony/console/zipball/c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2647. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "php": ">=7.2.5",
  2652. "symfony/deprecation-contracts": "^2.1|^3",
  2653. "symfony/polyfill-mbstring": "~1.0",
  2654. "symfony/polyfill-php73": "^1.9",
  2655. "symfony/polyfill-php80": "^1.16",
  2656. "symfony/service-contracts": "^1.1|^2|^3",
  2657. "symfony/string": "^5.1|^6.0"
  2658. },
  2659. "conflict": {
  2660. "psr/log": ">=3",
  2661. "symfony/dependency-injection": "<4.4",
  2662. "symfony/dotenv": "<5.1",
  2663. "symfony/event-dispatcher": "<4.4",
  2664. "symfony/lock": "<4.4",
  2665. "symfony/process": "<4.4"
  2666. },
  2667. "provide": {
  2668. "psr/log-implementation": "1.0|2.0"
  2669. },
  2670. "require-dev": {
  2671. "psr/log": "^1|^2",
  2672. "symfony/config": "^4.4|^5.0|^6.0",
  2673. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2674. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2675. "symfony/lock": "^4.4|^5.0|^6.0",
  2676. "symfony/process": "^4.4|^5.0|^6.0",
  2677. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2678. },
  2679. "suggest": {
  2680. "psr/log": "For using the console logger",
  2681. "symfony/event-dispatcher": "",
  2682. "symfony/lock": "",
  2683. "symfony/process": ""
  2684. },
  2685. "type": "library",
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Symfony\\Component\\Console\\": ""
  2689. },
  2690. "exclude-from-classmap": [
  2691. "/Tests/"
  2692. ]
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "MIT"
  2697. ],
  2698. "authors": [
  2699. {
  2700. "name": "Fabien Potencier",
  2701. "email": "fabien@symfony.com"
  2702. },
  2703. {
  2704. "name": "Symfony Community",
  2705. "homepage": "https://symfony.com/contributors"
  2706. }
  2707. ],
  2708. "description": "Eases the creation of beautiful and testable command line interfaces",
  2709. "homepage": "https://symfony.com",
  2710. "keywords": [
  2711. "cli",
  2712. "command line",
  2713. "console",
  2714. "terminal"
  2715. ],
  2716. "support": {
  2717. "source": "https://github.com/symfony/console/tree/v5.4.21"
  2718. },
  2719. "funding": [
  2720. {
  2721. "url": "https://symfony.com/sponsor",
  2722. "type": "custom"
  2723. },
  2724. {
  2725. "url": "https://github.com/fabpot",
  2726. "type": "github"
  2727. },
  2728. {
  2729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2730. "type": "tidelift"
  2731. }
  2732. ],
  2733. "time": "2023-02-25T16:59:41+00:00"
  2734. },
  2735. {
  2736. "name": "symfony/css-selector",
  2737. "version": "v5.4.21",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/symfony/css-selector.git",
  2741. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  2746. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  2747. "shasum": ""
  2748. },
  2749. "require": {
  2750. "php": ">=7.2.5",
  2751. "symfony/polyfill-php80": "^1.16"
  2752. },
  2753. "type": "library",
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Symfony\\Component\\CssSelector\\": ""
  2757. },
  2758. "exclude-from-classmap": [
  2759. "/Tests/"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Fabien Potencier",
  2769. "email": "fabien@symfony.com"
  2770. },
  2771. {
  2772. "name": "Jean-François Simon",
  2773. "email": "jeanfrancois.simon@sensiolabs.com"
  2774. },
  2775. {
  2776. "name": "Symfony Community",
  2777. "homepage": "https://symfony.com/contributors"
  2778. }
  2779. ],
  2780. "description": "Converts CSS selectors to XPath expressions",
  2781. "homepage": "https://symfony.com",
  2782. "support": {
  2783. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  2784. },
  2785. "funding": [
  2786. {
  2787. "url": "https://symfony.com/sponsor",
  2788. "type": "custom"
  2789. },
  2790. {
  2791. "url": "https://github.com/fabpot",
  2792. "type": "github"
  2793. },
  2794. {
  2795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2796. "type": "tidelift"
  2797. }
  2798. ],
  2799. "time": "2023-02-14T08:03:56+00:00"
  2800. },
  2801. {
  2802. "name": "symfony/deprecation-contracts",
  2803. "version": "v2.5.2",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/symfony/deprecation-contracts.git",
  2807. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2812. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "php": ">=7.1"
  2817. },
  2818. "type": "library",
  2819. "extra": {
  2820. "branch-alias": {
  2821. "dev-main": "2.5-dev"
  2822. },
  2823. "thanks": {
  2824. "name": "symfony/contracts",
  2825. "url": "https://github.com/symfony/contracts"
  2826. }
  2827. },
  2828. "autoload": {
  2829. "files": [
  2830. "function.php"
  2831. ]
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "MIT"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Nicolas Grekas",
  2840. "email": "p@tchwork.com"
  2841. },
  2842. {
  2843. "name": "Symfony Community",
  2844. "homepage": "https://symfony.com/contributors"
  2845. }
  2846. ],
  2847. "description": "A generic function and convention to trigger deprecation notices",
  2848. "homepage": "https://symfony.com",
  2849. "support": {
  2850. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2851. },
  2852. "funding": [
  2853. {
  2854. "url": "https://symfony.com/sponsor",
  2855. "type": "custom"
  2856. },
  2857. {
  2858. "url": "https://github.com/fabpot",
  2859. "type": "github"
  2860. },
  2861. {
  2862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2863. "type": "tidelift"
  2864. }
  2865. ],
  2866. "time": "2022-01-02T09:53:40+00:00"
  2867. },
  2868. {
  2869. "name": "symfony/error-handler",
  2870. "version": "v5.4.21",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/symfony/error-handler.git",
  2874. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/symfony/error-handler/zipball/56a94aa8cb5a5fbc411551d8d014a296b5456549",
  2879. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "php": ">=7.2.5",
  2884. "psr/log": "^1|^2|^3",
  2885. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2886. },
  2887. "require-dev": {
  2888. "symfony/deprecation-contracts": "^2.1|^3",
  2889. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2890. "symfony/serializer": "^4.4|^5.0|^6.0"
  2891. },
  2892. "bin": [
  2893. "Resources/bin/patch-type-declarations"
  2894. ],
  2895. "type": "library",
  2896. "autoload": {
  2897. "psr-4": {
  2898. "Symfony\\Component\\ErrorHandler\\": ""
  2899. },
  2900. "exclude-from-classmap": [
  2901. "/Tests/"
  2902. ]
  2903. },
  2904. "notification-url": "https://packagist.org/downloads/",
  2905. "license": [
  2906. "MIT"
  2907. ],
  2908. "authors": [
  2909. {
  2910. "name": "Fabien Potencier",
  2911. "email": "fabien@symfony.com"
  2912. },
  2913. {
  2914. "name": "Symfony Community",
  2915. "homepage": "https://symfony.com/contributors"
  2916. }
  2917. ],
  2918. "description": "Provides tools to manage errors and ease debugging PHP code",
  2919. "homepage": "https://symfony.com",
  2920. "support": {
  2921. "source": "https://github.com/symfony/error-handler/tree/v5.4.21"
  2922. },
  2923. "funding": [
  2924. {
  2925. "url": "https://symfony.com/sponsor",
  2926. "type": "custom"
  2927. },
  2928. {
  2929. "url": "https://github.com/fabpot",
  2930. "type": "github"
  2931. },
  2932. {
  2933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2934. "type": "tidelift"
  2935. }
  2936. ],
  2937. "time": "2023-02-14T08:03:56+00:00"
  2938. },
  2939. {
  2940. "name": "symfony/event-dispatcher",
  2941. "version": "v5.4.21",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://github.com/symfony/event-dispatcher.git",
  2945. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2950. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2951. "shasum": ""
  2952. },
  2953. "require": {
  2954. "php": ">=7.2.5",
  2955. "symfony/deprecation-contracts": "^2.1|^3",
  2956. "symfony/event-dispatcher-contracts": "^2|^3",
  2957. "symfony/polyfill-php80": "^1.16"
  2958. },
  2959. "conflict": {
  2960. "symfony/dependency-injection": "<4.4"
  2961. },
  2962. "provide": {
  2963. "psr/event-dispatcher-implementation": "1.0",
  2964. "symfony/event-dispatcher-implementation": "2.0"
  2965. },
  2966. "require-dev": {
  2967. "psr/log": "^1|^2|^3",
  2968. "symfony/config": "^4.4|^5.0|^6.0",
  2969. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2970. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2971. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2972. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2973. "symfony/service-contracts": "^1.1|^2|^3",
  2974. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2975. },
  2976. "suggest": {
  2977. "symfony/dependency-injection": "",
  2978. "symfony/http-kernel": ""
  2979. },
  2980. "type": "library",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Symfony\\Component\\EventDispatcher\\": ""
  2984. },
  2985. "exclude-from-classmap": [
  2986. "/Tests/"
  2987. ]
  2988. },
  2989. "notification-url": "https://packagist.org/downloads/",
  2990. "license": [
  2991. "MIT"
  2992. ],
  2993. "authors": [
  2994. {
  2995. "name": "Fabien Potencier",
  2996. "email": "fabien@symfony.com"
  2997. },
  2998. {
  2999. "name": "Symfony Community",
  3000. "homepage": "https://symfony.com/contributors"
  3001. }
  3002. ],
  3003. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3004. "homepage": "https://symfony.com",
  3005. "support": {
  3006. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://symfony.com/sponsor",
  3011. "type": "custom"
  3012. },
  3013. {
  3014. "url": "https://github.com/fabpot",
  3015. "type": "github"
  3016. },
  3017. {
  3018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3019. "type": "tidelift"
  3020. }
  3021. ],
  3022. "time": "2023-02-14T08:03:56+00:00"
  3023. },
  3024. {
  3025. "name": "symfony/event-dispatcher-contracts",
  3026. "version": "v2.5.2",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3030. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3035. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3036. "shasum": ""
  3037. },
  3038. "require": {
  3039. "php": ">=7.2.5",
  3040. "psr/event-dispatcher": "^1"
  3041. },
  3042. "suggest": {
  3043. "symfony/event-dispatcher-implementation": ""
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-main": "2.5-dev"
  3049. },
  3050. "thanks": {
  3051. "name": "symfony/contracts",
  3052. "url": "https://github.com/symfony/contracts"
  3053. }
  3054. },
  3055. "autoload": {
  3056. "psr-4": {
  3057. "Symfony\\Contracts\\EventDispatcher\\": ""
  3058. }
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Nicolas Grekas",
  3067. "email": "p@tchwork.com"
  3068. },
  3069. {
  3070. "name": "Symfony Community",
  3071. "homepage": "https://symfony.com/contributors"
  3072. }
  3073. ],
  3074. "description": "Generic abstractions related to dispatching event",
  3075. "homepage": "https://symfony.com",
  3076. "keywords": [
  3077. "abstractions",
  3078. "contracts",
  3079. "decoupling",
  3080. "interfaces",
  3081. "interoperability",
  3082. "standards"
  3083. ],
  3084. "support": {
  3085. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3086. },
  3087. "funding": [
  3088. {
  3089. "url": "https://symfony.com/sponsor",
  3090. "type": "custom"
  3091. },
  3092. {
  3093. "url": "https://github.com/fabpot",
  3094. "type": "github"
  3095. },
  3096. {
  3097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3098. "type": "tidelift"
  3099. }
  3100. ],
  3101. "time": "2022-01-02T09:53:40+00:00"
  3102. },
  3103. {
  3104. "name": "symfony/finder",
  3105. "version": "v5.4.21",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/symfony/finder.git",
  3109. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3114. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3115. "shasum": ""
  3116. },
  3117. "require": {
  3118. "php": ">=7.2.5",
  3119. "symfony/deprecation-contracts": "^2.1|^3",
  3120. "symfony/polyfill-php80": "^1.16"
  3121. },
  3122. "type": "library",
  3123. "autoload": {
  3124. "psr-4": {
  3125. "Symfony\\Component\\Finder\\": ""
  3126. },
  3127. "exclude-from-classmap": [
  3128. "/Tests/"
  3129. ]
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "MIT"
  3134. ],
  3135. "authors": [
  3136. {
  3137. "name": "Fabien Potencier",
  3138. "email": "fabien@symfony.com"
  3139. },
  3140. {
  3141. "name": "Symfony Community",
  3142. "homepage": "https://symfony.com/contributors"
  3143. }
  3144. ],
  3145. "description": "Finds files and directories via an intuitive fluent interface",
  3146. "homepage": "https://symfony.com",
  3147. "support": {
  3148. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  3149. },
  3150. "funding": [
  3151. {
  3152. "url": "https://symfony.com/sponsor",
  3153. "type": "custom"
  3154. },
  3155. {
  3156. "url": "https://github.com/fabpot",
  3157. "type": "github"
  3158. },
  3159. {
  3160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3161. "type": "tidelift"
  3162. }
  3163. ],
  3164. "time": "2023-02-16T09:33:00+00:00"
  3165. },
  3166. {
  3167. "name": "symfony/http-foundation",
  3168. "version": "v5.4.21",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/symfony/http-foundation.git",
  3172. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3177. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": ">=7.2.5",
  3182. "symfony/deprecation-contracts": "^2.1|^3",
  3183. "symfony/polyfill-mbstring": "~1.1",
  3184. "symfony/polyfill-php80": "^1.16"
  3185. },
  3186. "require-dev": {
  3187. "predis/predis": "~1.0",
  3188. "symfony/cache": "^4.4|^5.0|^6.0",
  3189. "symfony/dependency-injection": "^5.4|^6.0",
  3190. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3191. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3192. "symfony/mime": "^4.4|^5.0|^6.0",
  3193. "symfony/rate-limiter": "^5.2|^6.0"
  3194. },
  3195. "suggest": {
  3196. "symfony/mime": "To use the file extension guesser"
  3197. },
  3198. "type": "library",
  3199. "autoload": {
  3200. "psr-4": {
  3201. "Symfony\\Component\\HttpFoundation\\": ""
  3202. },
  3203. "exclude-from-classmap": [
  3204. "/Tests/"
  3205. ]
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "Fabien Potencier",
  3214. "email": "fabien@symfony.com"
  3215. },
  3216. {
  3217. "name": "Symfony Community",
  3218. "homepage": "https://symfony.com/contributors"
  3219. }
  3220. ],
  3221. "description": "Defines an object-oriented layer for the HTTP specification",
  3222. "homepage": "https://symfony.com",
  3223. "support": {
  3224. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  3225. },
  3226. "funding": [
  3227. {
  3228. "url": "https://symfony.com/sponsor",
  3229. "type": "custom"
  3230. },
  3231. {
  3232. "url": "https://github.com/fabpot",
  3233. "type": "github"
  3234. },
  3235. {
  3236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3237. "type": "tidelift"
  3238. }
  3239. ],
  3240. "time": "2023-02-17T21:35:35+00:00"
  3241. },
  3242. {
  3243. "name": "symfony/http-kernel",
  3244. "version": "v5.4.21",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/symfony/http-kernel.git",
  3248. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3253. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "php": ">=7.2.5",
  3258. "psr/log": "^1|^2",
  3259. "symfony/deprecation-contracts": "^2.1|^3",
  3260. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3261. "symfony/event-dispatcher": "^5.0|^6.0",
  3262. "symfony/http-foundation": "^5.4.21|^6.2.7",
  3263. "symfony/polyfill-ctype": "^1.8",
  3264. "symfony/polyfill-php73": "^1.9",
  3265. "symfony/polyfill-php80": "^1.16"
  3266. },
  3267. "conflict": {
  3268. "symfony/browser-kit": "<5.4",
  3269. "symfony/cache": "<5.0",
  3270. "symfony/config": "<5.0",
  3271. "symfony/console": "<4.4",
  3272. "symfony/dependency-injection": "<5.3",
  3273. "symfony/doctrine-bridge": "<5.0",
  3274. "symfony/form": "<5.0",
  3275. "symfony/http-client": "<5.0",
  3276. "symfony/mailer": "<5.0",
  3277. "symfony/messenger": "<5.0",
  3278. "symfony/translation": "<5.0",
  3279. "symfony/twig-bridge": "<5.0",
  3280. "symfony/validator": "<5.0",
  3281. "twig/twig": "<2.13"
  3282. },
  3283. "provide": {
  3284. "psr/log-implementation": "1.0|2.0"
  3285. },
  3286. "require-dev": {
  3287. "psr/cache": "^1.0|^2.0|^3.0",
  3288. "symfony/browser-kit": "^5.4|^6.0",
  3289. "symfony/config": "^5.0|^6.0",
  3290. "symfony/console": "^4.4|^5.0|^6.0",
  3291. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3292. "symfony/dependency-injection": "^5.3|^6.0",
  3293. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3294. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3295. "symfony/finder": "^4.4|^5.0|^6.0",
  3296. "symfony/http-client-contracts": "^1.1|^2|^3",
  3297. "symfony/process": "^4.4|^5.0|^6.0",
  3298. "symfony/routing": "^4.4|^5.0|^6.0",
  3299. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3300. "symfony/translation": "^4.4|^5.0|^6.0",
  3301. "symfony/translation-contracts": "^1.1|^2|^3",
  3302. "twig/twig": "^2.13|^3.0.4"
  3303. },
  3304. "suggest": {
  3305. "symfony/browser-kit": "",
  3306. "symfony/config": "",
  3307. "symfony/console": "",
  3308. "symfony/dependency-injection": ""
  3309. },
  3310. "type": "library",
  3311. "autoload": {
  3312. "psr-4": {
  3313. "Symfony\\Component\\HttpKernel\\": ""
  3314. },
  3315. "exclude-from-classmap": [
  3316. "/Tests/"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "Fabien Potencier",
  3326. "email": "fabien@symfony.com"
  3327. },
  3328. {
  3329. "name": "Symfony Community",
  3330. "homepage": "https://symfony.com/contributors"
  3331. }
  3332. ],
  3333. "description": "Provides a structured process for converting a Request into a Response",
  3334. "homepage": "https://symfony.com",
  3335. "support": {
  3336. "source": "https://github.com/symfony/http-kernel/tree/v5.4.21"
  3337. },
  3338. "funding": [
  3339. {
  3340. "url": "https://symfony.com/sponsor",
  3341. "type": "custom"
  3342. },
  3343. {
  3344. "url": "https://github.com/fabpot",
  3345. "type": "github"
  3346. },
  3347. {
  3348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3349. "type": "tidelift"
  3350. }
  3351. ],
  3352. "time": "2023-02-28T13:19:09+00:00"
  3353. },
  3354. {
  3355. "name": "symfony/mime",
  3356. "version": "v5.4.21",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/symfony/mime.git",
  3360. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/symfony/mime/zipball/ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3365. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3366. "shasum": ""
  3367. },
  3368. "require": {
  3369. "php": ">=7.2.5",
  3370. "symfony/deprecation-contracts": "^2.1|^3",
  3371. "symfony/polyfill-intl-idn": "^1.10",
  3372. "symfony/polyfill-mbstring": "^1.0",
  3373. "symfony/polyfill-php80": "^1.16"
  3374. },
  3375. "conflict": {
  3376. "egulias/email-validator": "~3.0.0",
  3377. "phpdocumentor/reflection-docblock": "<3.2.2",
  3378. "phpdocumentor/type-resolver": "<1.4.0",
  3379. "symfony/mailer": "<4.4",
  3380. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  3381. },
  3382. "require-dev": {
  3383. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3384. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3385. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3386. "symfony/property-access": "^4.4|^5.1|^6.0",
  3387. "symfony/property-info": "^4.4|^5.1|^6.0",
  3388. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  3389. },
  3390. "type": "library",
  3391. "autoload": {
  3392. "psr-4": {
  3393. "Symfony\\Component\\Mime\\": ""
  3394. },
  3395. "exclude-from-classmap": [
  3396. "/Tests/"
  3397. ]
  3398. },
  3399. "notification-url": "https://packagist.org/downloads/",
  3400. "license": [
  3401. "MIT"
  3402. ],
  3403. "authors": [
  3404. {
  3405. "name": "Fabien Potencier",
  3406. "email": "fabien@symfony.com"
  3407. },
  3408. {
  3409. "name": "Symfony Community",
  3410. "homepage": "https://symfony.com/contributors"
  3411. }
  3412. ],
  3413. "description": "Allows manipulating MIME messages",
  3414. "homepage": "https://symfony.com",
  3415. "keywords": [
  3416. "mime",
  3417. "mime-type"
  3418. ],
  3419. "support": {
  3420. "source": "https://github.com/symfony/mime/tree/v5.4.21"
  3421. },
  3422. "funding": [
  3423. {
  3424. "url": "https://symfony.com/sponsor",
  3425. "type": "custom"
  3426. },
  3427. {
  3428. "url": "https://github.com/fabpot",
  3429. "type": "github"
  3430. },
  3431. {
  3432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3433. "type": "tidelift"
  3434. }
  3435. ],
  3436. "time": "2023-02-21T19:46:44+00:00"
  3437. },
  3438. {
  3439. "name": "symfony/polyfill-ctype",
  3440. "version": "v1.27.0",
  3441. "source": {
  3442. "type": "git",
  3443. "url": "https://github.com/symfony/polyfill-ctype.git",
  3444. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  3445. },
  3446. "dist": {
  3447. "type": "zip",
  3448. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  3449. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  3450. "shasum": ""
  3451. },
  3452. "require": {
  3453. "php": ">=7.1"
  3454. },
  3455. "provide": {
  3456. "ext-ctype": "*"
  3457. },
  3458. "suggest": {
  3459. "ext-ctype": "For best performance"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-main": "1.27-dev"
  3465. },
  3466. "thanks": {
  3467. "name": "symfony/polyfill",
  3468. "url": "https://github.com/symfony/polyfill"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "files": [
  3473. "bootstrap.php"
  3474. ],
  3475. "psr-4": {
  3476. "Symfony\\Polyfill\\Ctype\\": ""
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "Gert de Pagter",
  3486. "email": "BackEndTea@gmail.com"
  3487. },
  3488. {
  3489. "name": "Symfony Community",
  3490. "homepage": "https://symfony.com/contributors"
  3491. }
  3492. ],
  3493. "description": "Symfony polyfill for ctype functions",
  3494. "homepage": "https://symfony.com",
  3495. "keywords": [
  3496. "compatibility",
  3497. "ctype",
  3498. "polyfill",
  3499. "portable"
  3500. ],
  3501. "support": {
  3502. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://symfony.com/sponsor",
  3507. "type": "custom"
  3508. },
  3509. {
  3510. "url": "https://github.com/fabpot",
  3511. "type": "github"
  3512. },
  3513. {
  3514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3515. "type": "tidelift"
  3516. }
  3517. ],
  3518. "time": "2022-11-03T14:55:06+00:00"
  3519. },
  3520. {
  3521. "name": "symfony/polyfill-iconv",
  3522. "version": "v1.27.0",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/symfony/polyfill-iconv.git",
  3526. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3531. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3532. "shasum": ""
  3533. },
  3534. "require": {
  3535. "php": ">=7.1"
  3536. },
  3537. "provide": {
  3538. "ext-iconv": "*"
  3539. },
  3540. "suggest": {
  3541. "ext-iconv": "For best performance"
  3542. },
  3543. "type": "library",
  3544. "extra": {
  3545. "branch-alias": {
  3546. "dev-main": "1.27-dev"
  3547. },
  3548. "thanks": {
  3549. "name": "symfony/polyfill",
  3550. "url": "https://github.com/symfony/polyfill"
  3551. }
  3552. },
  3553. "autoload": {
  3554. "files": [
  3555. "bootstrap.php"
  3556. ],
  3557. "psr-4": {
  3558. "Symfony\\Polyfill\\Iconv\\": ""
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Nicolas Grekas",
  3568. "email": "p@tchwork.com"
  3569. },
  3570. {
  3571. "name": "Symfony Community",
  3572. "homepage": "https://symfony.com/contributors"
  3573. }
  3574. ],
  3575. "description": "Symfony polyfill for the Iconv extension",
  3576. "homepage": "https://symfony.com",
  3577. "keywords": [
  3578. "compatibility",
  3579. "iconv",
  3580. "polyfill",
  3581. "portable",
  3582. "shim"
  3583. ],
  3584. "support": {
  3585. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  3586. },
  3587. "funding": [
  3588. {
  3589. "url": "https://symfony.com/sponsor",
  3590. "type": "custom"
  3591. },
  3592. {
  3593. "url": "https://github.com/fabpot",
  3594. "type": "github"
  3595. },
  3596. {
  3597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3598. "type": "tidelift"
  3599. }
  3600. ],
  3601. "time": "2022-11-03T14:55:06+00:00"
  3602. },
  3603. {
  3604. "name": "symfony/polyfill-intl-grapheme",
  3605. "version": "v1.27.0",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3609. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  3614. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "php": ">=7.1"
  3619. },
  3620. "suggest": {
  3621. "ext-intl": "For best performance"
  3622. },
  3623. "type": "library",
  3624. "extra": {
  3625. "branch-alias": {
  3626. "dev-main": "1.27-dev"
  3627. },
  3628. "thanks": {
  3629. "name": "symfony/polyfill",
  3630. "url": "https://github.com/symfony/polyfill"
  3631. }
  3632. },
  3633. "autoload": {
  3634. "files": [
  3635. "bootstrap.php"
  3636. ],
  3637. "psr-4": {
  3638. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3639. }
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "MIT"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Nicolas Grekas",
  3648. "email": "p@tchwork.com"
  3649. },
  3650. {
  3651. "name": "Symfony Community",
  3652. "homepage": "https://symfony.com/contributors"
  3653. }
  3654. ],
  3655. "description": "Symfony polyfill for intl's grapheme_* functions",
  3656. "homepage": "https://symfony.com",
  3657. "keywords": [
  3658. "compatibility",
  3659. "grapheme",
  3660. "intl",
  3661. "polyfill",
  3662. "portable",
  3663. "shim"
  3664. ],
  3665. "support": {
  3666. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  3667. },
  3668. "funding": [
  3669. {
  3670. "url": "https://symfony.com/sponsor",
  3671. "type": "custom"
  3672. },
  3673. {
  3674. "url": "https://github.com/fabpot",
  3675. "type": "github"
  3676. },
  3677. {
  3678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3679. "type": "tidelift"
  3680. }
  3681. ],
  3682. "time": "2022-11-03T14:55:06+00:00"
  3683. },
  3684. {
  3685. "name": "symfony/polyfill-intl-idn",
  3686. "version": "v1.27.0",
  3687. "source": {
  3688. "type": "git",
  3689. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3690. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  3691. },
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  3695. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "php": ">=7.1",
  3700. "symfony/polyfill-intl-normalizer": "^1.10",
  3701. "symfony/polyfill-php72": "^1.10"
  3702. },
  3703. "suggest": {
  3704. "ext-intl": "For best performance"
  3705. },
  3706. "type": "library",
  3707. "extra": {
  3708. "branch-alias": {
  3709. "dev-main": "1.27-dev"
  3710. },
  3711. "thanks": {
  3712. "name": "symfony/polyfill",
  3713. "url": "https://github.com/symfony/polyfill"
  3714. }
  3715. },
  3716. "autoload": {
  3717. "files": [
  3718. "bootstrap.php"
  3719. ],
  3720. "psr-4": {
  3721. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3722. }
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Laurent Bassin",
  3731. "email": "laurent@bassin.info"
  3732. },
  3733. {
  3734. "name": "Trevor Rowbotham",
  3735. "email": "trevor.rowbotham@pm.me"
  3736. },
  3737. {
  3738. "name": "Symfony Community",
  3739. "homepage": "https://symfony.com/contributors"
  3740. }
  3741. ],
  3742. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3743. "homepage": "https://symfony.com",
  3744. "keywords": [
  3745. "compatibility",
  3746. "idn",
  3747. "intl",
  3748. "polyfill",
  3749. "portable",
  3750. "shim"
  3751. ],
  3752. "support": {
  3753. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://symfony.com/sponsor",
  3758. "type": "custom"
  3759. },
  3760. {
  3761. "url": "https://github.com/fabpot",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3766. "type": "tidelift"
  3767. }
  3768. ],
  3769. "time": "2022-11-03T14:55:06+00:00"
  3770. },
  3771. {
  3772. "name": "symfony/polyfill-intl-normalizer",
  3773. "version": "v1.27.0",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3777. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3782. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "php": ">=7.1"
  3787. },
  3788. "suggest": {
  3789. "ext-intl": "For best performance"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-main": "1.27-dev"
  3795. },
  3796. "thanks": {
  3797. "name": "symfony/polyfill",
  3798. "url": "https://github.com/symfony/polyfill"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "files": [
  3803. "bootstrap.php"
  3804. ],
  3805. "psr-4": {
  3806. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3807. },
  3808. "classmap": [
  3809. "Resources/stubs"
  3810. ]
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Nicolas Grekas",
  3819. "email": "p@tchwork.com"
  3820. },
  3821. {
  3822. "name": "Symfony Community",
  3823. "homepage": "https://symfony.com/contributors"
  3824. }
  3825. ],
  3826. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3827. "homepage": "https://symfony.com",
  3828. "keywords": [
  3829. "compatibility",
  3830. "intl",
  3831. "normalizer",
  3832. "polyfill",
  3833. "portable",
  3834. "shim"
  3835. ],
  3836. "support": {
  3837. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  3838. },
  3839. "funding": [
  3840. {
  3841. "url": "https://symfony.com/sponsor",
  3842. "type": "custom"
  3843. },
  3844. {
  3845. "url": "https://github.com/fabpot",
  3846. "type": "github"
  3847. },
  3848. {
  3849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3850. "type": "tidelift"
  3851. }
  3852. ],
  3853. "time": "2022-11-03T14:55:06+00:00"
  3854. },
  3855. {
  3856. "name": "symfony/polyfill-mbstring",
  3857. "version": "v1.27.0",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3861. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3866. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  3867. "shasum": ""
  3868. },
  3869. "require": {
  3870. "php": ">=7.1"
  3871. },
  3872. "provide": {
  3873. "ext-mbstring": "*"
  3874. },
  3875. "suggest": {
  3876. "ext-mbstring": "For best performance"
  3877. },
  3878. "type": "library",
  3879. "extra": {
  3880. "branch-alias": {
  3881. "dev-main": "1.27-dev"
  3882. },
  3883. "thanks": {
  3884. "name": "symfony/polyfill",
  3885. "url": "https://github.com/symfony/polyfill"
  3886. }
  3887. },
  3888. "autoload": {
  3889. "files": [
  3890. "bootstrap.php"
  3891. ],
  3892. "psr-4": {
  3893. "Symfony\\Polyfill\\Mbstring\\": ""
  3894. }
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "MIT"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "Nicolas Grekas",
  3903. "email": "p@tchwork.com"
  3904. },
  3905. {
  3906. "name": "Symfony Community",
  3907. "homepage": "https://symfony.com/contributors"
  3908. }
  3909. ],
  3910. "description": "Symfony polyfill for the Mbstring extension",
  3911. "homepage": "https://symfony.com",
  3912. "keywords": [
  3913. "compatibility",
  3914. "mbstring",
  3915. "polyfill",
  3916. "portable",
  3917. "shim"
  3918. ],
  3919. "support": {
  3920. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  3921. },
  3922. "funding": [
  3923. {
  3924. "url": "https://symfony.com/sponsor",
  3925. "type": "custom"
  3926. },
  3927. {
  3928. "url": "https://github.com/fabpot",
  3929. "type": "github"
  3930. },
  3931. {
  3932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3933. "type": "tidelift"
  3934. }
  3935. ],
  3936. "time": "2022-11-03T14:55:06+00:00"
  3937. },
  3938. {
  3939. "name": "symfony/polyfill-php72",
  3940. "version": "v1.27.0",
  3941. "source": {
  3942. "type": "git",
  3943. "url": "https://github.com/symfony/polyfill-php72.git",
  3944. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  3945. },
  3946. "dist": {
  3947. "type": "zip",
  3948. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  3949. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  3950. "shasum": ""
  3951. },
  3952. "require": {
  3953. "php": ">=7.1"
  3954. },
  3955. "type": "library",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-main": "1.27-dev"
  3959. },
  3960. "thanks": {
  3961. "name": "symfony/polyfill",
  3962. "url": "https://github.com/symfony/polyfill"
  3963. }
  3964. },
  3965. "autoload": {
  3966. "files": [
  3967. "bootstrap.php"
  3968. ],
  3969. "psr-4": {
  3970. "Symfony\\Polyfill\\Php72\\": ""
  3971. }
  3972. },
  3973. "notification-url": "https://packagist.org/downloads/",
  3974. "license": [
  3975. "MIT"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Nicolas Grekas",
  3980. "email": "p@tchwork.com"
  3981. },
  3982. {
  3983. "name": "Symfony Community",
  3984. "homepage": "https://symfony.com/contributors"
  3985. }
  3986. ],
  3987. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3988. "homepage": "https://symfony.com",
  3989. "keywords": [
  3990. "compatibility",
  3991. "polyfill",
  3992. "portable",
  3993. "shim"
  3994. ],
  3995. "support": {
  3996. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  3997. },
  3998. "funding": [
  3999. {
  4000. "url": "https://symfony.com/sponsor",
  4001. "type": "custom"
  4002. },
  4003. {
  4004. "url": "https://github.com/fabpot",
  4005. "type": "github"
  4006. },
  4007. {
  4008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4009. "type": "tidelift"
  4010. }
  4011. ],
  4012. "time": "2022-11-03T14:55:06+00:00"
  4013. },
  4014. {
  4015. "name": "symfony/polyfill-php73",
  4016. "version": "v1.27.0",
  4017. "source": {
  4018. "type": "git",
  4019. "url": "https://github.com/symfony/polyfill-php73.git",
  4020. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4021. },
  4022. "dist": {
  4023. "type": "zip",
  4024. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4025. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4026. "shasum": ""
  4027. },
  4028. "require": {
  4029. "php": ">=7.1"
  4030. },
  4031. "type": "library",
  4032. "extra": {
  4033. "branch-alias": {
  4034. "dev-main": "1.27-dev"
  4035. },
  4036. "thanks": {
  4037. "name": "symfony/polyfill",
  4038. "url": "https://github.com/symfony/polyfill"
  4039. }
  4040. },
  4041. "autoload": {
  4042. "files": [
  4043. "bootstrap.php"
  4044. ],
  4045. "psr-4": {
  4046. "Symfony\\Polyfill\\Php73\\": ""
  4047. },
  4048. "classmap": [
  4049. "Resources/stubs"
  4050. ]
  4051. },
  4052. "notification-url": "https://packagist.org/downloads/",
  4053. "license": [
  4054. "MIT"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "Nicolas Grekas",
  4059. "email": "p@tchwork.com"
  4060. },
  4061. {
  4062. "name": "Symfony Community",
  4063. "homepage": "https://symfony.com/contributors"
  4064. }
  4065. ],
  4066. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4067. "homepage": "https://symfony.com",
  4068. "keywords": [
  4069. "compatibility",
  4070. "polyfill",
  4071. "portable",
  4072. "shim"
  4073. ],
  4074. "support": {
  4075. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4076. },
  4077. "funding": [
  4078. {
  4079. "url": "https://symfony.com/sponsor",
  4080. "type": "custom"
  4081. },
  4082. {
  4083. "url": "https://github.com/fabpot",
  4084. "type": "github"
  4085. },
  4086. {
  4087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4088. "type": "tidelift"
  4089. }
  4090. ],
  4091. "time": "2022-11-03T14:55:06+00:00"
  4092. },
  4093. {
  4094. "name": "symfony/polyfill-php80",
  4095. "version": "v1.27.0",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/symfony/polyfill-php80.git",
  4099. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4104. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4105. "shasum": ""
  4106. },
  4107. "require": {
  4108. "php": ">=7.1"
  4109. },
  4110. "type": "library",
  4111. "extra": {
  4112. "branch-alias": {
  4113. "dev-main": "1.27-dev"
  4114. },
  4115. "thanks": {
  4116. "name": "symfony/polyfill",
  4117. "url": "https://github.com/symfony/polyfill"
  4118. }
  4119. },
  4120. "autoload": {
  4121. "files": [
  4122. "bootstrap.php"
  4123. ],
  4124. "psr-4": {
  4125. "Symfony\\Polyfill\\Php80\\": ""
  4126. },
  4127. "classmap": [
  4128. "Resources/stubs"
  4129. ]
  4130. },
  4131. "notification-url": "https://packagist.org/downloads/",
  4132. "license": [
  4133. "MIT"
  4134. ],
  4135. "authors": [
  4136. {
  4137. "name": "Ion Bazan",
  4138. "email": "ion.bazan@gmail.com"
  4139. },
  4140. {
  4141. "name": "Nicolas Grekas",
  4142. "email": "p@tchwork.com"
  4143. },
  4144. {
  4145. "name": "Symfony Community",
  4146. "homepage": "https://symfony.com/contributors"
  4147. }
  4148. ],
  4149. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4150. "homepage": "https://symfony.com",
  4151. "keywords": [
  4152. "compatibility",
  4153. "polyfill",
  4154. "portable",
  4155. "shim"
  4156. ],
  4157. "support": {
  4158. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4159. },
  4160. "funding": [
  4161. {
  4162. "url": "https://symfony.com/sponsor",
  4163. "type": "custom"
  4164. },
  4165. {
  4166. "url": "https://github.com/fabpot",
  4167. "type": "github"
  4168. },
  4169. {
  4170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4171. "type": "tidelift"
  4172. }
  4173. ],
  4174. "time": "2022-11-03T14:55:06+00:00"
  4175. },
  4176. {
  4177. "name": "symfony/polyfill-php81",
  4178. "version": "v1.27.0",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/symfony/polyfill-php81.git",
  4182. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4187. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4188. "shasum": ""
  4189. },
  4190. "require": {
  4191. "php": ">=7.1"
  4192. },
  4193. "type": "library",
  4194. "extra": {
  4195. "branch-alias": {
  4196. "dev-main": "1.27-dev"
  4197. },
  4198. "thanks": {
  4199. "name": "symfony/polyfill",
  4200. "url": "https://github.com/symfony/polyfill"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "files": [
  4205. "bootstrap.php"
  4206. ],
  4207. "psr-4": {
  4208. "Symfony\\Polyfill\\Php81\\": ""
  4209. },
  4210. "classmap": [
  4211. "Resources/stubs"
  4212. ]
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "Nicolas Grekas",
  4221. "email": "p@tchwork.com"
  4222. },
  4223. {
  4224. "name": "Symfony Community",
  4225. "homepage": "https://symfony.com/contributors"
  4226. }
  4227. ],
  4228. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4229. "homepage": "https://symfony.com",
  4230. "keywords": [
  4231. "compatibility",
  4232. "polyfill",
  4233. "portable",
  4234. "shim"
  4235. ],
  4236. "support": {
  4237. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  4238. },
  4239. "funding": [
  4240. {
  4241. "url": "https://symfony.com/sponsor",
  4242. "type": "custom"
  4243. },
  4244. {
  4245. "url": "https://github.com/fabpot",
  4246. "type": "github"
  4247. },
  4248. {
  4249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4250. "type": "tidelift"
  4251. }
  4252. ],
  4253. "time": "2022-11-03T14:55:06+00:00"
  4254. },
  4255. {
  4256. "name": "symfony/process",
  4257. "version": "v5.4.21",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/symfony/process.git",
  4261. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/symfony/process/zipball/d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4266. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4267. "shasum": ""
  4268. },
  4269. "require": {
  4270. "php": ">=7.2.5",
  4271. "symfony/polyfill-php80": "^1.16"
  4272. },
  4273. "type": "library",
  4274. "autoload": {
  4275. "psr-4": {
  4276. "Symfony\\Component\\Process\\": ""
  4277. },
  4278. "exclude-from-classmap": [
  4279. "/Tests/"
  4280. ]
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "MIT"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Fabien Potencier",
  4289. "email": "fabien@symfony.com"
  4290. },
  4291. {
  4292. "name": "Symfony Community",
  4293. "homepage": "https://symfony.com/contributors"
  4294. }
  4295. ],
  4296. "description": "Executes commands in sub-processes",
  4297. "homepage": "https://symfony.com",
  4298. "support": {
  4299. "source": "https://github.com/symfony/process/tree/v5.4.21"
  4300. },
  4301. "funding": [
  4302. {
  4303. "url": "https://symfony.com/sponsor",
  4304. "type": "custom"
  4305. },
  4306. {
  4307. "url": "https://github.com/fabpot",
  4308. "type": "github"
  4309. },
  4310. {
  4311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4312. "type": "tidelift"
  4313. }
  4314. ],
  4315. "time": "2023-02-21T19:46:44+00:00"
  4316. },
  4317. {
  4318. "name": "symfony/routing",
  4319. "version": "v5.4.21",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/symfony/routing.git",
  4323. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/symfony/routing/zipball/2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4328. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "php": ">=7.2.5",
  4333. "symfony/deprecation-contracts": "^2.1|^3",
  4334. "symfony/polyfill-php80": "^1.16"
  4335. },
  4336. "conflict": {
  4337. "doctrine/annotations": "<1.12",
  4338. "symfony/config": "<5.3",
  4339. "symfony/dependency-injection": "<4.4",
  4340. "symfony/yaml": "<4.4"
  4341. },
  4342. "require-dev": {
  4343. "doctrine/annotations": "^1.12|^2",
  4344. "psr/log": "^1|^2|^3",
  4345. "symfony/config": "^5.3|^6.0",
  4346. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4347. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4348. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4349. "symfony/yaml": "^4.4|^5.0|^6.0"
  4350. },
  4351. "suggest": {
  4352. "symfony/config": "For using the all-in-one router or any loader",
  4353. "symfony/expression-language": "For using expression matching",
  4354. "symfony/http-foundation": "For using a Symfony Request object",
  4355. "symfony/yaml": "For using the YAML loader"
  4356. },
  4357. "type": "library",
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Symfony\\Component\\Routing\\": ""
  4361. },
  4362. "exclude-from-classmap": [
  4363. "/Tests/"
  4364. ]
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "MIT"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Fabien Potencier",
  4373. "email": "fabien@symfony.com"
  4374. },
  4375. {
  4376. "name": "Symfony Community",
  4377. "homepage": "https://symfony.com/contributors"
  4378. }
  4379. ],
  4380. "description": "Maps an HTTP request to a set of configuration variables",
  4381. "homepage": "https://symfony.com",
  4382. "keywords": [
  4383. "router",
  4384. "routing",
  4385. "uri",
  4386. "url"
  4387. ],
  4388. "support": {
  4389. "source": "https://github.com/symfony/routing/tree/v5.4.21"
  4390. },
  4391. "funding": [
  4392. {
  4393. "url": "https://symfony.com/sponsor",
  4394. "type": "custom"
  4395. },
  4396. {
  4397. "url": "https://github.com/fabpot",
  4398. "type": "github"
  4399. },
  4400. {
  4401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4402. "type": "tidelift"
  4403. }
  4404. ],
  4405. "time": "2023-02-16T09:33:00+00:00"
  4406. },
  4407. {
  4408. "name": "symfony/service-contracts",
  4409. "version": "v2.5.2",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://github.com/symfony/service-contracts.git",
  4413. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4418. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4419. "shasum": ""
  4420. },
  4421. "require": {
  4422. "php": ">=7.2.5",
  4423. "psr/container": "^1.1",
  4424. "symfony/deprecation-contracts": "^2.1|^3"
  4425. },
  4426. "conflict": {
  4427. "ext-psr": "<1.1|>=2"
  4428. },
  4429. "suggest": {
  4430. "symfony/service-implementation": ""
  4431. },
  4432. "type": "library",
  4433. "extra": {
  4434. "branch-alias": {
  4435. "dev-main": "2.5-dev"
  4436. },
  4437. "thanks": {
  4438. "name": "symfony/contracts",
  4439. "url": "https://github.com/symfony/contracts"
  4440. }
  4441. },
  4442. "autoload": {
  4443. "psr-4": {
  4444. "Symfony\\Contracts\\Service\\": ""
  4445. }
  4446. },
  4447. "notification-url": "https://packagist.org/downloads/",
  4448. "license": [
  4449. "MIT"
  4450. ],
  4451. "authors": [
  4452. {
  4453. "name": "Nicolas Grekas",
  4454. "email": "p@tchwork.com"
  4455. },
  4456. {
  4457. "name": "Symfony Community",
  4458. "homepage": "https://symfony.com/contributors"
  4459. }
  4460. ],
  4461. "description": "Generic abstractions related to writing services",
  4462. "homepage": "https://symfony.com",
  4463. "keywords": [
  4464. "abstractions",
  4465. "contracts",
  4466. "decoupling",
  4467. "interfaces",
  4468. "interoperability",
  4469. "standards"
  4470. ],
  4471. "support": {
  4472. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4473. },
  4474. "funding": [
  4475. {
  4476. "url": "https://symfony.com/sponsor",
  4477. "type": "custom"
  4478. },
  4479. {
  4480. "url": "https://github.com/fabpot",
  4481. "type": "github"
  4482. },
  4483. {
  4484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4485. "type": "tidelift"
  4486. }
  4487. ],
  4488. "time": "2022-05-30T19:17:29+00:00"
  4489. },
  4490. {
  4491. "name": "symfony/string",
  4492. "version": "v5.4.21",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/symfony/string.git",
  4496. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4501. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4502. "shasum": ""
  4503. },
  4504. "require": {
  4505. "php": ">=7.2.5",
  4506. "symfony/polyfill-ctype": "~1.8",
  4507. "symfony/polyfill-intl-grapheme": "~1.0",
  4508. "symfony/polyfill-intl-normalizer": "~1.0",
  4509. "symfony/polyfill-mbstring": "~1.0",
  4510. "symfony/polyfill-php80": "~1.15"
  4511. },
  4512. "conflict": {
  4513. "symfony/translation-contracts": ">=3.0"
  4514. },
  4515. "require-dev": {
  4516. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4517. "symfony/http-client": "^4.4|^5.0|^6.0",
  4518. "symfony/translation-contracts": "^1.1|^2",
  4519. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4520. },
  4521. "type": "library",
  4522. "autoload": {
  4523. "files": [
  4524. "Resources/functions.php"
  4525. ],
  4526. "psr-4": {
  4527. "Symfony\\Component\\String\\": ""
  4528. },
  4529. "exclude-from-classmap": [
  4530. "/Tests/"
  4531. ]
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Nicolas Grekas",
  4540. "email": "p@tchwork.com"
  4541. },
  4542. {
  4543. "name": "Symfony Community",
  4544. "homepage": "https://symfony.com/contributors"
  4545. }
  4546. ],
  4547. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4548. "homepage": "https://symfony.com",
  4549. "keywords": [
  4550. "grapheme",
  4551. "i18n",
  4552. "string",
  4553. "unicode",
  4554. "utf-8",
  4555. "utf8"
  4556. ],
  4557. "support": {
  4558. "source": "https://github.com/symfony/string/tree/v5.4.21"
  4559. },
  4560. "funding": [
  4561. {
  4562. "url": "https://symfony.com/sponsor",
  4563. "type": "custom"
  4564. },
  4565. {
  4566. "url": "https://github.com/fabpot",
  4567. "type": "github"
  4568. },
  4569. {
  4570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4571. "type": "tidelift"
  4572. }
  4573. ],
  4574. "time": "2023-02-22T08:00:55+00:00"
  4575. },
  4576. {
  4577. "name": "symfony/translation",
  4578. "version": "v5.4.21",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/symfony/translation.git",
  4582. "reference": "6996affeea65705086939894b77110e9a7f80874"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874",
  4587. "reference": "6996affeea65705086939894b77110e9a7f80874",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "php": ">=7.2.5",
  4592. "symfony/deprecation-contracts": "^2.1|^3",
  4593. "symfony/polyfill-mbstring": "~1.0",
  4594. "symfony/polyfill-php80": "^1.16",
  4595. "symfony/translation-contracts": "^2.3"
  4596. },
  4597. "conflict": {
  4598. "symfony/config": "<4.4",
  4599. "symfony/console": "<5.3",
  4600. "symfony/dependency-injection": "<5.0",
  4601. "symfony/http-kernel": "<5.0",
  4602. "symfony/twig-bundle": "<5.0",
  4603. "symfony/yaml": "<4.4"
  4604. },
  4605. "provide": {
  4606. "symfony/translation-implementation": "2.3"
  4607. },
  4608. "require-dev": {
  4609. "psr/log": "^1|^2|^3",
  4610. "symfony/config": "^4.4|^5.0|^6.0",
  4611. "symfony/console": "^5.4|^6.0",
  4612. "symfony/dependency-injection": "^5.0|^6.0",
  4613. "symfony/finder": "^4.4|^5.0|^6.0",
  4614. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4615. "symfony/http-kernel": "^5.0|^6.0",
  4616. "symfony/intl": "^4.4|^5.0|^6.0",
  4617. "symfony/polyfill-intl-icu": "^1.21",
  4618. "symfony/service-contracts": "^1.1.2|^2|^3",
  4619. "symfony/yaml": "^4.4|^5.0|^6.0"
  4620. },
  4621. "suggest": {
  4622. "psr/log-implementation": "To use logging capability in translator",
  4623. "symfony/config": "",
  4624. "symfony/yaml": ""
  4625. },
  4626. "type": "library",
  4627. "autoload": {
  4628. "files": [
  4629. "Resources/functions.php"
  4630. ],
  4631. "psr-4": {
  4632. "Symfony\\Component\\Translation\\": ""
  4633. },
  4634. "exclude-from-classmap": [
  4635. "/Tests/"
  4636. ]
  4637. },
  4638. "notification-url": "https://packagist.org/downloads/",
  4639. "license": [
  4640. "MIT"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "Fabien Potencier",
  4645. "email": "fabien@symfony.com"
  4646. },
  4647. {
  4648. "name": "Symfony Community",
  4649. "homepage": "https://symfony.com/contributors"
  4650. }
  4651. ],
  4652. "description": "Provides tools to internationalize your application",
  4653. "homepage": "https://symfony.com",
  4654. "support": {
  4655. "source": "https://github.com/symfony/translation/tree/v5.4.21"
  4656. },
  4657. "funding": [
  4658. {
  4659. "url": "https://symfony.com/sponsor",
  4660. "type": "custom"
  4661. },
  4662. {
  4663. "url": "https://github.com/fabpot",
  4664. "type": "github"
  4665. },
  4666. {
  4667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4668. "type": "tidelift"
  4669. }
  4670. ],
  4671. "time": "2023-02-21T19:46:44+00:00"
  4672. },
  4673. {
  4674. "name": "symfony/translation-contracts",
  4675. "version": "v2.5.2",
  4676. "source": {
  4677. "type": "git",
  4678. "url": "https://github.com/symfony/translation-contracts.git",
  4679. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4680. },
  4681. "dist": {
  4682. "type": "zip",
  4683. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4684. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4685. "shasum": ""
  4686. },
  4687. "require": {
  4688. "php": ">=7.2.5"
  4689. },
  4690. "suggest": {
  4691. "symfony/translation-implementation": ""
  4692. },
  4693. "type": "library",
  4694. "extra": {
  4695. "branch-alias": {
  4696. "dev-main": "2.5-dev"
  4697. },
  4698. "thanks": {
  4699. "name": "symfony/contracts",
  4700. "url": "https://github.com/symfony/contracts"
  4701. }
  4702. },
  4703. "autoload": {
  4704. "psr-4": {
  4705. "Symfony\\Contracts\\Translation\\": ""
  4706. }
  4707. },
  4708. "notification-url": "https://packagist.org/downloads/",
  4709. "license": [
  4710. "MIT"
  4711. ],
  4712. "authors": [
  4713. {
  4714. "name": "Nicolas Grekas",
  4715. "email": "p@tchwork.com"
  4716. },
  4717. {
  4718. "name": "Symfony Community",
  4719. "homepage": "https://symfony.com/contributors"
  4720. }
  4721. ],
  4722. "description": "Generic abstractions related to translation",
  4723. "homepage": "https://symfony.com",
  4724. "keywords": [
  4725. "abstractions",
  4726. "contracts",
  4727. "decoupling",
  4728. "interfaces",
  4729. "interoperability",
  4730. "standards"
  4731. ],
  4732. "support": {
  4733. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  4734. },
  4735. "funding": [
  4736. {
  4737. "url": "https://symfony.com/sponsor",
  4738. "type": "custom"
  4739. },
  4740. {
  4741. "url": "https://github.com/fabpot",
  4742. "type": "github"
  4743. },
  4744. {
  4745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4746. "type": "tidelift"
  4747. }
  4748. ],
  4749. "time": "2022-06-27T16:58:25+00:00"
  4750. },
  4751. {
  4752. "name": "symfony/var-dumper",
  4753. "version": "v5.4.21",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/symfony/var-dumper.git",
  4757. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  4762. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  4763. "shasum": ""
  4764. },
  4765. "require": {
  4766. "php": ">=7.2.5",
  4767. "symfony/polyfill-mbstring": "~1.0",
  4768. "symfony/polyfill-php80": "^1.16"
  4769. },
  4770. "conflict": {
  4771. "phpunit/phpunit": "<5.4.3",
  4772. "symfony/console": "<4.4"
  4773. },
  4774. "require-dev": {
  4775. "ext-iconv": "*",
  4776. "symfony/console": "^4.4|^5.0|^6.0",
  4777. "symfony/process": "^4.4|^5.0|^6.0",
  4778. "symfony/uid": "^5.1|^6.0",
  4779. "twig/twig": "^2.13|^3.0.4"
  4780. },
  4781. "suggest": {
  4782. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4783. "ext-intl": "To show region name in time zone dump",
  4784. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4785. },
  4786. "bin": [
  4787. "Resources/bin/var-dump-server"
  4788. ],
  4789. "type": "library",
  4790. "autoload": {
  4791. "files": [
  4792. "Resources/functions/dump.php"
  4793. ],
  4794. "psr-4": {
  4795. "Symfony\\Component\\VarDumper\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Nicolas Grekas",
  4808. "email": "p@tchwork.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4816. "homepage": "https://symfony.com",
  4817. "keywords": [
  4818. "debug",
  4819. "dump"
  4820. ],
  4821. "support": {
  4822. "source": "https://github.com/symfony/var-dumper/tree/v5.4.21"
  4823. },
  4824. "funding": [
  4825. {
  4826. "url": "https://symfony.com/sponsor",
  4827. "type": "custom"
  4828. },
  4829. {
  4830. "url": "https://github.com/fabpot",
  4831. "type": "github"
  4832. },
  4833. {
  4834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4835. "type": "tidelift"
  4836. }
  4837. ],
  4838. "time": "2023-02-23T10:00:28+00:00"
  4839. },
  4840. {
  4841. "name": "tijsverkoyen/css-to-inline-styles",
  4842. "version": "2.2.6",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4846. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  4851. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "ext-dom": "*",
  4856. "ext-libxml": "*",
  4857. "php": "^5.5 || ^7.0 || ^8.0",
  4858. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  4859. },
  4860. "require-dev": {
  4861. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4862. },
  4863. "type": "library",
  4864. "extra": {
  4865. "branch-alias": {
  4866. "dev-master": "2.2.x-dev"
  4867. }
  4868. },
  4869. "autoload": {
  4870. "psr-4": {
  4871. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4872. }
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "BSD-3-Clause"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Tijs Verkoyen",
  4881. "email": "css_to_inline_styles@verkoyen.eu",
  4882. "role": "Developer"
  4883. }
  4884. ],
  4885. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  4886. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4887. "support": {
  4888. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4889. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  4890. },
  4891. "time": "2023-01-03T09:29:04+00:00"
  4892. },
  4893. {
  4894. "name": "vlucas/phpdotenv",
  4895. "version": "v4.3.0",
  4896. "source": {
  4897. "type": "git",
  4898. "url": "https://github.com/vlucas/phpdotenv.git",
  4899. "reference": "67a491df68208bef8c37092db11fa3885008efcf"
  4900. },
  4901. "dist": {
  4902. "type": "zip",
  4903. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf",
  4904. "reference": "67a491df68208bef8c37092db11fa3885008efcf",
  4905. "shasum": ""
  4906. },
  4907. "require": {
  4908. "php": "^5.5.9 || ^7.0 || ^8.0",
  4909. "phpoption/phpoption": "^1.7.3",
  4910. "symfony/polyfill-ctype": "^1.17"
  4911. },
  4912. "require-dev": {
  4913. "bamarni/composer-bin-plugin": "^1.4.1",
  4914. "ext-filter": "*",
  4915. "ext-pcre": "*",
  4916. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  4917. },
  4918. "suggest": {
  4919. "ext-filter": "Required to use the boolean validator.",
  4920. "ext-pcre": "Required to use most of the library."
  4921. },
  4922. "type": "library",
  4923. "extra": {
  4924. "bamarni-bin": {
  4925. "bin-links": true,
  4926. "forward-command": true
  4927. },
  4928. "branch-alias": {
  4929. "dev-master": "4.3-dev"
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Dotenv\\": "src/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "BSD-3-Clause"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "Graham Campbell",
  4944. "email": "hello@gjcampbell.co.uk",
  4945. "homepage": "https://github.com/GrahamCampbell"
  4946. },
  4947. {
  4948. "name": "Vance Lucas",
  4949. "email": "vance@vancelucas.com",
  4950. "homepage": "https://github.com/vlucas"
  4951. }
  4952. ],
  4953. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4954. "keywords": [
  4955. "dotenv",
  4956. "env",
  4957. "environment"
  4958. ],
  4959. "support": {
  4960. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4961. "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0"
  4962. },
  4963. "funding": [
  4964. {
  4965. "url": "https://github.com/GrahamCampbell",
  4966. "type": "github"
  4967. },
  4968. {
  4969. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4970. "type": "tidelift"
  4971. }
  4972. ],
  4973. "time": "2022-10-16T00:51:09+00:00"
  4974. },
  4975. {
  4976. "name": "voku/portable-ascii",
  4977. "version": "1.6.1",
  4978. "source": {
  4979. "type": "git",
  4980. "url": "https://github.com/voku/portable-ascii.git",
  4981. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  4982. },
  4983. "dist": {
  4984. "type": "zip",
  4985. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  4986. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  4987. "shasum": ""
  4988. },
  4989. "require": {
  4990. "php": ">=7.0.0"
  4991. },
  4992. "require-dev": {
  4993. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4994. },
  4995. "suggest": {
  4996. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4997. },
  4998. "type": "library",
  4999. "autoload": {
  5000. "psr-4": {
  5001. "voku\\": "src/voku/"
  5002. }
  5003. },
  5004. "notification-url": "https://packagist.org/downloads/",
  5005. "license": [
  5006. "MIT"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "Lars Moelleken",
  5011. "homepage": "http://www.moelleken.org/"
  5012. }
  5013. ],
  5014. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5015. "homepage": "https://github.com/voku/portable-ascii",
  5016. "keywords": [
  5017. "ascii",
  5018. "clean",
  5019. "php"
  5020. ],
  5021. "support": {
  5022. "issues": "https://github.com/voku/portable-ascii/issues",
  5023. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5024. },
  5025. "funding": [
  5026. {
  5027. "url": "https://www.paypal.me/moelleken",
  5028. "type": "custom"
  5029. },
  5030. {
  5031. "url": "https://github.com/voku",
  5032. "type": "github"
  5033. },
  5034. {
  5035. "url": "https://opencollective.com/portable-ascii",
  5036. "type": "open_collective"
  5037. },
  5038. {
  5039. "url": "https://www.patreon.com/voku",
  5040. "type": "patreon"
  5041. },
  5042. {
  5043. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5044. "type": "tidelift"
  5045. }
  5046. ],
  5047. "time": "2022-01-24T18:55:24+00:00"
  5048. }
  5049. ],
  5050. "packages-dev": [
  5051. {
  5052. "name": "doctrine/instantiator",
  5053. "version": "1.5.0",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://github.com/doctrine/instantiator.git",
  5057. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  5062. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  5063. "shasum": ""
  5064. },
  5065. "require": {
  5066. "php": "^7.1 || ^8.0"
  5067. },
  5068. "require-dev": {
  5069. "doctrine/coding-standard": "^9 || ^11",
  5070. "ext-pdo": "*",
  5071. "ext-phar": "*",
  5072. "phpbench/phpbench": "^0.16 || ^1",
  5073. "phpstan/phpstan": "^1.4",
  5074. "phpstan/phpstan-phpunit": "^1",
  5075. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5076. "vimeo/psalm": "^4.30 || ^5.4"
  5077. },
  5078. "type": "library",
  5079. "autoload": {
  5080. "psr-4": {
  5081. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5082. }
  5083. },
  5084. "notification-url": "https://packagist.org/downloads/",
  5085. "license": [
  5086. "MIT"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Marco Pivetta",
  5091. "email": "ocramius@gmail.com",
  5092. "homepage": "https://ocramius.github.io/"
  5093. }
  5094. ],
  5095. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5096. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5097. "keywords": [
  5098. "constructor",
  5099. "instantiate"
  5100. ],
  5101. "support": {
  5102. "issues": "https://github.com/doctrine/instantiator/issues",
  5103. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  5104. },
  5105. "funding": [
  5106. {
  5107. "url": "https://www.doctrine-project.org/sponsorship.html",
  5108. "type": "custom"
  5109. },
  5110. {
  5111. "url": "https://www.patreon.com/phpdoctrine",
  5112. "type": "patreon"
  5113. },
  5114. {
  5115. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5116. "type": "tidelift"
  5117. }
  5118. ],
  5119. "time": "2022-12-30T00:15:36+00:00"
  5120. },
  5121. {
  5122. "name": "facade/flare-client-php",
  5123. "version": "1.10.0",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/facade/flare-client-php.git",
  5127. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5132. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "facade/ignition-contracts": "~1.0",
  5137. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5138. "php": "^7.1|^8.0",
  5139. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5140. "symfony/mime": "^3.4|^4.0|^5.1",
  5141. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5142. },
  5143. "require-dev": {
  5144. "friendsofphp/php-cs-fixer": "^2.14",
  5145. "phpunit/phpunit": "^7.5",
  5146. "spatie/phpunit-snapshot-assertions": "^2.0"
  5147. },
  5148. "type": "library",
  5149. "extra": {
  5150. "branch-alias": {
  5151. "dev-master": "1.0-dev"
  5152. }
  5153. },
  5154. "autoload": {
  5155. "files": [
  5156. "src/helpers.php"
  5157. ],
  5158. "psr-4": {
  5159. "Facade\\FlareClient\\": "src"
  5160. }
  5161. },
  5162. "notification-url": "https://packagist.org/downloads/",
  5163. "license": [
  5164. "MIT"
  5165. ],
  5166. "description": "Send PHP errors to Flare",
  5167. "homepage": "https://github.com/facade/flare-client-php",
  5168. "keywords": [
  5169. "exception",
  5170. "facade",
  5171. "flare",
  5172. "reporting"
  5173. ],
  5174. "support": {
  5175. "issues": "https://github.com/facade/flare-client-php/issues",
  5176. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  5177. },
  5178. "funding": [
  5179. {
  5180. "url": "https://github.com/spatie",
  5181. "type": "github"
  5182. }
  5183. ],
  5184. "time": "2022-08-09T11:23:57+00:00"
  5185. },
  5186. {
  5187. "name": "facade/ignition",
  5188. "version": "2.17.7",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/facade/ignition.git",
  5192. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  5197. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  5198. "shasum": ""
  5199. },
  5200. "require": {
  5201. "ext-curl": "*",
  5202. "ext-json": "*",
  5203. "ext-mbstring": "*",
  5204. "facade/flare-client-php": "^1.9.1",
  5205. "facade/ignition-contracts": "^1.0.2",
  5206. "illuminate/support": "^7.0|^8.0",
  5207. "monolog/monolog": "^2.0",
  5208. "php": "^7.2.5|^8.0",
  5209. "symfony/console": "^5.0",
  5210. "symfony/var-dumper": "^5.0"
  5211. },
  5212. "require-dev": {
  5213. "friendsofphp/php-cs-fixer": "^2.14",
  5214. "livewire/livewire": "^2.4",
  5215. "mockery/mockery": "^1.3",
  5216. "orchestra/testbench": "^5.0|^6.0",
  5217. "psalm/plugin-laravel": "^1.2"
  5218. },
  5219. "suggest": {
  5220. "laravel/telescope": "^3.1"
  5221. },
  5222. "type": "library",
  5223. "extra": {
  5224. "branch-alias": {
  5225. "dev-master": "2.x-dev"
  5226. },
  5227. "laravel": {
  5228. "providers": [
  5229. "Facade\\Ignition\\IgnitionServiceProvider"
  5230. ],
  5231. "aliases": {
  5232. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5233. }
  5234. }
  5235. },
  5236. "autoload": {
  5237. "files": [
  5238. "src/helpers.php"
  5239. ],
  5240. "psr-4": {
  5241. "Facade\\Ignition\\": "src"
  5242. }
  5243. },
  5244. "notification-url": "https://packagist.org/downloads/",
  5245. "license": [
  5246. "MIT"
  5247. ],
  5248. "description": "A beautiful error page for Laravel applications.",
  5249. "homepage": "https://github.com/facade/ignition",
  5250. "keywords": [
  5251. "error",
  5252. "flare",
  5253. "laravel",
  5254. "page"
  5255. ],
  5256. "support": {
  5257. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5258. "forum": "https://twitter.com/flareappio",
  5259. "issues": "https://github.com/facade/ignition/issues",
  5260. "source": "https://github.com/facade/ignition"
  5261. },
  5262. "time": "2023-01-26T12:34:59+00:00"
  5263. },
  5264. {
  5265. "name": "facade/ignition-contracts",
  5266. "version": "1.0.2",
  5267. "source": {
  5268. "type": "git",
  5269. "url": "https://github.com/facade/ignition-contracts.git",
  5270. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5271. },
  5272. "dist": {
  5273. "type": "zip",
  5274. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5275. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5276. "shasum": ""
  5277. },
  5278. "require": {
  5279. "php": "^7.3|^8.0"
  5280. },
  5281. "require-dev": {
  5282. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5283. "phpunit/phpunit": "^9.3.11",
  5284. "vimeo/psalm": "^3.17.1"
  5285. },
  5286. "type": "library",
  5287. "autoload": {
  5288. "psr-4": {
  5289. "Facade\\IgnitionContracts\\": "src"
  5290. }
  5291. },
  5292. "notification-url": "https://packagist.org/downloads/",
  5293. "license": [
  5294. "MIT"
  5295. ],
  5296. "authors": [
  5297. {
  5298. "name": "Freek Van der Herten",
  5299. "email": "freek@spatie.be",
  5300. "homepage": "https://flareapp.io",
  5301. "role": "Developer"
  5302. }
  5303. ],
  5304. "description": "Solution contracts for Ignition",
  5305. "homepage": "https://github.com/facade/ignition-contracts",
  5306. "keywords": [
  5307. "contracts",
  5308. "flare",
  5309. "ignition"
  5310. ],
  5311. "support": {
  5312. "issues": "https://github.com/facade/ignition-contracts/issues",
  5313. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5314. },
  5315. "time": "2020-10-16T08:27:54+00:00"
  5316. },
  5317. {
  5318. "name": "fakerphp/faker",
  5319. "version": "v1.21.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/FakerPHP/Faker.git",
  5323. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  5328. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "php": "^7.4 || ^8.0",
  5333. "psr/container": "^1.0 || ^2.0",
  5334. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5335. },
  5336. "conflict": {
  5337. "fzaninotto/faker": "*"
  5338. },
  5339. "require-dev": {
  5340. "bamarni/composer-bin-plugin": "^1.4.1",
  5341. "doctrine/persistence": "^1.3 || ^2.0",
  5342. "ext-intl": "*",
  5343. "phpunit/phpunit": "^9.5.26",
  5344. "symfony/phpunit-bridge": "^5.4.16"
  5345. },
  5346. "suggest": {
  5347. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5348. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5349. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5350. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5351. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5352. },
  5353. "type": "library",
  5354. "extra": {
  5355. "branch-alias": {
  5356. "dev-main": "v1.21-dev"
  5357. }
  5358. },
  5359. "autoload": {
  5360. "psr-4": {
  5361. "Faker\\": "src/Faker/"
  5362. }
  5363. },
  5364. "notification-url": "https://packagist.org/downloads/",
  5365. "license": [
  5366. "MIT"
  5367. ],
  5368. "authors": [
  5369. {
  5370. "name": "François Zaninotto"
  5371. }
  5372. ],
  5373. "description": "Faker is a PHP library that generates fake data for you.",
  5374. "keywords": [
  5375. "data",
  5376. "faker",
  5377. "fixtures"
  5378. ],
  5379. "support": {
  5380. "issues": "https://github.com/FakerPHP/Faker/issues",
  5381. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  5382. },
  5383. "time": "2022-12-13T13:54:32+00:00"
  5384. },
  5385. {
  5386. "name": "filp/whoops",
  5387. "version": "2.15.1",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/filp/whoops.git",
  5391. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  5396. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "php": "^5.5.9 || ^7.0 || ^8.0",
  5401. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5402. },
  5403. "require-dev": {
  5404. "mockery/mockery": "^0.9 || ^1.0",
  5405. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5406. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5407. },
  5408. "suggest": {
  5409. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5410. "whoops/soap": "Formats errors as SOAP responses"
  5411. },
  5412. "type": "library",
  5413. "extra": {
  5414. "branch-alias": {
  5415. "dev-master": "2.7-dev"
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "Whoops\\": "src/Whoops/"
  5421. }
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "MIT"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Filipe Dobreira",
  5430. "homepage": "https://github.com/filp",
  5431. "role": "Developer"
  5432. }
  5433. ],
  5434. "description": "php error handling for cool kids",
  5435. "homepage": "https://filp.github.io/whoops/",
  5436. "keywords": [
  5437. "error",
  5438. "exception",
  5439. "handling",
  5440. "library",
  5441. "throwable",
  5442. "whoops"
  5443. ],
  5444. "support": {
  5445. "issues": "https://github.com/filp/whoops/issues",
  5446. "source": "https://github.com/filp/whoops/tree/2.15.1"
  5447. },
  5448. "funding": [
  5449. {
  5450. "url": "https://github.com/denis-sokolov",
  5451. "type": "github"
  5452. }
  5453. ],
  5454. "time": "2023-03-06T18:09:13+00:00"
  5455. },
  5456. {
  5457. "name": "hamcrest/hamcrest-php",
  5458. "version": "v2.0.1",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5462. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5467. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": "^5.3|^7.0|^8.0"
  5472. },
  5473. "replace": {
  5474. "cordoval/hamcrest-php": "*",
  5475. "davedevelopment/hamcrest-php": "*",
  5476. "kodova/hamcrest-php": "*"
  5477. },
  5478. "require-dev": {
  5479. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5480. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-master": "2.1-dev"
  5486. }
  5487. },
  5488. "autoload": {
  5489. "classmap": [
  5490. "hamcrest"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "BSD-3-Clause"
  5496. ],
  5497. "description": "This is the PHP port of Hamcrest Matchers",
  5498. "keywords": [
  5499. "test"
  5500. ],
  5501. "support": {
  5502. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5503. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5504. },
  5505. "time": "2020-07-09T08:09:16+00:00"
  5506. },
  5507. {
  5508. "name": "mockery/mockery",
  5509. "version": "1.5.1",
  5510. "source": {
  5511. "type": "git",
  5512. "url": "https://github.com/mockery/mockery.git",
  5513. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  5514. },
  5515. "dist": {
  5516. "type": "zip",
  5517. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5518. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5519. "shasum": ""
  5520. },
  5521. "require": {
  5522. "hamcrest/hamcrest-php": "^2.0.1",
  5523. "lib-pcre": ">=7.0",
  5524. "php": "^7.3 || ^8.0"
  5525. },
  5526. "conflict": {
  5527. "phpunit/phpunit": "<8.0"
  5528. },
  5529. "require-dev": {
  5530. "phpunit/phpunit": "^8.5 || ^9.3"
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "branch-alias": {
  5535. "dev-master": "1.4.x-dev"
  5536. }
  5537. },
  5538. "autoload": {
  5539. "psr-0": {
  5540. "Mockery": "library/"
  5541. }
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "BSD-3-Clause"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Pádraic Brady",
  5550. "email": "padraic.brady@gmail.com",
  5551. "homepage": "http://blog.astrumfutura.com"
  5552. },
  5553. {
  5554. "name": "Dave Marshall",
  5555. "email": "dave.marshall@atstsolutions.co.uk",
  5556. "homepage": "http://davedevelopment.co.uk"
  5557. }
  5558. ],
  5559. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5560. "homepage": "https://github.com/mockery/mockery",
  5561. "keywords": [
  5562. "BDD",
  5563. "TDD",
  5564. "library",
  5565. "mock",
  5566. "mock objects",
  5567. "mockery",
  5568. "stub",
  5569. "test",
  5570. "test double",
  5571. "testing"
  5572. ],
  5573. "support": {
  5574. "issues": "https://github.com/mockery/mockery/issues",
  5575. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  5576. },
  5577. "time": "2022-09-07T15:32:08+00:00"
  5578. },
  5579. {
  5580. "name": "myclabs/deep-copy",
  5581. "version": "1.11.1",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/myclabs/DeepCopy.git",
  5585. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5590. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": "^7.1 || ^8.0"
  5595. },
  5596. "conflict": {
  5597. "doctrine/collections": "<1.6.8",
  5598. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5599. },
  5600. "require-dev": {
  5601. "doctrine/collections": "^1.6.8",
  5602. "doctrine/common": "^2.13.3 || ^3.2.2",
  5603. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5604. },
  5605. "type": "library",
  5606. "autoload": {
  5607. "files": [
  5608. "src/DeepCopy/deep_copy.php"
  5609. ],
  5610. "psr-4": {
  5611. "DeepCopy\\": "src/DeepCopy/"
  5612. }
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "description": "Create deep copies (clones) of your objects",
  5619. "keywords": [
  5620. "clone",
  5621. "copy",
  5622. "duplicate",
  5623. "object",
  5624. "object graph"
  5625. ],
  5626. "support": {
  5627. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5628. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  5629. },
  5630. "funding": [
  5631. {
  5632. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5633. "type": "tidelift"
  5634. }
  5635. ],
  5636. "time": "2023-03-08T13:26:56+00:00"
  5637. },
  5638. {
  5639. "name": "nunomaduro/collision",
  5640. "version": "v4.3.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/nunomaduro/collision.git",
  5644. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  5649. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "facade/ignition-contracts": "^1.0",
  5654. "filp/whoops": "^2.4",
  5655. "php": "^7.2.5 || ^8.0",
  5656. "symfony/console": "^5.0"
  5657. },
  5658. "require-dev": {
  5659. "facade/ignition": "^2.0",
  5660. "fideloper/proxy": "^4.2",
  5661. "friendsofphp/php-cs-fixer": "^2.16",
  5662. "fruitcake/laravel-cors": "^1.0",
  5663. "laravel/framework": "^7.0",
  5664. "laravel/tinker": "^2.0",
  5665. "nunomaduro/larastan": "^0.6",
  5666. "orchestra/testbench": "^5.0",
  5667. "phpstan/phpstan": "^0.12.3",
  5668. "phpunit/phpunit": "^8.5.1 || ^9.0"
  5669. },
  5670. "type": "library",
  5671. "extra": {
  5672. "laravel": {
  5673. "providers": [
  5674. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5675. ]
  5676. }
  5677. },
  5678. "autoload": {
  5679. "psr-4": {
  5680. "NunoMaduro\\Collision\\": "src/"
  5681. }
  5682. },
  5683. "notification-url": "https://packagist.org/downloads/",
  5684. "license": [
  5685. "MIT"
  5686. ],
  5687. "authors": [
  5688. {
  5689. "name": "Nuno Maduro",
  5690. "email": "enunomaduro@gmail.com"
  5691. }
  5692. ],
  5693. "description": "Cli error handling for console/command-line PHP applications.",
  5694. "keywords": [
  5695. "artisan",
  5696. "cli",
  5697. "command-line",
  5698. "console",
  5699. "error",
  5700. "handling",
  5701. "laravel",
  5702. "laravel-zero",
  5703. "php",
  5704. "symfony"
  5705. ],
  5706. "support": {
  5707. "issues": "https://github.com/nunomaduro/collision/issues",
  5708. "source": "https://github.com/nunomaduro/collision"
  5709. },
  5710. "funding": [
  5711. {
  5712. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5713. "type": "custom"
  5714. },
  5715. {
  5716. "url": "https://github.com/nunomaduro",
  5717. "type": "github"
  5718. },
  5719. {
  5720. "url": "https://www.patreon.com/nunomaduro",
  5721. "type": "patreon"
  5722. }
  5723. ],
  5724. "time": "2020-10-29T15:12:23+00:00"
  5725. },
  5726. {
  5727. "name": "phar-io/manifest",
  5728. "version": "2.0.3",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/phar-io/manifest.git",
  5732. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  5737. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5738. "shasum": ""
  5739. },
  5740. "require": {
  5741. "ext-dom": "*",
  5742. "ext-phar": "*",
  5743. "ext-xmlwriter": "*",
  5744. "phar-io/version": "^3.0.1",
  5745. "php": "^7.2 || ^8.0"
  5746. },
  5747. "type": "library",
  5748. "extra": {
  5749. "branch-alias": {
  5750. "dev-master": "2.0.x-dev"
  5751. }
  5752. },
  5753. "autoload": {
  5754. "classmap": [
  5755. "src/"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "BSD-3-Clause"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Arne Blankerts",
  5765. "email": "arne@blankerts.de",
  5766. "role": "Developer"
  5767. },
  5768. {
  5769. "name": "Sebastian Heuer",
  5770. "email": "sebastian@phpeople.de",
  5771. "role": "Developer"
  5772. },
  5773. {
  5774. "name": "Sebastian Bergmann",
  5775. "email": "sebastian@phpunit.de",
  5776. "role": "Developer"
  5777. }
  5778. ],
  5779. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5780. "support": {
  5781. "issues": "https://github.com/phar-io/manifest/issues",
  5782. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  5783. },
  5784. "time": "2021-07-20T11:28:43+00:00"
  5785. },
  5786. {
  5787. "name": "phar-io/version",
  5788. "version": "3.2.1",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/phar-io/version.git",
  5792. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5797. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": "^7.2 || ^8.0"
  5802. },
  5803. "type": "library",
  5804. "autoload": {
  5805. "classmap": [
  5806. "src/"
  5807. ]
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "BSD-3-Clause"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Arne Blankerts",
  5816. "email": "arne@blankerts.de",
  5817. "role": "Developer"
  5818. },
  5819. {
  5820. "name": "Sebastian Heuer",
  5821. "email": "sebastian@phpeople.de",
  5822. "role": "Developer"
  5823. },
  5824. {
  5825. "name": "Sebastian Bergmann",
  5826. "email": "sebastian@phpunit.de",
  5827. "role": "Developer"
  5828. }
  5829. ],
  5830. "description": "Library for handling version information and constraints",
  5831. "support": {
  5832. "issues": "https://github.com/phar-io/version/issues",
  5833. "source": "https://github.com/phar-io/version/tree/3.2.1"
  5834. },
  5835. "time": "2022-02-21T01:04:05+00:00"
  5836. },
  5837. {
  5838. "name": "phpunit/php-code-coverage",
  5839. "version": "9.2.26",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5843. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  5848. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "ext-dom": "*",
  5853. "ext-libxml": "*",
  5854. "ext-xmlwriter": "*",
  5855. "nikic/php-parser": "^4.15",
  5856. "php": ">=7.3",
  5857. "phpunit/php-file-iterator": "^3.0.3",
  5858. "phpunit/php-text-template": "^2.0.2",
  5859. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  5860. "sebastian/complexity": "^2.0",
  5861. "sebastian/environment": "^5.1.2",
  5862. "sebastian/lines-of-code": "^1.0.3",
  5863. "sebastian/version": "^3.0.1",
  5864. "theseer/tokenizer": "^1.2.0"
  5865. },
  5866. "require-dev": {
  5867. "phpunit/phpunit": "^9.3"
  5868. },
  5869. "suggest": {
  5870. "ext-pcov": "PHP extension that provides line coverage",
  5871. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "branch-alias": {
  5876. "dev-master": "9.2-dev"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "classmap": [
  5881. "src/"
  5882. ]
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "BSD-3-Clause"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Sebastian Bergmann",
  5891. "email": "sebastian@phpunit.de",
  5892. "role": "lead"
  5893. }
  5894. ],
  5895. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5896. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5897. "keywords": [
  5898. "coverage",
  5899. "testing",
  5900. "xunit"
  5901. ],
  5902. "support": {
  5903. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  5904. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  5905. },
  5906. "funding": [
  5907. {
  5908. "url": "https://github.com/sebastianbergmann",
  5909. "type": "github"
  5910. }
  5911. ],
  5912. "time": "2023-03-06T12:58:08+00:00"
  5913. },
  5914. {
  5915. "name": "phpunit/php-file-iterator",
  5916. "version": "3.0.6",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5920. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  5925. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  5926. "shasum": ""
  5927. },
  5928. "require": {
  5929. "php": ">=7.3"
  5930. },
  5931. "require-dev": {
  5932. "phpunit/phpunit": "^9.3"
  5933. },
  5934. "type": "library",
  5935. "extra": {
  5936. "branch-alias": {
  5937. "dev-master": "3.0-dev"
  5938. }
  5939. },
  5940. "autoload": {
  5941. "classmap": [
  5942. "src/"
  5943. ]
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "BSD-3-Clause"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "Sebastian Bergmann",
  5952. "email": "sebastian@phpunit.de",
  5953. "role": "lead"
  5954. }
  5955. ],
  5956. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5957. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5958. "keywords": [
  5959. "filesystem",
  5960. "iterator"
  5961. ],
  5962. "support": {
  5963. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  5964. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  5965. },
  5966. "funding": [
  5967. {
  5968. "url": "https://github.com/sebastianbergmann",
  5969. "type": "github"
  5970. }
  5971. ],
  5972. "time": "2021-12-02T12:48:52+00:00"
  5973. },
  5974. {
  5975. "name": "phpunit/php-invoker",
  5976. "version": "3.1.1",
  5977. "source": {
  5978. "type": "git",
  5979. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  5980. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  5981. },
  5982. "dist": {
  5983. "type": "zip",
  5984. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  5985. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  5986. "shasum": ""
  5987. },
  5988. "require": {
  5989. "php": ">=7.3"
  5990. },
  5991. "require-dev": {
  5992. "ext-pcntl": "*",
  5993. "phpunit/phpunit": "^9.3"
  5994. },
  5995. "suggest": {
  5996. "ext-pcntl": "*"
  5997. },
  5998. "type": "library",
  5999. "extra": {
  6000. "branch-alias": {
  6001. "dev-master": "3.1-dev"
  6002. }
  6003. },
  6004. "autoload": {
  6005. "classmap": [
  6006. "src/"
  6007. ]
  6008. },
  6009. "notification-url": "https://packagist.org/downloads/",
  6010. "license": [
  6011. "BSD-3-Clause"
  6012. ],
  6013. "authors": [
  6014. {
  6015. "name": "Sebastian Bergmann",
  6016. "email": "sebastian@phpunit.de",
  6017. "role": "lead"
  6018. }
  6019. ],
  6020. "description": "Invoke callables with a timeout",
  6021. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6022. "keywords": [
  6023. "process"
  6024. ],
  6025. "support": {
  6026. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6027. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6028. },
  6029. "funding": [
  6030. {
  6031. "url": "https://github.com/sebastianbergmann",
  6032. "type": "github"
  6033. }
  6034. ],
  6035. "time": "2020-09-28T05:58:55+00:00"
  6036. },
  6037. {
  6038. "name": "phpunit/php-text-template",
  6039. "version": "2.0.4",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6043. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6048. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=7.3"
  6053. },
  6054. "require-dev": {
  6055. "phpunit/phpunit": "^9.3"
  6056. },
  6057. "type": "library",
  6058. "extra": {
  6059. "branch-alias": {
  6060. "dev-master": "2.0-dev"
  6061. }
  6062. },
  6063. "autoload": {
  6064. "classmap": [
  6065. "src/"
  6066. ]
  6067. },
  6068. "notification-url": "https://packagist.org/downloads/",
  6069. "license": [
  6070. "BSD-3-Clause"
  6071. ],
  6072. "authors": [
  6073. {
  6074. "name": "Sebastian Bergmann",
  6075. "email": "sebastian@phpunit.de",
  6076. "role": "lead"
  6077. }
  6078. ],
  6079. "description": "Simple template engine.",
  6080. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6081. "keywords": [
  6082. "template"
  6083. ],
  6084. "support": {
  6085. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6086. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6087. },
  6088. "funding": [
  6089. {
  6090. "url": "https://github.com/sebastianbergmann",
  6091. "type": "github"
  6092. }
  6093. ],
  6094. "time": "2020-10-26T05:33:50+00:00"
  6095. },
  6096. {
  6097. "name": "phpunit/php-timer",
  6098. "version": "5.0.3",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6102. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6107. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6108. "shasum": ""
  6109. },
  6110. "require": {
  6111. "php": ">=7.3"
  6112. },
  6113. "require-dev": {
  6114. "phpunit/phpunit": "^9.3"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "branch-alias": {
  6119. "dev-master": "5.0-dev"
  6120. }
  6121. },
  6122. "autoload": {
  6123. "classmap": [
  6124. "src/"
  6125. ]
  6126. },
  6127. "notification-url": "https://packagist.org/downloads/",
  6128. "license": [
  6129. "BSD-3-Clause"
  6130. ],
  6131. "authors": [
  6132. {
  6133. "name": "Sebastian Bergmann",
  6134. "email": "sebastian@phpunit.de",
  6135. "role": "lead"
  6136. }
  6137. ],
  6138. "description": "Utility class for timing",
  6139. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6140. "keywords": [
  6141. "timer"
  6142. ],
  6143. "support": {
  6144. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6145. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6146. },
  6147. "funding": [
  6148. {
  6149. "url": "https://github.com/sebastianbergmann",
  6150. "type": "github"
  6151. }
  6152. ],
  6153. "time": "2020-10-26T13:16:10+00:00"
  6154. },
  6155. {
  6156. "name": "phpunit/phpunit",
  6157. "version": "9.6.5",
  6158. "source": {
  6159. "type": "git",
  6160. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6161. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
  6162. },
  6163. "dist": {
  6164. "type": "zip",
  6165. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  6166. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  6167. "shasum": ""
  6168. },
  6169. "require": {
  6170. "doctrine/instantiator": "^1.3.1 || ^2",
  6171. "ext-dom": "*",
  6172. "ext-json": "*",
  6173. "ext-libxml": "*",
  6174. "ext-mbstring": "*",
  6175. "ext-xml": "*",
  6176. "ext-xmlwriter": "*",
  6177. "myclabs/deep-copy": "^1.10.1",
  6178. "phar-io/manifest": "^2.0.3",
  6179. "phar-io/version": "^3.0.2",
  6180. "php": ">=7.3",
  6181. "phpunit/php-code-coverage": "^9.2.13",
  6182. "phpunit/php-file-iterator": "^3.0.5",
  6183. "phpunit/php-invoker": "^3.1.1",
  6184. "phpunit/php-text-template": "^2.0.3",
  6185. "phpunit/php-timer": "^5.0.2",
  6186. "sebastian/cli-parser": "^1.0.1",
  6187. "sebastian/code-unit": "^1.0.6",
  6188. "sebastian/comparator": "^4.0.8",
  6189. "sebastian/diff": "^4.0.3",
  6190. "sebastian/environment": "^5.1.3",
  6191. "sebastian/exporter": "^4.0.5",
  6192. "sebastian/global-state": "^5.0.1",
  6193. "sebastian/object-enumerator": "^4.0.3",
  6194. "sebastian/resource-operations": "^3.0.3",
  6195. "sebastian/type": "^3.2",
  6196. "sebastian/version": "^3.0.2"
  6197. },
  6198. "suggest": {
  6199. "ext-soap": "To be able to generate mocks based on WSDL files",
  6200. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6201. },
  6202. "bin": [
  6203. "phpunit"
  6204. ],
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-master": "9.6-dev"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "files": [
  6213. "src/Framework/Assert/Functions.php"
  6214. ],
  6215. "classmap": [
  6216. "src/"
  6217. ]
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "BSD-3-Clause"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Sebastian Bergmann",
  6226. "email": "sebastian@phpunit.de",
  6227. "role": "lead"
  6228. }
  6229. ],
  6230. "description": "The PHP Unit Testing framework.",
  6231. "homepage": "https://phpunit.de/",
  6232. "keywords": [
  6233. "phpunit",
  6234. "testing",
  6235. "xunit"
  6236. ],
  6237. "support": {
  6238. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6239. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
  6240. },
  6241. "funding": [
  6242. {
  6243. "url": "https://phpunit.de/sponsors.html",
  6244. "type": "custom"
  6245. },
  6246. {
  6247. "url": "https://github.com/sebastianbergmann",
  6248. "type": "github"
  6249. },
  6250. {
  6251. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  6252. "type": "tidelift"
  6253. }
  6254. ],
  6255. "time": "2023-03-09T06:34:10+00:00"
  6256. },
  6257. {
  6258. "name": "sebastian/cli-parser",
  6259. "version": "1.0.1",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6263. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6268. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "php": ">=7.3"
  6273. },
  6274. "require-dev": {
  6275. "phpunit/phpunit": "^9.3"
  6276. },
  6277. "type": "library",
  6278. "extra": {
  6279. "branch-alias": {
  6280. "dev-master": "1.0-dev"
  6281. }
  6282. },
  6283. "autoload": {
  6284. "classmap": [
  6285. "src/"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "BSD-3-Clause"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Sebastian Bergmann",
  6295. "email": "sebastian@phpunit.de",
  6296. "role": "lead"
  6297. }
  6298. ],
  6299. "description": "Library for parsing CLI options",
  6300. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6301. "support": {
  6302. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6303. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6304. },
  6305. "funding": [
  6306. {
  6307. "url": "https://github.com/sebastianbergmann",
  6308. "type": "github"
  6309. }
  6310. ],
  6311. "time": "2020-09-28T06:08:49+00:00"
  6312. },
  6313. {
  6314. "name": "sebastian/code-unit",
  6315. "version": "1.0.8",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6319. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6324. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6325. "shasum": ""
  6326. },
  6327. "require": {
  6328. "php": ">=7.3"
  6329. },
  6330. "require-dev": {
  6331. "phpunit/phpunit": "^9.3"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "branch-alias": {
  6336. "dev-master": "1.0-dev"
  6337. }
  6338. },
  6339. "autoload": {
  6340. "classmap": [
  6341. "src/"
  6342. ]
  6343. },
  6344. "notification-url": "https://packagist.org/downloads/",
  6345. "license": [
  6346. "BSD-3-Clause"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "Sebastian Bergmann",
  6351. "email": "sebastian@phpunit.de",
  6352. "role": "lead"
  6353. }
  6354. ],
  6355. "description": "Collection of value objects that represent the PHP code units",
  6356. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6357. "support": {
  6358. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6359. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6360. },
  6361. "funding": [
  6362. {
  6363. "url": "https://github.com/sebastianbergmann",
  6364. "type": "github"
  6365. }
  6366. ],
  6367. "time": "2020-10-26T13:08:54+00:00"
  6368. },
  6369. {
  6370. "name": "sebastian/code-unit-reverse-lookup",
  6371. "version": "2.0.3",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6375. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6380. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6381. "shasum": ""
  6382. },
  6383. "require": {
  6384. "php": ">=7.3"
  6385. },
  6386. "require-dev": {
  6387. "phpunit/phpunit": "^9.3"
  6388. },
  6389. "type": "library",
  6390. "extra": {
  6391. "branch-alias": {
  6392. "dev-master": "2.0-dev"
  6393. }
  6394. },
  6395. "autoload": {
  6396. "classmap": [
  6397. "src/"
  6398. ]
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "BSD-3-Clause"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Sebastian Bergmann",
  6407. "email": "sebastian@phpunit.de"
  6408. }
  6409. ],
  6410. "description": "Looks up which function or method a line of code belongs to",
  6411. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6412. "support": {
  6413. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6414. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6415. },
  6416. "funding": [
  6417. {
  6418. "url": "https://github.com/sebastianbergmann",
  6419. "type": "github"
  6420. }
  6421. ],
  6422. "time": "2020-09-28T05:30:19+00:00"
  6423. },
  6424. {
  6425. "name": "sebastian/comparator",
  6426. "version": "4.0.8",
  6427. "source": {
  6428. "type": "git",
  6429. "url": "https://github.com/sebastianbergmann/comparator.git",
  6430. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  6431. },
  6432. "dist": {
  6433. "type": "zip",
  6434. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  6435. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  6436. "shasum": ""
  6437. },
  6438. "require": {
  6439. "php": ">=7.3",
  6440. "sebastian/diff": "^4.0",
  6441. "sebastian/exporter": "^4.0"
  6442. },
  6443. "require-dev": {
  6444. "phpunit/phpunit": "^9.3"
  6445. },
  6446. "type": "library",
  6447. "extra": {
  6448. "branch-alias": {
  6449. "dev-master": "4.0-dev"
  6450. }
  6451. },
  6452. "autoload": {
  6453. "classmap": [
  6454. "src/"
  6455. ]
  6456. },
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "BSD-3-Clause"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Sebastian Bergmann",
  6464. "email": "sebastian@phpunit.de"
  6465. },
  6466. {
  6467. "name": "Jeff Welch",
  6468. "email": "whatthejeff@gmail.com"
  6469. },
  6470. {
  6471. "name": "Volker Dusch",
  6472. "email": "github@wallbash.com"
  6473. },
  6474. {
  6475. "name": "Bernhard Schussek",
  6476. "email": "bschussek@2bepublished.at"
  6477. }
  6478. ],
  6479. "description": "Provides the functionality to compare PHP values for equality",
  6480. "homepage": "https://github.com/sebastianbergmann/comparator",
  6481. "keywords": [
  6482. "comparator",
  6483. "compare",
  6484. "equality"
  6485. ],
  6486. "support": {
  6487. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6488. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  6489. },
  6490. "funding": [
  6491. {
  6492. "url": "https://github.com/sebastianbergmann",
  6493. "type": "github"
  6494. }
  6495. ],
  6496. "time": "2022-09-14T12:41:17+00:00"
  6497. },
  6498. {
  6499. "name": "sebastian/complexity",
  6500. "version": "2.0.2",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/sebastianbergmann/complexity.git",
  6504. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6509. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6510. "shasum": ""
  6511. },
  6512. "require": {
  6513. "nikic/php-parser": "^4.7",
  6514. "php": ">=7.3"
  6515. },
  6516. "require-dev": {
  6517. "phpunit/phpunit": "^9.3"
  6518. },
  6519. "type": "library",
  6520. "extra": {
  6521. "branch-alias": {
  6522. "dev-master": "2.0-dev"
  6523. }
  6524. },
  6525. "autoload": {
  6526. "classmap": [
  6527. "src/"
  6528. ]
  6529. },
  6530. "notification-url": "https://packagist.org/downloads/",
  6531. "license": [
  6532. "BSD-3-Clause"
  6533. ],
  6534. "authors": [
  6535. {
  6536. "name": "Sebastian Bergmann",
  6537. "email": "sebastian@phpunit.de",
  6538. "role": "lead"
  6539. }
  6540. ],
  6541. "description": "Library for calculating the complexity of PHP code units",
  6542. "homepage": "https://github.com/sebastianbergmann/complexity",
  6543. "support": {
  6544. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6545. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6546. },
  6547. "funding": [
  6548. {
  6549. "url": "https://github.com/sebastianbergmann",
  6550. "type": "github"
  6551. }
  6552. ],
  6553. "time": "2020-10-26T15:52:27+00:00"
  6554. },
  6555. {
  6556. "name": "sebastian/diff",
  6557. "version": "4.0.4",
  6558. "source": {
  6559. "type": "git",
  6560. "url": "https://github.com/sebastianbergmann/diff.git",
  6561. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6562. },
  6563. "dist": {
  6564. "type": "zip",
  6565. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6566. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6567. "shasum": ""
  6568. },
  6569. "require": {
  6570. "php": ">=7.3"
  6571. },
  6572. "require-dev": {
  6573. "phpunit/phpunit": "^9.3",
  6574. "symfony/process": "^4.2 || ^5"
  6575. },
  6576. "type": "library",
  6577. "extra": {
  6578. "branch-alias": {
  6579. "dev-master": "4.0-dev"
  6580. }
  6581. },
  6582. "autoload": {
  6583. "classmap": [
  6584. "src/"
  6585. ]
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "BSD-3-Clause"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Sebastian Bergmann",
  6594. "email": "sebastian@phpunit.de"
  6595. },
  6596. {
  6597. "name": "Kore Nordmann",
  6598. "email": "mail@kore-nordmann.de"
  6599. }
  6600. ],
  6601. "description": "Diff implementation",
  6602. "homepage": "https://github.com/sebastianbergmann/diff",
  6603. "keywords": [
  6604. "diff",
  6605. "udiff",
  6606. "unidiff",
  6607. "unified diff"
  6608. ],
  6609. "support": {
  6610. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6611. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6612. },
  6613. "funding": [
  6614. {
  6615. "url": "https://github.com/sebastianbergmann",
  6616. "type": "github"
  6617. }
  6618. ],
  6619. "time": "2020-10-26T13:10:38+00:00"
  6620. },
  6621. {
  6622. "name": "sebastian/environment",
  6623. "version": "5.1.5",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/sebastianbergmann/environment.git",
  6627. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6632. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "php": ">=7.3"
  6637. },
  6638. "require-dev": {
  6639. "phpunit/phpunit": "^9.3"
  6640. },
  6641. "suggest": {
  6642. "ext-posix": "*"
  6643. },
  6644. "type": "library",
  6645. "extra": {
  6646. "branch-alias": {
  6647. "dev-master": "5.1-dev"
  6648. }
  6649. },
  6650. "autoload": {
  6651. "classmap": [
  6652. "src/"
  6653. ]
  6654. },
  6655. "notification-url": "https://packagist.org/downloads/",
  6656. "license": [
  6657. "BSD-3-Clause"
  6658. ],
  6659. "authors": [
  6660. {
  6661. "name": "Sebastian Bergmann",
  6662. "email": "sebastian@phpunit.de"
  6663. }
  6664. ],
  6665. "description": "Provides functionality to handle HHVM/PHP environments",
  6666. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6667. "keywords": [
  6668. "Xdebug",
  6669. "environment",
  6670. "hhvm"
  6671. ],
  6672. "support": {
  6673. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6674. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  6675. },
  6676. "funding": [
  6677. {
  6678. "url": "https://github.com/sebastianbergmann",
  6679. "type": "github"
  6680. }
  6681. ],
  6682. "time": "2023-02-03T06:03:51+00:00"
  6683. },
  6684. {
  6685. "name": "sebastian/exporter",
  6686. "version": "4.0.5",
  6687. "source": {
  6688. "type": "git",
  6689. "url": "https://github.com/sebastianbergmann/exporter.git",
  6690. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  6691. },
  6692. "dist": {
  6693. "type": "zip",
  6694. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6695. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6696. "shasum": ""
  6697. },
  6698. "require": {
  6699. "php": ">=7.3",
  6700. "sebastian/recursion-context": "^4.0"
  6701. },
  6702. "require-dev": {
  6703. "ext-mbstring": "*",
  6704. "phpunit/phpunit": "^9.3"
  6705. },
  6706. "type": "library",
  6707. "extra": {
  6708. "branch-alias": {
  6709. "dev-master": "4.0-dev"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "classmap": [
  6714. "src/"
  6715. ]
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "BSD-3-Clause"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Sebastian Bergmann",
  6724. "email": "sebastian@phpunit.de"
  6725. },
  6726. {
  6727. "name": "Jeff Welch",
  6728. "email": "whatthejeff@gmail.com"
  6729. },
  6730. {
  6731. "name": "Volker Dusch",
  6732. "email": "github@wallbash.com"
  6733. },
  6734. {
  6735. "name": "Adam Harvey",
  6736. "email": "aharvey@php.net"
  6737. },
  6738. {
  6739. "name": "Bernhard Schussek",
  6740. "email": "bschussek@gmail.com"
  6741. }
  6742. ],
  6743. "description": "Provides the functionality to export PHP variables for visualization",
  6744. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6745. "keywords": [
  6746. "export",
  6747. "exporter"
  6748. ],
  6749. "support": {
  6750. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  6751. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://github.com/sebastianbergmann",
  6756. "type": "github"
  6757. }
  6758. ],
  6759. "time": "2022-09-14T06:03:37+00:00"
  6760. },
  6761. {
  6762. "name": "sebastian/global-state",
  6763. "version": "5.0.5",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/sebastianbergmann/global-state.git",
  6767. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6772. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.3",
  6777. "sebastian/object-reflector": "^2.0",
  6778. "sebastian/recursion-context": "^4.0"
  6779. },
  6780. "require-dev": {
  6781. "ext-dom": "*",
  6782. "phpunit/phpunit": "^9.3"
  6783. },
  6784. "suggest": {
  6785. "ext-uopz": "*"
  6786. },
  6787. "type": "library",
  6788. "extra": {
  6789. "branch-alias": {
  6790. "dev-master": "5.0-dev"
  6791. }
  6792. },
  6793. "autoload": {
  6794. "classmap": [
  6795. "src/"
  6796. ]
  6797. },
  6798. "notification-url": "https://packagist.org/downloads/",
  6799. "license": [
  6800. "BSD-3-Clause"
  6801. ],
  6802. "authors": [
  6803. {
  6804. "name": "Sebastian Bergmann",
  6805. "email": "sebastian@phpunit.de"
  6806. }
  6807. ],
  6808. "description": "Snapshotting of global state",
  6809. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6810. "keywords": [
  6811. "global state"
  6812. ],
  6813. "support": {
  6814. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  6815. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  6816. },
  6817. "funding": [
  6818. {
  6819. "url": "https://github.com/sebastianbergmann",
  6820. "type": "github"
  6821. }
  6822. ],
  6823. "time": "2022-02-14T08:28:10+00:00"
  6824. },
  6825. {
  6826. "name": "sebastian/lines-of-code",
  6827. "version": "1.0.3",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  6831. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  6832. },
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  6836. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "nikic/php-parser": "^4.6",
  6841. "php": ">=7.3"
  6842. },
  6843. "require-dev": {
  6844. "phpunit/phpunit": "^9.3"
  6845. },
  6846. "type": "library",
  6847. "extra": {
  6848. "branch-alias": {
  6849. "dev-master": "1.0-dev"
  6850. }
  6851. },
  6852. "autoload": {
  6853. "classmap": [
  6854. "src/"
  6855. ]
  6856. },
  6857. "notification-url": "https://packagist.org/downloads/",
  6858. "license": [
  6859. "BSD-3-Clause"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Sebastian Bergmann",
  6864. "email": "sebastian@phpunit.de",
  6865. "role": "lead"
  6866. }
  6867. ],
  6868. "description": "Library for counting the lines of code in PHP source code",
  6869. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6870. "support": {
  6871. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  6872. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://github.com/sebastianbergmann",
  6877. "type": "github"
  6878. }
  6879. ],
  6880. "time": "2020-11-28T06:42:11+00:00"
  6881. },
  6882. {
  6883. "name": "sebastian/object-enumerator",
  6884. "version": "4.0.4",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6888. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  6893. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  6894. "shasum": ""
  6895. },
  6896. "require": {
  6897. "php": ">=7.3",
  6898. "sebastian/object-reflector": "^2.0",
  6899. "sebastian/recursion-context": "^4.0"
  6900. },
  6901. "require-dev": {
  6902. "phpunit/phpunit": "^9.3"
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-master": "4.0-dev"
  6908. }
  6909. },
  6910. "autoload": {
  6911. "classmap": [
  6912. "src/"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "BSD-3-Clause"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Sebastian Bergmann",
  6922. "email": "sebastian@phpunit.de"
  6923. }
  6924. ],
  6925. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6926. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6927. "support": {
  6928. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  6929. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://github.com/sebastianbergmann",
  6934. "type": "github"
  6935. }
  6936. ],
  6937. "time": "2020-10-26T13:12:34+00:00"
  6938. },
  6939. {
  6940. "name": "sebastian/object-reflector",
  6941. "version": "2.0.4",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6945. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  6950. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=7.3"
  6955. },
  6956. "require-dev": {
  6957. "phpunit/phpunit": "^9.3"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "branch-alias": {
  6962. "dev-master": "2.0-dev"
  6963. }
  6964. },
  6965. "autoload": {
  6966. "classmap": [
  6967. "src/"
  6968. ]
  6969. },
  6970. "notification-url": "https://packagist.org/downloads/",
  6971. "license": [
  6972. "BSD-3-Clause"
  6973. ],
  6974. "authors": [
  6975. {
  6976. "name": "Sebastian Bergmann",
  6977. "email": "sebastian@phpunit.de"
  6978. }
  6979. ],
  6980. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6981. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6982. "support": {
  6983. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  6984. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://github.com/sebastianbergmann",
  6989. "type": "github"
  6990. }
  6991. ],
  6992. "time": "2020-10-26T13:14:26+00:00"
  6993. },
  6994. {
  6995. "name": "sebastian/recursion-context",
  6996. "version": "4.0.5",
  6997. "source": {
  6998. "type": "git",
  6999. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7000. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7001. },
  7002. "dist": {
  7003. "type": "zip",
  7004. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7005. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7006. "shasum": ""
  7007. },
  7008. "require": {
  7009. "php": ">=7.3"
  7010. },
  7011. "require-dev": {
  7012. "phpunit/phpunit": "^9.3"
  7013. },
  7014. "type": "library",
  7015. "extra": {
  7016. "branch-alias": {
  7017. "dev-master": "4.0-dev"
  7018. }
  7019. },
  7020. "autoload": {
  7021. "classmap": [
  7022. "src/"
  7023. ]
  7024. },
  7025. "notification-url": "https://packagist.org/downloads/",
  7026. "license": [
  7027. "BSD-3-Clause"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "Sebastian Bergmann",
  7032. "email": "sebastian@phpunit.de"
  7033. },
  7034. {
  7035. "name": "Jeff Welch",
  7036. "email": "whatthejeff@gmail.com"
  7037. },
  7038. {
  7039. "name": "Adam Harvey",
  7040. "email": "aharvey@php.net"
  7041. }
  7042. ],
  7043. "description": "Provides functionality to recursively process PHP variables",
  7044. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7045. "support": {
  7046. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7047. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  7048. },
  7049. "funding": [
  7050. {
  7051. "url": "https://github.com/sebastianbergmann",
  7052. "type": "github"
  7053. }
  7054. ],
  7055. "time": "2023-02-03T06:07:39+00:00"
  7056. },
  7057. {
  7058. "name": "sebastian/resource-operations",
  7059. "version": "3.0.3",
  7060. "source": {
  7061. "type": "git",
  7062. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7063. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7064. },
  7065. "dist": {
  7066. "type": "zip",
  7067. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7068. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7069. "shasum": ""
  7070. },
  7071. "require": {
  7072. "php": ">=7.3"
  7073. },
  7074. "require-dev": {
  7075. "phpunit/phpunit": "^9.0"
  7076. },
  7077. "type": "library",
  7078. "extra": {
  7079. "branch-alias": {
  7080. "dev-master": "3.0-dev"
  7081. }
  7082. },
  7083. "autoload": {
  7084. "classmap": [
  7085. "src/"
  7086. ]
  7087. },
  7088. "notification-url": "https://packagist.org/downloads/",
  7089. "license": [
  7090. "BSD-3-Clause"
  7091. ],
  7092. "authors": [
  7093. {
  7094. "name": "Sebastian Bergmann",
  7095. "email": "sebastian@phpunit.de"
  7096. }
  7097. ],
  7098. "description": "Provides a list of PHP built-in functions that operate on resources",
  7099. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7100. "support": {
  7101. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7102. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7103. },
  7104. "funding": [
  7105. {
  7106. "url": "https://github.com/sebastianbergmann",
  7107. "type": "github"
  7108. }
  7109. ],
  7110. "time": "2020-09-28T06:45:17+00:00"
  7111. },
  7112. {
  7113. "name": "sebastian/type",
  7114. "version": "3.2.1",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/sebastianbergmann/type.git",
  7118. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7123. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=7.3"
  7128. },
  7129. "require-dev": {
  7130. "phpunit/phpunit": "^9.5"
  7131. },
  7132. "type": "library",
  7133. "extra": {
  7134. "branch-alias": {
  7135. "dev-master": "3.2-dev"
  7136. }
  7137. },
  7138. "autoload": {
  7139. "classmap": [
  7140. "src/"
  7141. ]
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "BSD-3-Clause"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Sebastian Bergmann",
  7150. "email": "sebastian@phpunit.de",
  7151. "role": "lead"
  7152. }
  7153. ],
  7154. "description": "Collection of value objects that represent the types of the PHP type system",
  7155. "homepage": "https://github.com/sebastianbergmann/type",
  7156. "support": {
  7157. "issues": "https://github.com/sebastianbergmann/type/issues",
  7158. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://github.com/sebastianbergmann",
  7163. "type": "github"
  7164. }
  7165. ],
  7166. "time": "2023-02-03T06:13:03+00:00"
  7167. },
  7168. {
  7169. "name": "sebastian/version",
  7170. "version": "3.0.2",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/sebastianbergmann/version.git",
  7174. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7179. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "php": ">=7.3"
  7184. },
  7185. "type": "library",
  7186. "extra": {
  7187. "branch-alias": {
  7188. "dev-master": "3.0-dev"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "classmap": [
  7193. "src/"
  7194. ]
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "BSD-3-Clause"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Sebastian Bergmann",
  7203. "email": "sebastian@phpunit.de",
  7204. "role": "lead"
  7205. }
  7206. ],
  7207. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7208. "homepage": "https://github.com/sebastianbergmann/version",
  7209. "support": {
  7210. "issues": "https://github.com/sebastianbergmann/version/issues",
  7211. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://github.com/sebastianbergmann",
  7216. "type": "github"
  7217. }
  7218. ],
  7219. "time": "2020-09-28T06:39:44+00:00"
  7220. },
  7221. {
  7222. "name": "theseer/tokenizer",
  7223. "version": "1.2.1",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/theseer/tokenizer.git",
  7227. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7232. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "ext-dom": "*",
  7237. "ext-tokenizer": "*",
  7238. "ext-xmlwriter": "*",
  7239. "php": "^7.2 || ^8.0"
  7240. },
  7241. "type": "library",
  7242. "autoload": {
  7243. "classmap": [
  7244. "src/"
  7245. ]
  7246. },
  7247. "notification-url": "https://packagist.org/downloads/",
  7248. "license": [
  7249. "BSD-3-Clause"
  7250. ],
  7251. "authors": [
  7252. {
  7253. "name": "Arne Blankerts",
  7254. "email": "arne@blankerts.de",
  7255. "role": "Developer"
  7256. }
  7257. ],
  7258. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7259. "support": {
  7260. "issues": "https://github.com/theseer/tokenizer/issues",
  7261. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7262. },
  7263. "funding": [
  7264. {
  7265. "url": "https://github.com/theseer",
  7266. "type": "github"
  7267. }
  7268. ],
  7269. "time": "2021-07-28T10:34:58+00:00"
  7270. }
  7271. ],
  7272. "aliases": [],
  7273. "minimum-stability": "dev",
  7274. "stability-flags": [],
  7275. "prefer-stable": true,
  7276. "prefer-lowest": false,
  7277. "platform": {
  7278. "php": "^7.2.5|^8.0"
  7279. },
  7280. "platform-dev": [],
  7281. "plugin-api-version": "2.3.0"
  7282. }