composer.lock 278 KB

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