composer.lock 360 KB

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