composer.lock 249 KB

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