composer.lock 321 KB

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