composer.lock 273 KB

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