composer.lock 273 KB

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