composer.lock 284 KB

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