composer.lock 318 KB

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