composer.lock 311 KB

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