composer.lock 405 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315
  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": "442419b4602f53dcc519f7cc438e0680",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "v5.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/e0615cdff315e6b4b05ada67906df6262a020d22",
  20. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": "^3.0|^2.0|^1.0",
  25. "php": ">=5.5",
  26. "psr/log": "^1.0",
  27. "symfony/process": "^2.3|^3.0|^4.0|^5.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-0": {
  35. "Alchemy": "src"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Nicolas Le Goff",
  45. "email": "legoff.n@gmail.com"
  46. },
  47. {
  48. "name": "Romain Neutron",
  49. "email": "imprec@gmail.com",
  50. "homepage": "http://www.lickmychip.com/"
  51. },
  52. {
  53. "name": "Phraseanet Team",
  54. "email": "info@alchemy.fr",
  55. "homepage": "http://www.phraseanet.com/"
  56. },
  57. {
  58. "name": "Jens Hausdorf",
  59. "email": "mail@jens-hausdorf.de",
  60. "homepage": "https://jens-hausdorf.de",
  61. "role": "Maintainer"
  62. }
  63. ],
  64. "description": "A set of tools to build binary drivers",
  65. "keywords": [
  66. "binary",
  67. "driver"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/alchemy-fr/BinaryDriver/issues",
  71. "source": "https://github.com/alchemy-fr/BinaryDriver/tree/master"
  72. },
  73. "time": "2020-02-12T19:35:11+00:00"
  74. },
  75. {
  76. "name": "asm89/stack-cors",
  77. "version": "v2.0.3",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/asm89/stack-cors.git",
  81. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  86. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "php": "^7.0|^8.0",
  91. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  92. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^6|^7|^8|^9",
  96. "squizlabs/php_codesniffer": "^3.5"
  97. },
  98. "type": "library",
  99. "extra": {
  100. "branch-alias": {
  101. "dev-master": "2.0-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "Asm89\\Stack\\": "src/"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Alexander",
  116. "email": "iam.asm89@gmail.com"
  117. }
  118. ],
  119. "description": "Cross-origin resource sharing library and stack middleware",
  120. "homepage": "https://github.com/asm89/stack-cors",
  121. "keywords": [
  122. "cors",
  123. "stack"
  124. ],
  125. "support": {
  126. "issues": "https://github.com/asm89/stack-cors/issues",
  127. "source": "https://github.com/asm89/stack-cors/tree/v2.0.3"
  128. },
  129. "time": "2021-03-11T06:42:03+00:00"
  130. },
  131. {
  132. "name": "aws/aws-crt-php",
  133. "version": "v1.0.2",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/awslabs/aws-crt-php.git",
  137. "reference": "3942776a8c99209908ee0b287746263725685732"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
  142. "reference": "3942776a8c99209908ee0b287746263725685732",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": ">=5.5"
  147. },
  148. "require-dev": {
  149. "phpunit/phpunit": "^4.8.35|^5.4.3"
  150. },
  151. "type": "library",
  152. "autoload": {
  153. "classmap": [
  154. "src/"
  155. ]
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "Apache-2.0"
  160. ],
  161. "authors": [
  162. {
  163. "name": "AWS SDK Common Runtime Team",
  164. "email": "aws-sdk-common-runtime@amazon.com"
  165. }
  166. ],
  167. "description": "AWS Common Runtime for PHP",
  168. "homepage": "http://aws.amazon.com/sdkforphp",
  169. "keywords": [
  170. "amazon",
  171. "aws",
  172. "crt",
  173. "sdk"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  177. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2"
  178. },
  179. "time": "2021-09-03T22:57:30+00:00"
  180. },
  181. {
  182. "name": "aws/aws-sdk-php",
  183. "version": "3.208.5",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/aws/aws-sdk-php.git",
  187. "reference": "58fa9d8b522b0afa260299179ff950c783ff0ee1"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/58fa9d8b522b0afa260299179ff950c783ff0ee1",
  192. "reference": "58fa9d8b522b0afa260299179ff950c783ff0ee1",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "aws/aws-crt-php": "^1.0.2",
  197. "ext-json": "*",
  198. "ext-pcre": "*",
  199. "ext-simplexml": "*",
  200. "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
  201. "guzzlehttp/promises": "^1.4.0",
  202. "guzzlehttp/psr7": "^1.7.0|^2.0",
  203. "mtdowling/jmespath.php": "^2.6",
  204. "php": ">=5.5"
  205. },
  206. "require-dev": {
  207. "andrewsville/php-token-reflection": "^1.4",
  208. "aws/aws-php-sns-message-validator": "~1.0",
  209. "behat/behat": "~3.0",
  210. "doctrine/cache": "~1.4",
  211. "ext-dom": "*",
  212. "ext-openssl": "*",
  213. "ext-pcntl": "*",
  214. "ext-sockets": "*",
  215. "nette/neon": "^2.3",
  216. "paragonie/random_compat": ">= 2",
  217. "phpunit/phpunit": "^4.8.35|^5.4.3",
  218. "psr/cache": "^1.0",
  219. "psr/simple-cache": "^1.0",
  220. "sebastian/comparator": "^1.2.3"
  221. },
  222. "suggest": {
  223. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  224. "doctrine/cache": "To use the DoctrineCacheAdapter",
  225. "ext-curl": "To send requests using cURL",
  226. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  227. "ext-sockets": "To use client-side monitoring"
  228. },
  229. "type": "library",
  230. "extra": {
  231. "branch-alias": {
  232. "dev-master": "3.0-dev"
  233. }
  234. },
  235. "autoload": {
  236. "psr-4": {
  237. "Aws\\": "src/"
  238. },
  239. "files": [
  240. "src/functions.php"
  241. ]
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "Apache-2.0"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Amazon Web Services",
  250. "homepage": "http://aws.amazon.com"
  251. }
  252. ],
  253. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  254. "homepage": "http://aws.amazon.com/sdkforphp",
  255. "keywords": [
  256. "amazon",
  257. "aws",
  258. "cloud",
  259. "dynamodb",
  260. "ec2",
  261. "glacier",
  262. "s3",
  263. "sdk"
  264. ],
  265. "support": {
  266. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  267. "issues": "https://github.com/aws/aws-sdk-php/issues",
  268. "source": "https://github.com/aws/aws-sdk-php/tree/3.208.5"
  269. },
  270. "time": "2021-12-13T20:17:56+00:00"
  271. },
  272. {
  273. "name": "bacon/bacon-qr-code",
  274. "version": "2.0.4",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/Bacon/BaconQrCode.git",
  278. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  283. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "dasprid/enum": "^1.0.3",
  288. "ext-iconv": "*",
  289. "php": "^7.1 || ^8.0"
  290. },
  291. "require-dev": {
  292. "phly/keep-a-changelog": "^1.4",
  293. "phpunit/phpunit": "^7 | ^8 | ^9",
  294. "squizlabs/php_codesniffer": "^3.4"
  295. },
  296. "suggest": {
  297. "ext-imagick": "to generate QR code images"
  298. },
  299. "type": "library",
  300. "autoload": {
  301. "psr-4": {
  302. "BaconQrCode\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "BSD-2-Clause"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Ben Scholzen 'DASPRiD'",
  312. "email": "mail@dasprids.de",
  313. "homepage": "https://dasprids.de/",
  314. "role": "Developer"
  315. }
  316. ],
  317. "description": "BaconQrCode is a QR code generator for PHP.",
  318. "homepage": "https://github.com/Bacon/BaconQrCode",
  319. "support": {
  320. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  321. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  322. },
  323. "time": "2021-06-18T13:26:35+00:00"
  324. },
  325. {
  326. "name": "brick/math",
  327. "version": "0.8.17",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/brick/math.git",
  331. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/brick/math/zipball/e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  336. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "ext-json": "*",
  341. "php": "^7.1|^8.0"
  342. },
  343. "require-dev": {
  344. "php-coveralls/php-coveralls": "^2.2",
  345. "phpunit/phpunit": "^7.5.15|^8.5",
  346. "vimeo/psalm": "^3.5"
  347. },
  348. "type": "library",
  349. "autoload": {
  350. "psr-4": {
  351. "Brick\\Math\\": "src/"
  352. }
  353. },
  354. "notification-url": "https://packagist.org/downloads/",
  355. "license": [
  356. "MIT"
  357. ],
  358. "description": "Arbitrary-precision arithmetic library",
  359. "keywords": [
  360. "Arbitrary-precision",
  361. "BigInteger",
  362. "BigRational",
  363. "arithmetic",
  364. "bigdecimal",
  365. "bignum",
  366. "brick",
  367. "math"
  368. ],
  369. "support": {
  370. "issues": "https://github.com/brick/math/issues",
  371. "source": "https://github.com/brick/math/tree/v0.8"
  372. },
  373. "funding": [
  374. {
  375. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  376. "type": "tidelift"
  377. }
  378. ],
  379. "time": "2020-08-18T23:41:20+00:00"
  380. },
  381. {
  382. "name": "buzz/laravel-h-captcha",
  383. "version": "v1.0.2",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/thinhbuzz/laravel-h-captcha.git",
  387. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/thinhbuzz/laravel-h-captcha/zipball/41a063bea0e204ae5b8afbafce981d4675dd8af7",
  392. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "guzzlehttp/guzzle": "6.*|7.*",
  397. "illuminate/support": "5.*|6.*|7.*|8.*",
  398. "php": ">=5.4.0"
  399. },
  400. "type": "library",
  401. "extra": {
  402. "laravel": {
  403. "providers": [
  404. "Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
  405. ],
  406. "aliases": {
  407. "Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
  408. }
  409. }
  410. },
  411. "autoload": {
  412. "psr-4": {
  413. "Buzz\\LaravelHCaptcha\\": "src"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "ThinhBuzz",
  423. "email": "mr.thinhbuzz@gmail.com",
  424. "homepage": "https://www.facebook.com/thinh.buzz"
  425. }
  426. ],
  427. "description": "hCaptcha for Laravel 5, Laravel 6, Laravel 7 and Laravel 8",
  428. "homepage": "https://github.com/thinhbuzz/laravel-h-captcha",
  429. "keywords": [
  430. "captcha",
  431. "h captcha",
  432. "h-captcha",
  433. "hcaptcha",
  434. "laravel",
  435. "laravel 5",
  436. "laravel 6",
  437. "laravel 7",
  438. "laravel 8",
  439. "laravel5",
  440. "laravel6",
  441. "laravel7"
  442. ],
  443. "support": {
  444. "issues": "https://github.com/thinhbuzz/laravel-h-captcha/issues",
  445. "source": "https://github.com/thinhbuzz/laravel-h-captcha/tree/v1.0.2"
  446. },
  447. "time": "2020-09-14T15:04:45+00:00"
  448. },
  449. {
  450. "name": "dasprid/enum",
  451. "version": "1.0.3",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/DASPRiD/Enum.git",
  455. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  460. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  461. "shasum": ""
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "^7 | ^8 | ^9",
  465. "squizlabs/php_codesniffer": "^3.4"
  466. },
  467. "type": "library",
  468. "autoload": {
  469. "psr-4": {
  470. "DASPRiD\\Enum\\": "src/"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "BSD-2-Clause"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Ben Scholzen 'DASPRiD'",
  480. "email": "mail@dasprids.de",
  481. "homepage": "https://dasprids.de/",
  482. "role": "Developer"
  483. }
  484. ],
  485. "description": "PHP 7.1 enum implementation",
  486. "keywords": [
  487. "enum",
  488. "map"
  489. ],
  490. "support": {
  491. "issues": "https://github.com/DASPRiD/Enum/issues",
  492. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  493. },
  494. "time": "2020-10-02T16:03:48+00:00"
  495. },
  496. {
  497. "name": "defuse/php-encryption",
  498. "version": "v2.3.1",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/defuse/php-encryption.git",
  502. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  507. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "ext-openssl": "*",
  512. "paragonie/random_compat": ">= 2",
  513. "php": ">=5.6.0"
  514. },
  515. "require-dev": {
  516. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  517. },
  518. "bin": [
  519. "bin/generate-defuse-key"
  520. ],
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "Defuse\\Crypto\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Taylor Hornby",
  534. "email": "taylor@defuse.ca",
  535. "homepage": "https://defuse.ca/"
  536. },
  537. {
  538. "name": "Scott Arciszewski",
  539. "email": "info@paragonie.com",
  540. "homepage": "https://paragonie.com"
  541. }
  542. ],
  543. "description": "Secure PHP Encryption Library",
  544. "keywords": [
  545. "aes",
  546. "authenticated encryption",
  547. "cipher",
  548. "crypto",
  549. "cryptography",
  550. "encrypt",
  551. "encryption",
  552. "openssl",
  553. "security",
  554. "symmetric key cryptography"
  555. ],
  556. "support": {
  557. "issues": "https://github.com/defuse/php-encryption/issues",
  558. "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
  559. },
  560. "time": "2021-04-09T23:57:26+00:00"
  561. },
  562. {
  563. "name": "dflydev/dot-access-data",
  564. "version": "v3.0.1",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  568. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  573. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "php": "^7.1 || ^8.0"
  578. },
  579. "require-dev": {
  580. "phpstan/phpstan": "^0.12.42",
  581. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  582. "scrutinizer/ocular": "1.6.0",
  583. "squizlabs/php_codesniffer": "^3.5",
  584. "vimeo/psalm": "^3.14"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-main": "3.x-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "Dflydev\\DotAccessData\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Dragonfly Development Inc.",
  604. "email": "info@dflydev.com",
  605. "homepage": "http://dflydev.com"
  606. },
  607. {
  608. "name": "Beau Simensen",
  609. "email": "beau@dflydev.com",
  610. "homepage": "http://beausimensen.com"
  611. },
  612. {
  613. "name": "Carlos Frutos",
  614. "email": "carlos@kiwing.it",
  615. "homepage": "https://github.com/cfrutos"
  616. },
  617. {
  618. "name": "Colin O'Dell",
  619. "email": "colinodell@gmail.com",
  620. "homepage": "https://www.colinodell.com"
  621. }
  622. ],
  623. "description": "Given a deep data structure, access data by dot notation.",
  624. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  625. "keywords": [
  626. "access",
  627. "data",
  628. "dot",
  629. "notation"
  630. ],
  631. "support": {
  632. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  633. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  634. },
  635. "time": "2021-08-13T13:06:58+00:00"
  636. },
  637. {
  638. "name": "doctrine/cache",
  639. "version": "1.12.1",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/doctrine/cache.git",
  643. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8",
  648. "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "~7.1 || ^8.0"
  653. },
  654. "conflict": {
  655. "doctrine/common": ">2.2,<2.4"
  656. },
  657. "require-dev": {
  658. "alcaeus/mongo-php-adapter": "^1.1",
  659. "cache/integration-tests": "dev-master",
  660. "doctrine/coding-standard": "^8.0",
  661. "mongodb/mongodb": "^1.1",
  662. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  663. "predis/predis": "~1.0",
  664. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  665. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  666. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  667. },
  668. "suggest": {
  669. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  670. },
  671. "type": "library",
  672. "autoload": {
  673. "psr-4": {
  674. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Guilherme Blanco",
  684. "email": "guilhermeblanco@gmail.com"
  685. },
  686. {
  687. "name": "Roman Borschel",
  688. "email": "roman@code-factory.org"
  689. },
  690. {
  691. "name": "Benjamin Eberlei",
  692. "email": "kontakt@beberlei.de"
  693. },
  694. {
  695. "name": "Jonathan Wage",
  696. "email": "jonwage@gmail.com"
  697. },
  698. {
  699. "name": "Johannes Schmitt",
  700. "email": "schmittjoh@gmail.com"
  701. }
  702. ],
  703. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  704. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  705. "keywords": [
  706. "abstraction",
  707. "apcu",
  708. "cache",
  709. "caching",
  710. "couchdb",
  711. "memcached",
  712. "php",
  713. "redis",
  714. "xcache"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/doctrine/cache/issues",
  718. "source": "https://github.com/doctrine/cache/tree/1.12.1"
  719. },
  720. "funding": [
  721. {
  722. "url": "https://www.doctrine-project.org/sponsorship.html",
  723. "type": "custom"
  724. },
  725. {
  726. "url": "https://www.patreon.com/phpdoctrine",
  727. "type": "patreon"
  728. },
  729. {
  730. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  731. "type": "tidelift"
  732. }
  733. ],
  734. "time": "2021-07-17T14:39:21+00:00"
  735. },
  736. {
  737. "name": "doctrine/dbal",
  738. "version": "2.13.6",
  739. "source": {
  740. "type": "git",
  741. "url": "https://github.com/doctrine/dbal.git",
  742. "reference": "67ef6d0327ccbab1202b39e0222977a47ed3ef2f"
  743. },
  744. "dist": {
  745. "type": "zip",
  746. "url": "https://api.github.com/repos/doctrine/dbal/zipball/67ef6d0327ccbab1202b39e0222977a47ed3ef2f",
  747. "reference": "67ef6d0327ccbab1202b39e0222977a47ed3ef2f",
  748. "shasum": ""
  749. },
  750. "require": {
  751. "doctrine/cache": "^1.0|^2.0",
  752. "doctrine/deprecations": "^0.5.3",
  753. "doctrine/event-manager": "^1.0",
  754. "ext-pdo": "*",
  755. "php": "^7.1 || ^8"
  756. },
  757. "require-dev": {
  758. "doctrine/coding-standard": "9.0.0",
  759. "jetbrains/phpstorm-stubs": "2021.1",
  760. "phpstan/phpstan": "1.2.0",
  761. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  762. "psalm/plugin-phpunit": "0.16.1",
  763. "squizlabs/php_codesniffer": "3.6.1",
  764. "symfony/cache": "^4.4",
  765. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  766. "vimeo/psalm": "4.13.0"
  767. },
  768. "suggest": {
  769. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  770. },
  771. "bin": [
  772. "bin/doctrine-dbal"
  773. ],
  774. "type": "library",
  775. "autoload": {
  776. "psr-4": {
  777. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Guilherme Blanco",
  787. "email": "guilhermeblanco@gmail.com"
  788. },
  789. {
  790. "name": "Roman Borschel",
  791. "email": "roman@code-factory.org"
  792. },
  793. {
  794. "name": "Benjamin Eberlei",
  795. "email": "kontakt@beberlei.de"
  796. },
  797. {
  798. "name": "Jonathan Wage",
  799. "email": "jonwage@gmail.com"
  800. }
  801. ],
  802. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  803. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  804. "keywords": [
  805. "abstraction",
  806. "database",
  807. "db2",
  808. "dbal",
  809. "mariadb",
  810. "mssql",
  811. "mysql",
  812. "oci8",
  813. "oracle",
  814. "pdo",
  815. "pgsql",
  816. "postgresql",
  817. "queryobject",
  818. "sasql",
  819. "sql",
  820. "sqlanywhere",
  821. "sqlite",
  822. "sqlserver",
  823. "sqlsrv"
  824. ],
  825. "support": {
  826. "issues": "https://github.com/doctrine/dbal/issues",
  827. "source": "https://github.com/doctrine/dbal/tree/2.13.6"
  828. },
  829. "funding": [
  830. {
  831. "url": "https://www.doctrine-project.org/sponsorship.html",
  832. "type": "custom"
  833. },
  834. {
  835. "url": "https://www.patreon.com/phpdoctrine",
  836. "type": "patreon"
  837. },
  838. {
  839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  840. "type": "tidelift"
  841. }
  842. ],
  843. "time": "2021-11-26T20:11:05+00:00"
  844. },
  845. {
  846. "name": "doctrine/deprecations",
  847. "version": "v0.5.3",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/doctrine/deprecations.git",
  851. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  856. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": "^7.1|^8.0"
  861. },
  862. "require-dev": {
  863. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  864. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  865. "psr/log": "^1.0"
  866. },
  867. "suggest": {
  868. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  869. },
  870. "type": "library",
  871. "autoload": {
  872. "psr-4": {
  873. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  874. }
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "MIT"
  879. ],
  880. "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.",
  881. "homepage": "https://www.doctrine-project.org/",
  882. "support": {
  883. "issues": "https://github.com/doctrine/deprecations/issues",
  884. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  885. },
  886. "time": "2021-03-21T12:59:47+00:00"
  887. },
  888. {
  889. "name": "doctrine/event-manager",
  890. "version": "1.1.1",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/doctrine/event-manager.git",
  894. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  899. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.1 || ^8.0"
  904. },
  905. "conflict": {
  906. "doctrine/common": "<2.9@dev"
  907. },
  908. "require-dev": {
  909. "doctrine/coding-standard": "^6.0",
  910. "phpunit/phpunit": "^7.0"
  911. },
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "1.0.x-dev"
  916. }
  917. },
  918. "autoload": {
  919. "psr-4": {
  920. "Doctrine\\Common\\": "lib/Doctrine/Common"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Guilherme Blanco",
  930. "email": "guilhermeblanco@gmail.com"
  931. },
  932. {
  933. "name": "Roman Borschel",
  934. "email": "roman@code-factory.org"
  935. },
  936. {
  937. "name": "Benjamin Eberlei",
  938. "email": "kontakt@beberlei.de"
  939. },
  940. {
  941. "name": "Jonathan Wage",
  942. "email": "jonwage@gmail.com"
  943. },
  944. {
  945. "name": "Johannes Schmitt",
  946. "email": "schmittjoh@gmail.com"
  947. },
  948. {
  949. "name": "Marco Pivetta",
  950. "email": "ocramius@gmail.com"
  951. }
  952. ],
  953. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  954. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  955. "keywords": [
  956. "event",
  957. "event dispatcher",
  958. "event manager",
  959. "event system",
  960. "events"
  961. ],
  962. "support": {
  963. "issues": "https://github.com/doctrine/event-manager/issues",
  964. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  965. },
  966. "funding": [
  967. {
  968. "url": "https://www.doctrine-project.org/sponsorship.html",
  969. "type": "custom"
  970. },
  971. {
  972. "url": "https://www.patreon.com/phpdoctrine",
  973. "type": "patreon"
  974. },
  975. {
  976. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  977. "type": "tidelift"
  978. }
  979. ],
  980. "time": "2020-05-29T18:28:51+00:00"
  981. },
  982. {
  983. "name": "doctrine/inflector",
  984. "version": "2.0.4",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/doctrine/inflector.git",
  988. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  993. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^7.2 || ^8.0"
  998. },
  999. "require-dev": {
  1000. "doctrine/coding-standard": "^8.2",
  1001. "phpstan/phpstan": "^0.12",
  1002. "phpstan/phpstan-phpunit": "^0.12",
  1003. "phpstan/phpstan-strict-rules": "^0.12",
  1004. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1005. "vimeo/psalm": "^4.10"
  1006. },
  1007. "type": "library",
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "authors": [
  1018. {
  1019. "name": "Guilherme Blanco",
  1020. "email": "guilhermeblanco@gmail.com"
  1021. },
  1022. {
  1023. "name": "Roman Borschel",
  1024. "email": "roman@code-factory.org"
  1025. },
  1026. {
  1027. "name": "Benjamin Eberlei",
  1028. "email": "kontakt@beberlei.de"
  1029. },
  1030. {
  1031. "name": "Jonathan Wage",
  1032. "email": "jonwage@gmail.com"
  1033. },
  1034. {
  1035. "name": "Johannes Schmitt",
  1036. "email": "schmittjoh@gmail.com"
  1037. }
  1038. ],
  1039. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1040. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1041. "keywords": [
  1042. "inflection",
  1043. "inflector",
  1044. "lowercase",
  1045. "manipulation",
  1046. "php",
  1047. "plural",
  1048. "singular",
  1049. "strings",
  1050. "uppercase",
  1051. "words"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/doctrine/inflector/issues",
  1055. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://www.doctrine-project.org/sponsorship.html",
  1060. "type": "custom"
  1061. },
  1062. {
  1063. "url": "https://www.patreon.com/phpdoctrine",
  1064. "type": "patreon"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2021-10-22T20:16:43+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/lexer",
  1075. "version": "1.2.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/lexer.git",
  1079. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1084. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "php": "^7.2 || ^8.0"
  1089. },
  1090. "require-dev": {
  1091. "doctrine/coding-standard": "^6.0",
  1092. "phpstan/phpstan": "^0.11.8",
  1093. "phpunit/phpunit": "^8.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.2.x-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-4": {
  1103. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Guilherme Blanco",
  1113. "email": "guilhermeblanco@gmail.com"
  1114. },
  1115. {
  1116. "name": "Roman Borschel",
  1117. "email": "roman@code-factory.org"
  1118. },
  1119. {
  1120. "name": "Johannes Schmitt",
  1121. "email": "schmittjoh@gmail.com"
  1122. }
  1123. ],
  1124. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1125. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1126. "keywords": [
  1127. "annotations",
  1128. "docblock",
  1129. "lexer",
  1130. "parser",
  1131. "php"
  1132. ],
  1133. "support": {
  1134. "issues": "https://github.com/doctrine/lexer/issues",
  1135. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1136. },
  1137. "funding": [
  1138. {
  1139. "url": "https://www.doctrine-project.org/sponsorship.html",
  1140. "type": "custom"
  1141. },
  1142. {
  1143. "url": "https://www.patreon.com/phpdoctrine",
  1144. "type": "patreon"
  1145. },
  1146. {
  1147. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1148. "type": "tidelift"
  1149. }
  1150. ],
  1151. "time": "2020-05-25T17:44:05+00:00"
  1152. },
  1153. {
  1154. "name": "dragonmantank/cron-expression",
  1155. "version": "v3.1.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/dragonmantank/cron-expression.git",
  1159. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1164. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": "^7.2|^8.0",
  1169. "webmozart/assert": "^1.7.0"
  1170. },
  1171. "replace": {
  1172. "mtdowling/cron-expression": "^1.0"
  1173. },
  1174. "require-dev": {
  1175. "phpstan/extension-installer": "^1.0",
  1176. "phpstan/phpstan": "^0.12",
  1177. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  1178. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Cron\\": "src/Cron/"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Chris Tankersley",
  1193. "email": "chris@ctankersley.com",
  1194. "homepage": "https://github.com/dragonmantank"
  1195. }
  1196. ],
  1197. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1198. "keywords": [
  1199. "cron",
  1200. "schedule"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1204. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  1205. },
  1206. "funding": [
  1207. {
  1208. "url": "https://github.com/dragonmantank",
  1209. "type": "github"
  1210. }
  1211. ],
  1212. "time": "2020-11-24T19:55:57+00:00"
  1213. },
  1214. {
  1215. "name": "egulias/email-validator",
  1216. "version": "2.1.25",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/egulias/EmailValidator.git",
  1220. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1225. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "doctrine/lexer": "^1.0.1",
  1230. "php": ">=5.5",
  1231. "symfony/polyfill-intl-idn": "^1.10"
  1232. },
  1233. "require-dev": {
  1234. "dominicsayers/isemail": "^3.0.7",
  1235. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1236. "satooshi/php-coveralls": "^1.0.1"
  1237. },
  1238. "suggest": {
  1239. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "2.1.x-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Egulias\\EmailValidator\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Eduardo Gulias Davis"
  1259. }
  1260. ],
  1261. "description": "A library for validating emails against several RFCs",
  1262. "homepage": "https://github.com/egulias/EmailValidator",
  1263. "keywords": [
  1264. "email",
  1265. "emailvalidation",
  1266. "emailvalidator",
  1267. "validation",
  1268. "validator"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/egulias/EmailValidator/issues",
  1272. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1273. },
  1274. "funding": [
  1275. {
  1276. "url": "https://github.com/egulias",
  1277. "type": "github"
  1278. }
  1279. ],
  1280. "time": "2020-12-29T14:50:06+00:00"
  1281. },
  1282. {
  1283. "name": "evenement/evenement",
  1284. "version": "v3.0.1",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/igorw/evenement.git",
  1288. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1293. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1294. "shasum": ""
  1295. },
  1296. "require": {
  1297. "php": ">=7.0"
  1298. },
  1299. "require-dev": {
  1300. "phpunit/phpunit": "^6.0"
  1301. },
  1302. "type": "library",
  1303. "autoload": {
  1304. "psr-0": {
  1305. "Evenement": "src"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Igor Wiedler",
  1315. "email": "igor@wiedler.ch"
  1316. }
  1317. ],
  1318. "description": "Événement is a very simple event dispatching library for PHP",
  1319. "keywords": [
  1320. "event-dispatcher",
  1321. "event-emitter"
  1322. ],
  1323. "support": {
  1324. "issues": "https://github.com/igorw/evenement/issues",
  1325. "source": "https://github.com/igorw/evenement/tree/master"
  1326. },
  1327. "time": "2017-07-23T21:35:13+00:00"
  1328. },
  1329. {
  1330. "name": "ezyang/htmlpurifier",
  1331. "version": "v4.13.0",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/ezyang/htmlpurifier.git",
  1335. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1340. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": ">=5.2"
  1345. },
  1346. "require-dev": {
  1347. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1348. },
  1349. "type": "library",
  1350. "autoload": {
  1351. "psr-0": {
  1352. "HTMLPurifier": "library/"
  1353. },
  1354. "files": [
  1355. "library/HTMLPurifier.composer.php"
  1356. ],
  1357. "exclude-from-classmap": [
  1358. "/library/HTMLPurifier/Language/"
  1359. ]
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "LGPL-2.1-or-later"
  1364. ],
  1365. "authors": [
  1366. {
  1367. "name": "Edward Z. Yang",
  1368. "email": "admin@htmlpurifier.org",
  1369. "homepage": "http://ezyang.com"
  1370. }
  1371. ],
  1372. "description": "Standards compliant HTML filter written in PHP",
  1373. "homepage": "http://htmlpurifier.org/",
  1374. "keywords": [
  1375. "html"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1379. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1380. },
  1381. "time": "2020-06-29T00:56:53+00:00"
  1382. },
  1383. {
  1384. "name": "fideloper/proxy",
  1385. "version": "4.4.1",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/fideloper/TrustedProxy.git",
  1389. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1394. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1399. "php": ">=5.4.0"
  1400. },
  1401. "require-dev": {
  1402. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1403. "mockery/mockery": "^1.0",
  1404. "phpunit/phpunit": "^6.0"
  1405. },
  1406. "type": "library",
  1407. "extra": {
  1408. "laravel": {
  1409. "providers": [
  1410. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1411. ]
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Fideloper\\Proxy\\": "src/"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Chris Fidao",
  1426. "email": "fideloper@gmail.com"
  1427. }
  1428. ],
  1429. "description": "Set trusted proxies for Laravel",
  1430. "keywords": [
  1431. "load balancing",
  1432. "proxy",
  1433. "trusted proxy"
  1434. ],
  1435. "support": {
  1436. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1437. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1438. },
  1439. "time": "2020-10-22T13:48:01+00:00"
  1440. },
  1441. {
  1442. "name": "firebase/php-jwt",
  1443. "version": "v5.5.1",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/firebase/php-jwt.git",
  1447. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1452. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "php": ">=5.3.0"
  1457. },
  1458. "require-dev": {
  1459. "phpunit/phpunit": ">=4.8 <=9"
  1460. },
  1461. "suggest": {
  1462. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1463. },
  1464. "type": "library",
  1465. "autoload": {
  1466. "psr-4": {
  1467. "Firebase\\JWT\\": "src"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "BSD-3-Clause"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Neuman Vong",
  1477. "email": "neuman+pear@twilio.com",
  1478. "role": "Developer"
  1479. },
  1480. {
  1481. "name": "Anant Narayanan",
  1482. "email": "anant@php.net",
  1483. "role": "Developer"
  1484. }
  1485. ],
  1486. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1487. "homepage": "https://github.com/firebase/php-jwt",
  1488. "keywords": [
  1489. "jwt",
  1490. "php"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/firebase/php-jwt/issues",
  1494. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1495. },
  1496. "time": "2021-11-08T20:18:51+00:00"
  1497. },
  1498. {
  1499. "name": "fruitcake/laravel-cors",
  1500. "version": "v2.0.4",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/fruitcake/laravel-cors.git",
  1504. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1509. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "asm89/stack-cors": "^2.0.1",
  1514. "illuminate/contracts": "^6|^7|^8|^9",
  1515. "illuminate/support": "^6|^7|^8|^9",
  1516. "php": ">=7.2",
  1517. "symfony/http-foundation": "^4|^5",
  1518. "symfony/http-kernel": "^4.3.4|^5"
  1519. },
  1520. "require-dev": {
  1521. "laravel/framework": "^6|^7|^8",
  1522. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1523. "phpunit/phpunit": "^6|^7|^8|^9",
  1524. "squizlabs/php_codesniffer": "^3.5"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "2.0-dev"
  1530. },
  1531. "laravel": {
  1532. "providers": [
  1533. "Fruitcake\\Cors\\CorsServiceProvider"
  1534. ]
  1535. }
  1536. },
  1537. "autoload": {
  1538. "psr-4": {
  1539. "Fruitcake\\Cors\\": "src/"
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "MIT"
  1545. ],
  1546. "authors": [
  1547. {
  1548. "name": "Fruitcake",
  1549. "homepage": "https://fruitcake.nl"
  1550. },
  1551. {
  1552. "name": "Barry vd. Heuvel",
  1553. "email": "barryvdh@gmail.com"
  1554. }
  1555. ],
  1556. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1557. "keywords": [
  1558. "api",
  1559. "cors",
  1560. "crossdomain",
  1561. "laravel"
  1562. ],
  1563. "support": {
  1564. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1565. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://github.com/barryvdh",
  1570. "type": "github"
  1571. }
  1572. ],
  1573. "time": "2021-04-26T11:24:25+00:00"
  1574. },
  1575. {
  1576. "name": "graham-campbell/result-type",
  1577. "version": "v1.0.4",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1581. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  1586. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  1587. "shasum": ""
  1588. },
  1589. "require": {
  1590. "php": "^7.0 || ^8.0",
  1591. "phpoption/phpoption": "^1.8"
  1592. },
  1593. "require-dev": {
  1594. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1595. },
  1596. "type": "library",
  1597. "autoload": {
  1598. "psr-4": {
  1599. "GrahamCampbell\\ResultType\\": "src/"
  1600. }
  1601. },
  1602. "notification-url": "https://packagist.org/downloads/",
  1603. "license": [
  1604. "MIT"
  1605. ],
  1606. "authors": [
  1607. {
  1608. "name": "Graham Campbell",
  1609. "email": "hello@gjcampbell.co.uk",
  1610. "homepage": "https://github.com/GrahamCampbell"
  1611. }
  1612. ],
  1613. "description": "An Implementation Of The Result Type",
  1614. "keywords": [
  1615. "Graham Campbell",
  1616. "GrahamCampbell",
  1617. "Result Type",
  1618. "Result-Type",
  1619. "result"
  1620. ],
  1621. "support": {
  1622. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1623. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  1624. },
  1625. "funding": [
  1626. {
  1627. "url": "https://github.com/GrahamCampbell",
  1628. "type": "github"
  1629. },
  1630. {
  1631. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1632. "type": "tidelift"
  1633. }
  1634. ],
  1635. "time": "2021-11-21T21:41:47+00:00"
  1636. },
  1637. {
  1638. "name": "guzzlehttp/guzzle",
  1639. "version": "6.5.5",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/guzzle/guzzle.git",
  1643. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1648. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "ext-json": "*",
  1653. "guzzlehttp/promises": "^1.0",
  1654. "guzzlehttp/psr7": "^1.6.1",
  1655. "php": ">=5.5",
  1656. "symfony/polyfill-intl-idn": "^1.17.0"
  1657. },
  1658. "require-dev": {
  1659. "ext-curl": "*",
  1660. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1661. "psr/log": "^1.1"
  1662. },
  1663. "suggest": {
  1664. "psr/log": "Required for using the Log middleware"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "branch-alias": {
  1669. "dev-master": "6.5-dev"
  1670. }
  1671. },
  1672. "autoload": {
  1673. "psr-4": {
  1674. "GuzzleHttp\\": "src/"
  1675. },
  1676. "files": [
  1677. "src/functions_include.php"
  1678. ]
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Michael Dowling",
  1687. "email": "mtdowling@gmail.com",
  1688. "homepage": "https://github.com/mtdowling"
  1689. }
  1690. ],
  1691. "description": "Guzzle is a PHP HTTP client library",
  1692. "homepage": "http://guzzlephp.org/",
  1693. "keywords": [
  1694. "client",
  1695. "curl",
  1696. "framework",
  1697. "http",
  1698. "http client",
  1699. "rest",
  1700. "web service"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/guzzle/guzzle/issues",
  1704. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1705. },
  1706. "time": "2020-06-16T21:01:06+00:00"
  1707. },
  1708. {
  1709. "name": "guzzlehttp/promises",
  1710. "version": "1.5.1",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/guzzle/promises.git",
  1714. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1719. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "php": ">=5.5"
  1724. },
  1725. "require-dev": {
  1726. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1727. },
  1728. "type": "library",
  1729. "extra": {
  1730. "branch-alias": {
  1731. "dev-master": "1.5-dev"
  1732. }
  1733. },
  1734. "autoload": {
  1735. "psr-4": {
  1736. "GuzzleHttp\\Promise\\": "src/"
  1737. },
  1738. "files": [
  1739. "src/functions_include.php"
  1740. ]
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Graham Campbell",
  1749. "email": "hello@gjcampbell.co.uk",
  1750. "homepage": "https://github.com/GrahamCampbell"
  1751. },
  1752. {
  1753. "name": "Michael Dowling",
  1754. "email": "mtdowling@gmail.com",
  1755. "homepage": "https://github.com/mtdowling"
  1756. },
  1757. {
  1758. "name": "Tobias Nyholm",
  1759. "email": "tobias.nyholm@gmail.com",
  1760. "homepage": "https://github.com/Nyholm"
  1761. },
  1762. {
  1763. "name": "Tobias Schultze",
  1764. "email": "webmaster@tubo-world.de",
  1765. "homepage": "https://github.com/Tobion"
  1766. }
  1767. ],
  1768. "description": "Guzzle promises library",
  1769. "keywords": [
  1770. "promise"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/guzzle/promises/issues",
  1774. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://github.com/GrahamCampbell",
  1779. "type": "github"
  1780. },
  1781. {
  1782. "url": "https://github.com/Nyholm",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1787. "type": "tidelift"
  1788. }
  1789. ],
  1790. "time": "2021-10-22T20:56:57+00:00"
  1791. },
  1792. {
  1793. "name": "guzzlehttp/psr7",
  1794. "version": "1.8.3",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/guzzle/psr7.git",
  1798. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1803. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1804. "shasum": ""
  1805. },
  1806. "require": {
  1807. "php": ">=5.4.0",
  1808. "psr/http-message": "~1.0",
  1809. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1810. },
  1811. "provide": {
  1812. "psr/http-message-implementation": "1.0"
  1813. },
  1814. "require-dev": {
  1815. "ext-zlib": "*",
  1816. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1817. },
  1818. "suggest": {
  1819. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1820. },
  1821. "type": "library",
  1822. "extra": {
  1823. "branch-alias": {
  1824. "dev-master": "1.7-dev"
  1825. }
  1826. },
  1827. "autoload": {
  1828. "psr-4": {
  1829. "GuzzleHttp\\Psr7\\": "src/"
  1830. },
  1831. "files": [
  1832. "src/functions_include.php"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Graham Campbell",
  1842. "email": "hello@gjcampbell.co.uk",
  1843. "homepage": "https://github.com/GrahamCampbell"
  1844. },
  1845. {
  1846. "name": "Michael Dowling",
  1847. "email": "mtdowling@gmail.com",
  1848. "homepage": "https://github.com/mtdowling"
  1849. },
  1850. {
  1851. "name": "George Mponos",
  1852. "email": "gmponos@gmail.com",
  1853. "homepage": "https://github.com/gmponos"
  1854. },
  1855. {
  1856. "name": "Tobias Nyholm",
  1857. "email": "tobias.nyholm@gmail.com",
  1858. "homepage": "https://github.com/Nyholm"
  1859. },
  1860. {
  1861. "name": "Márk Sági-Kazár",
  1862. "email": "mark.sagikazar@gmail.com",
  1863. "homepage": "https://github.com/sagikazarmark"
  1864. },
  1865. {
  1866. "name": "Tobias Schultze",
  1867. "email": "webmaster@tubo-world.de",
  1868. "homepage": "https://github.com/Tobion"
  1869. }
  1870. ],
  1871. "description": "PSR-7 message implementation that also provides common utility methods",
  1872. "keywords": [
  1873. "http",
  1874. "message",
  1875. "psr-7",
  1876. "request",
  1877. "response",
  1878. "stream",
  1879. "uri",
  1880. "url"
  1881. ],
  1882. "support": {
  1883. "issues": "https://github.com/guzzle/psr7/issues",
  1884. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1885. },
  1886. "funding": [
  1887. {
  1888. "url": "https://github.com/GrahamCampbell",
  1889. "type": "github"
  1890. },
  1891. {
  1892. "url": "https://github.com/Nyholm",
  1893. "type": "github"
  1894. },
  1895. {
  1896. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1897. "type": "tidelift"
  1898. }
  1899. ],
  1900. "time": "2021-10-05T13:56:00+00:00"
  1901. },
  1902. {
  1903. "name": "intervention/image",
  1904. "version": "2.7.0",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/Intervention/image.git",
  1908. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1913. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1914. "shasum": ""
  1915. },
  1916. "require": {
  1917. "ext-fileinfo": "*",
  1918. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1919. "php": ">=5.4.0"
  1920. },
  1921. "require-dev": {
  1922. "mockery/mockery": "~0.9.2",
  1923. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1924. },
  1925. "suggest": {
  1926. "ext-gd": "to use GD library based image processing.",
  1927. "ext-imagick": "to use Imagick based image processing.",
  1928. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "2.4-dev"
  1934. },
  1935. "laravel": {
  1936. "providers": [
  1937. "Intervention\\Image\\ImageServiceProvider"
  1938. ],
  1939. "aliases": {
  1940. "Image": "Intervention\\Image\\Facades\\Image"
  1941. }
  1942. }
  1943. },
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Intervention\\Image\\": "src/Intervention/Image"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Oliver Vogel",
  1956. "email": "oliver@olivervogel.com",
  1957. "homepage": "http://olivervogel.com/"
  1958. }
  1959. ],
  1960. "description": "Image handling and manipulation library with support for Laravel integration",
  1961. "homepage": "http://image.intervention.io/",
  1962. "keywords": [
  1963. "gd",
  1964. "image",
  1965. "imagick",
  1966. "laravel",
  1967. "thumbnail",
  1968. "watermark"
  1969. ],
  1970. "support": {
  1971. "issues": "https://github.com/Intervention/image/issues",
  1972. "source": "https://github.com/Intervention/image/tree/2.7.0"
  1973. },
  1974. "funding": [
  1975. {
  1976. "url": "https://www.paypal.me/interventionphp",
  1977. "type": "custom"
  1978. },
  1979. {
  1980. "url": "https://github.com/Intervention",
  1981. "type": "github"
  1982. }
  1983. ],
  1984. "time": "2021-10-03T14:17:12+00:00"
  1985. },
  1986. {
  1987. "name": "jaybizzle/crawler-detect",
  1988. "version": "v1.2.110",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1992. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/f9d63a3581428fd8a3858e161d072f0b9debc26f",
  1997. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "php": ">=5.3.0"
  2002. },
  2003. "require-dev": {
  2004. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2005. },
  2006. "type": "library",
  2007. "autoload": {
  2008. "psr-4": {
  2009. "Jaybizzle\\CrawlerDetect\\": "src/"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Mark Beech",
  2019. "email": "m@rkbee.ch",
  2020. "role": "Developer"
  2021. }
  2022. ],
  2023. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2024. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2025. "keywords": [
  2026. "crawler",
  2027. "crawler detect",
  2028. "crawler detector",
  2029. "crawlerdetect",
  2030. "php crawler detect"
  2031. ],
  2032. "support": {
  2033. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2034. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.110"
  2035. },
  2036. "time": "2021-12-07T18:35:06+00:00"
  2037. },
  2038. {
  2039. "name": "jenssegers/agent",
  2040. "version": "v2.6.4",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/jenssegers/agent.git",
  2044. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2049. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "jaybizzle/crawler-detect": "^1.2",
  2054. "mobiledetect/mobiledetectlib": "^2.7.6",
  2055. "php": ">=5.6"
  2056. },
  2057. "require-dev": {
  2058. "php-coveralls/php-coveralls": "^2.1",
  2059. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2060. },
  2061. "suggest": {
  2062. "illuminate/support": "Required for laravel service providers"
  2063. },
  2064. "type": "library",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-master": "3.0-dev"
  2068. },
  2069. "laravel": {
  2070. "providers": [
  2071. "Jenssegers\\Agent\\AgentServiceProvider"
  2072. ],
  2073. "aliases": {
  2074. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2075. }
  2076. }
  2077. },
  2078. "autoload": {
  2079. "psr-4": {
  2080. "Jenssegers\\Agent\\": "src/"
  2081. }
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "Jens Segers",
  2090. "homepage": "https://jenssegers.com"
  2091. }
  2092. ],
  2093. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2094. "homepage": "https://github.com/jenssegers/agent",
  2095. "keywords": [
  2096. "Agent",
  2097. "browser",
  2098. "desktop",
  2099. "laravel",
  2100. "mobile",
  2101. "platform",
  2102. "user agent",
  2103. "useragent"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/jenssegers/agent/issues",
  2107. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2108. },
  2109. "funding": [
  2110. {
  2111. "url": "https://github.com/jenssegers",
  2112. "type": "github"
  2113. },
  2114. {
  2115. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2116. "type": "tidelift"
  2117. }
  2118. ],
  2119. "time": "2020-06-13T08:05:20+00:00"
  2120. },
  2121. {
  2122. "name": "laravel/framework",
  2123. "version": "v8.73.2",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/laravel/framework.git",
  2127. "reference": "0e1c63315eeaee5920552ff042bd820bb4014533"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/laravel/framework/zipball/0e1c63315eeaee5920552ff042bd820bb4014533",
  2132. "reference": "0e1c63315eeaee5920552ff042bd820bb4014533",
  2133. "shasum": ""
  2134. },
  2135. "require": {
  2136. "doctrine/inflector": "^1.4|^2.0",
  2137. "dragonmantank/cron-expression": "^3.0.2",
  2138. "egulias/email-validator": "^2.1.10",
  2139. "ext-json": "*",
  2140. "ext-mbstring": "*",
  2141. "ext-openssl": "*",
  2142. "laravel/serializable-closure": "^1.0",
  2143. "league/commonmark": "^1.3|^2.0.2",
  2144. "league/flysystem": "^1.1",
  2145. "monolog/monolog": "^2.0",
  2146. "nesbot/carbon": "^2.53.1",
  2147. "opis/closure": "^3.6",
  2148. "php": "^7.3|^8.0",
  2149. "psr/container": "^1.0",
  2150. "psr/log": "^1.0 || ^2.0",
  2151. "psr/simple-cache": "^1.0",
  2152. "ramsey/uuid": "^4.2.2",
  2153. "swiftmailer/swiftmailer": "^6.3",
  2154. "symfony/console": "^5.1.4",
  2155. "symfony/error-handler": "^5.1.4",
  2156. "symfony/finder": "^5.1.4",
  2157. "symfony/http-foundation": "^5.1.4",
  2158. "symfony/http-kernel": "^5.1.4",
  2159. "symfony/mime": "^5.1.4",
  2160. "symfony/process": "^5.1.4",
  2161. "symfony/routing": "^5.1.4",
  2162. "symfony/var-dumper": "^5.1.4",
  2163. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2164. "vlucas/phpdotenv": "^5.2",
  2165. "voku/portable-ascii": "^1.4.8"
  2166. },
  2167. "conflict": {
  2168. "tightenco/collect": "<5.5.33"
  2169. },
  2170. "provide": {
  2171. "psr/container-implementation": "1.0",
  2172. "psr/simple-cache-implementation": "1.0"
  2173. },
  2174. "replace": {
  2175. "illuminate/auth": "self.version",
  2176. "illuminate/broadcasting": "self.version",
  2177. "illuminate/bus": "self.version",
  2178. "illuminate/cache": "self.version",
  2179. "illuminate/collections": "self.version",
  2180. "illuminate/config": "self.version",
  2181. "illuminate/console": "self.version",
  2182. "illuminate/container": "self.version",
  2183. "illuminate/contracts": "self.version",
  2184. "illuminate/cookie": "self.version",
  2185. "illuminate/database": "self.version",
  2186. "illuminate/encryption": "self.version",
  2187. "illuminate/events": "self.version",
  2188. "illuminate/filesystem": "self.version",
  2189. "illuminate/hashing": "self.version",
  2190. "illuminate/http": "self.version",
  2191. "illuminate/log": "self.version",
  2192. "illuminate/macroable": "self.version",
  2193. "illuminate/mail": "self.version",
  2194. "illuminate/notifications": "self.version",
  2195. "illuminate/pagination": "self.version",
  2196. "illuminate/pipeline": "self.version",
  2197. "illuminate/queue": "self.version",
  2198. "illuminate/redis": "self.version",
  2199. "illuminate/routing": "self.version",
  2200. "illuminate/session": "self.version",
  2201. "illuminate/support": "self.version",
  2202. "illuminate/testing": "self.version",
  2203. "illuminate/translation": "self.version",
  2204. "illuminate/validation": "self.version",
  2205. "illuminate/view": "self.version"
  2206. },
  2207. "require-dev": {
  2208. "aws/aws-sdk-php": "^3.198.1",
  2209. "doctrine/dbal": "^2.13.3|^3.1.4",
  2210. "filp/whoops": "^2.14.3",
  2211. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2212. "league/flysystem-cached-adapter": "^1.0",
  2213. "mockery/mockery": "^1.4.4",
  2214. "orchestra/testbench-core": "^6.27",
  2215. "pda/pheanstalk": "^4.0",
  2216. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2217. "predis/predis": "^1.1.9",
  2218. "symfony/cache": "^5.1.4"
  2219. },
  2220. "suggest": {
  2221. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2222. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2223. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2224. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2225. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2226. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2227. "ext-memcached": "Required to use the memcache cache driver.",
  2228. "ext-pcntl": "Required to use all features of the queue worker.",
  2229. "ext-posix": "Required to use all features of the queue worker.",
  2230. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2231. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2232. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2233. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2234. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2235. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2236. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2237. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2238. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2239. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2240. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2241. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2242. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2243. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2244. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2245. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  2246. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  2247. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2248. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-master": "8.x-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "files": [
  2258. "src/Illuminate/Collections/helpers.php",
  2259. "src/Illuminate/Events/functions.php",
  2260. "src/Illuminate/Foundation/helpers.php",
  2261. "src/Illuminate/Support/helpers.php"
  2262. ],
  2263. "psr-4": {
  2264. "Illuminate\\": "src/Illuminate/",
  2265. "Illuminate\\Support\\": [
  2266. "src/Illuminate/Macroable/",
  2267. "src/Illuminate/Collections/"
  2268. ]
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Taylor Otwell",
  2278. "email": "taylor@laravel.com"
  2279. }
  2280. ],
  2281. "description": "The Laravel Framework.",
  2282. "homepage": "https://laravel.com",
  2283. "keywords": [
  2284. "framework",
  2285. "laravel"
  2286. ],
  2287. "support": {
  2288. "issues": "https://github.com/laravel/framework/issues",
  2289. "source": "https://github.com/laravel/framework"
  2290. },
  2291. "time": "2021-11-23T14:27:43+00:00"
  2292. },
  2293. {
  2294. "name": "laravel/helpers",
  2295. "version": "v1.4.1",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/laravel/helpers.git",
  2299. "reference": "febb10d8daaf86123825de2cb87f789a3371f0ac"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/laravel/helpers/zipball/febb10d8daaf86123825de2cb87f789a3371f0ac",
  2304. "reference": "febb10d8daaf86123825de2cb87f789a3371f0ac",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
  2309. "php": "^7.1.3|^8.0"
  2310. },
  2311. "require-dev": {
  2312. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2313. },
  2314. "type": "library",
  2315. "extra": {
  2316. "branch-alias": {
  2317. "dev-master": "1.x-dev"
  2318. }
  2319. },
  2320. "autoload": {
  2321. "files": [
  2322. "src/helpers.php"
  2323. ]
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "MIT"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "Taylor Otwell",
  2332. "email": "taylor@laravel.com"
  2333. },
  2334. {
  2335. "name": "Dries Vints",
  2336. "email": "dries.vints@gmail.com"
  2337. }
  2338. ],
  2339. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  2340. "keywords": [
  2341. "helpers",
  2342. "laravel"
  2343. ],
  2344. "support": {
  2345. "source": "https://github.com/laravel/helpers/tree/v1.4.1"
  2346. },
  2347. "time": "2021-02-16T15:27:11+00:00"
  2348. },
  2349. {
  2350. "name": "laravel/horizon",
  2351. "version": "v5.7.17",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/laravel/horizon.git",
  2355. "reference": "5b14ede6cd8b63cd42d3585096bb55561866c6d9"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/laravel/horizon/zipball/5b14ede6cd8b63cd42d3585096bb55561866c6d9",
  2360. "reference": "5b14ede6cd8b63cd42d3585096bb55561866c6d9",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "ext-json": "*",
  2365. "ext-pcntl": "*",
  2366. "ext-posix": "*",
  2367. "illuminate/contracts": "^8.17",
  2368. "illuminate/queue": "^8.17",
  2369. "illuminate/support": "^8.17",
  2370. "nesbot/carbon": "^2.17",
  2371. "php": "^7.3|^8.0",
  2372. "ramsey/uuid": "^4.0",
  2373. "symfony/error-handler": "^5.0",
  2374. "symfony/process": "^5.0"
  2375. },
  2376. "require-dev": {
  2377. "mockery/mockery": "^1.0",
  2378. "orchestra/testbench": "^6.0",
  2379. "phpunit/phpunit": "^9.0",
  2380. "predis/predis": "^1.1"
  2381. },
  2382. "suggest": {
  2383. "ext-redis": "Required to use the Redis PHP driver.",
  2384. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2385. },
  2386. "type": "library",
  2387. "extra": {
  2388. "branch-alias": {
  2389. "dev-master": "5.x-dev"
  2390. },
  2391. "laravel": {
  2392. "providers": [
  2393. "Laravel\\Horizon\\HorizonServiceProvider"
  2394. ],
  2395. "aliases": {
  2396. "Horizon": "Laravel\\Horizon\\Horizon"
  2397. }
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-4": {
  2402. "Laravel\\Horizon\\": "src/"
  2403. }
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Taylor Otwell",
  2412. "email": "taylor@laravel.com"
  2413. }
  2414. ],
  2415. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2416. "keywords": [
  2417. "laravel",
  2418. "queue"
  2419. ],
  2420. "support": {
  2421. "issues": "https://github.com/laravel/horizon/issues",
  2422. "source": "https://github.com/laravel/horizon/tree/v5.7.17"
  2423. },
  2424. "time": "2021-12-07T16:02:09+00:00"
  2425. },
  2426. {
  2427. "name": "laravel/passport",
  2428. "version": "v10.2.2",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/laravel/passport.git",
  2432. "reference": "7981abed1a0979afd4a5a8bec81624b8127a287f"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/laravel/passport/zipball/7981abed1a0979afd4a5a8bec81624b8127a287f",
  2437. "reference": "7981abed1a0979afd4a5a8bec81624b8127a287f",
  2438. "shasum": ""
  2439. },
  2440. "require": {
  2441. "ext-json": "*",
  2442. "firebase/php-jwt": "^5.0",
  2443. "illuminate/auth": "^8.2",
  2444. "illuminate/console": "^8.2",
  2445. "illuminate/container": "^8.2",
  2446. "illuminate/contracts": "^8.2",
  2447. "illuminate/cookie": "^8.2",
  2448. "illuminate/database": "^8.2",
  2449. "illuminate/encryption": "^8.2",
  2450. "illuminate/http": "^8.2",
  2451. "illuminate/support": "^8.2",
  2452. "lcobucci/jwt": "^3.4|^4.0",
  2453. "league/oauth2-server": "^8.2",
  2454. "nyholm/psr7": "^1.3",
  2455. "php": "^7.3|^8.0",
  2456. "phpseclib/phpseclib": "^2.0|^3.0",
  2457. "symfony/psr-http-message-bridge": "^2.0"
  2458. },
  2459. "require-dev": {
  2460. "mockery/mockery": "^1.0",
  2461. "orchestra/testbench": "^6.0",
  2462. "phpunit/phpunit": "^9.3"
  2463. },
  2464. "type": "library",
  2465. "extra": {
  2466. "branch-alias": {
  2467. "dev-master": "10.x-dev"
  2468. },
  2469. "laravel": {
  2470. "providers": [
  2471. "Laravel\\Passport\\PassportServiceProvider"
  2472. ]
  2473. }
  2474. },
  2475. "autoload": {
  2476. "psr-4": {
  2477. "Laravel\\Passport\\": "src/",
  2478. "Laravel\\Passport\\Database\\Factories\\": "database/factories/"
  2479. }
  2480. },
  2481. "notification-url": "https://packagist.org/downloads/",
  2482. "license": [
  2483. "MIT"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Taylor Otwell",
  2488. "email": "taylor@laravel.com"
  2489. }
  2490. ],
  2491. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2492. "keywords": [
  2493. "laravel",
  2494. "oauth",
  2495. "passport"
  2496. ],
  2497. "support": {
  2498. "issues": "https://github.com/laravel/passport/issues",
  2499. "source": "https://github.com/laravel/passport"
  2500. },
  2501. "time": "2021-12-07T16:57:03+00:00"
  2502. },
  2503. {
  2504. "name": "laravel/serializable-closure",
  2505. "version": "v1.0.5",
  2506. "source": {
  2507. "type": "git",
  2508. "url": "https://github.com/laravel/serializable-closure.git",
  2509. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c"
  2510. },
  2511. "dist": {
  2512. "type": "zip",
  2513. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  2514. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  2515. "shasum": ""
  2516. },
  2517. "require": {
  2518. "php": "^7.3|^8.0"
  2519. },
  2520. "require-dev": {
  2521. "pestphp/pest": "^1.18",
  2522. "phpstan/phpstan": "^0.12.98",
  2523. "symfony/var-dumper": "^5.3"
  2524. },
  2525. "type": "library",
  2526. "extra": {
  2527. "branch-alias": {
  2528. "dev-master": "1.x-dev"
  2529. }
  2530. },
  2531. "autoload": {
  2532. "psr-4": {
  2533. "Laravel\\SerializableClosure\\": "src/"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Taylor Otwell",
  2543. "email": "taylor@laravel.com"
  2544. },
  2545. {
  2546. "name": "Nuno Maduro",
  2547. "email": "nuno@laravel.com"
  2548. }
  2549. ],
  2550. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2551. "keywords": [
  2552. "closure",
  2553. "laravel",
  2554. "serializable"
  2555. ],
  2556. "support": {
  2557. "issues": "https://github.com/laravel/serializable-closure/issues",
  2558. "source": "https://github.com/laravel/serializable-closure"
  2559. },
  2560. "time": "2021-11-30T15:53:04+00:00"
  2561. },
  2562. {
  2563. "name": "laravel/tinker",
  2564. "version": "v2.6.3",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/laravel/tinker.git",
  2568. "reference": "a9ddee4761ec8453c584e393b393caff189a3e42"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/laravel/tinker/zipball/a9ddee4761ec8453c584e393b393caff189a3e42",
  2573. "reference": "a9ddee4761ec8453c584e393b393caff189a3e42",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "illuminate/console": "^6.0|^7.0|^8.0",
  2578. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2579. "illuminate/support": "^6.0|^7.0|^8.0",
  2580. "php": "^7.2.5|^8.0",
  2581. "psy/psysh": "^0.10.4",
  2582. "symfony/var-dumper": "^4.3.4|^5.0"
  2583. },
  2584. "require-dev": {
  2585. "mockery/mockery": "~1.3.3|^1.4.2",
  2586. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2587. },
  2588. "suggest": {
  2589. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2590. },
  2591. "type": "library",
  2592. "extra": {
  2593. "branch-alias": {
  2594. "dev-master": "2.x-dev"
  2595. },
  2596. "laravel": {
  2597. "providers": [
  2598. "Laravel\\Tinker\\TinkerServiceProvider"
  2599. ]
  2600. }
  2601. },
  2602. "autoload": {
  2603. "psr-4": {
  2604. "Laravel\\Tinker\\": "src/"
  2605. }
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "Taylor Otwell",
  2614. "email": "taylor@laravel.com"
  2615. }
  2616. ],
  2617. "description": "Powerful REPL for the Laravel framework.",
  2618. "keywords": [
  2619. "REPL",
  2620. "Tinker",
  2621. "laravel",
  2622. "psysh"
  2623. ],
  2624. "support": {
  2625. "issues": "https://github.com/laravel/tinker/issues",
  2626. "source": "https://github.com/laravel/tinker/tree/v2.6.3"
  2627. },
  2628. "time": "2021-12-07T16:41:42+00:00"
  2629. },
  2630. {
  2631. "name": "laravel/ui",
  2632. "version": "v3.4.0",
  2633. "source": {
  2634. "type": "git",
  2635. "url": "https://github.com/laravel/ui.git",
  2636. "reference": "b3e804559bf3973ecca160a4ae1068e6c7c167c6"
  2637. },
  2638. "dist": {
  2639. "type": "zip",
  2640. "url": "https://api.github.com/repos/laravel/ui/zipball/b3e804559bf3973ecca160a4ae1068e6c7c167c6",
  2641. "reference": "b3e804559bf3973ecca160a4ae1068e6c7c167c6",
  2642. "shasum": ""
  2643. },
  2644. "require": {
  2645. "illuminate/console": "^8.42|^9.0",
  2646. "illuminate/filesystem": "^8.42|^9.0",
  2647. "illuminate/support": "^8.42|^9.0",
  2648. "illuminate/validation": "^8.42|^9.0",
  2649. "php": "^7.3|^8.0"
  2650. },
  2651. "require-dev": {
  2652. "orchestra/testbench": "^6.23|^7.0"
  2653. },
  2654. "type": "library",
  2655. "extra": {
  2656. "branch-alias": {
  2657. "dev-master": "3.x-dev"
  2658. },
  2659. "laravel": {
  2660. "providers": [
  2661. "Laravel\\Ui\\UiServiceProvider"
  2662. ]
  2663. }
  2664. },
  2665. "autoload": {
  2666. "psr-4": {
  2667. "Laravel\\Ui\\": "src/",
  2668. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2669. }
  2670. },
  2671. "notification-url": "https://packagist.org/downloads/",
  2672. "license": [
  2673. "MIT"
  2674. ],
  2675. "authors": [
  2676. {
  2677. "name": "Taylor Otwell",
  2678. "email": "taylor@laravel.com"
  2679. }
  2680. ],
  2681. "description": "Laravel UI utilities and presets.",
  2682. "keywords": [
  2683. "laravel",
  2684. "ui"
  2685. ],
  2686. "support": {
  2687. "source": "https://github.com/laravel/ui/tree/v3.4.0"
  2688. },
  2689. "time": "2021-11-30T16:22:00+00:00"
  2690. },
  2691. {
  2692. "name": "lcobucci/clock",
  2693. "version": "2.0.0",
  2694. "source": {
  2695. "type": "git",
  2696. "url": "https://github.com/lcobucci/clock.git",
  2697. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
  2698. },
  2699. "dist": {
  2700. "type": "zip",
  2701. "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  2702. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  2703. "shasum": ""
  2704. },
  2705. "require": {
  2706. "php": "^7.4 || ^8.0"
  2707. },
  2708. "require-dev": {
  2709. "infection/infection": "^0.17",
  2710. "lcobucci/coding-standard": "^6.0",
  2711. "phpstan/extension-installer": "^1.0",
  2712. "phpstan/phpstan": "^0.12",
  2713. "phpstan/phpstan-deprecation-rules": "^0.12",
  2714. "phpstan/phpstan-phpunit": "^0.12",
  2715. "phpstan/phpstan-strict-rules": "^0.12",
  2716. "phpunit/php-code-coverage": "9.1.4",
  2717. "phpunit/phpunit": "9.3.7"
  2718. },
  2719. "type": "library",
  2720. "autoload": {
  2721. "psr-4": {
  2722. "Lcobucci\\Clock\\": "src"
  2723. }
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "MIT"
  2728. ],
  2729. "authors": [
  2730. {
  2731. "name": "Luís Cobucci",
  2732. "email": "lcobucci@gmail.com"
  2733. }
  2734. ],
  2735. "description": "Yet another clock abstraction",
  2736. "support": {
  2737. "issues": "https://github.com/lcobucci/clock/issues",
  2738. "source": "https://github.com/lcobucci/clock/tree/2.0.x"
  2739. },
  2740. "funding": [
  2741. {
  2742. "url": "https://github.com/lcobucci",
  2743. "type": "github"
  2744. },
  2745. {
  2746. "url": "https://www.patreon.com/lcobucci",
  2747. "type": "patreon"
  2748. }
  2749. ],
  2750. "time": "2020-08-27T18:56:02+00:00"
  2751. },
  2752. {
  2753. "name": "lcobucci/jwt",
  2754. "version": "4.1.5",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/lcobucci/jwt.git",
  2758. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  2763. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  2764. "shasum": ""
  2765. },
  2766. "require": {
  2767. "ext-hash": "*",
  2768. "ext-json": "*",
  2769. "ext-mbstring": "*",
  2770. "ext-openssl": "*",
  2771. "ext-sodium": "*",
  2772. "lcobucci/clock": "^2.0",
  2773. "php": "^7.4 || ^8.0"
  2774. },
  2775. "require-dev": {
  2776. "infection/infection": "^0.21",
  2777. "lcobucci/coding-standard": "^6.0",
  2778. "mikey179/vfsstream": "^1.6.7",
  2779. "phpbench/phpbench": "^1.0",
  2780. "phpstan/extension-installer": "^1.0",
  2781. "phpstan/phpstan": "^0.12",
  2782. "phpstan/phpstan-deprecation-rules": "^0.12",
  2783. "phpstan/phpstan-phpunit": "^0.12",
  2784. "phpstan/phpstan-strict-rules": "^0.12",
  2785. "phpunit/php-invoker": "^3.1",
  2786. "phpunit/phpunit": "^9.5"
  2787. },
  2788. "type": "library",
  2789. "autoload": {
  2790. "psr-4": {
  2791. "Lcobucci\\JWT\\": "src"
  2792. }
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "BSD-3-Clause"
  2797. ],
  2798. "authors": [
  2799. {
  2800. "name": "Luís Cobucci",
  2801. "email": "lcobucci@gmail.com",
  2802. "role": "Developer"
  2803. }
  2804. ],
  2805. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2806. "keywords": [
  2807. "JWS",
  2808. "jwt"
  2809. ],
  2810. "support": {
  2811. "issues": "https://github.com/lcobucci/jwt/issues",
  2812. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  2813. },
  2814. "funding": [
  2815. {
  2816. "url": "https://github.com/lcobucci",
  2817. "type": "github"
  2818. },
  2819. {
  2820. "url": "https://www.patreon.com/lcobucci",
  2821. "type": "patreon"
  2822. }
  2823. ],
  2824. "time": "2021-09-28T19:34:56+00:00"
  2825. },
  2826. {
  2827. "name": "league/commonmark",
  2828. "version": "2.1.0",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/thephpleague/commonmark.git",
  2832. "reference": "819276bc54e83c160617d3ac0a436c239e479928"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/819276bc54e83c160617d3ac0a436c239e479928",
  2837. "reference": "819276bc54e83c160617d3ac0a436c239e479928",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "ext-mbstring": "*",
  2842. "league/config": "^1.1.1",
  2843. "php": "^7.4 || ^8.0",
  2844. "psr/event-dispatcher": "^1.0",
  2845. "symfony/polyfill-php80": "^1.15"
  2846. },
  2847. "require-dev": {
  2848. "cebe/markdown": "^1.0",
  2849. "commonmark/cmark": "0.30.0",
  2850. "commonmark/commonmark.js": "0.30.0",
  2851. "composer/package-versions-deprecated": "^1.8",
  2852. "erusev/parsedown": "^1.0",
  2853. "ext-json": "*",
  2854. "github/gfm": "0.29.0",
  2855. "michelf/php-markdown": "^1.4",
  2856. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  2857. "phpunit/phpunit": "^9.5.5",
  2858. "scrutinizer/ocular": "^1.8.1",
  2859. "symfony/finder": "^5.3",
  2860. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2861. "unleashedtech/php-coding-standard": "^3.1",
  2862. "vimeo/psalm": "^4.7.3"
  2863. },
  2864. "suggest": {
  2865. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2866. },
  2867. "type": "library",
  2868. "extra": {
  2869. "branch-alias": {
  2870. "dev-main": "2.2-dev"
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "League\\CommonMark\\": "src"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "BSD-3-Clause"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "Colin O'Dell",
  2885. "email": "colinodell@gmail.com",
  2886. "homepage": "https://www.colinodell.com",
  2887. "role": "Lead Developer"
  2888. }
  2889. ],
  2890. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2891. "homepage": "https://commonmark.thephpleague.com",
  2892. "keywords": [
  2893. "commonmark",
  2894. "flavored",
  2895. "gfm",
  2896. "github",
  2897. "github-flavored",
  2898. "markdown",
  2899. "md",
  2900. "parser"
  2901. ],
  2902. "support": {
  2903. "docs": "https://commonmark.thephpleague.com/",
  2904. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2905. "issues": "https://github.com/thephpleague/commonmark/issues",
  2906. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2907. "source": "https://github.com/thephpleague/commonmark"
  2908. },
  2909. "funding": [
  2910. {
  2911. "url": "https://www.colinodell.com/sponsor",
  2912. "type": "custom"
  2913. },
  2914. {
  2915. "url": "https://www.paypal.me/colinpodell/10.00",
  2916. "type": "custom"
  2917. },
  2918. {
  2919. "url": "https://github.com/colinodell",
  2920. "type": "github"
  2921. },
  2922. {
  2923. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2924. "type": "tidelift"
  2925. }
  2926. ],
  2927. "time": "2021-12-05T18:25:20+00:00"
  2928. },
  2929. {
  2930. "name": "league/config",
  2931. "version": "v1.1.1",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/thephpleague/config.git",
  2935. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2940. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2941. "shasum": ""
  2942. },
  2943. "require": {
  2944. "dflydev/dot-access-data": "^3.0.1",
  2945. "nette/schema": "^1.2",
  2946. "php": "^7.4 || ^8.0"
  2947. },
  2948. "require-dev": {
  2949. "phpstan/phpstan": "^0.12.90",
  2950. "phpunit/phpunit": "^9.5.5",
  2951. "scrutinizer/ocular": "^1.8.1",
  2952. "unleashedtech/php-coding-standard": "^3.1",
  2953. "vimeo/psalm": "^4.7.3"
  2954. },
  2955. "type": "library",
  2956. "extra": {
  2957. "branch-alias": {
  2958. "dev-main": "1.2-dev"
  2959. }
  2960. },
  2961. "autoload": {
  2962. "psr-4": {
  2963. "League\\Config\\": "src"
  2964. }
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "BSD-3-Clause"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Colin O'Dell",
  2973. "email": "colinodell@gmail.com",
  2974. "homepage": "https://www.colinodell.com",
  2975. "role": "Lead Developer"
  2976. }
  2977. ],
  2978. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2979. "homepage": "https://config.thephpleague.com",
  2980. "keywords": [
  2981. "array",
  2982. "config",
  2983. "configuration",
  2984. "dot",
  2985. "dot-access",
  2986. "nested",
  2987. "schema"
  2988. ],
  2989. "support": {
  2990. "docs": "https://config.thephpleague.com/",
  2991. "issues": "https://github.com/thephpleague/config/issues",
  2992. "rss": "https://github.com/thephpleague/config/releases.atom",
  2993. "source": "https://github.com/thephpleague/config"
  2994. },
  2995. "funding": [
  2996. {
  2997. "url": "https://www.colinodell.com/sponsor",
  2998. "type": "custom"
  2999. },
  3000. {
  3001. "url": "https://www.paypal.me/colinpodell/10.00",
  3002. "type": "custom"
  3003. },
  3004. {
  3005. "url": "https://github.com/colinodell",
  3006. "type": "github"
  3007. }
  3008. ],
  3009. "time": "2021-08-14T12:15:32+00:00"
  3010. },
  3011. {
  3012. "name": "league/event",
  3013. "version": "2.2.0",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/thephpleague/event.git",
  3017. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3022. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=5.4.0"
  3027. },
  3028. "require-dev": {
  3029. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3030. "phpspec/phpspec": "^2.2"
  3031. },
  3032. "type": "library",
  3033. "extra": {
  3034. "branch-alias": {
  3035. "dev-master": "2.2-dev"
  3036. }
  3037. },
  3038. "autoload": {
  3039. "psr-4": {
  3040. "League\\Event\\": "src/"
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Frank de Jonge",
  3050. "email": "info@frenky.net"
  3051. }
  3052. ],
  3053. "description": "Event package",
  3054. "keywords": [
  3055. "emitter",
  3056. "event",
  3057. "listener"
  3058. ],
  3059. "support": {
  3060. "issues": "https://github.com/thephpleague/event/issues",
  3061. "source": "https://github.com/thephpleague/event/tree/master"
  3062. },
  3063. "time": "2018-11-26T11:52:41+00:00"
  3064. },
  3065. {
  3066. "name": "league/flysystem",
  3067. "version": "1.1.9",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/thephpleague/flysystem.git",
  3071. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3076. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "ext-fileinfo": "*",
  3081. "league/mime-type-detection": "^1.3",
  3082. "php": "^7.2.5 || ^8.0"
  3083. },
  3084. "conflict": {
  3085. "league/flysystem-sftp": "<1.0.6"
  3086. },
  3087. "require-dev": {
  3088. "phpspec/prophecy": "^1.11.1",
  3089. "phpunit/phpunit": "^8.5.8"
  3090. },
  3091. "suggest": {
  3092. "ext-ftp": "Allows you to use FTP server storage",
  3093. "ext-openssl": "Allows you to use FTPS server storage",
  3094. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3095. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3096. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3097. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3098. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3099. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3100. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3101. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3102. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3103. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3104. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "branch-alias": {
  3109. "dev-master": "1.1-dev"
  3110. }
  3111. },
  3112. "autoload": {
  3113. "psr-4": {
  3114. "League\\Flysystem\\": "src/"
  3115. }
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Frank de Jonge",
  3124. "email": "info@frenky.net"
  3125. }
  3126. ],
  3127. "description": "Filesystem abstraction: Many filesystems, one API.",
  3128. "keywords": [
  3129. "Cloud Files",
  3130. "WebDAV",
  3131. "abstraction",
  3132. "aws",
  3133. "cloud",
  3134. "copy.com",
  3135. "dropbox",
  3136. "file systems",
  3137. "files",
  3138. "filesystem",
  3139. "filesystems",
  3140. "ftp",
  3141. "rackspace",
  3142. "remote",
  3143. "s3",
  3144. "sftp",
  3145. "storage"
  3146. ],
  3147. "support": {
  3148. "issues": "https://github.com/thephpleague/flysystem/issues",
  3149. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3150. },
  3151. "funding": [
  3152. {
  3153. "url": "https://offset.earth/frankdejonge",
  3154. "type": "other"
  3155. }
  3156. ],
  3157. "time": "2021-12-09T09:40:50+00:00"
  3158. },
  3159. {
  3160. "name": "league/flysystem-aws-s3-v3",
  3161. "version": "1.0.29",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3165. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/4e25cc0582a36a786c31115e419c6e40498f6972",
  3170. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "aws/aws-sdk-php": "^3.20.0",
  3175. "league/flysystem": "^1.0.40",
  3176. "php": ">=5.5.0"
  3177. },
  3178. "require-dev": {
  3179. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3180. "phpspec/phpspec": "^2.0.0"
  3181. },
  3182. "type": "library",
  3183. "extra": {
  3184. "branch-alias": {
  3185. "dev-master": "1.0-dev"
  3186. }
  3187. },
  3188. "autoload": {
  3189. "psr-4": {
  3190. "League\\Flysystem\\AwsS3v3\\": "src/"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "MIT"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "Frank de Jonge",
  3200. "email": "info@frenky.net"
  3201. }
  3202. ],
  3203. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  3204. "support": {
  3205. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  3206. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.29"
  3207. },
  3208. "time": "2020-10-08T18:58:37+00:00"
  3209. },
  3210. {
  3211. "name": "league/flysystem-cached-adapter",
  3212. "version": "1.1.0",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  3216. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3221. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3222. "shasum": ""
  3223. },
  3224. "require": {
  3225. "league/flysystem": "~1.0",
  3226. "psr/cache": "^1.0.0"
  3227. },
  3228. "require-dev": {
  3229. "mockery/mockery": "~0.9",
  3230. "phpspec/phpspec": "^3.4",
  3231. "phpunit/phpunit": "^5.7",
  3232. "predis/predis": "~1.0",
  3233. "tedivm/stash": "~0.12"
  3234. },
  3235. "suggest": {
  3236. "ext-phpredis": "Pure C implemented extension for PHP"
  3237. },
  3238. "type": "library",
  3239. "autoload": {
  3240. "psr-4": {
  3241. "League\\Flysystem\\Cached\\": "src/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "frankdejonge",
  3251. "email": "info@frenky.net"
  3252. }
  3253. ],
  3254. "description": "An adapter decorator to enable meta-data caching.",
  3255. "support": {
  3256. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  3257. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  3258. },
  3259. "time": "2020-07-25T15:56:04+00:00"
  3260. },
  3261. {
  3262. "name": "league/iso3166",
  3263. "version": "4.0.0",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/thephpleague/iso3166.git",
  3267. "reference": "1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/thephpleague/iso3166/zipball/1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef",
  3272. "reference": "1a3ec7e6f1e4f16fce68dc239bafae217fbdcfef",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "php": "^7.3|^8.0"
  3277. },
  3278. "require-dev": {
  3279. "phpunit/phpunit": "^9.5"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "3.x-dev"
  3285. }
  3286. },
  3287. "autoload": {
  3288. "psr-4": {
  3289. "League\\ISO3166\\": "src"
  3290. }
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Rob Bast",
  3299. "email": "rob.bast@gmail.com"
  3300. }
  3301. ],
  3302. "description": "ISO 3166-1 PHP Library",
  3303. "homepage": "https://github.com/thephpleague/iso3166",
  3304. "keywords": [
  3305. "3166",
  3306. "3166-1",
  3307. "ISO 3166",
  3308. "countries",
  3309. "iso",
  3310. "library"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/thephpleague/iso3166/issues",
  3314. "source": "https://github.com/thephpleague/iso3166"
  3315. },
  3316. "time": "2021-10-22T12:47:55+00:00"
  3317. },
  3318. {
  3319. "name": "league/mime-type-detection",
  3320. "version": "1.9.0",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3324. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  3329. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  3330. "shasum": ""
  3331. },
  3332. "require": {
  3333. "ext-fileinfo": "*",
  3334. "php": "^7.2 || ^8.0"
  3335. },
  3336. "require-dev": {
  3337. "friendsofphp/php-cs-fixer": "^3.2",
  3338. "phpstan/phpstan": "^0.12.68",
  3339. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3340. },
  3341. "type": "library",
  3342. "autoload": {
  3343. "psr-4": {
  3344. "League\\MimeTypeDetection\\": "src"
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Frank de Jonge",
  3354. "email": "info@frankdejonge.nl"
  3355. }
  3356. ],
  3357. "description": "Mime-type detection for Flysystem",
  3358. "support": {
  3359. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3360. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  3361. },
  3362. "funding": [
  3363. {
  3364. "url": "https://github.com/frankdejonge",
  3365. "type": "github"
  3366. },
  3367. {
  3368. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3369. "type": "tidelift"
  3370. }
  3371. ],
  3372. "time": "2021-11-21T11:48:40+00:00"
  3373. },
  3374. {
  3375. "name": "league/oauth2-server",
  3376. "version": "8.3.3",
  3377. "source": {
  3378. "type": "git",
  3379. "url": "https://github.com/thephpleague/oauth2-server.git",
  3380. "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a"
  3381. },
  3382. "dist": {
  3383. "type": "zip",
  3384. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/f5698a3893eda9a17bcd48636990281e7ca77b2a",
  3385. "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a",
  3386. "shasum": ""
  3387. },
  3388. "require": {
  3389. "defuse/php-encryption": "^2.2.1",
  3390. "ext-json": "*",
  3391. "ext-openssl": "*",
  3392. "lcobucci/jwt": "^3.4.6 || ^4.0.4",
  3393. "league/event": "^2.2",
  3394. "php": "^7.2 || ^8.0",
  3395. "psr/http-message": "^1.0.1"
  3396. },
  3397. "replace": {
  3398. "league/oauth2server": "*",
  3399. "lncd/oauth2": "*"
  3400. },
  3401. "require-dev": {
  3402. "laminas/laminas-diactoros": "^2.4.1",
  3403. "phpstan/phpstan": "^0.12.57",
  3404. "phpstan/phpstan-phpunit": "^0.12.16",
  3405. "phpunit/phpunit": "^8.5.13",
  3406. "roave/security-advisories": "dev-master"
  3407. },
  3408. "type": "library",
  3409. "autoload": {
  3410. "psr-4": {
  3411. "League\\OAuth2\\Server\\": "src/"
  3412. }
  3413. },
  3414. "notification-url": "https://packagist.org/downloads/",
  3415. "license": [
  3416. "MIT"
  3417. ],
  3418. "authors": [
  3419. {
  3420. "name": "Alex Bilbie",
  3421. "email": "hello@alexbilbie.com",
  3422. "homepage": "http://www.alexbilbie.com",
  3423. "role": "Developer"
  3424. },
  3425. {
  3426. "name": "Andy Millington",
  3427. "email": "andrew@noexceptions.io",
  3428. "homepage": "https://www.noexceptions.io",
  3429. "role": "Developer"
  3430. }
  3431. ],
  3432. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3433. "homepage": "https://oauth2.thephpleague.com/",
  3434. "keywords": [
  3435. "Authentication",
  3436. "api",
  3437. "auth",
  3438. "authorisation",
  3439. "authorization",
  3440. "oauth",
  3441. "oauth 2",
  3442. "oauth 2.0",
  3443. "oauth2",
  3444. "protect",
  3445. "resource",
  3446. "secure",
  3447. "server"
  3448. ],
  3449. "support": {
  3450. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  3451. "source": "https://github.com/thephpleague/oauth2-server/tree/8.3.3"
  3452. },
  3453. "funding": [
  3454. {
  3455. "url": "https://github.com/sephster",
  3456. "type": "github"
  3457. }
  3458. ],
  3459. "time": "2021-10-11T20:41:49+00:00"
  3460. },
  3461. {
  3462. "name": "mobiledetect/mobiledetectlib",
  3463. "version": "2.8.37",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3467. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3472. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": ">=5.0.0"
  3477. },
  3478. "require-dev": {
  3479. "phpunit/phpunit": "~4.8.35||~5.7"
  3480. },
  3481. "type": "library",
  3482. "autoload": {
  3483. "classmap": [
  3484. "Mobile_Detect.php"
  3485. ],
  3486. "psr-0": {
  3487. "Detection": "namespaced/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Serban Ghita",
  3497. "email": "serbanghita@gmail.com",
  3498. "homepage": "http://mobiledetect.net",
  3499. "role": "Developer"
  3500. }
  3501. ],
  3502. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3503. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3504. "keywords": [
  3505. "detect mobile devices",
  3506. "mobile",
  3507. "mobile detect",
  3508. "mobile detector",
  3509. "php mobile detect"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3513. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.37"
  3514. },
  3515. "funding": [
  3516. {
  3517. "url": "https://github.com/serbanghita",
  3518. "type": "github"
  3519. }
  3520. ],
  3521. "time": "2021-02-19T21:22:57+00:00"
  3522. },
  3523. {
  3524. "name": "monolog/monolog",
  3525. "version": "2.3.5",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://github.com/Seldaek/monolog.git",
  3529. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  3534. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  3535. "shasum": ""
  3536. },
  3537. "require": {
  3538. "php": ">=7.2",
  3539. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3540. },
  3541. "provide": {
  3542. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3543. },
  3544. "require-dev": {
  3545. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3546. "doctrine/couchdb": "~1.0@dev",
  3547. "elasticsearch/elasticsearch": "^7",
  3548. "graylog2/gelf-php": "^1.4.2",
  3549. "mongodb/mongodb": "^1.8",
  3550. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3551. "php-console/php-console": "^3.1.3",
  3552. "phpspec/prophecy": "^1.6.1",
  3553. "phpstan/phpstan": "^0.12.91",
  3554. "phpunit/phpunit": "^8.5",
  3555. "predis/predis": "^1.1",
  3556. "rollbar/rollbar": "^1.3",
  3557. "ruflin/elastica": ">=0.90@dev",
  3558. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3559. },
  3560. "suggest": {
  3561. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3562. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3563. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3564. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3565. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3566. "ext-mbstring": "Allow to work properly with unicode symbols",
  3567. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3568. "ext-openssl": "Required to send log messages using SSL",
  3569. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3570. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3571. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3572. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3573. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3574. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3575. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-main": "2.x-dev"
  3581. }
  3582. },
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Monolog\\": "src/Monolog"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "Jordi Boggiano",
  3595. "email": "j.boggiano@seld.be",
  3596. "homepage": "https://seld.be"
  3597. }
  3598. ],
  3599. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3600. "homepage": "https://github.com/Seldaek/monolog",
  3601. "keywords": [
  3602. "log",
  3603. "logging",
  3604. "psr-3"
  3605. ],
  3606. "support": {
  3607. "issues": "https://github.com/Seldaek/monolog/issues",
  3608. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3609. },
  3610. "funding": [
  3611. {
  3612. "url": "https://github.com/Seldaek",
  3613. "type": "github"
  3614. },
  3615. {
  3616. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3617. "type": "tidelift"
  3618. }
  3619. ],
  3620. "time": "2021-10-01T21:08:31+00:00"
  3621. },
  3622. {
  3623. "name": "mtdowling/jmespath.php",
  3624. "version": "2.6.1",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/jmespath/jmespath.php.git",
  3628. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3633. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3634. "shasum": ""
  3635. },
  3636. "require": {
  3637. "php": "^5.4 || ^7.0 || ^8.0",
  3638. "symfony/polyfill-mbstring": "^1.17"
  3639. },
  3640. "require-dev": {
  3641. "composer/xdebug-handler": "^1.4 || ^2.0",
  3642. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3643. },
  3644. "bin": [
  3645. "bin/jp.php"
  3646. ],
  3647. "type": "library",
  3648. "extra": {
  3649. "branch-alias": {
  3650. "dev-master": "2.6-dev"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "JmesPath\\": "src/"
  3656. },
  3657. "files": [
  3658. "src/JmesPath.php"
  3659. ]
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Michael Dowling",
  3668. "email": "mtdowling@gmail.com",
  3669. "homepage": "https://github.com/mtdowling"
  3670. }
  3671. ],
  3672. "description": "Declaratively specify how to extract elements from a JSON document",
  3673. "keywords": [
  3674. "json",
  3675. "jsonpath"
  3676. ],
  3677. "support": {
  3678. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3679. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3680. },
  3681. "time": "2021-06-14T00:11:39+00:00"
  3682. },
  3683. {
  3684. "name": "nesbot/carbon",
  3685. "version": "2.55.2",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://github.com/briannesbitt/Carbon.git",
  3689. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  3694. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  3695. "shasum": ""
  3696. },
  3697. "require": {
  3698. "ext-json": "*",
  3699. "php": "^7.1.8 || ^8.0",
  3700. "symfony/polyfill-mbstring": "^1.0",
  3701. "symfony/polyfill-php80": "^1.16",
  3702. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3703. },
  3704. "require-dev": {
  3705. "doctrine/dbal": "^2.0 || ^3.0",
  3706. "doctrine/orm": "^2.7",
  3707. "friendsofphp/php-cs-fixer": "^3.0",
  3708. "kylekatarnls/multi-tester": "^2.0",
  3709. "phpmd/phpmd": "^2.9",
  3710. "phpstan/extension-installer": "^1.0",
  3711. "phpstan/phpstan": "^0.12.54",
  3712. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3713. "squizlabs/php_codesniffer": "^3.4"
  3714. },
  3715. "bin": [
  3716. "bin/carbon"
  3717. ],
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-3.x": "3.x-dev",
  3722. "dev-master": "2.x-dev"
  3723. },
  3724. "laravel": {
  3725. "providers": [
  3726. "Carbon\\Laravel\\ServiceProvider"
  3727. ]
  3728. },
  3729. "phpstan": {
  3730. "includes": [
  3731. "extension.neon"
  3732. ]
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Carbon\\": "src/Carbon/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Brian Nesbitt",
  3747. "email": "brian@nesbot.com",
  3748. "homepage": "https://markido.com"
  3749. },
  3750. {
  3751. "name": "kylekatarnls",
  3752. "homepage": "https://github.com/kylekatarnls"
  3753. }
  3754. ],
  3755. "description": "An API extension for DateTime that supports 281 different languages.",
  3756. "homepage": "https://carbon.nesbot.com",
  3757. "keywords": [
  3758. "date",
  3759. "datetime",
  3760. "time"
  3761. ],
  3762. "support": {
  3763. "docs": "https://carbon.nesbot.com/docs",
  3764. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3765. "source": "https://github.com/briannesbitt/Carbon"
  3766. },
  3767. "funding": [
  3768. {
  3769. "url": "https://opencollective.com/Carbon",
  3770. "type": "open_collective"
  3771. },
  3772. {
  3773. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3774. "type": "tidelift"
  3775. }
  3776. ],
  3777. "time": "2021-12-03T14:59:52+00:00"
  3778. },
  3779. {
  3780. "name": "nette/schema",
  3781. "version": "v1.2.2",
  3782. "source": {
  3783. "type": "git",
  3784. "url": "https://github.com/nette/schema.git",
  3785. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  3786. },
  3787. "dist": {
  3788. "type": "zip",
  3789. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3790. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3791. "shasum": ""
  3792. },
  3793. "require": {
  3794. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3795. "php": ">=7.1 <8.2"
  3796. },
  3797. "require-dev": {
  3798. "nette/tester": "^2.3 || ^2.4",
  3799. "phpstan/phpstan-nette": "^0.12",
  3800. "tracy/tracy": "^2.7"
  3801. },
  3802. "type": "library",
  3803. "extra": {
  3804. "branch-alias": {
  3805. "dev-master": "1.2-dev"
  3806. }
  3807. },
  3808. "autoload": {
  3809. "classmap": [
  3810. "src/"
  3811. ]
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "BSD-3-Clause",
  3816. "GPL-2.0-only",
  3817. "GPL-3.0-only"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "David Grudl",
  3822. "homepage": "https://davidgrudl.com"
  3823. },
  3824. {
  3825. "name": "Nette Community",
  3826. "homepage": "https://nette.org/contributors"
  3827. }
  3828. ],
  3829. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3830. "homepage": "https://nette.org",
  3831. "keywords": [
  3832. "config",
  3833. "nette"
  3834. ],
  3835. "support": {
  3836. "issues": "https://github.com/nette/schema/issues",
  3837. "source": "https://github.com/nette/schema/tree/v1.2.2"
  3838. },
  3839. "time": "2021-10-15T11:40:02+00:00"
  3840. },
  3841. {
  3842. "name": "nette/utils",
  3843. "version": "v3.2.6",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/nette/utils.git",
  3847. "reference": "2f261e55bd6a12057442045bf2c249806abc1d02"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/nette/utils/zipball/2f261e55bd6a12057442045bf2c249806abc1d02",
  3852. "reference": "2f261e55bd6a12057442045bf2c249806abc1d02",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "php": ">=7.2 <8.2"
  3857. },
  3858. "conflict": {
  3859. "nette/di": "<3.0.6"
  3860. },
  3861. "require-dev": {
  3862. "nette/tester": "~2.0",
  3863. "phpstan/phpstan": "^1.0",
  3864. "tracy/tracy": "^2.3"
  3865. },
  3866. "suggest": {
  3867. "ext-gd": "to use Image",
  3868. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3869. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3870. "ext-json": "to use Nette\\Utils\\Json",
  3871. "ext-mbstring": "to use Strings::lower() etc...",
  3872. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3873. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-master": "3.2-dev"
  3879. }
  3880. },
  3881. "autoload": {
  3882. "classmap": [
  3883. "src/"
  3884. ]
  3885. },
  3886. "notification-url": "https://packagist.org/downloads/",
  3887. "license": [
  3888. "BSD-3-Clause",
  3889. "GPL-2.0-only",
  3890. "GPL-3.0-only"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "David Grudl",
  3895. "homepage": "https://davidgrudl.com"
  3896. },
  3897. {
  3898. "name": "Nette Community",
  3899. "homepage": "https://nette.org/contributors"
  3900. }
  3901. ],
  3902. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3903. "homepage": "https://nette.org",
  3904. "keywords": [
  3905. "array",
  3906. "core",
  3907. "datetime",
  3908. "images",
  3909. "json",
  3910. "nette",
  3911. "paginator",
  3912. "password",
  3913. "slugify",
  3914. "string",
  3915. "unicode",
  3916. "utf-8",
  3917. "utility",
  3918. "validation"
  3919. ],
  3920. "support": {
  3921. "issues": "https://github.com/nette/utils/issues",
  3922. "source": "https://github.com/nette/utils/tree/v3.2.6"
  3923. },
  3924. "time": "2021-11-24T15:47:23+00:00"
  3925. },
  3926. {
  3927. "name": "neutron/temporary-filesystem",
  3928. "version": "3.0",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  3932. "reference": "60e79adfd16f42f4b888e351ad49f9dcb959e3c2"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/60e79adfd16f42f4b888e351ad49f9dcb959e3c2",
  3937. "reference": "60e79adfd16f42f4b888e351ad49f9dcb959e3c2",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "php": ">=5.6",
  3942. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0 || ^5.0"
  3943. },
  3944. "require-dev": {
  3945. "symfony/phpunit-bridge": "^5.0.4"
  3946. },
  3947. "type": "library",
  3948. "autoload": {
  3949. "psr-0": {
  3950. "Neutron": "src"
  3951. }
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "authors": [
  3958. {
  3959. "name": "Romain Neutron",
  3960. "email": "imprec@gmail.com"
  3961. }
  3962. ],
  3963. "description": "Symfony filesystem extension to handle temporary files",
  3964. "support": {
  3965. "issues": "https://github.com/romainneutron/Temporary-Filesystem/issues",
  3966. "source": "https://github.com/romainneutron/Temporary-Filesystem/tree/3.0"
  3967. },
  3968. "time": "2020-07-27T14:00:33+00:00"
  3969. },
  3970. {
  3971. "name": "nikic/php-parser",
  3972. "version": "v4.13.2",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/nikic/PHP-Parser.git",
  3976. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3981. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3982. "shasum": ""
  3983. },
  3984. "require": {
  3985. "ext-tokenizer": "*",
  3986. "php": ">=7.0"
  3987. },
  3988. "require-dev": {
  3989. "ircmaxell/php-yacc": "^0.0.7",
  3990. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3991. },
  3992. "bin": [
  3993. "bin/php-parse"
  3994. ],
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "4.9-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "psr-4": {
  4003. "PhpParser\\": "lib/PhpParser"
  4004. }
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "BSD-3-Clause"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Nikita Popov"
  4013. }
  4014. ],
  4015. "description": "A PHP parser written in PHP",
  4016. "keywords": [
  4017. "parser",
  4018. "php"
  4019. ],
  4020. "support": {
  4021. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4022. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  4023. },
  4024. "time": "2021-11-30T19:35:32+00:00"
  4025. },
  4026. {
  4027. "name": "nyholm/psr7",
  4028. "version": "1.4.1",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/Nyholm/psr7.git",
  4032. "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/2212385b47153ea71b1c1b1374f8cb5e4f7892ec",
  4037. "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "php": ">=7.1",
  4042. "php-http/message-factory": "^1.0",
  4043. "psr/http-factory": "^1.0",
  4044. "psr/http-message": "^1.0"
  4045. },
  4046. "provide": {
  4047. "psr/http-factory-implementation": "1.0",
  4048. "psr/http-message-implementation": "1.0"
  4049. },
  4050. "require-dev": {
  4051. "http-interop/http-factory-tests": "^0.9",
  4052. "php-http/psr7-integration-tests": "^1.0",
  4053. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  4054. "symfony/error-handler": "^4.4"
  4055. },
  4056. "type": "library",
  4057. "extra": {
  4058. "branch-alias": {
  4059. "dev-master": "1.4-dev"
  4060. }
  4061. },
  4062. "autoload": {
  4063. "psr-4": {
  4064. "Nyholm\\Psr7\\": "src/"
  4065. }
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Tobias Nyholm",
  4074. "email": "tobias.nyholm@gmail.com"
  4075. },
  4076. {
  4077. "name": "Martijn van der Ven",
  4078. "email": "martijn@vanderven.se"
  4079. }
  4080. ],
  4081. "description": "A fast PHP7 implementation of PSR-7",
  4082. "homepage": "https://tnyholm.se",
  4083. "keywords": [
  4084. "psr-17",
  4085. "psr-7"
  4086. ],
  4087. "support": {
  4088. "issues": "https://github.com/Nyholm/psr7/issues",
  4089. "source": "https://github.com/Nyholm/psr7/tree/1.4.1"
  4090. },
  4091. "funding": [
  4092. {
  4093. "url": "https://github.com/Zegnat",
  4094. "type": "github"
  4095. },
  4096. {
  4097. "url": "https://github.com/nyholm",
  4098. "type": "github"
  4099. }
  4100. ],
  4101. "time": "2021-07-02T08:32:20+00:00"
  4102. },
  4103. {
  4104. "name": "opis/closure",
  4105. "version": "3.6.2",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://github.com/opis/closure.git",
  4109. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4114. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4115. "shasum": ""
  4116. },
  4117. "require": {
  4118. "php": "^5.4 || ^7.0 || ^8.0"
  4119. },
  4120. "require-dev": {
  4121. "jeremeamia/superclosure": "^2.0",
  4122. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "3.6.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Opis\\Closure\\": "src/"
  4133. },
  4134. "files": [
  4135. "functions.php"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Marius Sarca",
  4145. "email": "marius.sarca@gmail.com"
  4146. },
  4147. {
  4148. "name": "Sorin Sarca",
  4149. "email": "sarca_sorin@hotmail.com"
  4150. }
  4151. ],
  4152. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4153. "homepage": "https://opis.io/closure",
  4154. "keywords": [
  4155. "anonymous functions",
  4156. "closure",
  4157. "function",
  4158. "serializable",
  4159. "serialization",
  4160. "serialize"
  4161. ],
  4162. "support": {
  4163. "issues": "https://github.com/opis/closure/issues",
  4164. "source": "https://github.com/opis/closure/tree/3.6.2"
  4165. },
  4166. "time": "2021-04-09T13:42:10+00:00"
  4167. },
  4168. {
  4169. "name": "paragonie/constant_time_encoding",
  4170. "version": "v2.4.0",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4174. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  4179. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  4180. "shasum": ""
  4181. },
  4182. "require": {
  4183. "php": "^7|^8"
  4184. },
  4185. "require-dev": {
  4186. "phpunit/phpunit": "^6|^7|^8|^9",
  4187. "vimeo/psalm": "^1|^2|^3|^4"
  4188. },
  4189. "type": "library",
  4190. "autoload": {
  4191. "psr-4": {
  4192. "ParagonIE\\ConstantTime\\": "src/"
  4193. }
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Paragon Initiative Enterprises",
  4202. "email": "security@paragonie.com",
  4203. "homepage": "https://paragonie.com",
  4204. "role": "Maintainer"
  4205. },
  4206. {
  4207. "name": "Steve 'Sc00bz' Thomas",
  4208. "email": "steve@tobtu.com",
  4209. "homepage": "https://www.tobtu.com",
  4210. "role": "Original Developer"
  4211. }
  4212. ],
  4213. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4214. "keywords": [
  4215. "base16",
  4216. "base32",
  4217. "base32_decode",
  4218. "base32_encode",
  4219. "base64",
  4220. "base64_decode",
  4221. "base64_encode",
  4222. "bin2hex",
  4223. "encoding",
  4224. "hex",
  4225. "hex2bin",
  4226. "rfc4648"
  4227. ],
  4228. "support": {
  4229. "email": "info@paragonie.com",
  4230. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4231. "source": "https://github.com/paragonie/constant_time_encoding"
  4232. },
  4233. "time": "2020-12-06T15:14:20+00:00"
  4234. },
  4235. {
  4236. "name": "paragonie/random_compat",
  4237. "version": "v9.99.100",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/paragonie/random_compat.git",
  4241. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4246. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4247. "shasum": ""
  4248. },
  4249. "require": {
  4250. "php": ">= 7"
  4251. },
  4252. "require-dev": {
  4253. "phpunit/phpunit": "4.*|5.*",
  4254. "vimeo/psalm": "^1"
  4255. },
  4256. "suggest": {
  4257. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4258. },
  4259. "type": "library",
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "MIT"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "Paragon Initiative Enterprises",
  4267. "email": "security@paragonie.com",
  4268. "homepage": "https://paragonie.com"
  4269. }
  4270. ],
  4271. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4272. "keywords": [
  4273. "csprng",
  4274. "polyfill",
  4275. "pseudorandom",
  4276. "random"
  4277. ],
  4278. "support": {
  4279. "email": "info@paragonie.com",
  4280. "issues": "https://github.com/paragonie/random_compat/issues",
  4281. "source": "https://github.com/paragonie/random_compat"
  4282. },
  4283. "time": "2020-10-15T08:29:30+00:00"
  4284. },
  4285. {
  4286. "name": "pbmedia/laravel-ffmpeg",
  4287. "version": "7.5.12",
  4288. "source": {
  4289. "type": "git",
  4290. "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
  4291. "reference": "c3c0e4297277adda9bc2fa00aa6c39489d7d45e8"
  4292. },
  4293. "dist": {
  4294. "type": "zip",
  4295. "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/c3c0e4297277adda9bc2fa00aa6c39489d7d45e8",
  4296. "reference": "c3c0e4297277adda9bc2fa00aa6c39489d7d45e8",
  4297. "shasum": ""
  4298. },
  4299. "require": {
  4300. "evenement/evenement": "^3.0",
  4301. "illuminate/bus": "^6.0|^7.0|^8.0",
  4302. "illuminate/config": "^6.0|^7.0|^8.0",
  4303. "illuminate/filesystem": "^6.0|^7.0|^8.0",
  4304. "illuminate/log": "^6.0|^7.0|^8.0",
  4305. "illuminate/support": "^6.0|^7.0|^8.0",
  4306. "league/flysystem": "^1.0.34",
  4307. "php": "^7.3|^8.0",
  4308. "php-ffmpeg/php-ffmpeg": "^0.18.0"
  4309. },
  4310. "require-dev": {
  4311. "league/flysystem-memory": "^1.0",
  4312. "mockery/mockery": "^1.3.3",
  4313. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4314. "phpunit/phpunit": "^8.0|9.4.*",
  4315. "spatie/image": "^1.7",
  4316. "twistor/flysystem-http": "^0.2.0"
  4317. },
  4318. "type": "library",
  4319. "extra": {
  4320. "laravel": {
  4321. "providers": [
  4322. "ProtoneMedia\\LaravelFFMpeg\\Support\\ServiceProvider"
  4323. ],
  4324. "aliases": {
  4325. "FFMpeg": "ProtoneMedia\\LaravelFFMpeg\\Support\\FFMpeg"
  4326. }
  4327. }
  4328. },
  4329. "autoload": {
  4330. "psr-4": {
  4331. "ProtoneMedia\\LaravelFFMpeg\\": "src"
  4332. }
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "Pascal Baljet",
  4341. "email": "pascal@protone.media",
  4342. "homepage": "https://protone.media",
  4343. "role": "Developer"
  4344. }
  4345. ],
  4346. "description": "FFMpeg for Laravel",
  4347. "homepage": "https://github.com/pascalbaljetmedia/laravel-ffmpeg",
  4348. "keywords": [
  4349. "ffmpeg",
  4350. "laravel",
  4351. "laravel-ffmpeg",
  4352. "pascal baljet media",
  4353. "pascalbaljetmedia",
  4354. "pbmedia",
  4355. "protone media",
  4356. "protonemedia"
  4357. ],
  4358. "support": {
  4359. "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
  4360. "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/7.5.12"
  4361. },
  4362. "funding": [
  4363. {
  4364. "url": "https://github.com/pascalbaljet",
  4365. "type": "github"
  4366. }
  4367. ],
  4368. "time": "2021-07-05T20:42:13+00:00"
  4369. },
  4370. {
  4371. "name": "php-ffmpeg/php-ffmpeg",
  4372. "version": "v0.18.0",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  4376. "reference": "edc0a7729d8818ed883e77b3d26ceb6d49ec41de"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/edc0a7729d8818ed883e77b3d26ceb6d49ec41de",
  4381. "reference": "edc0a7729d8818ed883e77b3d26ceb6d49ec41de",
  4382. "shasum": ""
  4383. },
  4384. "require": {
  4385. "alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
  4386. "doctrine/cache": "^1.0",
  4387. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4388. "neutron/temporary-filesystem": "^2.1.1 || ^3.0",
  4389. "php": ">=5.3.9"
  4390. },
  4391. "require-dev": {
  4392. "silex/silex": "~1.0",
  4393. "symfony/phpunit-bridge": "^5.0.4",
  4394. "symfony/process": "2.8 || 3.3"
  4395. },
  4396. "suggest": {
  4397. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-master": "0.x-dev"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-0": {
  4407. "FFMpeg": "src"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Romain Neutron",
  4417. "email": "imprec@gmail.com",
  4418. "homepage": "http://www.lickmychip.com/"
  4419. },
  4420. {
  4421. "name": "Phraseanet Team",
  4422. "email": "info@alchemy.fr",
  4423. "homepage": "http://www.phraseanet.com/"
  4424. },
  4425. {
  4426. "name": "Patrik Karisch",
  4427. "email": "patrik@karisch.guru",
  4428. "homepage": "http://www.karisch.guru"
  4429. },
  4430. {
  4431. "name": "Romain Biard",
  4432. "email": "romain.biard@gmail.com",
  4433. "homepage": "https://www.strime.io/"
  4434. },
  4435. {
  4436. "name": "Jens Hausdorf",
  4437. "email": "hello@jens-hausdorf.de",
  4438. "homepage": "https://jens-hausdorf.de"
  4439. }
  4440. ],
  4441. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  4442. "keywords": [
  4443. "audio",
  4444. "audio processing",
  4445. "avconv",
  4446. "avprobe",
  4447. "ffmpeg",
  4448. "ffprobe",
  4449. "video",
  4450. "video processing"
  4451. ],
  4452. "support": {
  4453. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  4454. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v0.18.0"
  4455. },
  4456. "time": "2021-03-29T20:20:00+00:00"
  4457. },
  4458. {
  4459. "name": "php-http/message-factory",
  4460. "version": "v1.0.2",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/php-http/message-factory.git",
  4464. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4469. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "php": ">=5.4",
  4474. "psr/http-message": "^1.0"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "1.0-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Http\\Message\\": "src/"
  4485. }
  4486. },
  4487. "notification-url": "https://packagist.org/downloads/",
  4488. "license": [
  4489. "MIT"
  4490. ],
  4491. "authors": [
  4492. {
  4493. "name": "Márk Sági-Kazár",
  4494. "email": "mark.sagikazar@gmail.com"
  4495. }
  4496. ],
  4497. "description": "Factory interfaces for PSR-7 HTTP Message",
  4498. "homepage": "http://php-http.org",
  4499. "keywords": [
  4500. "factory",
  4501. "http",
  4502. "message",
  4503. "stream",
  4504. "uri"
  4505. ],
  4506. "support": {
  4507. "issues": "https://github.com/php-http/message-factory/issues",
  4508. "source": "https://github.com/php-http/message-factory/tree/master"
  4509. },
  4510. "time": "2015-12-19T14:08:53+00:00"
  4511. },
  4512. {
  4513. "name": "phpoption/phpoption",
  4514. "version": "1.8.1",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/schmittjoh/php-option.git",
  4518. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4523. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "php": "^7.0 || ^8.0"
  4528. },
  4529. "require-dev": {
  4530. "bamarni/composer-bin-plugin": "^1.4.1",
  4531. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  4532. },
  4533. "type": "library",
  4534. "extra": {
  4535. "branch-alias": {
  4536. "dev-master": "1.8-dev"
  4537. }
  4538. },
  4539. "autoload": {
  4540. "psr-4": {
  4541. "PhpOption\\": "src/PhpOption/"
  4542. }
  4543. },
  4544. "notification-url": "https://packagist.org/downloads/",
  4545. "license": [
  4546. "Apache-2.0"
  4547. ],
  4548. "authors": [
  4549. {
  4550. "name": "Johannes M. Schmitt",
  4551. "email": "schmittjoh@gmail.com",
  4552. "homepage": "https://github.com/schmittjoh"
  4553. },
  4554. {
  4555. "name": "Graham Campbell",
  4556. "email": "hello@gjcampbell.co.uk",
  4557. "homepage": "https://github.com/GrahamCampbell"
  4558. }
  4559. ],
  4560. "description": "Option Type for PHP",
  4561. "keywords": [
  4562. "language",
  4563. "option",
  4564. "php",
  4565. "type"
  4566. ],
  4567. "support": {
  4568. "issues": "https://github.com/schmittjoh/php-option/issues",
  4569. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  4570. },
  4571. "funding": [
  4572. {
  4573. "url": "https://github.com/GrahamCampbell",
  4574. "type": "github"
  4575. },
  4576. {
  4577. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4578. "type": "tidelift"
  4579. }
  4580. ],
  4581. "time": "2021-12-04T23:24:31+00:00"
  4582. },
  4583. {
  4584. "name": "phpseclib/phpseclib",
  4585. "version": "2.0.35",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/phpseclib/phpseclib.git",
  4589. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4e16cf3f5f927a7d3f5317820af795c0366c0420",
  4594. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420",
  4595. "shasum": ""
  4596. },
  4597. "require": {
  4598. "php": ">=5.3.3"
  4599. },
  4600. "require-dev": {
  4601. "phing/phing": "~2.7",
  4602. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  4603. "squizlabs/php_codesniffer": "~2.0"
  4604. },
  4605. "suggest": {
  4606. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4607. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4608. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4609. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4610. },
  4611. "type": "library",
  4612. "autoload": {
  4613. "files": [
  4614. "phpseclib/bootstrap.php"
  4615. ],
  4616. "psr-4": {
  4617. "phpseclib\\": "phpseclib/"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Jim Wigginton",
  4627. "email": "terrafrost@php.net",
  4628. "role": "Lead Developer"
  4629. },
  4630. {
  4631. "name": "Patrick Monnerat",
  4632. "email": "pm@datasphere.ch",
  4633. "role": "Developer"
  4634. },
  4635. {
  4636. "name": "Andreas Fischer",
  4637. "email": "bantu@phpbb.com",
  4638. "role": "Developer"
  4639. },
  4640. {
  4641. "name": "Hans-Jürgen Petrich",
  4642. "email": "petrich@tronic-media.com",
  4643. "role": "Developer"
  4644. },
  4645. {
  4646. "name": "Graham Campbell",
  4647. "email": "graham@alt-three.com",
  4648. "role": "Developer"
  4649. }
  4650. ],
  4651. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4652. "homepage": "http://phpseclib.sourceforge.net",
  4653. "keywords": [
  4654. "BigInteger",
  4655. "aes",
  4656. "asn.1",
  4657. "asn1",
  4658. "blowfish",
  4659. "crypto",
  4660. "cryptography",
  4661. "encryption",
  4662. "rsa",
  4663. "security",
  4664. "sftp",
  4665. "signature",
  4666. "signing",
  4667. "ssh",
  4668. "twofish",
  4669. "x.509",
  4670. "x509"
  4671. ],
  4672. "support": {
  4673. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4674. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.35"
  4675. },
  4676. "funding": [
  4677. {
  4678. "url": "https://github.com/terrafrost",
  4679. "type": "github"
  4680. },
  4681. {
  4682. "url": "https://www.patreon.com/phpseclib",
  4683. "type": "patreon"
  4684. },
  4685. {
  4686. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4687. "type": "tidelift"
  4688. }
  4689. ],
  4690. "time": "2021-11-28T23:30:39+00:00"
  4691. },
  4692. {
  4693. "name": "pixelfed/fractal",
  4694. "version": "0.18.0",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/pixelfed/fractal.git",
  4698. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  4703. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  4704. "shasum": ""
  4705. },
  4706. "require": {
  4707. "php": ">=5.4"
  4708. },
  4709. "require-dev": {
  4710. "doctrine/orm": "^2.5",
  4711. "illuminate/contracts": "~5.0",
  4712. "mockery/mockery": "~0.9",
  4713. "pagerfanta/pagerfanta": "~1.0.0",
  4714. "phpunit/phpunit": "^4.8.35",
  4715. "squizlabs/php_codesniffer": "~1.5",
  4716. "zendframework/zend-paginator": "~2.3"
  4717. },
  4718. "suggest": {
  4719. "illuminate/pagination": "The Illuminate Pagination component.",
  4720. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4721. "zendframework/zend-paginator": "Zend Framework Paginator"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "branch-alias": {
  4726. "dev-master": "0.13-dev"
  4727. }
  4728. },
  4729. "autoload": {
  4730. "psr-4": {
  4731. "League\\Fractal\\": "src"
  4732. }
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Phil Sturgeon",
  4741. "email": "me@philsturgeon.uk",
  4742. "homepage": "http://philsturgeon.uk/",
  4743. "role": "Developer"
  4744. }
  4745. ],
  4746. "description": "Handle the output of complex data structures ready for API output.",
  4747. "homepage": "http://fractal.thephpleague.com/",
  4748. "keywords": [
  4749. "api",
  4750. "json",
  4751. "league",
  4752. "rest"
  4753. ],
  4754. "support": {
  4755. "source": "https://github.com/pixelfed/fractal/tree/0.18.0"
  4756. },
  4757. "time": "2018-07-01T02:30:24+00:00"
  4758. },
  4759. {
  4760. "name": "pixelfed/laravel-snowflake",
  4761. "version": "v2.0.0",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  4765. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  4770. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  4771. "shasum": ""
  4772. },
  4773. "require": {
  4774. "php": ">=7.0.0"
  4775. },
  4776. "require-dev": {
  4777. "orchestra/testbench": "~3.0",
  4778. "phpunit/phpunit": "~6.0"
  4779. },
  4780. "type": "library",
  4781. "extra": {
  4782. "laravel": {
  4783. "providers": [
  4784. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  4785. ]
  4786. }
  4787. },
  4788. "autoload": {
  4789. "psr-4": {
  4790. "Pixelfed\\Snowflake\\": "src/"
  4791. }
  4792. },
  4793. "notification-url": "https://packagist.org/downloads/",
  4794. "license": [
  4795. "MIT"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "Koki Asai",
  4800. "email": "koki@asai.email"
  4801. },
  4802. {
  4803. "name": "Daniel Supernault",
  4804. "email": "hello@pixelfed.org"
  4805. }
  4806. ],
  4807. "description": "Snowflake for Laravel.",
  4808. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  4809. "keywords": [
  4810. "laravel",
  4811. "snowflake"
  4812. ],
  4813. "support": {
  4814. "source": "https://github.com/pixelfed/laravel-snowflake/tree/v2.0.0"
  4815. },
  4816. "time": "2019-03-12T05:13:49+00:00"
  4817. },
  4818. {
  4819. "name": "pixelfed/zttp",
  4820. "version": "v0.4.1",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/pixelfed/zttp.git",
  4824. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  4829. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "guzzlehttp/guzzle": "^6.0",
  4834. "php": ">=7.0",
  4835. "tightenco/collect": "^5.4"
  4836. },
  4837. "require-dev": {
  4838. "laravel/lumen-framework": "5.5.*",
  4839. "phpunit/phpunit": "^6.0"
  4840. },
  4841. "type": "library",
  4842. "autoload": {
  4843. "files": [
  4844. "src/Zttp.php"
  4845. ]
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Adam Wathan",
  4854. "email": "adam.wathan@gmail.com"
  4855. }
  4856. ],
  4857. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  4858. "keywords": [
  4859. "Guzzle",
  4860. "http"
  4861. ],
  4862. "support": {
  4863. "source": "https://github.com/pixelfed/zttp/tree/v0.4.1"
  4864. },
  4865. "time": "2018-07-30T05:04:42+00:00"
  4866. },
  4867. {
  4868. "name": "pragmarx/google2fa",
  4869. "version": "8.0.0",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/antonioribeiro/google2fa.git",
  4873. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4878. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4883. "php": "^7.1|^8.0"
  4884. },
  4885. "require-dev": {
  4886. "phpstan/phpstan": "^0.12.18",
  4887. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4888. },
  4889. "type": "library",
  4890. "autoload": {
  4891. "psr-4": {
  4892. "PragmaRX\\Google2FA\\": "src/"
  4893. }
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Antonio Carlos Ribeiro",
  4902. "email": "acr@antoniocarlosribeiro.com",
  4903. "role": "Creator & Designer"
  4904. }
  4905. ],
  4906. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4907. "keywords": [
  4908. "2fa",
  4909. "Authentication",
  4910. "Two Factor Authentication",
  4911. "google2fa"
  4912. ],
  4913. "support": {
  4914. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4915. "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0"
  4916. },
  4917. "time": "2020-04-05T10:47:18+00:00"
  4918. },
  4919. {
  4920. "name": "predis/predis",
  4921. "version": "v1.1.9",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/predis/predis.git",
  4925. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4930. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "php": ">=5.3.9"
  4935. },
  4936. "require-dev": {
  4937. "phpunit/phpunit": "~4.8"
  4938. },
  4939. "suggest": {
  4940. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4941. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4942. },
  4943. "type": "library",
  4944. "autoload": {
  4945. "psr-4": {
  4946. "Predis\\": "src/"
  4947. }
  4948. },
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "MIT"
  4952. ],
  4953. "authors": [
  4954. {
  4955. "name": "Daniele Alessandri",
  4956. "email": "suppakilla@gmail.com",
  4957. "homepage": "http://clorophilla.net",
  4958. "role": "Creator & Maintainer"
  4959. },
  4960. {
  4961. "name": "Till Krüss",
  4962. "homepage": "https://till.im",
  4963. "role": "Maintainer"
  4964. }
  4965. ],
  4966. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4967. "homepage": "http://github.com/predis/predis",
  4968. "keywords": [
  4969. "nosql",
  4970. "predis",
  4971. "redis"
  4972. ],
  4973. "support": {
  4974. "issues": "https://github.com/predis/predis/issues",
  4975. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4976. },
  4977. "funding": [
  4978. {
  4979. "url": "https://github.com/sponsors/tillkruss",
  4980. "type": "github"
  4981. }
  4982. ],
  4983. "time": "2021-10-05T19:02:38+00:00"
  4984. },
  4985. {
  4986. "name": "psr/cache",
  4987. "version": "1.0.1",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/php-fig/cache.git",
  4991. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4996. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4997. "shasum": ""
  4998. },
  4999. "require": {
  5000. "php": ">=5.3.0"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-master": "1.0.x-dev"
  5006. }
  5007. },
  5008. "autoload": {
  5009. "psr-4": {
  5010. "Psr\\Cache\\": "src/"
  5011. }
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "PHP-FIG",
  5020. "homepage": "http://www.php-fig.org/"
  5021. }
  5022. ],
  5023. "description": "Common interface for caching libraries",
  5024. "keywords": [
  5025. "cache",
  5026. "psr",
  5027. "psr-6"
  5028. ],
  5029. "support": {
  5030. "source": "https://github.com/php-fig/cache/tree/master"
  5031. },
  5032. "time": "2016-08-06T20:24:11+00:00"
  5033. },
  5034. {
  5035. "name": "psr/container",
  5036. "version": "1.1.2",
  5037. "source": {
  5038. "type": "git",
  5039. "url": "https://github.com/php-fig/container.git",
  5040. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5041. },
  5042. "dist": {
  5043. "type": "zip",
  5044. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5045. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5046. "shasum": ""
  5047. },
  5048. "require": {
  5049. "php": ">=7.4.0"
  5050. },
  5051. "type": "library",
  5052. "autoload": {
  5053. "psr-4": {
  5054. "Psr\\Container\\": "src/"
  5055. }
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "PHP-FIG",
  5064. "homepage": "https://www.php-fig.org/"
  5065. }
  5066. ],
  5067. "description": "Common Container Interface (PHP FIG PSR-11)",
  5068. "homepage": "https://github.com/php-fig/container",
  5069. "keywords": [
  5070. "PSR-11",
  5071. "container",
  5072. "container-interface",
  5073. "container-interop",
  5074. "psr"
  5075. ],
  5076. "support": {
  5077. "issues": "https://github.com/php-fig/container/issues",
  5078. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5079. },
  5080. "time": "2021-11-05T16:50:12+00:00"
  5081. },
  5082. {
  5083. "name": "psr/event-dispatcher",
  5084. "version": "1.0.0",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/php-fig/event-dispatcher.git",
  5088. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5093. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=7.2.0"
  5098. },
  5099. "type": "library",
  5100. "extra": {
  5101. "branch-alias": {
  5102. "dev-master": "1.0.x-dev"
  5103. }
  5104. },
  5105. "autoload": {
  5106. "psr-4": {
  5107. "Psr\\EventDispatcher\\": "src/"
  5108. }
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "PHP-FIG",
  5117. "homepage": "http://www.php-fig.org/"
  5118. }
  5119. ],
  5120. "description": "Standard interfaces for event handling.",
  5121. "keywords": [
  5122. "events",
  5123. "psr",
  5124. "psr-14"
  5125. ],
  5126. "support": {
  5127. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5128. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5129. },
  5130. "time": "2019-01-08T18:20:26+00:00"
  5131. },
  5132. {
  5133. "name": "psr/http-factory",
  5134. "version": "1.0.1",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/php-fig/http-factory.git",
  5138. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5143. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5144. "shasum": ""
  5145. },
  5146. "require": {
  5147. "php": ">=7.0.0",
  5148. "psr/http-message": "^1.0"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "branch-alias": {
  5153. "dev-master": "1.0.x-dev"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "psr-4": {
  5158. "Psr\\Http\\Message\\": "src/"
  5159. }
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "PHP-FIG",
  5168. "homepage": "http://www.php-fig.org/"
  5169. }
  5170. ],
  5171. "description": "Common interfaces for PSR-7 HTTP message factories",
  5172. "keywords": [
  5173. "factory",
  5174. "http",
  5175. "message",
  5176. "psr",
  5177. "psr-17",
  5178. "psr-7",
  5179. "request",
  5180. "response"
  5181. ],
  5182. "support": {
  5183. "source": "https://github.com/php-fig/http-factory/tree/master"
  5184. },
  5185. "time": "2019-04-30T12:38:16+00:00"
  5186. },
  5187. {
  5188. "name": "psr/http-message",
  5189. "version": "1.0.1",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/php-fig/http-message.git",
  5193. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5198. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5199. "shasum": ""
  5200. },
  5201. "require": {
  5202. "php": ">=5.3.0"
  5203. },
  5204. "type": "library",
  5205. "extra": {
  5206. "branch-alias": {
  5207. "dev-master": "1.0.x-dev"
  5208. }
  5209. },
  5210. "autoload": {
  5211. "psr-4": {
  5212. "Psr\\Http\\Message\\": "src/"
  5213. }
  5214. },
  5215. "notification-url": "https://packagist.org/downloads/",
  5216. "license": [
  5217. "MIT"
  5218. ],
  5219. "authors": [
  5220. {
  5221. "name": "PHP-FIG",
  5222. "homepage": "http://www.php-fig.org/"
  5223. }
  5224. ],
  5225. "description": "Common interface for HTTP messages",
  5226. "homepage": "https://github.com/php-fig/http-message",
  5227. "keywords": [
  5228. "http",
  5229. "http-message",
  5230. "psr",
  5231. "psr-7",
  5232. "request",
  5233. "response"
  5234. ],
  5235. "support": {
  5236. "source": "https://github.com/php-fig/http-message/tree/master"
  5237. },
  5238. "time": "2016-08-06T14:39:51+00:00"
  5239. },
  5240. {
  5241. "name": "psr/log",
  5242. "version": "1.1.4",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://github.com/php-fig/log.git",
  5246. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5251. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5252. "shasum": ""
  5253. },
  5254. "require": {
  5255. "php": ">=5.3.0"
  5256. },
  5257. "type": "library",
  5258. "extra": {
  5259. "branch-alias": {
  5260. "dev-master": "1.1.x-dev"
  5261. }
  5262. },
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Psr\\Log\\": "Psr/Log/"
  5266. }
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "PHP-FIG",
  5275. "homepage": "https://www.php-fig.org/"
  5276. }
  5277. ],
  5278. "description": "Common interface for logging libraries",
  5279. "homepage": "https://github.com/php-fig/log",
  5280. "keywords": [
  5281. "log",
  5282. "psr",
  5283. "psr-3"
  5284. ],
  5285. "support": {
  5286. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5287. },
  5288. "time": "2021-05-03T11:20:27+00:00"
  5289. },
  5290. {
  5291. "name": "psr/simple-cache",
  5292. "version": "1.0.1",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://github.com/php-fig/simple-cache.git",
  5296. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5301. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5302. "shasum": ""
  5303. },
  5304. "require": {
  5305. "php": ">=5.3.0"
  5306. },
  5307. "type": "library",
  5308. "extra": {
  5309. "branch-alias": {
  5310. "dev-master": "1.0.x-dev"
  5311. }
  5312. },
  5313. "autoload": {
  5314. "psr-4": {
  5315. "Psr\\SimpleCache\\": "src/"
  5316. }
  5317. },
  5318. "notification-url": "https://packagist.org/downloads/",
  5319. "license": [
  5320. "MIT"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "PHP-FIG",
  5325. "homepage": "http://www.php-fig.org/"
  5326. }
  5327. ],
  5328. "description": "Common interfaces for simple caching",
  5329. "keywords": [
  5330. "cache",
  5331. "caching",
  5332. "psr",
  5333. "psr-16",
  5334. "simple-cache"
  5335. ],
  5336. "support": {
  5337. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5338. },
  5339. "time": "2017-10-23T01:57:42+00:00"
  5340. },
  5341. {
  5342. "name": "psy/psysh",
  5343. "version": "v0.10.12",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/bobthecow/psysh.git",
  5347. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  5352. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "ext-json": "*",
  5357. "ext-tokenizer": "*",
  5358. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  5359. "php": "^8.0 || ^7.0 || ^5.5.9",
  5360. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  5361. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  5362. },
  5363. "require-dev": {
  5364. "bamarni/composer-bin-plugin": "^1.2",
  5365. "hoa/console": "3.17.*"
  5366. },
  5367. "suggest": {
  5368. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5369. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5370. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5371. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5372. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5373. },
  5374. "bin": [
  5375. "bin/psysh"
  5376. ],
  5377. "type": "library",
  5378. "extra": {
  5379. "branch-alias": {
  5380. "dev-main": "0.10.x-dev"
  5381. }
  5382. },
  5383. "autoload": {
  5384. "files": [
  5385. "src/functions.php"
  5386. ],
  5387. "psr-4": {
  5388. "Psy\\": "src/"
  5389. }
  5390. },
  5391. "notification-url": "https://packagist.org/downloads/",
  5392. "license": [
  5393. "MIT"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "Justin Hileman",
  5398. "email": "justin@justinhileman.info",
  5399. "homepage": "http://justinhileman.com"
  5400. }
  5401. ],
  5402. "description": "An interactive shell for modern PHP.",
  5403. "homepage": "http://psysh.org",
  5404. "keywords": [
  5405. "REPL",
  5406. "console",
  5407. "interactive",
  5408. "shell"
  5409. ],
  5410. "support": {
  5411. "issues": "https://github.com/bobthecow/psysh/issues",
  5412. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  5413. },
  5414. "time": "2021-11-30T14:05:36+00:00"
  5415. },
  5416. {
  5417. "name": "ralouphie/getallheaders",
  5418. "version": "3.0.3",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/ralouphie/getallheaders.git",
  5422. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5427. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "php": ">=5.6"
  5432. },
  5433. "require-dev": {
  5434. "php-coveralls/php-coveralls": "^2.1",
  5435. "phpunit/phpunit": "^5 || ^6.5"
  5436. },
  5437. "type": "library",
  5438. "autoload": {
  5439. "files": [
  5440. "src/getallheaders.php"
  5441. ]
  5442. },
  5443. "notification-url": "https://packagist.org/downloads/",
  5444. "license": [
  5445. "MIT"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "Ralph Khattar",
  5450. "email": "ralph.khattar@gmail.com"
  5451. }
  5452. ],
  5453. "description": "A polyfill for getallheaders.",
  5454. "support": {
  5455. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5456. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5457. },
  5458. "time": "2019-03-08T08:55:37+00:00"
  5459. },
  5460. {
  5461. "name": "ramsey/collection",
  5462. "version": "1.2.2",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/ramsey/collection.git",
  5466. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5471. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": "^7.3 || ^8",
  5476. "symfony/polyfill-php81": "^1.23"
  5477. },
  5478. "require-dev": {
  5479. "captainhook/captainhook": "^5.3",
  5480. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5481. "ergebnis/composer-normalize": "^2.6",
  5482. "fakerphp/faker": "^1.5",
  5483. "hamcrest/hamcrest-php": "^2",
  5484. "jangregor/phpstan-prophecy": "^0.8",
  5485. "mockery/mockery": "^1.3",
  5486. "phpspec/prophecy-phpunit": "^2.0",
  5487. "phpstan/extension-installer": "^1",
  5488. "phpstan/phpstan": "^0.12.32",
  5489. "phpstan/phpstan-mockery": "^0.12.5",
  5490. "phpstan/phpstan-phpunit": "^0.12.11",
  5491. "phpunit/phpunit": "^8.5 || ^9",
  5492. "psy/psysh": "^0.10.4",
  5493. "slevomat/coding-standard": "^6.3",
  5494. "squizlabs/php_codesniffer": "^3.5",
  5495. "vimeo/psalm": "^4.4"
  5496. },
  5497. "type": "library",
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Ramsey\\Collection\\": "src/"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Ben Ramsey",
  5510. "email": "ben@benramsey.com",
  5511. "homepage": "https://benramsey.com"
  5512. }
  5513. ],
  5514. "description": "A PHP library for representing and manipulating collections.",
  5515. "keywords": [
  5516. "array",
  5517. "collection",
  5518. "hash",
  5519. "map",
  5520. "queue",
  5521. "set"
  5522. ],
  5523. "support": {
  5524. "issues": "https://github.com/ramsey/collection/issues",
  5525. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://github.com/ramsey",
  5530. "type": "github"
  5531. },
  5532. {
  5533. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5534. "type": "tidelift"
  5535. }
  5536. ],
  5537. "time": "2021-10-10T03:01:02+00:00"
  5538. },
  5539. {
  5540. "name": "ramsey/uuid",
  5541. "version": "4.2.3",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/ramsey/uuid.git",
  5545. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5550. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "brick/math": "^0.8 || ^0.9",
  5555. "ext-json": "*",
  5556. "php": "^7.2 || ^8.0",
  5557. "ramsey/collection": "^1.0",
  5558. "symfony/polyfill-ctype": "^1.8",
  5559. "symfony/polyfill-php80": "^1.14"
  5560. },
  5561. "replace": {
  5562. "rhumsaa/uuid": "self.version"
  5563. },
  5564. "require-dev": {
  5565. "captainhook/captainhook": "^5.10",
  5566. "captainhook/plugin-composer": "^5.3",
  5567. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5568. "doctrine/annotations": "^1.8",
  5569. "ergebnis/composer-normalize": "^2.15",
  5570. "mockery/mockery": "^1.3",
  5571. "moontoast/math": "^1.1",
  5572. "paragonie/random-lib": "^2",
  5573. "php-mock/php-mock": "^2.2",
  5574. "php-mock/php-mock-mockery": "^1.3",
  5575. "php-parallel-lint/php-parallel-lint": "^1.1",
  5576. "phpbench/phpbench": "^1.0",
  5577. "phpstan/extension-installer": "^1.0",
  5578. "phpstan/phpstan": "^0.12",
  5579. "phpstan/phpstan-mockery": "^0.12",
  5580. "phpstan/phpstan-phpunit": "^0.12",
  5581. "phpunit/phpunit": "^8.5 || ^9",
  5582. "slevomat/coding-standard": "^7.0",
  5583. "squizlabs/php_codesniffer": "^3.5",
  5584. "vimeo/psalm": "^4.9"
  5585. },
  5586. "suggest": {
  5587. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5588. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5589. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5590. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5591. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5592. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5593. },
  5594. "type": "library",
  5595. "extra": {
  5596. "branch-alias": {
  5597. "dev-main": "4.x-dev"
  5598. },
  5599. "captainhook": {
  5600. "force-install": true
  5601. }
  5602. },
  5603. "autoload": {
  5604. "psr-4": {
  5605. "Ramsey\\Uuid\\": "src/"
  5606. },
  5607. "files": [
  5608. "src/functions.php"
  5609. ]
  5610. },
  5611. "notification-url": "https://packagist.org/downloads/",
  5612. "license": [
  5613. "MIT"
  5614. ],
  5615. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5616. "keywords": [
  5617. "guid",
  5618. "identifier",
  5619. "uuid"
  5620. ],
  5621. "support": {
  5622. "issues": "https://github.com/ramsey/uuid/issues",
  5623. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5624. },
  5625. "funding": [
  5626. {
  5627. "url": "https://github.com/ramsey",
  5628. "type": "github"
  5629. },
  5630. {
  5631. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5632. "type": "tidelift"
  5633. }
  5634. ],
  5635. "time": "2021-09-25T23:10:38+00:00"
  5636. },
  5637. {
  5638. "name": "spatie/db-dumper",
  5639. "version": "2.21.1",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/spatie/db-dumper.git",
  5643. "reference": "05e5955fb882008a8947c5a45146d86cfafa10d1"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/05e5955fb882008a8947c5a45146d86cfafa10d1",
  5648. "reference": "05e5955fb882008a8947c5a45146d86cfafa10d1",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "php": "^7.2|^8.0",
  5653. "symfony/process": "^4.2|^5.0"
  5654. },
  5655. "require-dev": {
  5656. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  5657. },
  5658. "type": "library",
  5659. "autoload": {
  5660. "psr-4": {
  5661. "Spatie\\DbDumper\\": "src"
  5662. }
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "MIT"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "Freek Van der Herten",
  5671. "email": "freek@spatie.be",
  5672. "homepage": "https://spatie.be",
  5673. "role": "Developer"
  5674. }
  5675. ],
  5676. "description": "Dump databases",
  5677. "homepage": "https://github.com/spatie/db-dumper",
  5678. "keywords": [
  5679. "database",
  5680. "db-dumper",
  5681. "dump",
  5682. "mysqldump",
  5683. "spatie"
  5684. ],
  5685. "support": {
  5686. "issues": "https://github.com/spatie/db-dumper/issues",
  5687. "source": "https://github.com/spatie/db-dumper/tree/2.21.1"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://github.com/spatie",
  5692. "type": "github"
  5693. }
  5694. ],
  5695. "time": "2021-02-24T14:56:42+00:00"
  5696. },
  5697. {
  5698. "name": "spatie/image-optimizer",
  5699. "version": "1.6.1",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://github.com/spatie/image-optimizer.git",
  5703. "reference": "8bad7f04fd7d31d021b4752ee89f8a450dad8017"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/8bad7f04fd7d31d021b4752ee89f8a450dad8017",
  5708. "reference": "8bad7f04fd7d31d021b4752ee89f8a450dad8017",
  5709. "shasum": ""
  5710. },
  5711. "require": {
  5712. "ext-fileinfo": "*",
  5713. "php": "^7.3|^8.0",
  5714. "psr/log": "^1.0 | ^2.0 | ^3.0",
  5715. "symfony/process": "^4.2|^5.0"
  5716. },
  5717. "require-dev": {
  5718. "phpunit/phpunit": "^8.5.21|^9.4.4",
  5719. "symfony/var-dumper": "^4.2|^5.0"
  5720. },
  5721. "type": "library",
  5722. "autoload": {
  5723. "psr-4": {
  5724. "Spatie\\ImageOptimizer\\": "src"
  5725. }
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "MIT"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "Freek Van der Herten",
  5734. "email": "freek@spatie.be",
  5735. "homepage": "https://spatie.be",
  5736. "role": "Developer"
  5737. }
  5738. ],
  5739. "description": "Easily optimize images using PHP",
  5740. "homepage": "https://github.com/spatie/image-optimizer",
  5741. "keywords": [
  5742. "image-optimizer",
  5743. "spatie"
  5744. ],
  5745. "support": {
  5746. "issues": "https://github.com/spatie/image-optimizer/issues",
  5747. "source": "https://github.com/spatie/image-optimizer/tree/1.6.1"
  5748. },
  5749. "time": "2021-11-17T10:36:45+00:00"
  5750. },
  5751. {
  5752. "name": "spatie/laravel-backup",
  5753. "version": "6.16.5",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/spatie/laravel-backup.git",
  5757. "reference": "332fae80b12cacb9e4161824ba195d984b28c8fb"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/332fae80b12cacb9e4161824ba195d984b28c8fb",
  5762. "reference": "332fae80b12cacb9e4161824ba195d984b28c8fb",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "ext-zip": "^1.14.0",
  5767. "illuminate/console": "^6.0|^7.0|^8.0",
  5768. "illuminate/contracts": "^6.0|^7.0|^8.0",
  5769. "illuminate/events": "^6.0|^7.0|^8.0",
  5770. "illuminate/filesystem": "^6.0|^7.0|^8.0",
  5771. "illuminate/notifications": "^6.0|^7.0|^8.0",
  5772. "illuminate/support": "^6.0|^7.0|^8.0",
  5773. "league/flysystem": "^1.0.49",
  5774. "php": "^7.3|^8.0",
  5775. "spatie/db-dumper": "^2.12",
  5776. "spatie/temporary-directory": "^1.1",
  5777. "symfony/finder": "^4.2|^5.0"
  5778. },
  5779. "require-dev": {
  5780. "laravel/slack-notification-channel": "^2.3",
  5781. "league/flysystem-aws-s3-v3": "^1.0",
  5782. "mockery/mockery": "^1.4.2",
  5783. "orchestra/testbench": "4.*|5.*|6.*",
  5784. "phpunit/phpunit": "^8.4|^9.0"
  5785. },
  5786. "suggest": {
  5787. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  5788. },
  5789. "type": "library",
  5790. "extra": {
  5791. "laravel": {
  5792. "providers": [
  5793. "Spatie\\Backup\\BackupServiceProvider"
  5794. ]
  5795. }
  5796. },
  5797. "autoload": {
  5798. "psr-4": {
  5799. "Spatie\\Backup\\": "src"
  5800. },
  5801. "files": [
  5802. "src/Helpers/functions.php"
  5803. ]
  5804. },
  5805. "notification-url": "https://packagist.org/downloads/",
  5806. "license": [
  5807. "MIT"
  5808. ],
  5809. "authors": [
  5810. {
  5811. "name": "Freek Van der Herten",
  5812. "email": "freek@spatie.be",
  5813. "homepage": "https://spatie.be",
  5814. "role": "Developer"
  5815. }
  5816. ],
  5817. "description": "A Laravel package to backup your application",
  5818. "homepage": "https://github.com/spatie/laravel-backup",
  5819. "keywords": [
  5820. "backup",
  5821. "database",
  5822. "laravel-backup",
  5823. "spatie"
  5824. ],
  5825. "support": {
  5826. "issues": "https://github.com/spatie/laravel-backup/issues",
  5827. "source": "https://github.com/spatie/laravel-backup/tree/6.16.5"
  5828. },
  5829. "funding": [
  5830. {
  5831. "url": "https://github.com/sponsors/spatie",
  5832. "type": "github"
  5833. },
  5834. {
  5835. "url": "https://spatie.be/open-source/support-us",
  5836. "type": "other"
  5837. }
  5838. ],
  5839. "time": "2021-09-12T10:04:18+00:00"
  5840. },
  5841. {
  5842. "name": "spatie/laravel-image-optimizer",
  5843. "version": "1.6.4",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  5847. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5852. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "laravel/framework": "^6.0|^7.0|^8.0",
  5857. "php": "^7.2|^8.0",
  5858. "spatie/image-optimizer": "^1.2.0"
  5859. },
  5860. "require-dev": {
  5861. "orchestra/testbench": "^4.0|^5.0|^6.0",
  5862. "phpunit/phpunit": "^9.0"
  5863. },
  5864. "type": "library",
  5865. "extra": {
  5866. "laravel": {
  5867. "providers": [
  5868. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  5869. ],
  5870. "aliases": {
  5871. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  5872. }
  5873. }
  5874. },
  5875. "autoload": {
  5876. "psr-4": {
  5877. "Spatie\\LaravelImageOptimizer\\": "src"
  5878. }
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Freek Van der Herten",
  5887. "email": "freek@spatie.be",
  5888. "homepage": "https://spatie.be",
  5889. "role": "Developer"
  5890. }
  5891. ],
  5892. "description": "Optimize images in your Laravel app",
  5893. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  5894. "keywords": [
  5895. "laravel-image-optimizer",
  5896. "spatie"
  5897. ],
  5898. "support": {
  5899. "issues": "https://github.com/spatie/laravel-image-optimizer/issues",
  5900. "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.6.4"
  5901. },
  5902. "funding": [
  5903. {
  5904. "url": "https://spatie.be/open-source/support-us",
  5905. "type": "custom"
  5906. }
  5907. ],
  5908. "time": "2020-11-27T18:27:06+00:00"
  5909. },
  5910. {
  5911. "name": "spatie/temporary-directory",
  5912. "version": "1.3.0",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/spatie/temporary-directory.git",
  5916. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/f517729b3793bca58f847c5fd383ec16f03ffec6",
  5921. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": "^7.2|^8.0"
  5926. },
  5927. "require-dev": {
  5928. "phpunit/phpunit": "^8.0|^9.0"
  5929. },
  5930. "type": "library",
  5931. "autoload": {
  5932. "psr-4": {
  5933. "Spatie\\TemporaryDirectory\\": "src"
  5934. }
  5935. },
  5936. "notification-url": "https://packagist.org/downloads/",
  5937. "license": [
  5938. "MIT"
  5939. ],
  5940. "authors": [
  5941. {
  5942. "name": "Alex Vanderbist",
  5943. "email": "alex@spatie.be",
  5944. "homepage": "https://spatie.be",
  5945. "role": "Developer"
  5946. }
  5947. ],
  5948. "description": "Easily create, use and destroy temporary directories",
  5949. "homepage": "https://github.com/spatie/temporary-directory",
  5950. "keywords": [
  5951. "php",
  5952. "spatie",
  5953. "temporary-directory"
  5954. ],
  5955. "support": {
  5956. "issues": "https://github.com/spatie/temporary-directory/issues",
  5957. "source": "https://github.com/spatie/temporary-directory/tree/1.3.0"
  5958. },
  5959. "time": "2020-11-09T15:54:21+00:00"
  5960. },
  5961. {
  5962. "name": "stevebauman/purify",
  5963. "version": "v3.0.3",
  5964. "source": {
  5965. "type": "git",
  5966. "url": "https://github.com/stevebauman/purify.git",
  5967. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3"
  5968. },
  5969. "dist": {
  5970. "type": "zip",
  5971. "url": "https://api.github.com/repos/stevebauman/purify/zipball/08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5972. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5973. "shasum": ""
  5974. },
  5975. "require": {
  5976. "ezyang/htmlpurifier": "^4.9.0",
  5977. "illuminate/support": "~5.5|~6.0|~7.0|~8.0",
  5978. "php": ">=7.1"
  5979. },
  5980. "require-dev": {
  5981. "orchestra/testbench": "~3.7",
  5982. "phpunit/phpunit": "~7.0"
  5983. },
  5984. "type": "library",
  5985. "extra": {
  5986. "laravel": {
  5987. "providers": [
  5988. "Stevebauman\\Purify\\PurifyServiceProvider"
  5989. ],
  5990. "aliases": {
  5991. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  5992. }
  5993. }
  5994. },
  5995. "autoload": {
  5996. "psr-4": {
  5997. "Stevebauman\\Purify\\": "src/"
  5998. }
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "MIT"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "Steve Bauman",
  6007. "email": "steven_bauman@outlook.com"
  6008. }
  6009. ],
  6010. "description": "An HTML Purifier / Sanitizer for Laravel",
  6011. "keywords": [
  6012. "Purifier",
  6013. "clean",
  6014. "cleaner",
  6015. "html",
  6016. "laravel",
  6017. "purification",
  6018. "purify"
  6019. ],
  6020. "support": {
  6021. "issues": "https://github.com/stevebauman/purify/issues",
  6022. "source": "https://github.com/stevebauman/purify/tree/v3.0.3"
  6023. },
  6024. "time": "2020-09-08T20:33:16+00:00"
  6025. },
  6026. {
  6027. "name": "swiftmailer/swiftmailer",
  6028. "version": "v6.3.0",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6032. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6037. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "egulias/email-validator": "^2.0|^3.1",
  6042. "php": ">=7.0.0",
  6043. "symfony/polyfill-iconv": "^1.0",
  6044. "symfony/polyfill-intl-idn": "^1.10",
  6045. "symfony/polyfill-mbstring": "^1.0"
  6046. },
  6047. "require-dev": {
  6048. "mockery/mockery": "^1.0",
  6049. "symfony/phpunit-bridge": "^4.4|^5.4"
  6050. },
  6051. "suggest": {
  6052. "ext-intl": "Needed to support internationalized email addresses"
  6053. },
  6054. "type": "library",
  6055. "extra": {
  6056. "branch-alias": {
  6057. "dev-master": "6.2-dev"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "files": [
  6062. "lib/swift_required.php"
  6063. ]
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Chris Corbyn"
  6072. },
  6073. {
  6074. "name": "Fabien Potencier",
  6075. "email": "fabien@symfony.com"
  6076. }
  6077. ],
  6078. "description": "Swiftmailer, free feature-rich PHP mailer",
  6079. "homepage": "https://swiftmailer.symfony.com",
  6080. "keywords": [
  6081. "email",
  6082. "mail",
  6083. "mailer"
  6084. ],
  6085. "support": {
  6086. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6087. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://github.com/fabpot",
  6092. "type": "github"
  6093. },
  6094. {
  6095. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6096. "type": "tidelift"
  6097. }
  6098. ],
  6099. "abandoned": "symfony/mailer",
  6100. "time": "2021-10-18T15:26:12+00:00"
  6101. },
  6102. {
  6103. "name": "symfony/console",
  6104. "version": "v5.4.1",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/symfony/console.git",
  6108. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/symfony/console/zipball/9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  6113. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  6114. "shasum": ""
  6115. },
  6116. "require": {
  6117. "php": ">=7.2.5",
  6118. "symfony/deprecation-contracts": "^2.1|^3",
  6119. "symfony/polyfill-mbstring": "~1.0",
  6120. "symfony/polyfill-php73": "^1.9",
  6121. "symfony/polyfill-php80": "^1.16",
  6122. "symfony/service-contracts": "^1.1|^2|^3",
  6123. "symfony/string": "^5.1|^6.0"
  6124. },
  6125. "conflict": {
  6126. "psr/log": ">=3",
  6127. "symfony/dependency-injection": "<4.4",
  6128. "symfony/dotenv": "<5.1",
  6129. "symfony/event-dispatcher": "<4.4",
  6130. "symfony/lock": "<4.4",
  6131. "symfony/process": "<4.4"
  6132. },
  6133. "provide": {
  6134. "psr/log-implementation": "1.0|2.0"
  6135. },
  6136. "require-dev": {
  6137. "psr/log": "^1|^2",
  6138. "symfony/config": "^4.4|^5.0|^6.0",
  6139. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6140. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6141. "symfony/lock": "^4.4|^5.0|^6.0",
  6142. "symfony/process": "^4.4|^5.0|^6.0",
  6143. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6144. },
  6145. "suggest": {
  6146. "psr/log": "For using the console logger",
  6147. "symfony/event-dispatcher": "",
  6148. "symfony/lock": "",
  6149. "symfony/process": ""
  6150. },
  6151. "type": "library",
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Symfony\\Component\\Console\\": ""
  6155. },
  6156. "exclude-from-classmap": [
  6157. "/Tests/"
  6158. ]
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Fabien Potencier",
  6167. "email": "fabien@symfony.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Eases the creation of beautiful and testable command line interfaces",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "cli",
  6178. "command line",
  6179. "console",
  6180. "terminal"
  6181. ],
  6182. "support": {
  6183. "source": "https://github.com/symfony/console/tree/v5.4.1"
  6184. },
  6185. "funding": [
  6186. {
  6187. "url": "https://symfony.com/sponsor",
  6188. "type": "custom"
  6189. },
  6190. {
  6191. "url": "https://github.com/fabpot",
  6192. "type": "github"
  6193. },
  6194. {
  6195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6196. "type": "tidelift"
  6197. }
  6198. ],
  6199. "time": "2021-12-09T11:22:43+00:00"
  6200. },
  6201. {
  6202. "name": "symfony/css-selector",
  6203. "version": "v5.4.0",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/symfony/css-selector.git",
  6207. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/symfony/css-selector/zipball/44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  6212. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "php": ">=7.2.5",
  6217. "symfony/polyfill-php80": "^1.16"
  6218. },
  6219. "type": "library",
  6220. "autoload": {
  6221. "psr-4": {
  6222. "Symfony\\Component\\CssSelector\\": ""
  6223. },
  6224. "exclude-from-classmap": [
  6225. "/Tests/"
  6226. ]
  6227. },
  6228. "notification-url": "https://packagist.org/downloads/",
  6229. "license": [
  6230. "MIT"
  6231. ],
  6232. "authors": [
  6233. {
  6234. "name": "Fabien Potencier",
  6235. "email": "fabien@symfony.com"
  6236. },
  6237. {
  6238. "name": "Jean-François Simon",
  6239. "email": "jeanfrancois.simon@sensiolabs.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Converts CSS selectors to XPath expressions",
  6247. "homepage": "https://symfony.com",
  6248. "support": {
  6249. "source": "https://github.com/symfony/css-selector/tree/v5.4.0"
  6250. },
  6251. "funding": [
  6252. {
  6253. "url": "https://symfony.com/sponsor",
  6254. "type": "custom"
  6255. },
  6256. {
  6257. "url": "https://github.com/fabpot",
  6258. "type": "github"
  6259. },
  6260. {
  6261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6262. "type": "tidelift"
  6263. }
  6264. ],
  6265. "time": "2021-09-09T08:06:01+00:00"
  6266. },
  6267. {
  6268. "name": "symfony/deprecation-contracts",
  6269. "version": "v2.5.0",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://github.com/symfony/deprecation-contracts.git",
  6273. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  6278. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  6279. "shasum": ""
  6280. },
  6281. "require": {
  6282. "php": ">=7.1"
  6283. },
  6284. "type": "library",
  6285. "extra": {
  6286. "branch-alias": {
  6287. "dev-main": "2.5-dev"
  6288. },
  6289. "thanks": {
  6290. "name": "symfony/contracts",
  6291. "url": "https://github.com/symfony/contracts"
  6292. }
  6293. },
  6294. "autoload": {
  6295. "files": [
  6296. "function.php"
  6297. ]
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Nicolas Grekas",
  6306. "email": "p@tchwork.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "A generic function and convention to trigger deprecation notices",
  6314. "homepage": "https://symfony.com",
  6315. "support": {
  6316. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  6317. },
  6318. "funding": [
  6319. {
  6320. "url": "https://symfony.com/sponsor",
  6321. "type": "custom"
  6322. },
  6323. {
  6324. "url": "https://github.com/fabpot",
  6325. "type": "github"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2021-07-12T14:48:14+00:00"
  6333. },
  6334. {
  6335. "name": "symfony/error-handler",
  6336. "version": "v5.4.1",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/symfony/error-handler.git",
  6340. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1e3cb3565af49cd5f93e5787500134500a29f0d9",
  6345. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9",
  6346. "shasum": ""
  6347. },
  6348. "require": {
  6349. "php": ">=7.2.5",
  6350. "psr/log": "^1|^2|^3",
  6351. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6352. },
  6353. "require-dev": {
  6354. "symfony/deprecation-contracts": "^2.1|^3",
  6355. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6356. "symfony/serializer": "^4.4|^5.0|^6.0"
  6357. },
  6358. "bin": [
  6359. "Resources/bin/patch-type-declarations"
  6360. ],
  6361. "type": "library",
  6362. "autoload": {
  6363. "psr-4": {
  6364. "Symfony\\Component\\ErrorHandler\\": ""
  6365. },
  6366. "exclude-from-classmap": [
  6367. "/Tests/"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Fabien Potencier",
  6377. "email": "fabien@symfony.com"
  6378. },
  6379. {
  6380. "name": "Symfony Community",
  6381. "homepage": "https://symfony.com/contributors"
  6382. }
  6383. ],
  6384. "description": "Provides tools to manage errors and ease debugging PHP code",
  6385. "homepage": "https://symfony.com",
  6386. "support": {
  6387. "source": "https://github.com/symfony/error-handler/tree/v5.4.1"
  6388. },
  6389. "funding": [
  6390. {
  6391. "url": "https://symfony.com/sponsor",
  6392. "type": "custom"
  6393. },
  6394. {
  6395. "url": "https://github.com/fabpot",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2021-12-01T15:04:08+00:00"
  6404. },
  6405. {
  6406. "name": "symfony/event-dispatcher",
  6407. "version": "v5.4.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/symfony/event-dispatcher.git",
  6411. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
  6416. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": ">=7.2.5",
  6421. "symfony/deprecation-contracts": "^2.1|^3",
  6422. "symfony/event-dispatcher-contracts": "^2|^3",
  6423. "symfony/polyfill-php80": "^1.16"
  6424. },
  6425. "conflict": {
  6426. "symfony/dependency-injection": "<4.4"
  6427. },
  6428. "provide": {
  6429. "psr/event-dispatcher-implementation": "1.0",
  6430. "symfony/event-dispatcher-implementation": "2.0"
  6431. },
  6432. "require-dev": {
  6433. "psr/log": "^1|^2|^3",
  6434. "symfony/config": "^4.4|^5.0|^6.0",
  6435. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6436. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6437. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6438. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6439. "symfony/service-contracts": "^1.1|^2|^3",
  6440. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6441. },
  6442. "suggest": {
  6443. "symfony/dependency-injection": "",
  6444. "symfony/http-kernel": ""
  6445. },
  6446. "type": "library",
  6447. "autoload": {
  6448. "psr-4": {
  6449. "Symfony\\Component\\EventDispatcher\\": ""
  6450. },
  6451. "exclude-from-classmap": [
  6452. "/Tests/"
  6453. ]
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Fabien Potencier",
  6462. "email": "fabien@symfony.com"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6470. "homepage": "https://symfony.com",
  6471. "support": {
  6472. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://symfony.com/sponsor",
  6477. "type": "custom"
  6478. },
  6479. {
  6480. "url": "https://github.com/fabpot",
  6481. "type": "github"
  6482. },
  6483. {
  6484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6485. "type": "tidelift"
  6486. }
  6487. ],
  6488. "time": "2021-11-23T10:19:22+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/event-dispatcher-contracts",
  6492. "version": "v2.5.0",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6496. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  6501. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  6502. "shasum": ""
  6503. },
  6504. "require": {
  6505. "php": ">=7.2.5",
  6506. "psr/event-dispatcher": "^1"
  6507. },
  6508. "suggest": {
  6509. "symfony/event-dispatcher-implementation": ""
  6510. },
  6511. "type": "library",
  6512. "extra": {
  6513. "branch-alias": {
  6514. "dev-main": "2.5-dev"
  6515. },
  6516. "thanks": {
  6517. "name": "symfony/contracts",
  6518. "url": "https://github.com/symfony/contracts"
  6519. }
  6520. },
  6521. "autoload": {
  6522. "psr-4": {
  6523. "Symfony\\Contracts\\EventDispatcher\\": ""
  6524. }
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Nicolas Grekas",
  6533. "email": "p@tchwork.com"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Generic abstractions related to dispatching event",
  6541. "homepage": "https://symfony.com",
  6542. "keywords": [
  6543. "abstractions",
  6544. "contracts",
  6545. "decoupling",
  6546. "interfaces",
  6547. "interoperability",
  6548. "standards"
  6549. ],
  6550. "support": {
  6551. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2021-07-12T14:48:14+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/filesystem",
  6571. "version": "v5.4.0",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/filesystem.git",
  6575. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
  6580. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "php": ">=7.2.5",
  6585. "symfony/polyfill-ctype": "~1.8",
  6586. "symfony/polyfill-mbstring": "~1.8",
  6587. "symfony/polyfill-php80": "^1.16"
  6588. },
  6589. "type": "library",
  6590. "autoload": {
  6591. "psr-4": {
  6592. "Symfony\\Component\\Filesystem\\": ""
  6593. },
  6594. "exclude-from-classmap": [
  6595. "/Tests/"
  6596. ]
  6597. },
  6598. "notification-url": "https://packagist.org/downloads/",
  6599. "license": [
  6600. "MIT"
  6601. ],
  6602. "authors": [
  6603. {
  6604. "name": "Fabien Potencier",
  6605. "email": "fabien@symfony.com"
  6606. },
  6607. {
  6608. "name": "Symfony Community",
  6609. "homepage": "https://symfony.com/contributors"
  6610. }
  6611. ],
  6612. "description": "Provides basic utilities for the filesystem",
  6613. "homepage": "https://symfony.com",
  6614. "support": {
  6615. "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
  6616. },
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2021-10-28T13:39:27+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/finder",
  6635. "version": "v5.4.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/finder.git",
  6639. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590",
  6644. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=7.2.5",
  6649. "symfony/deprecation-contracts": "^2.1|^3",
  6650. "symfony/polyfill-php80": "^1.16"
  6651. },
  6652. "type": "library",
  6653. "autoload": {
  6654. "psr-4": {
  6655. "Symfony\\Component\\Finder\\": ""
  6656. },
  6657. "exclude-from-classmap": [
  6658. "/Tests/"
  6659. ]
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "Fabien Potencier",
  6668. "email": "fabien@symfony.com"
  6669. },
  6670. {
  6671. "name": "Symfony Community",
  6672. "homepage": "https://symfony.com/contributors"
  6673. }
  6674. ],
  6675. "description": "Finds files and directories via an intuitive fluent interface",
  6676. "homepage": "https://symfony.com",
  6677. "support": {
  6678. "source": "https://github.com/symfony/finder/tree/v5.4.0"
  6679. },
  6680. "funding": [
  6681. {
  6682. "url": "https://symfony.com/sponsor",
  6683. "type": "custom"
  6684. },
  6685. {
  6686. "url": "https://github.com/fabpot",
  6687. "type": "github"
  6688. },
  6689. {
  6690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6691. "type": "tidelift"
  6692. }
  6693. ],
  6694. "time": "2021-11-28T15:25:38+00:00"
  6695. },
  6696. {
  6697. "name": "symfony/http-foundation",
  6698. "version": "v5.4.1",
  6699. "source": {
  6700. "type": "git",
  6701. "url": "https://github.com/symfony/http-foundation.git",
  6702. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c"
  6703. },
  6704. "dist": {
  6705. "type": "zip",
  6706. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dad3780023a707f4c24beac7d57aead85c1ce3c",
  6707. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c",
  6708. "shasum": ""
  6709. },
  6710. "require": {
  6711. "php": ">=7.2.5",
  6712. "symfony/deprecation-contracts": "^2.1|^3",
  6713. "symfony/polyfill-mbstring": "~1.1",
  6714. "symfony/polyfill-php80": "^1.16"
  6715. },
  6716. "require-dev": {
  6717. "predis/predis": "~1.0",
  6718. "symfony/cache": "^4.4|^5.0|^6.0",
  6719. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6720. "symfony/mime": "^4.4|^5.0|^6.0"
  6721. },
  6722. "suggest": {
  6723. "symfony/mime": "To use the file extension guesser"
  6724. },
  6725. "type": "library",
  6726. "autoload": {
  6727. "psr-4": {
  6728. "Symfony\\Component\\HttpFoundation\\": ""
  6729. },
  6730. "exclude-from-classmap": [
  6731. "/Tests/"
  6732. ]
  6733. },
  6734. "notification-url": "https://packagist.org/downloads/",
  6735. "license": [
  6736. "MIT"
  6737. ],
  6738. "authors": [
  6739. {
  6740. "name": "Fabien Potencier",
  6741. "email": "fabien@symfony.com"
  6742. },
  6743. {
  6744. "name": "Symfony Community",
  6745. "homepage": "https://symfony.com/contributors"
  6746. }
  6747. ],
  6748. "description": "Defines an object-oriented layer for the HTTP specification",
  6749. "homepage": "https://symfony.com",
  6750. "support": {
  6751. "source": "https://github.com/symfony/http-foundation/tree/v5.4.1"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://symfony.com/sponsor",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/fabpot",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2021-12-09T12:46:57+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/http-kernel",
  6771. "version": "v5.1.5",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/http-kernel.git",
  6775. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6780. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6781. "shasum": ""
  6782. },
  6783. "require": {
  6784. "php": ">=7.2.5",
  6785. "psr/log": "~1.0",
  6786. "symfony/deprecation-contracts": "^2.1",
  6787. "symfony/error-handler": "^4.4|^5.0",
  6788. "symfony/event-dispatcher": "^5.0",
  6789. "symfony/http-foundation": "^4.4|^5.0",
  6790. "symfony/polyfill-ctype": "^1.8",
  6791. "symfony/polyfill-php73": "^1.9",
  6792. "symfony/polyfill-php80": "^1.15"
  6793. },
  6794. "conflict": {
  6795. "symfony/browser-kit": "<4.4",
  6796. "symfony/cache": "<5.0",
  6797. "symfony/config": "<5.0",
  6798. "symfony/console": "<4.4",
  6799. "symfony/dependency-injection": "<4.4",
  6800. "symfony/doctrine-bridge": "<5.0",
  6801. "symfony/form": "<5.0",
  6802. "symfony/http-client": "<5.0",
  6803. "symfony/mailer": "<5.0",
  6804. "symfony/messenger": "<5.0",
  6805. "symfony/translation": "<5.0",
  6806. "symfony/twig-bridge": "<5.0",
  6807. "symfony/validator": "<5.0",
  6808. "twig/twig": "<2.4"
  6809. },
  6810. "provide": {
  6811. "psr/log-implementation": "1.0"
  6812. },
  6813. "require-dev": {
  6814. "psr/cache": "~1.0",
  6815. "symfony/browser-kit": "^4.4|^5.0",
  6816. "symfony/config": "^5.0",
  6817. "symfony/console": "^4.4|^5.0",
  6818. "symfony/css-selector": "^4.4|^5.0",
  6819. "symfony/dependency-injection": "^4.4|^5.0",
  6820. "symfony/dom-crawler": "^4.4|^5.0",
  6821. "symfony/expression-language": "^4.4|^5.0",
  6822. "symfony/finder": "^4.4|^5.0",
  6823. "symfony/process": "^4.4|^5.0",
  6824. "symfony/routing": "^4.4|^5.0",
  6825. "symfony/stopwatch": "^4.4|^5.0",
  6826. "symfony/translation": "^4.4|^5.0",
  6827. "symfony/translation-contracts": "^1.1|^2",
  6828. "twig/twig": "^2.4|^3.0"
  6829. },
  6830. "suggest": {
  6831. "symfony/browser-kit": "",
  6832. "symfony/config": "",
  6833. "symfony/console": "",
  6834. "symfony/dependency-injection": ""
  6835. },
  6836. "type": "library",
  6837. "extra": {
  6838. "branch-alias": {
  6839. "dev-master": "5.1-dev"
  6840. }
  6841. },
  6842. "autoload": {
  6843. "psr-4": {
  6844. "Symfony\\Component\\HttpKernel\\": ""
  6845. },
  6846. "exclude-from-classmap": [
  6847. "/Tests/"
  6848. ]
  6849. },
  6850. "notification-url": "https://packagist.org/downloads/",
  6851. "license": [
  6852. "MIT"
  6853. ],
  6854. "authors": [
  6855. {
  6856. "name": "Fabien Potencier",
  6857. "email": "fabien@symfony.com"
  6858. },
  6859. {
  6860. "name": "Symfony Community",
  6861. "homepage": "https://symfony.com/contributors"
  6862. }
  6863. ],
  6864. "description": "Symfony HttpKernel Component",
  6865. "homepage": "https://symfony.com",
  6866. "support": {
  6867. "source": "https://github.com/symfony/http-kernel/tree/v5.1.5"
  6868. },
  6869. "funding": [
  6870. {
  6871. "url": "https://symfony.com/sponsor",
  6872. "type": "custom"
  6873. },
  6874. {
  6875. "url": "https://github.com/fabpot",
  6876. "type": "github"
  6877. },
  6878. {
  6879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6880. "type": "tidelift"
  6881. }
  6882. ],
  6883. "time": "2020-09-02T08:15:18+00:00"
  6884. },
  6885. {
  6886. "name": "symfony/mime",
  6887. "version": "v5.4.0",
  6888. "source": {
  6889. "type": "git",
  6890. "url": "https://github.com/symfony/mime.git",
  6891. "reference": "d4365000217b67c01acff407573906ff91bcfb34"
  6892. },
  6893. "dist": {
  6894. "type": "zip",
  6895. "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34",
  6896. "reference": "d4365000217b67c01acff407573906ff91bcfb34",
  6897. "shasum": ""
  6898. },
  6899. "require": {
  6900. "php": ">=7.2.5",
  6901. "symfony/deprecation-contracts": "^2.1|^3",
  6902. "symfony/polyfill-intl-idn": "^1.10",
  6903. "symfony/polyfill-mbstring": "^1.0",
  6904. "symfony/polyfill-php80": "^1.16"
  6905. },
  6906. "conflict": {
  6907. "egulias/email-validator": "~3.0.0",
  6908. "phpdocumentor/reflection-docblock": "<3.2.2",
  6909. "phpdocumentor/type-resolver": "<1.4.0",
  6910. "symfony/mailer": "<4.4"
  6911. },
  6912. "require-dev": {
  6913. "egulias/email-validator": "^2.1.10|^3.1",
  6914. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6915. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6916. "symfony/property-access": "^4.4|^5.1|^6.0",
  6917. "symfony/property-info": "^4.4|^5.1|^6.0",
  6918. "symfony/serializer": "^5.2|^6.0"
  6919. },
  6920. "type": "library",
  6921. "autoload": {
  6922. "psr-4": {
  6923. "Symfony\\Component\\Mime\\": ""
  6924. },
  6925. "exclude-from-classmap": [
  6926. "/Tests/"
  6927. ]
  6928. },
  6929. "notification-url": "https://packagist.org/downloads/",
  6930. "license": [
  6931. "MIT"
  6932. ],
  6933. "authors": [
  6934. {
  6935. "name": "Fabien Potencier",
  6936. "email": "fabien@symfony.com"
  6937. },
  6938. {
  6939. "name": "Symfony Community",
  6940. "homepage": "https://symfony.com/contributors"
  6941. }
  6942. ],
  6943. "description": "Allows manipulating MIME messages",
  6944. "homepage": "https://symfony.com",
  6945. "keywords": [
  6946. "mime",
  6947. "mime-type"
  6948. ],
  6949. "support": {
  6950. "source": "https://github.com/symfony/mime/tree/v5.4.0"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2021-11-23T10:19:22+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/polyfill-ctype",
  6970. "version": "v1.23.0",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/polyfill-ctype.git",
  6974. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  6979. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  6980. "shasum": ""
  6981. },
  6982. "require": {
  6983. "php": ">=7.1"
  6984. },
  6985. "suggest": {
  6986. "ext-ctype": "For best performance"
  6987. },
  6988. "type": "library",
  6989. "extra": {
  6990. "branch-alias": {
  6991. "dev-main": "1.23-dev"
  6992. },
  6993. "thanks": {
  6994. "name": "symfony/polyfill",
  6995. "url": "https://github.com/symfony/polyfill"
  6996. }
  6997. },
  6998. "autoload": {
  6999. "psr-4": {
  7000. "Symfony\\Polyfill\\Ctype\\": ""
  7001. },
  7002. "files": [
  7003. "bootstrap.php"
  7004. ]
  7005. },
  7006. "notification-url": "https://packagist.org/downloads/",
  7007. "license": [
  7008. "MIT"
  7009. ],
  7010. "authors": [
  7011. {
  7012. "name": "Gert de Pagter",
  7013. "email": "BackEndTea@gmail.com"
  7014. },
  7015. {
  7016. "name": "Symfony Community",
  7017. "homepage": "https://symfony.com/contributors"
  7018. }
  7019. ],
  7020. "description": "Symfony polyfill for ctype functions",
  7021. "homepage": "https://symfony.com",
  7022. "keywords": [
  7023. "compatibility",
  7024. "ctype",
  7025. "polyfill",
  7026. "portable"
  7027. ],
  7028. "support": {
  7029. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  7030. },
  7031. "funding": [
  7032. {
  7033. "url": "https://symfony.com/sponsor",
  7034. "type": "custom"
  7035. },
  7036. {
  7037. "url": "https://github.com/fabpot",
  7038. "type": "github"
  7039. },
  7040. {
  7041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7042. "type": "tidelift"
  7043. }
  7044. ],
  7045. "time": "2021-02-19T12:13:01+00:00"
  7046. },
  7047. {
  7048. "name": "symfony/polyfill-iconv",
  7049. "version": "v1.23.0",
  7050. "source": {
  7051. "type": "git",
  7052. "url": "https://github.com/symfony/polyfill-iconv.git",
  7053. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  7054. },
  7055. "dist": {
  7056. "type": "zip",
  7057. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  7058. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  7059. "shasum": ""
  7060. },
  7061. "require": {
  7062. "php": ">=7.1"
  7063. },
  7064. "suggest": {
  7065. "ext-iconv": "For best performance"
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-main": "1.23-dev"
  7071. },
  7072. "thanks": {
  7073. "name": "symfony/polyfill",
  7074. "url": "https://github.com/symfony/polyfill"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Symfony\\Polyfill\\Iconv\\": ""
  7080. },
  7081. "files": [
  7082. "bootstrap.php"
  7083. ]
  7084. },
  7085. "notification-url": "https://packagist.org/downloads/",
  7086. "license": [
  7087. "MIT"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Nicolas Grekas",
  7092. "email": "p@tchwork.com"
  7093. },
  7094. {
  7095. "name": "Symfony Community",
  7096. "homepage": "https://symfony.com/contributors"
  7097. }
  7098. ],
  7099. "description": "Symfony polyfill for the Iconv extension",
  7100. "homepage": "https://symfony.com",
  7101. "keywords": [
  7102. "compatibility",
  7103. "iconv",
  7104. "polyfill",
  7105. "portable",
  7106. "shim"
  7107. ],
  7108. "support": {
  7109. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  7110. },
  7111. "funding": [
  7112. {
  7113. "url": "https://symfony.com/sponsor",
  7114. "type": "custom"
  7115. },
  7116. {
  7117. "url": "https://github.com/fabpot",
  7118. "type": "github"
  7119. },
  7120. {
  7121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7122. "type": "tidelift"
  7123. }
  7124. ],
  7125. "time": "2021-05-27T09:27:20+00:00"
  7126. },
  7127. {
  7128. "name": "symfony/polyfill-intl-grapheme",
  7129. "version": "v1.23.1",
  7130. "source": {
  7131. "type": "git",
  7132. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7133. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  7134. },
  7135. "dist": {
  7136. "type": "zip",
  7137. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  7138. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  7139. "shasum": ""
  7140. },
  7141. "require": {
  7142. "php": ">=7.1"
  7143. },
  7144. "suggest": {
  7145. "ext-intl": "For best performance"
  7146. },
  7147. "type": "library",
  7148. "extra": {
  7149. "branch-alias": {
  7150. "dev-main": "1.23-dev"
  7151. },
  7152. "thanks": {
  7153. "name": "symfony/polyfill",
  7154. "url": "https://github.com/symfony/polyfill"
  7155. }
  7156. },
  7157. "autoload": {
  7158. "psr-4": {
  7159. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7160. },
  7161. "files": [
  7162. "bootstrap.php"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "MIT"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Nicolas Grekas",
  7172. "email": "p@tchwork.com"
  7173. },
  7174. {
  7175. "name": "Symfony Community",
  7176. "homepage": "https://symfony.com/contributors"
  7177. }
  7178. ],
  7179. "description": "Symfony polyfill for intl's grapheme_* functions",
  7180. "homepage": "https://symfony.com",
  7181. "keywords": [
  7182. "compatibility",
  7183. "grapheme",
  7184. "intl",
  7185. "polyfill",
  7186. "portable",
  7187. "shim"
  7188. ],
  7189. "support": {
  7190. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  7191. },
  7192. "funding": [
  7193. {
  7194. "url": "https://symfony.com/sponsor",
  7195. "type": "custom"
  7196. },
  7197. {
  7198. "url": "https://github.com/fabpot",
  7199. "type": "github"
  7200. },
  7201. {
  7202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7203. "type": "tidelift"
  7204. }
  7205. ],
  7206. "time": "2021-05-27T12:26:48+00:00"
  7207. },
  7208. {
  7209. "name": "symfony/polyfill-intl-idn",
  7210. "version": "v1.23.0",
  7211. "source": {
  7212. "type": "git",
  7213. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7214. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  7215. },
  7216. "dist": {
  7217. "type": "zip",
  7218. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  7219. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  7220. "shasum": ""
  7221. },
  7222. "require": {
  7223. "php": ">=7.1",
  7224. "symfony/polyfill-intl-normalizer": "^1.10",
  7225. "symfony/polyfill-php72": "^1.10"
  7226. },
  7227. "suggest": {
  7228. "ext-intl": "For best performance"
  7229. },
  7230. "type": "library",
  7231. "extra": {
  7232. "branch-alias": {
  7233. "dev-main": "1.23-dev"
  7234. },
  7235. "thanks": {
  7236. "name": "symfony/polyfill",
  7237. "url": "https://github.com/symfony/polyfill"
  7238. }
  7239. },
  7240. "autoload": {
  7241. "psr-4": {
  7242. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7243. },
  7244. "files": [
  7245. "bootstrap.php"
  7246. ]
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Laurent Bassin",
  7255. "email": "laurent@bassin.info"
  7256. },
  7257. {
  7258. "name": "Trevor Rowbotham",
  7259. "email": "trevor.rowbotham@pm.me"
  7260. },
  7261. {
  7262. "name": "Symfony Community",
  7263. "homepage": "https://symfony.com/contributors"
  7264. }
  7265. ],
  7266. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7267. "homepage": "https://symfony.com",
  7268. "keywords": [
  7269. "compatibility",
  7270. "idn",
  7271. "intl",
  7272. "polyfill",
  7273. "portable",
  7274. "shim"
  7275. ],
  7276. "support": {
  7277. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  7278. },
  7279. "funding": [
  7280. {
  7281. "url": "https://symfony.com/sponsor",
  7282. "type": "custom"
  7283. },
  7284. {
  7285. "url": "https://github.com/fabpot",
  7286. "type": "github"
  7287. },
  7288. {
  7289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7290. "type": "tidelift"
  7291. }
  7292. ],
  7293. "time": "2021-05-27T09:27:20+00:00"
  7294. },
  7295. {
  7296. "name": "symfony/polyfill-intl-normalizer",
  7297. "version": "v1.23.0",
  7298. "source": {
  7299. "type": "git",
  7300. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7301. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  7302. },
  7303. "dist": {
  7304. "type": "zip",
  7305. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  7306. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  7307. "shasum": ""
  7308. },
  7309. "require": {
  7310. "php": ">=7.1"
  7311. },
  7312. "suggest": {
  7313. "ext-intl": "For best performance"
  7314. },
  7315. "type": "library",
  7316. "extra": {
  7317. "branch-alias": {
  7318. "dev-main": "1.23-dev"
  7319. },
  7320. "thanks": {
  7321. "name": "symfony/polyfill",
  7322. "url": "https://github.com/symfony/polyfill"
  7323. }
  7324. },
  7325. "autoload": {
  7326. "psr-4": {
  7327. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7328. },
  7329. "files": [
  7330. "bootstrap.php"
  7331. ],
  7332. "classmap": [
  7333. "Resources/stubs"
  7334. ]
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "authors": [
  7341. {
  7342. "name": "Nicolas Grekas",
  7343. "email": "p@tchwork.com"
  7344. },
  7345. {
  7346. "name": "Symfony Community",
  7347. "homepage": "https://symfony.com/contributors"
  7348. }
  7349. ],
  7350. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7351. "homepage": "https://symfony.com",
  7352. "keywords": [
  7353. "compatibility",
  7354. "intl",
  7355. "normalizer",
  7356. "polyfill",
  7357. "portable",
  7358. "shim"
  7359. ],
  7360. "support": {
  7361. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  7362. },
  7363. "funding": [
  7364. {
  7365. "url": "https://symfony.com/sponsor",
  7366. "type": "custom"
  7367. },
  7368. {
  7369. "url": "https://github.com/fabpot",
  7370. "type": "github"
  7371. },
  7372. {
  7373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7374. "type": "tidelift"
  7375. }
  7376. ],
  7377. "time": "2021-02-19T12:13:01+00:00"
  7378. },
  7379. {
  7380. "name": "symfony/polyfill-mbstring",
  7381. "version": "v1.23.1",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7385. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7390. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=7.1"
  7395. },
  7396. "suggest": {
  7397. "ext-mbstring": "For best performance"
  7398. },
  7399. "type": "library",
  7400. "extra": {
  7401. "branch-alias": {
  7402. "dev-main": "1.23-dev"
  7403. },
  7404. "thanks": {
  7405. "name": "symfony/polyfill",
  7406. "url": "https://github.com/symfony/polyfill"
  7407. }
  7408. },
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Symfony\\Polyfill\\Mbstring\\": ""
  7412. },
  7413. "files": [
  7414. "bootstrap.php"
  7415. ]
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "MIT"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Nicolas Grekas",
  7424. "email": "p@tchwork.com"
  7425. },
  7426. {
  7427. "name": "Symfony Community",
  7428. "homepage": "https://symfony.com/contributors"
  7429. }
  7430. ],
  7431. "description": "Symfony polyfill for the Mbstring extension",
  7432. "homepage": "https://symfony.com",
  7433. "keywords": [
  7434. "compatibility",
  7435. "mbstring",
  7436. "polyfill",
  7437. "portable",
  7438. "shim"
  7439. ],
  7440. "support": {
  7441. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  7442. },
  7443. "funding": [
  7444. {
  7445. "url": "https://symfony.com/sponsor",
  7446. "type": "custom"
  7447. },
  7448. {
  7449. "url": "https://github.com/fabpot",
  7450. "type": "github"
  7451. },
  7452. {
  7453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7454. "type": "tidelift"
  7455. }
  7456. ],
  7457. "time": "2021-05-27T12:26:48+00:00"
  7458. },
  7459. {
  7460. "name": "symfony/polyfill-php72",
  7461. "version": "v1.23.0",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://github.com/symfony/polyfill-php72.git",
  7465. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  7470. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  7471. "shasum": ""
  7472. },
  7473. "require": {
  7474. "php": ">=7.1"
  7475. },
  7476. "type": "library",
  7477. "extra": {
  7478. "branch-alias": {
  7479. "dev-main": "1.23-dev"
  7480. },
  7481. "thanks": {
  7482. "name": "symfony/polyfill",
  7483. "url": "https://github.com/symfony/polyfill"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "psr-4": {
  7488. "Symfony\\Polyfill\\Php72\\": ""
  7489. },
  7490. "files": [
  7491. "bootstrap.php"
  7492. ]
  7493. },
  7494. "notification-url": "https://packagist.org/downloads/",
  7495. "license": [
  7496. "MIT"
  7497. ],
  7498. "authors": [
  7499. {
  7500. "name": "Nicolas Grekas",
  7501. "email": "p@tchwork.com"
  7502. },
  7503. {
  7504. "name": "Symfony Community",
  7505. "homepage": "https://symfony.com/contributors"
  7506. }
  7507. ],
  7508. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7509. "homepage": "https://symfony.com",
  7510. "keywords": [
  7511. "compatibility",
  7512. "polyfill",
  7513. "portable",
  7514. "shim"
  7515. ],
  7516. "support": {
  7517. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  7518. },
  7519. "funding": [
  7520. {
  7521. "url": "https://symfony.com/sponsor",
  7522. "type": "custom"
  7523. },
  7524. {
  7525. "url": "https://github.com/fabpot",
  7526. "type": "github"
  7527. },
  7528. {
  7529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7530. "type": "tidelift"
  7531. }
  7532. ],
  7533. "time": "2021-05-27T09:17:38+00:00"
  7534. },
  7535. {
  7536. "name": "symfony/polyfill-php73",
  7537. "version": "v1.23.0",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/symfony/polyfill-php73.git",
  7541. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  7546. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  7547. "shasum": ""
  7548. },
  7549. "require": {
  7550. "php": ">=7.1"
  7551. },
  7552. "type": "library",
  7553. "extra": {
  7554. "branch-alias": {
  7555. "dev-main": "1.23-dev"
  7556. },
  7557. "thanks": {
  7558. "name": "symfony/polyfill",
  7559. "url": "https://github.com/symfony/polyfill"
  7560. }
  7561. },
  7562. "autoload": {
  7563. "psr-4": {
  7564. "Symfony\\Polyfill\\Php73\\": ""
  7565. },
  7566. "files": [
  7567. "bootstrap.php"
  7568. ],
  7569. "classmap": [
  7570. "Resources/stubs"
  7571. ]
  7572. },
  7573. "notification-url": "https://packagist.org/downloads/",
  7574. "license": [
  7575. "MIT"
  7576. ],
  7577. "authors": [
  7578. {
  7579. "name": "Nicolas Grekas",
  7580. "email": "p@tchwork.com"
  7581. },
  7582. {
  7583. "name": "Symfony Community",
  7584. "homepage": "https://symfony.com/contributors"
  7585. }
  7586. ],
  7587. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7588. "homepage": "https://symfony.com",
  7589. "keywords": [
  7590. "compatibility",
  7591. "polyfill",
  7592. "portable",
  7593. "shim"
  7594. ],
  7595. "support": {
  7596. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  7597. },
  7598. "funding": [
  7599. {
  7600. "url": "https://symfony.com/sponsor",
  7601. "type": "custom"
  7602. },
  7603. {
  7604. "url": "https://github.com/fabpot",
  7605. "type": "github"
  7606. },
  7607. {
  7608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7609. "type": "tidelift"
  7610. }
  7611. ],
  7612. "time": "2021-02-19T12:13:01+00:00"
  7613. },
  7614. {
  7615. "name": "symfony/polyfill-php80",
  7616. "version": "v1.23.1",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/symfony/polyfill-php80.git",
  7620. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  7625. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "php": ">=7.1"
  7630. },
  7631. "type": "library",
  7632. "extra": {
  7633. "branch-alias": {
  7634. "dev-main": "1.23-dev"
  7635. },
  7636. "thanks": {
  7637. "name": "symfony/polyfill",
  7638. "url": "https://github.com/symfony/polyfill"
  7639. }
  7640. },
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Symfony\\Polyfill\\Php80\\": ""
  7644. },
  7645. "files": [
  7646. "bootstrap.php"
  7647. ],
  7648. "classmap": [
  7649. "Resources/stubs"
  7650. ]
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "MIT"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Ion Bazan",
  7659. "email": "ion.bazan@gmail.com"
  7660. },
  7661. {
  7662. "name": "Nicolas Grekas",
  7663. "email": "p@tchwork.com"
  7664. },
  7665. {
  7666. "name": "Symfony Community",
  7667. "homepage": "https://symfony.com/contributors"
  7668. }
  7669. ],
  7670. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7671. "homepage": "https://symfony.com",
  7672. "keywords": [
  7673. "compatibility",
  7674. "polyfill",
  7675. "portable",
  7676. "shim"
  7677. ],
  7678. "support": {
  7679. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  7680. },
  7681. "funding": [
  7682. {
  7683. "url": "https://symfony.com/sponsor",
  7684. "type": "custom"
  7685. },
  7686. {
  7687. "url": "https://github.com/fabpot",
  7688. "type": "github"
  7689. },
  7690. {
  7691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7692. "type": "tidelift"
  7693. }
  7694. ],
  7695. "time": "2021-07-28T13:41:28+00:00"
  7696. },
  7697. {
  7698. "name": "symfony/polyfill-php81",
  7699. "version": "v1.23.0",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/symfony/polyfill-php81.git",
  7703. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  7708. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  7709. "shasum": ""
  7710. },
  7711. "require": {
  7712. "php": ">=7.1"
  7713. },
  7714. "type": "library",
  7715. "extra": {
  7716. "branch-alias": {
  7717. "dev-main": "1.23-dev"
  7718. },
  7719. "thanks": {
  7720. "name": "symfony/polyfill",
  7721. "url": "https://github.com/symfony/polyfill"
  7722. }
  7723. },
  7724. "autoload": {
  7725. "psr-4": {
  7726. "Symfony\\Polyfill\\Php81\\": ""
  7727. },
  7728. "files": [
  7729. "bootstrap.php"
  7730. ],
  7731. "classmap": [
  7732. "Resources/stubs"
  7733. ]
  7734. },
  7735. "notification-url": "https://packagist.org/downloads/",
  7736. "license": [
  7737. "MIT"
  7738. ],
  7739. "authors": [
  7740. {
  7741. "name": "Nicolas Grekas",
  7742. "email": "p@tchwork.com"
  7743. },
  7744. {
  7745. "name": "Symfony Community",
  7746. "homepage": "https://symfony.com/contributors"
  7747. }
  7748. ],
  7749. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7750. "homepage": "https://symfony.com",
  7751. "keywords": [
  7752. "compatibility",
  7753. "polyfill",
  7754. "portable",
  7755. "shim"
  7756. ],
  7757. "support": {
  7758. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  7759. },
  7760. "funding": [
  7761. {
  7762. "url": "https://symfony.com/sponsor",
  7763. "type": "custom"
  7764. },
  7765. {
  7766. "url": "https://github.com/fabpot",
  7767. "type": "github"
  7768. },
  7769. {
  7770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7771. "type": "tidelift"
  7772. }
  7773. ],
  7774. "time": "2021-05-21T13:25:03+00:00"
  7775. },
  7776. {
  7777. "name": "symfony/process",
  7778. "version": "v5.4.0",
  7779. "source": {
  7780. "type": "git",
  7781. "url": "https://github.com/symfony/process.git",
  7782. "reference": "5be20b3830f726e019162b26223110c8f47cf274"
  7783. },
  7784. "dist": {
  7785. "type": "zip",
  7786. "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274",
  7787. "reference": "5be20b3830f726e019162b26223110c8f47cf274",
  7788. "shasum": ""
  7789. },
  7790. "require": {
  7791. "php": ">=7.2.5",
  7792. "symfony/polyfill-php80": "^1.16"
  7793. },
  7794. "type": "library",
  7795. "autoload": {
  7796. "psr-4": {
  7797. "Symfony\\Component\\Process\\": ""
  7798. },
  7799. "exclude-from-classmap": [
  7800. "/Tests/"
  7801. ]
  7802. },
  7803. "notification-url": "https://packagist.org/downloads/",
  7804. "license": [
  7805. "MIT"
  7806. ],
  7807. "authors": [
  7808. {
  7809. "name": "Fabien Potencier",
  7810. "email": "fabien@symfony.com"
  7811. },
  7812. {
  7813. "name": "Symfony Community",
  7814. "homepage": "https://symfony.com/contributors"
  7815. }
  7816. ],
  7817. "description": "Executes commands in sub-processes",
  7818. "homepage": "https://symfony.com",
  7819. "support": {
  7820. "source": "https://github.com/symfony/process/tree/v5.4.0"
  7821. },
  7822. "funding": [
  7823. {
  7824. "url": "https://symfony.com/sponsor",
  7825. "type": "custom"
  7826. },
  7827. {
  7828. "url": "https://github.com/fabpot",
  7829. "type": "github"
  7830. },
  7831. {
  7832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7833. "type": "tidelift"
  7834. }
  7835. ],
  7836. "time": "2021-11-28T15:25:38+00:00"
  7837. },
  7838. {
  7839. "name": "symfony/psr-http-message-bridge",
  7840. "version": "v2.1.2",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7844. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  7849. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  7850. "shasum": ""
  7851. },
  7852. "require": {
  7853. "php": ">=7.1",
  7854. "psr/http-message": "^1.0",
  7855. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  7856. },
  7857. "require-dev": {
  7858. "nyholm/psr7": "^1.1",
  7859. "psr/log": "^1.1 || ^2 || ^3",
  7860. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  7861. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7862. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  7863. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7864. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7865. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  7866. },
  7867. "suggest": {
  7868. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7869. },
  7870. "type": "symfony-bridge",
  7871. "extra": {
  7872. "branch-alias": {
  7873. "dev-main": "2.1-dev"
  7874. }
  7875. },
  7876. "autoload": {
  7877. "psr-4": {
  7878. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7879. },
  7880. "exclude-from-classmap": [
  7881. "/Tests/"
  7882. ]
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Fabien Potencier",
  7891. "email": "fabien@symfony.com"
  7892. },
  7893. {
  7894. "name": "Symfony Community",
  7895. "homepage": "http://symfony.com/contributors"
  7896. }
  7897. ],
  7898. "description": "PSR HTTP message bridge",
  7899. "homepage": "http://symfony.com",
  7900. "keywords": [
  7901. "http",
  7902. "http-message",
  7903. "psr-17",
  7904. "psr-7"
  7905. ],
  7906. "support": {
  7907. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7908. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  7909. },
  7910. "funding": [
  7911. {
  7912. "url": "https://symfony.com/sponsor",
  7913. "type": "custom"
  7914. },
  7915. {
  7916. "url": "https://github.com/fabpot",
  7917. "type": "github"
  7918. },
  7919. {
  7920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7921. "type": "tidelift"
  7922. }
  7923. ],
  7924. "time": "2021-11-05T13:13:39+00:00"
  7925. },
  7926. {
  7927. "name": "symfony/routing",
  7928. "version": "v5.4.0",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/symfony/routing.git",
  7932. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1",
  7937. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "php": ">=7.2.5",
  7942. "symfony/deprecation-contracts": "^2.1|^3",
  7943. "symfony/polyfill-php80": "^1.16"
  7944. },
  7945. "conflict": {
  7946. "doctrine/annotations": "<1.12",
  7947. "symfony/config": "<5.3",
  7948. "symfony/dependency-injection": "<4.4",
  7949. "symfony/yaml": "<4.4"
  7950. },
  7951. "require-dev": {
  7952. "doctrine/annotations": "^1.12",
  7953. "psr/log": "^1|^2|^3",
  7954. "symfony/config": "^5.3|^6.0",
  7955. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7956. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7957. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7958. "symfony/yaml": "^4.4|^5.0|^6.0"
  7959. },
  7960. "suggest": {
  7961. "symfony/config": "For using the all-in-one router or any loader",
  7962. "symfony/expression-language": "For using expression matching",
  7963. "symfony/http-foundation": "For using a Symfony Request object",
  7964. "symfony/yaml": "For using the YAML loader"
  7965. },
  7966. "type": "library",
  7967. "autoload": {
  7968. "psr-4": {
  7969. "Symfony\\Component\\Routing\\": ""
  7970. },
  7971. "exclude-from-classmap": [
  7972. "/Tests/"
  7973. ]
  7974. },
  7975. "notification-url": "https://packagist.org/downloads/",
  7976. "license": [
  7977. "MIT"
  7978. ],
  7979. "authors": [
  7980. {
  7981. "name": "Fabien Potencier",
  7982. "email": "fabien@symfony.com"
  7983. },
  7984. {
  7985. "name": "Symfony Community",
  7986. "homepage": "https://symfony.com/contributors"
  7987. }
  7988. ],
  7989. "description": "Maps an HTTP request to a set of configuration variables",
  7990. "homepage": "https://symfony.com",
  7991. "keywords": [
  7992. "router",
  7993. "routing",
  7994. "uri",
  7995. "url"
  7996. ],
  7997. "support": {
  7998. "source": "https://github.com/symfony/routing/tree/v5.4.0"
  7999. },
  8000. "funding": [
  8001. {
  8002. "url": "https://symfony.com/sponsor",
  8003. "type": "custom"
  8004. },
  8005. {
  8006. "url": "https://github.com/fabpot",
  8007. "type": "github"
  8008. },
  8009. {
  8010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8011. "type": "tidelift"
  8012. }
  8013. ],
  8014. "time": "2021-11-23T10:19:22+00:00"
  8015. },
  8016. {
  8017. "name": "symfony/service-contracts",
  8018. "version": "v2.5.0",
  8019. "source": {
  8020. "type": "git",
  8021. "url": "https://github.com/symfony/service-contracts.git",
  8022. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  8023. },
  8024. "dist": {
  8025. "type": "zip",
  8026. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  8027. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  8028. "shasum": ""
  8029. },
  8030. "require": {
  8031. "php": ">=7.2.5",
  8032. "psr/container": "^1.1",
  8033. "symfony/deprecation-contracts": "^2.1"
  8034. },
  8035. "conflict": {
  8036. "ext-psr": "<1.1|>=2"
  8037. },
  8038. "suggest": {
  8039. "symfony/service-implementation": ""
  8040. },
  8041. "type": "library",
  8042. "extra": {
  8043. "branch-alias": {
  8044. "dev-main": "2.5-dev"
  8045. },
  8046. "thanks": {
  8047. "name": "symfony/contracts",
  8048. "url": "https://github.com/symfony/contracts"
  8049. }
  8050. },
  8051. "autoload": {
  8052. "psr-4": {
  8053. "Symfony\\Contracts\\Service\\": ""
  8054. }
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "MIT"
  8059. ],
  8060. "authors": [
  8061. {
  8062. "name": "Nicolas Grekas",
  8063. "email": "p@tchwork.com"
  8064. },
  8065. {
  8066. "name": "Symfony Community",
  8067. "homepage": "https://symfony.com/contributors"
  8068. }
  8069. ],
  8070. "description": "Generic abstractions related to writing services",
  8071. "homepage": "https://symfony.com",
  8072. "keywords": [
  8073. "abstractions",
  8074. "contracts",
  8075. "decoupling",
  8076. "interfaces",
  8077. "interoperability",
  8078. "standards"
  8079. ],
  8080. "support": {
  8081. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  8082. },
  8083. "funding": [
  8084. {
  8085. "url": "https://symfony.com/sponsor",
  8086. "type": "custom"
  8087. },
  8088. {
  8089. "url": "https://github.com/fabpot",
  8090. "type": "github"
  8091. },
  8092. {
  8093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8094. "type": "tidelift"
  8095. }
  8096. ],
  8097. "time": "2021-11-04T16:48:04+00:00"
  8098. },
  8099. {
  8100. "name": "symfony/string",
  8101. "version": "v5.4.0",
  8102. "source": {
  8103. "type": "git",
  8104. "url": "https://github.com/symfony/string.git",
  8105. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d"
  8106. },
  8107. "dist": {
  8108. "type": "zip",
  8109. "url": "https://api.github.com/repos/symfony/string/zipball/9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  8110. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  8111. "shasum": ""
  8112. },
  8113. "require": {
  8114. "php": ">=7.2.5",
  8115. "symfony/polyfill-ctype": "~1.8",
  8116. "symfony/polyfill-intl-grapheme": "~1.0",
  8117. "symfony/polyfill-intl-normalizer": "~1.0",
  8118. "symfony/polyfill-mbstring": "~1.0",
  8119. "symfony/polyfill-php80": "~1.15"
  8120. },
  8121. "conflict": {
  8122. "symfony/translation-contracts": ">=3.0"
  8123. },
  8124. "require-dev": {
  8125. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8126. "symfony/http-client": "^4.4|^5.0|^6.0",
  8127. "symfony/translation-contracts": "^1.1|^2",
  8128. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8129. },
  8130. "type": "library",
  8131. "autoload": {
  8132. "psr-4": {
  8133. "Symfony\\Component\\String\\": ""
  8134. },
  8135. "files": [
  8136. "Resources/functions.php"
  8137. ],
  8138. "exclude-from-classmap": [
  8139. "/Tests/"
  8140. ]
  8141. },
  8142. "notification-url": "https://packagist.org/downloads/",
  8143. "license": [
  8144. "MIT"
  8145. ],
  8146. "authors": [
  8147. {
  8148. "name": "Nicolas Grekas",
  8149. "email": "p@tchwork.com"
  8150. },
  8151. {
  8152. "name": "Symfony Community",
  8153. "homepage": "https://symfony.com/contributors"
  8154. }
  8155. ],
  8156. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8157. "homepage": "https://symfony.com",
  8158. "keywords": [
  8159. "grapheme",
  8160. "i18n",
  8161. "string",
  8162. "unicode",
  8163. "utf-8",
  8164. "utf8"
  8165. ],
  8166. "support": {
  8167. "source": "https://github.com/symfony/string/tree/v5.4.0"
  8168. },
  8169. "funding": [
  8170. {
  8171. "url": "https://symfony.com/sponsor",
  8172. "type": "custom"
  8173. },
  8174. {
  8175. "url": "https://github.com/fabpot",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8180. "type": "tidelift"
  8181. }
  8182. ],
  8183. "time": "2021-11-24T10:02:00+00:00"
  8184. },
  8185. {
  8186. "name": "symfony/translation",
  8187. "version": "v5.4.1",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/symfony/translation.git",
  8191. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/symfony/translation/zipball/8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  8196. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=7.2.5",
  8201. "symfony/deprecation-contracts": "^2.1|^3",
  8202. "symfony/polyfill-mbstring": "~1.0",
  8203. "symfony/polyfill-php80": "^1.16",
  8204. "symfony/translation-contracts": "^2.3"
  8205. },
  8206. "conflict": {
  8207. "symfony/config": "<4.4",
  8208. "symfony/console": "<5.3",
  8209. "symfony/dependency-injection": "<5.0",
  8210. "symfony/http-kernel": "<5.0",
  8211. "symfony/twig-bundle": "<5.0",
  8212. "symfony/yaml": "<4.4"
  8213. },
  8214. "provide": {
  8215. "symfony/translation-implementation": "2.3"
  8216. },
  8217. "require-dev": {
  8218. "psr/log": "^1|^2|^3",
  8219. "symfony/config": "^4.4|^5.0|^6.0",
  8220. "symfony/console": "^5.4|^6.0",
  8221. "symfony/dependency-injection": "^5.0|^6.0",
  8222. "symfony/finder": "^4.4|^5.0|^6.0",
  8223. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8224. "symfony/http-kernel": "^5.0|^6.0",
  8225. "symfony/intl": "^4.4|^5.0|^6.0",
  8226. "symfony/polyfill-intl-icu": "^1.21",
  8227. "symfony/service-contracts": "^1.1.2|^2|^3",
  8228. "symfony/yaml": "^4.4|^5.0|^6.0"
  8229. },
  8230. "suggest": {
  8231. "psr/log-implementation": "To use logging capability in translator",
  8232. "symfony/config": "",
  8233. "symfony/yaml": ""
  8234. },
  8235. "type": "library",
  8236. "autoload": {
  8237. "files": [
  8238. "Resources/functions.php"
  8239. ],
  8240. "psr-4": {
  8241. "Symfony\\Component\\Translation\\": ""
  8242. },
  8243. "exclude-from-classmap": [
  8244. "/Tests/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "MIT"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Fabien Potencier",
  8254. "email": "fabien@symfony.com"
  8255. },
  8256. {
  8257. "name": "Symfony Community",
  8258. "homepage": "https://symfony.com/contributors"
  8259. }
  8260. ],
  8261. "description": "Provides tools to internationalize your application",
  8262. "homepage": "https://symfony.com",
  8263. "support": {
  8264. "source": "https://github.com/symfony/translation/tree/v5.4.1"
  8265. },
  8266. "funding": [
  8267. {
  8268. "url": "https://symfony.com/sponsor",
  8269. "type": "custom"
  8270. },
  8271. {
  8272. "url": "https://github.com/fabpot",
  8273. "type": "github"
  8274. },
  8275. {
  8276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8277. "type": "tidelift"
  8278. }
  8279. ],
  8280. "time": "2021-12-05T20:33:52+00:00"
  8281. },
  8282. {
  8283. "name": "symfony/translation-contracts",
  8284. "version": "v2.5.0",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/symfony/translation-contracts.git",
  8288. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  8293. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "php": ">=7.2.5"
  8298. },
  8299. "suggest": {
  8300. "symfony/translation-implementation": ""
  8301. },
  8302. "type": "library",
  8303. "extra": {
  8304. "branch-alias": {
  8305. "dev-main": "2.5-dev"
  8306. },
  8307. "thanks": {
  8308. "name": "symfony/contracts",
  8309. "url": "https://github.com/symfony/contracts"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "psr-4": {
  8314. "Symfony\\Contracts\\Translation\\": ""
  8315. }
  8316. },
  8317. "notification-url": "https://packagist.org/downloads/",
  8318. "license": [
  8319. "MIT"
  8320. ],
  8321. "authors": [
  8322. {
  8323. "name": "Nicolas Grekas",
  8324. "email": "p@tchwork.com"
  8325. },
  8326. {
  8327. "name": "Symfony Community",
  8328. "homepage": "https://symfony.com/contributors"
  8329. }
  8330. ],
  8331. "description": "Generic abstractions related to translation",
  8332. "homepage": "https://symfony.com",
  8333. "keywords": [
  8334. "abstractions",
  8335. "contracts",
  8336. "decoupling",
  8337. "interfaces",
  8338. "interoperability",
  8339. "standards"
  8340. ],
  8341. "support": {
  8342. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  8343. },
  8344. "funding": [
  8345. {
  8346. "url": "https://symfony.com/sponsor",
  8347. "type": "custom"
  8348. },
  8349. {
  8350. "url": "https://github.com/fabpot",
  8351. "type": "github"
  8352. },
  8353. {
  8354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8355. "type": "tidelift"
  8356. }
  8357. ],
  8358. "time": "2021-08-17T14:20:01+00:00"
  8359. },
  8360. {
  8361. "name": "symfony/var-dumper",
  8362. "version": "v5.4.1",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/symfony/var-dumper.git",
  8366. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  8371. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  8372. "shasum": ""
  8373. },
  8374. "require": {
  8375. "php": ">=7.2.5",
  8376. "symfony/polyfill-mbstring": "~1.0",
  8377. "symfony/polyfill-php80": "^1.16"
  8378. },
  8379. "conflict": {
  8380. "phpunit/phpunit": "<5.4.3",
  8381. "symfony/console": "<4.4"
  8382. },
  8383. "require-dev": {
  8384. "ext-iconv": "*",
  8385. "symfony/console": "^4.4|^5.0|^6.0",
  8386. "symfony/process": "^4.4|^5.0|^6.0",
  8387. "symfony/uid": "^5.1|^6.0",
  8388. "twig/twig": "^2.13|^3.0.4"
  8389. },
  8390. "suggest": {
  8391. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8392. "ext-intl": "To show region name in time zone dump",
  8393. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8394. },
  8395. "bin": [
  8396. "Resources/bin/var-dump-server"
  8397. ],
  8398. "type": "library",
  8399. "autoload": {
  8400. "files": [
  8401. "Resources/functions/dump.php"
  8402. ],
  8403. "psr-4": {
  8404. "Symfony\\Component\\VarDumper\\": ""
  8405. },
  8406. "exclude-from-classmap": [
  8407. "/Tests/"
  8408. ]
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Nicolas Grekas",
  8417. "email": "p@tchwork.com"
  8418. },
  8419. {
  8420. "name": "Symfony Community",
  8421. "homepage": "https://symfony.com/contributors"
  8422. }
  8423. ],
  8424. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8425. "homepage": "https://symfony.com",
  8426. "keywords": [
  8427. "debug",
  8428. "dump"
  8429. ],
  8430. "support": {
  8431. "source": "https://github.com/symfony/var-dumper/tree/v5.4.1"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://symfony.com/sponsor",
  8436. "type": "custom"
  8437. },
  8438. {
  8439. "url": "https://github.com/fabpot",
  8440. "type": "github"
  8441. },
  8442. {
  8443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8444. "type": "tidelift"
  8445. }
  8446. ],
  8447. "time": "2021-12-01T15:04:08+00:00"
  8448. },
  8449. {
  8450. "name": "tightenco/collect",
  8451. "version": "v5.6.33",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/tighten/collect.git",
  8455. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  8460. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": ">=7.1.3",
  8465. "symfony/var-dumper": ">=3.1.10"
  8466. },
  8467. "require-dev": {
  8468. "mockery/mockery": "~1.0",
  8469. "nesbot/carbon": "~1.20",
  8470. "phpunit/phpunit": "~7.0"
  8471. },
  8472. "type": "library",
  8473. "autoload": {
  8474. "files": [
  8475. "src/Collect/Support/helpers.php",
  8476. "src/Collect/Support/alias.php"
  8477. ],
  8478. "psr-4": {
  8479. "Tightenco\\Collect\\": "src/Collect"
  8480. }
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "MIT"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Taylor Otwell",
  8489. "email": "taylorotwell@gmail.com"
  8490. }
  8491. ],
  8492. "description": "Collect - Illuminate Collections as a separate package.",
  8493. "keywords": [
  8494. "collection",
  8495. "laravel"
  8496. ],
  8497. "support": {
  8498. "issues": "https://github.com/tighten/collect/issues",
  8499. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  8500. },
  8501. "time": "2018-08-09T16:56:26+00:00"
  8502. },
  8503. {
  8504. "name": "tijsverkoyen/css-to-inline-styles",
  8505. "version": "2.2.4",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8509. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8514. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8515. "shasum": ""
  8516. },
  8517. "require": {
  8518. "ext-dom": "*",
  8519. "ext-libxml": "*",
  8520. "php": "^5.5 || ^7.0 || ^8.0",
  8521. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8522. },
  8523. "require-dev": {
  8524. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8525. },
  8526. "type": "library",
  8527. "extra": {
  8528. "branch-alias": {
  8529. "dev-master": "2.2.x-dev"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "psr-4": {
  8534. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8535. }
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Tijs Verkoyen",
  8544. "email": "css_to_inline_styles@verkoyen.eu",
  8545. "role": "Developer"
  8546. }
  8547. ],
  8548. "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.",
  8549. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8550. "support": {
  8551. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8552. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  8553. },
  8554. "time": "2021-12-08T09:12:39+00:00"
  8555. },
  8556. {
  8557. "name": "vlucas/phpdotenv",
  8558. "version": "v5.4.1",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/vlucas/phpdotenv.git",
  8562. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8567. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "ext-pcre": "*",
  8572. "graham-campbell/result-type": "^1.0.2",
  8573. "php": "^7.1.3 || ^8.0",
  8574. "phpoption/phpoption": "^1.8",
  8575. "symfony/polyfill-ctype": "^1.23",
  8576. "symfony/polyfill-mbstring": "^1.23.1",
  8577. "symfony/polyfill-php80": "^1.23.1"
  8578. },
  8579. "require-dev": {
  8580. "bamarni/composer-bin-plugin": "^1.4.1",
  8581. "ext-filter": "*",
  8582. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  8583. },
  8584. "suggest": {
  8585. "ext-filter": "Required to use the boolean validator."
  8586. },
  8587. "type": "library",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-master": "5.4-dev"
  8591. }
  8592. },
  8593. "autoload": {
  8594. "psr-4": {
  8595. "Dotenv\\": "src/"
  8596. }
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "BSD-3-Clause"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Graham Campbell",
  8605. "email": "hello@gjcampbell.co.uk",
  8606. "homepage": "https://github.com/GrahamCampbell"
  8607. },
  8608. {
  8609. "name": "Vance Lucas",
  8610. "email": "vance@vancelucas.com",
  8611. "homepage": "https://github.com/vlucas"
  8612. }
  8613. ],
  8614. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8615. "keywords": [
  8616. "dotenv",
  8617. "env",
  8618. "environment"
  8619. ],
  8620. "support": {
  8621. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8622. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  8623. },
  8624. "funding": [
  8625. {
  8626. "url": "https://github.com/GrahamCampbell",
  8627. "type": "github"
  8628. },
  8629. {
  8630. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8631. "type": "tidelift"
  8632. }
  8633. ],
  8634. "time": "2021-12-12T23:22:04+00:00"
  8635. },
  8636. {
  8637. "name": "voku/portable-ascii",
  8638. "version": "1.5.6",
  8639. "source": {
  8640. "type": "git",
  8641. "url": "https://github.com/voku/portable-ascii.git",
  8642. "reference": "80953678b19901e5165c56752d087fc11526017c"
  8643. },
  8644. "dist": {
  8645. "type": "zip",
  8646. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  8647. "reference": "80953678b19901e5165c56752d087fc11526017c",
  8648. "shasum": ""
  8649. },
  8650. "require": {
  8651. "php": ">=7.0.0"
  8652. },
  8653. "require-dev": {
  8654. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8655. },
  8656. "suggest": {
  8657. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8658. },
  8659. "type": "library",
  8660. "autoload": {
  8661. "psr-4": {
  8662. "voku\\": "src/voku/"
  8663. }
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "MIT"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Lars Moelleken",
  8672. "homepage": "http://www.moelleken.org/"
  8673. }
  8674. ],
  8675. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8676. "homepage": "https://github.com/voku/portable-ascii",
  8677. "keywords": [
  8678. "ascii",
  8679. "clean",
  8680. "php"
  8681. ],
  8682. "support": {
  8683. "issues": "https://github.com/voku/portable-ascii/issues",
  8684. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  8685. },
  8686. "funding": [
  8687. {
  8688. "url": "https://www.paypal.me/moelleken",
  8689. "type": "custom"
  8690. },
  8691. {
  8692. "url": "https://github.com/voku",
  8693. "type": "github"
  8694. },
  8695. {
  8696. "url": "https://opencollective.com/portable-ascii",
  8697. "type": "open_collective"
  8698. },
  8699. {
  8700. "url": "https://www.patreon.com/voku",
  8701. "type": "patreon"
  8702. },
  8703. {
  8704. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8705. "type": "tidelift"
  8706. }
  8707. ],
  8708. "time": "2020-11-12T00:07:28+00:00"
  8709. },
  8710. {
  8711. "name": "webmozart/assert",
  8712. "version": "1.10.0",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/webmozarts/assert.git",
  8716. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8721. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8722. "shasum": ""
  8723. },
  8724. "require": {
  8725. "php": "^7.2 || ^8.0",
  8726. "symfony/polyfill-ctype": "^1.8"
  8727. },
  8728. "conflict": {
  8729. "phpstan/phpstan": "<0.12.20",
  8730. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8731. },
  8732. "require-dev": {
  8733. "phpunit/phpunit": "^8.5.13"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "branch-alias": {
  8738. "dev-master": "1.10-dev"
  8739. }
  8740. },
  8741. "autoload": {
  8742. "psr-4": {
  8743. "Webmozart\\Assert\\": "src/"
  8744. }
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "MIT"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Bernhard Schussek",
  8753. "email": "bschussek@gmail.com"
  8754. }
  8755. ],
  8756. "description": "Assertions to validate method input/output with nice error messages.",
  8757. "keywords": [
  8758. "assert",
  8759. "check",
  8760. "validate"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/webmozarts/assert/issues",
  8764. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  8765. },
  8766. "time": "2021-03-09T10:59:23+00:00"
  8767. }
  8768. ],
  8769. "packages-dev": [
  8770. {
  8771. "name": "brianium/paratest",
  8772. "version": "v6.4.1",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/paratestphp/paratest.git",
  8776. "reference": "c32a5c4fc2ff339202437d25d19a5f496f880d61"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/c32a5c4fc2ff339202437d25d19a5f496f880d61",
  8781. "reference": "c32a5c4fc2ff339202437d25d19a5f496f880d61",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "ext-dom": "*",
  8786. "ext-pcre": "*",
  8787. "ext-reflection": "*",
  8788. "ext-simplexml": "*",
  8789. "php": "^7.3 || ^8.0",
  8790. "phpunit/php-code-coverage": "^9.2.9",
  8791. "phpunit/php-file-iterator": "^3.0.5",
  8792. "phpunit/php-timer": "^5.0.3",
  8793. "phpunit/phpunit": "^9.5.10",
  8794. "sebastian/environment": "^5.1.3",
  8795. "symfony/console": "^5.4.0 || ^6.0.0",
  8796. "symfony/process": "^5.4.0 || ^6.0.0"
  8797. },
  8798. "require-dev": {
  8799. "doctrine/coding-standard": "^9.0.0",
  8800. "ekino/phpstan-banned-code": "^0.5.0",
  8801. "ergebnis/phpstan-rules": "^0.15.3",
  8802. "ext-posix": "*",
  8803. "infection/infection": "^0.25.3",
  8804. "malukenho/mcbumpface": "^1.1.5",
  8805. "phpstan/phpstan": "^0.12.99",
  8806. "phpstan/phpstan-deprecation-rules": "^0.12.6",
  8807. "phpstan/phpstan-phpunit": "^0.12.22",
  8808. "phpstan/phpstan-strict-rules": "^0.12.11",
  8809. "squizlabs/php_codesniffer": "^3.6.1",
  8810. "symfony/filesystem": "^v5.4.0",
  8811. "thecodingmachine/phpstan-strict-rules": "^v0.12.2",
  8812. "vimeo/psalm": "^4.13.1"
  8813. },
  8814. "bin": [
  8815. "bin/paratest"
  8816. ],
  8817. "type": "library",
  8818. "autoload": {
  8819. "psr-4": {
  8820. "ParaTest\\": [
  8821. "src/"
  8822. ]
  8823. }
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "MIT"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Brian Scaturro",
  8832. "email": "scaturrob@gmail.com",
  8833. "role": "Developer"
  8834. },
  8835. {
  8836. "name": "Filippo Tessarotto",
  8837. "email": "zoeslam@gmail.com",
  8838. "role": "Developer"
  8839. }
  8840. ],
  8841. "description": "Parallel testing for PHP",
  8842. "homepage": "https://github.com/paratestphp/paratest",
  8843. "keywords": [
  8844. "concurrent",
  8845. "parallel",
  8846. "phpunit",
  8847. "testing"
  8848. ],
  8849. "support": {
  8850. "issues": "https://github.com/paratestphp/paratest/issues",
  8851. "source": "https://github.com/paratestphp/paratest/tree/v6.4.1"
  8852. },
  8853. "funding": [
  8854. {
  8855. "url": "https://github.com/sponsors/Slamdunk",
  8856. "type": "github"
  8857. },
  8858. {
  8859. "url": "https://paypal.me/filippotessarotto",
  8860. "type": "paypal"
  8861. }
  8862. ],
  8863. "time": "2021-12-02T09:12:23+00:00"
  8864. },
  8865. {
  8866. "name": "doctrine/instantiator",
  8867. "version": "1.4.0",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/doctrine/instantiator.git",
  8871. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8876. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "php": "^7.1 || ^8.0"
  8881. },
  8882. "require-dev": {
  8883. "doctrine/coding-standard": "^8.0",
  8884. "ext-pdo": "*",
  8885. "ext-phar": "*",
  8886. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8887. "phpstan/phpstan": "^0.12",
  8888. "phpstan/phpstan-phpunit": "^0.12",
  8889. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8890. },
  8891. "type": "library",
  8892. "autoload": {
  8893. "psr-4": {
  8894. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8895. }
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Marco Pivetta",
  8904. "email": "ocramius@gmail.com",
  8905. "homepage": "https://ocramius.github.io/"
  8906. }
  8907. ],
  8908. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8909. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8910. "keywords": [
  8911. "constructor",
  8912. "instantiate"
  8913. ],
  8914. "support": {
  8915. "issues": "https://github.com/doctrine/instantiator/issues",
  8916. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8917. },
  8918. "funding": [
  8919. {
  8920. "url": "https://www.doctrine-project.org/sponsorship.html",
  8921. "type": "custom"
  8922. },
  8923. {
  8924. "url": "https://www.patreon.com/phpdoctrine",
  8925. "type": "patreon"
  8926. },
  8927. {
  8928. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8929. "type": "tidelift"
  8930. }
  8931. ],
  8932. "time": "2020-11-10T18:47:58+00:00"
  8933. },
  8934. {
  8935. "name": "facade/flare-client-php",
  8936. "version": "1.9.1",
  8937. "source": {
  8938. "type": "git",
  8939. "url": "https://github.com/facade/flare-client-php.git",
  8940. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  8941. },
  8942. "dist": {
  8943. "type": "zip",
  8944. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8945. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8946. "shasum": ""
  8947. },
  8948. "require": {
  8949. "facade/ignition-contracts": "~1.0",
  8950. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8951. "php": "^7.1|^8.0",
  8952. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8953. "symfony/mime": "^3.4|^4.0|^5.1",
  8954. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8955. },
  8956. "require-dev": {
  8957. "friendsofphp/php-cs-fixer": "^2.14",
  8958. "phpunit/phpunit": "^7.5.16",
  8959. "spatie/phpunit-snapshot-assertions": "^2.0"
  8960. },
  8961. "type": "library",
  8962. "extra": {
  8963. "branch-alias": {
  8964. "dev-master": "1.0-dev"
  8965. }
  8966. },
  8967. "autoload": {
  8968. "psr-4": {
  8969. "Facade\\FlareClient\\": "src"
  8970. },
  8971. "files": [
  8972. "src/helpers.php"
  8973. ]
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "MIT"
  8978. ],
  8979. "description": "Send PHP errors to Flare",
  8980. "homepage": "https://github.com/facade/flare-client-php",
  8981. "keywords": [
  8982. "exception",
  8983. "facade",
  8984. "flare",
  8985. "reporting"
  8986. ],
  8987. "support": {
  8988. "issues": "https://github.com/facade/flare-client-php/issues",
  8989. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  8990. },
  8991. "funding": [
  8992. {
  8993. "url": "https://github.com/spatie",
  8994. "type": "github"
  8995. }
  8996. ],
  8997. "time": "2021-09-13T12:16:46+00:00"
  8998. },
  8999. {
  9000. "name": "facade/ignition",
  9001. "version": "2.17.2",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/facade/ignition.git",
  9005. "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/facade/ignition/zipball/af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2",
  9010. "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "ext-curl": "*",
  9015. "ext-json": "*",
  9016. "ext-mbstring": "*",
  9017. "facade/flare-client-php": "^1.9.1",
  9018. "facade/ignition-contracts": "^1.0.2",
  9019. "illuminate/support": "^7.0|^8.0",
  9020. "monolog/monolog": "^2.0",
  9021. "php": "^7.2.5|^8.0",
  9022. "symfony/console": "^5.0",
  9023. "symfony/var-dumper": "^5.0"
  9024. },
  9025. "require-dev": {
  9026. "friendsofphp/php-cs-fixer": "^2.14",
  9027. "livewire/livewire": "^2.4",
  9028. "mockery/mockery": "^1.3",
  9029. "orchestra/testbench": "^5.0|^6.0",
  9030. "psalm/plugin-laravel": "^1.2"
  9031. },
  9032. "suggest": {
  9033. "laravel/telescope": "^3.1"
  9034. },
  9035. "type": "library",
  9036. "extra": {
  9037. "branch-alias": {
  9038. "dev-master": "2.x-dev"
  9039. },
  9040. "laravel": {
  9041. "providers": [
  9042. "Facade\\Ignition\\IgnitionServiceProvider"
  9043. ],
  9044. "aliases": {
  9045. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9046. }
  9047. }
  9048. },
  9049. "autoload": {
  9050. "psr-4": {
  9051. "Facade\\Ignition\\": "src"
  9052. },
  9053. "files": [
  9054. "src/helpers.php"
  9055. ]
  9056. },
  9057. "notification-url": "https://packagist.org/downloads/",
  9058. "license": [
  9059. "MIT"
  9060. ],
  9061. "description": "A beautiful error page for Laravel applications.",
  9062. "homepage": "https://github.com/facade/ignition",
  9063. "keywords": [
  9064. "error",
  9065. "flare",
  9066. "laravel",
  9067. "page"
  9068. ],
  9069. "support": {
  9070. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9071. "forum": "https://twitter.com/flareappio",
  9072. "issues": "https://github.com/facade/ignition/issues",
  9073. "source": "https://github.com/facade/ignition"
  9074. },
  9075. "time": "2021-11-29T14:04:22+00:00"
  9076. },
  9077. {
  9078. "name": "facade/ignition-contracts",
  9079. "version": "1.0.2",
  9080. "source": {
  9081. "type": "git",
  9082. "url": "https://github.com/facade/ignition-contracts.git",
  9083. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9084. },
  9085. "dist": {
  9086. "type": "zip",
  9087. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9088. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9089. "shasum": ""
  9090. },
  9091. "require": {
  9092. "php": "^7.3|^8.0"
  9093. },
  9094. "require-dev": {
  9095. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9096. "phpunit/phpunit": "^9.3.11",
  9097. "vimeo/psalm": "^3.17.1"
  9098. },
  9099. "type": "library",
  9100. "autoload": {
  9101. "psr-4": {
  9102. "Facade\\IgnitionContracts\\": "src"
  9103. }
  9104. },
  9105. "notification-url": "https://packagist.org/downloads/",
  9106. "license": [
  9107. "MIT"
  9108. ],
  9109. "authors": [
  9110. {
  9111. "name": "Freek Van der Herten",
  9112. "email": "freek@spatie.be",
  9113. "homepage": "https://flareapp.io",
  9114. "role": "Developer"
  9115. }
  9116. ],
  9117. "description": "Solution contracts for Ignition",
  9118. "homepage": "https://github.com/facade/ignition-contracts",
  9119. "keywords": [
  9120. "contracts",
  9121. "flare",
  9122. "ignition"
  9123. ],
  9124. "support": {
  9125. "issues": "https://github.com/facade/ignition-contracts/issues",
  9126. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9127. },
  9128. "time": "2020-10-16T08:27:54+00:00"
  9129. },
  9130. {
  9131. "name": "filp/whoops",
  9132. "version": "2.14.4",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/filp/whoops.git",
  9136. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  9141. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "php": "^5.5.9 || ^7.0 || ^8.0",
  9146. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9147. },
  9148. "require-dev": {
  9149. "mockery/mockery": "^0.9 || ^1.0",
  9150. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9151. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9152. },
  9153. "suggest": {
  9154. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9155. "whoops/soap": "Formats errors as SOAP responses"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "branch-alias": {
  9160. "dev-master": "2.7-dev"
  9161. }
  9162. },
  9163. "autoload": {
  9164. "psr-4": {
  9165. "Whoops\\": "src/Whoops/"
  9166. }
  9167. },
  9168. "notification-url": "https://packagist.org/downloads/",
  9169. "license": [
  9170. "MIT"
  9171. ],
  9172. "authors": [
  9173. {
  9174. "name": "Filipe Dobreira",
  9175. "homepage": "https://github.com/filp",
  9176. "role": "Developer"
  9177. }
  9178. ],
  9179. "description": "php error handling for cool kids",
  9180. "homepage": "https://filp.github.io/whoops/",
  9181. "keywords": [
  9182. "error",
  9183. "exception",
  9184. "handling",
  9185. "library",
  9186. "throwable",
  9187. "whoops"
  9188. ],
  9189. "support": {
  9190. "issues": "https://github.com/filp/whoops/issues",
  9191. "source": "https://github.com/filp/whoops/tree/2.14.4"
  9192. },
  9193. "funding": [
  9194. {
  9195. "url": "https://github.com/denis-sokolov",
  9196. "type": "github"
  9197. }
  9198. ],
  9199. "time": "2021-10-03T12:00:00+00:00"
  9200. },
  9201. {
  9202. "name": "fzaninotto/faker",
  9203. "version": "v1.9.2",
  9204. "source": {
  9205. "type": "git",
  9206. "url": "https://github.com/fzaninotto/Faker.git",
  9207. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  9208. },
  9209. "dist": {
  9210. "type": "zip",
  9211. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9212. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9213. "shasum": ""
  9214. },
  9215. "require": {
  9216. "php": "^5.3.3 || ^7.0"
  9217. },
  9218. "require-dev": {
  9219. "ext-intl": "*",
  9220. "phpunit/phpunit": "^4.8.35 || ^5.7",
  9221. "squizlabs/php_codesniffer": "^2.9.2"
  9222. },
  9223. "type": "library",
  9224. "extra": {
  9225. "branch-alias": {
  9226. "dev-master": "1.9-dev"
  9227. }
  9228. },
  9229. "autoload": {
  9230. "psr-4": {
  9231. "Faker\\": "src/Faker/"
  9232. }
  9233. },
  9234. "notification-url": "https://packagist.org/downloads/",
  9235. "license": [
  9236. "MIT"
  9237. ],
  9238. "authors": [
  9239. {
  9240. "name": "François Zaninotto"
  9241. }
  9242. ],
  9243. "description": "Faker is a PHP library that generates fake data for you.",
  9244. "keywords": [
  9245. "data",
  9246. "faker",
  9247. "fixtures"
  9248. ],
  9249. "support": {
  9250. "issues": "https://github.com/fzaninotto/Faker/issues",
  9251. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  9252. },
  9253. "abandoned": true,
  9254. "time": "2020-12-11T09:56:16+00:00"
  9255. },
  9256. {
  9257. "name": "hamcrest/hamcrest-php",
  9258. "version": "v2.0.1",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9262. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9267. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": "^5.3|^7.0|^8.0"
  9272. },
  9273. "replace": {
  9274. "cordoval/hamcrest-php": "*",
  9275. "davedevelopment/hamcrest-php": "*",
  9276. "kodova/hamcrest-php": "*"
  9277. },
  9278. "require-dev": {
  9279. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9280. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9281. },
  9282. "type": "library",
  9283. "extra": {
  9284. "branch-alias": {
  9285. "dev-master": "2.1-dev"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "classmap": [
  9290. "hamcrest"
  9291. ]
  9292. },
  9293. "notification-url": "https://packagist.org/downloads/",
  9294. "license": [
  9295. "BSD-3-Clause"
  9296. ],
  9297. "description": "This is the PHP port of Hamcrest Matchers",
  9298. "keywords": [
  9299. "test"
  9300. ],
  9301. "support": {
  9302. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9303. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9304. },
  9305. "time": "2020-07-09T08:09:16+00:00"
  9306. },
  9307. {
  9308. "name": "mockery/mockery",
  9309. "version": "1.4.4",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/mockery/mockery.git",
  9313. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  9318. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "hamcrest/hamcrest-php": "^2.0.1",
  9323. "lib-pcre": ">=7.0",
  9324. "php": "^7.3 || ^8.0"
  9325. },
  9326. "conflict": {
  9327. "phpunit/phpunit": "<8.0"
  9328. },
  9329. "require-dev": {
  9330. "phpunit/phpunit": "^8.5 || ^9.3"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "1.4.x-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-0": {
  9340. "Mockery": "library/"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Pádraic Brady",
  9350. "email": "padraic.brady@gmail.com",
  9351. "homepage": "http://blog.astrumfutura.com"
  9352. },
  9353. {
  9354. "name": "Dave Marshall",
  9355. "email": "dave.marshall@atstsolutions.co.uk",
  9356. "homepage": "http://davedevelopment.co.uk"
  9357. }
  9358. ],
  9359. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9360. "homepage": "https://github.com/mockery/mockery",
  9361. "keywords": [
  9362. "BDD",
  9363. "TDD",
  9364. "library",
  9365. "mock",
  9366. "mock objects",
  9367. "mockery",
  9368. "stub",
  9369. "test",
  9370. "test double",
  9371. "testing"
  9372. ],
  9373. "support": {
  9374. "issues": "https://github.com/mockery/mockery/issues",
  9375. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  9376. },
  9377. "time": "2021-09-13T15:28:59+00:00"
  9378. },
  9379. {
  9380. "name": "myclabs/deep-copy",
  9381. "version": "1.10.2",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/myclabs/DeepCopy.git",
  9385. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9390. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9391. "shasum": ""
  9392. },
  9393. "require": {
  9394. "php": "^7.1 || ^8.0"
  9395. },
  9396. "replace": {
  9397. "myclabs/deep-copy": "self.version"
  9398. },
  9399. "require-dev": {
  9400. "doctrine/collections": "^1.0",
  9401. "doctrine/common": "^2.6",
  9402. "phpunit/phpunit": "^7.1"
  9403. },
  9404. "type": "library",
  9405. "autoload": {
  9406. "psr-4": {
  9407. "DeepCopy\\": "src/DeepCopy/"
  9408. },
  9409. "files": [
  9410. "src/DeepCopy/deep_copy.php"
  9411. ]
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "MIT"
  9416. ],
  9417. "description": "Create deep copies (clones) of your objects",
  9418. "keywords": [
  9419. "clone",
  9420. "copy",
  9421. "duplicate",
  9422. "object",
  9423. "object graph"
  9424. ],
  9425. "support": {
  9426. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9427. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9432. "type": "tidelift"
  9433. }
  9434. ],
  9435. "time": "2020-11-13T09:40:50+00:00"
  9436. },
  9437. {
  9438. "name": "nunomaduro/collision",
  9439. "version": "v5.10.0",
  9440. "source": {
  9441. "type": "git",
  9442. "url": "https://github.com/nunomaduro/collision.git",
  9443. "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00"
  9444. },
  9445. "dist": {
  9446. "type": "zip",
  9447. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/3004cfa49c022183395eabc6d0e5207dfe498d00",
  9448. "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00",
  9449. "shasum": ""
  9450. },
  9451. "require": {
  9452. "facade/ignition-contracts": "^1.0",
  9453. "filp/whoops": "^2.14.3",
  9454. "php": "^7.3 || ^8.0",
  9455. "symfony/console": "^5.0"
  9456. },
  9457. "require-dev": {
  9458. "brianium/paratest": "^6.1",
  9459. "fideloper/proxy": "^4.4.1",
  9460. "fruitcake/laravel-cors": "^2.0.3",
  9461. "laravel/framework": "8.x-dev",
  9462. "nunomaduro/larastan": "^0.6.2",
  9463. "nunomaduro/mock-final-classes": "^1.0",
  9464. "orchestra/testbench": "^6.0",
  9465. "phpstan/phpstan": "^0.12.64",
  9466. "phpunit/phpunit": "^9.5.0"
  9467. },
  9468. "type": "library",
  9469. "extra": {
  9470. "laravel": {
  9471. "providers": [
  9472. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9473. ]
  9474. }
  9475. },
  9476. "autoload": {
  9477. "psr-4": {
  9478. "NunoMaduro\\Collision\\": "src/"
  9479. }
  9480. },
  9481. "notification-url": "https://packagist.org/downloads/",
  9482. "license": [
  9483. "MIT"
  9484. ],
  9485. "authors": [
  9486. {
  9487. "name": "Nuno Maduro",
  9488. "email": "enunomaduro@gmail.com"
  9489. }
  9490. ],
  9491. "description": "Cli error handling for console/command-line PHP applications.",
  9492. "keywords": [
  9493. "artisan",
  9494. "cli",
  9495. "command-line",
  9496. "console",
  9497. "error",
  9498. "handling",
  9499. "laravel",
  9500. "laravel-zero",
  9501. "php",
  9502. "symfony"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/nunomaduro/collision/issues",
  9506. "source": "https://github.com/nunomaduro/collision"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9511. "type": "custom"
  9512. },
  9513. {
  9514. "url": "https://github.com/nunomaduro",
  9515. "type": "github"
  9516. },
  9517. {
  9518. "url": "https://www.patreon.com/nunomaduro",
  9519. "type": "patreon"
  9520. }
  9521. ],
  9522. "time": "2021-09-20T15:06:32+00:00"
  9523. },
  9524. {
  9525. "name": "phar-io/manifest",
  9526. "version": "2.0.3",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/phar-io/manifest.git",
  9530. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9535. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "ext-dom": "*",
  9540. "ext-phar": "*",
  9541. "ext-xmlwriter": "*",
  9542. "phar-io/version": "^3.0.1",
  9543. "php": "^7.2 || ^8.0"
  9544. },
  9545. "type": "library",
  9546. "extra": {
  9547. "branch-alias": {
  9548. "dev-master": "2.0.x-dev"
  9549. }
  9550. },
  9551. "autoload": {
  9552. "classmap": [
  9553. "src/"
  9554. ]
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "BSD-3-Clause"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "Arne Blankerts",
  9563. "email": "arne@blankerts.de",
  9564. "role": "Developer"
  9565. },
  9566. {
  9567. "name": "Sebastian Heuer",
  9568. "email": "sebastian@phpeople.de",
  9569. "role": "Developer"
  9570. },
  9571. {
  9572. "name": "Sebastian Bergmann",
  9573. "email": "sebastian@phpunit.de",
  9574. "role": "Developer"
  9575. }
  9576. ],
  9577. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9578. "support": {
  9579. "issues": "https://github.com/phar-io/manifest/issues",
  9580. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9581. },
  9582. "time": "2021-07-20T11:28:43+00:00"
  9583. },
  9584. {
  9585. "name": "phar-io/version",
  9586. "version": "3.1.0",
  9587. "source": {
  9588. "type": "git",
  9589. "url": "https://github.com/phar-io/version.git",
  9590. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9591. },
  9592. "dist": {
  9593. "type": "zip",
  9594. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9595. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9596. "shasum": ""
  9597. },
  9598. "require": {
  9599. "php": "^7.2 || ^8.0"
  9600. },
  9601. "type": "library",
  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": "Arne Blankerts",
  9614. "email": "arne@blankerts.de",
  9615. "role": "Developer"
  9616. },
  9617. {
  9618. "name": "Sebastian Heuer",
  9619. "email": "sebastian@phpeople.de",
  9620. "role": "Developer"
  9621. },
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de",
  9625. "role": "Developer"
  9626. }
  9627. ],
  9628. "description": "Library for handling version information and constraints",
  9629. "support": {
  9630. "issues": "https://github.com/phar-io/version/issues",
  9631. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9632. },
  9633. "time": "2021-02-23T14:00:09+00:00"
  9634. },
  9635. {
  9636. "name": "phpdocumentor/reflection-common",
  9637. "version": "2.2.0",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9641. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9646. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": "^7.2 || ^8.0"
  9651. },
  9652. "type": "library",
  9653. "extra": {
  9654. "branch-alias": {
  9655. "dev-2.x": "2.x-dev"
  9656. }
  9657. },
  9658. "autoload": {
  9659. "psr-4": {
  9660. "phpDocumentor\\Reflection\\": "src/"
  9661. }
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Jaap van Otterdijk",
  9670. "email": "opensource@ijaap.nl"
  9671. }
  9672. ],
  9673. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9674. "homepage": "http://www.phpdoc.org",
  9675. "keywords": [
  9676. "FQSEN",
  9677. "phpDocumentor",
  9678. "phpdoc",
  9679. "reflection",
  9680. "static analysis"
  9681. ],
  9682. "support": {
  9683. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9684. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9685. },
  9686. "time": "2020-06-27T09:03:43+00:00"
  9687. },
  9688. {
  9689. "name": "phpdocumentor/reflection-docblock",
  9690. "version": "5.3.0",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9694. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  9699. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  9700. "shasum": ""
  9701. },
  9702. "require": {
  9703. "ext-filter": "*",
  9704. "php": "^7.2 || ^8.0",
  9705. "phpdocumentor/reflection-common": "^2.2",
  9706. "phpdocumentor/type-resolver": "^1.3",
  9707. "webmozart/assert": "^1.9.1"
  9708. },
  9709. "require-dev": {
  9710. "mockery/mockery": "~1.3.2",
  9711. "psalm/phar": "^4.8"
  9712. },
  9713. "type": "library",
  9714. "extra": {
  9715. "branch-alias": {
  9716. "dev-master": "5.x-dev"
  9717. }
  9718. },
  9719. "autoload": {
  9720. "psr-4": {
  9721. "phpDocumentor\\Reflection\\": "src"
  9722. }
  9723. },
  9724. "notification-url": "https://packagist.org/downloads/",
  9725. "license": [
  9726. "MIT"
  9727. ],
  9728. "authors": [
  9729. {
  9730. "name": "Mike van Riel",
  9731. "email": "me@mikevanriel.com"
  9732. },
  9733. {
  9734. "name": "Jaap van Otterdijk",
  9735. "email": "account@ijaap.nl"
  9736. }
  9737. ],
  9738. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9739. "support": {
  9740. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9741. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  9742. },
  9743. "time": "2021-10-19T17:43:47+00:00"
  9744. },
  9745. {
  9746. "name": "phpdocumentor/type-resolver",
  9747. "version": "1.5.1",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9751. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  9756. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  9757. "shasum": ""
  9758. },
  9759. "require": {
  9760. "php": "^7.2 || ^8.0",
  9761. "phpdocumentor/reflection-common": "^2.0"
  9762. },
  9763. "require-dev": {
  9764. "ext-tokenizer": "*",
  9765. "psalm/phar": "^4.8"
  9766. },
  9767. "type": "library",
  9768. "extra": {
  9769. "branch-alias": {
  9770. "dev-1.x": "1.x-dev"
  9771. }
  9772. },
  9773. "autoload": {
  9774. "psr-4": {
  9775. "phpDocumentor\\Reflection\\": "src"
  9776. }
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "MIT"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Mike van Riel",
  9785. "email": "me@mikevanriel.com"
  9786. }
  9787. ],
  9788. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9789. "support": {
  9790. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9791. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  9792. },
  9793. "time": "2021-10-02T14:08:47+00:00"
  9794. },
  9795. {
  9796. "name": "phpspec/prophecy",
  9797. "version": "v1.15.0",
  9798. "source": {
  9799. "type": "git",
  9800. "url": "https://github.com/phpspec/prophecy.git",
  9801. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  9802. },
  9803. "dist": {
  9804. "type": "zip",
  9805. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  9806. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  9807. "shasum": ""
  9808. },
  9809. "require": {
  9810. "doctrine/instantiator": "^1.2",
  9811. "php": "^7.2 || ~8.0, <8.2",
  9812. "phpdocumentor/reflection-docblock": "^5.2",
  9813. "sebastian/comparator": "^3.0 || ^4.0",
  9814. "sebastian/recursion-context": "^3.0 || ^4.0"
  9815. },
  9816. "require-dev": {
  9817. "phpspec/phpspec": "^6.0 || ^7.0",
  9818. "phpunit/phpunit": "^8.0 || ^9.0"
  9819. },
  9820. "type": "library",
  9821. "extra": {
  9822. "branch-alias": {
  9823. "dev-master": "1.x-dev"
  9824. }
  9825. },
  9826. "autoload": {
  9827. "psr-4": {
  9828. "Prophecy\\": "src/Prophecy"
  9829. }
  9830. },
  9831. "notification-url": "https://packagist.org/downloads/",
  9832. "license": [
  9833. "MIT"
  9834. ],
  9835. "authors": [
  9836. {
  9837. "name": "Konstantin Kudryashov",
  9838. "email": "ever.zet@gmail.com",
  9839. "homepage": "http://everzet.com"
  9840. },
  9841. {
  9842. "name": "Marcello Duarte",
  9843. "email": "marcello.duarte@gmail.com"
  9844. }
  9845. ],
  9846. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9847. "homepage": "https://github.com/phpspec/prophecy",
  9848. "keywords": [
  9849. "Double",
  9850. "Dummy",
  9851. "fake",
  9852. "mock",
  9853. "spy",
  9854. "stub"
  9855. ],
  9856. "support": {
  9857. "issues": "https://github.com/phpspec/prophecy/issues",
  9858. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  9859. },
  9860. "time": "2021-12-08T12:19:24+00:00"
  9861. },
  9862. {
  9863. "name": "phpunit/php-code-coverage",
  9864. "version": "9.2.10",
  9865. "source": {
  9866. "type": "git",
  9867. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9868. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
  9869. },
  9870. "dist": {
  9871. "type": "zip",
  9872. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
  9873. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
  9874. "shasum": ""
  9875. },
  9876. "require": {
  9877. "ext-dom": "*",
  9878. "ext-libxml": "*",
  9879. "ext-xmlwriter": "*",
  9880. "nikic/php-parser": "^4.13.0",
  9881. "php": ">=7.3",
  9882. "phpunit/php-file-iterator": "^3.0.3",
  9883. "phpunit/php-text-template": "^2.0.2",
  9884. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9885. "sebastian/complexity": "^2.0",
  9886. "sebastian/environment": "^5.1.2",
  9887. "sebastian/lines-of-code": "^1.0.3",
  9888. "sebastian/version": "^3.0.1",
  9889. "theseer/tokenizer": "^1.2.0"
  9890. },
  9891. "require-dev": {
  9892. "phpunit/phpunit": "^9.3"
  9893. },
  9894. "suggest": {
  9895. "ext-pcov": "*",
  9896. "ext-xdebug": "*"
  9897. },
  9898. "type": "library",
  9899. "extra": {
  9900. "branch-alias": {
  9901. "dev-master": "9.2-dev"
  9902. }
  9903. },
  9904. "autoload": {
  9905. "classmap": [
  9906. "src/"
  9907. ]
  9908. },
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "BSD-3-Clause"
  9912. ],
  9913. "authors": [
  9914. {
  9915. "name": "Sebastian Bergmann",
  9916. "email": "sebastian@phpunit.de",
  9917. "role": "lead"
  9918. }
  9919. ],
  9920. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9921. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9922. "keywords": [
  9923. "coverage",
  9924. "testing",
  9925. "xunit"
  9926. ],
  9927. "support": {
  9928. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9929. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
  9930. },
  9931. "funding": [
  9932. {
  9933. "url": "https://github.com/sebastianbergmann",
  9934. "type": "github"
  9935. }
  9936. ],
  9937. "time": "2021-12-05T09:12:13+00:00"
  9938. },
  9939. {
  9940. "name": "phpunit/php-file-iterator",
  9941. "version": "3.0.6",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9945. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9950. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9951. "shasum": ""
  9952. },
  9953. "require": {
  9954. "php": ">=7.3"
  9955. },
  9956. "require-dev": {
  9957. "phpunit/phpunit": "^9.3"
  9958. },
  9959. "type": "library",
  9960. "extra": {
  9961. "branch-alias": {
  9962. "dev-master": "3.0-dev"
  9963. }
  9964. },
  9965. "autoload": {
  9966. "classmap": [
  9967. "src/"
  9968. ]
  9969. },
  9970. "notification-url": "https://packagist.org/downloads/",
  9971. "license": [
  9972. "BSD-3-Clause"
  9973. ],
  9974. "authors": [
  9975. {
  9976. "name": "Sebastian Bergmann",
  9977. "email": "sebastian@phpunit.de",
  9978. "role": "lead"
  9979. }
  9980. ],
  9981. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9982. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9983. "keywords": [
  9984. "filesystem",
  9985. "iterator"
  9986. ],
  9987. "support": {
  9988. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9989. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9990. },
  9991. "funding": [
  9992. {
  9993. "url": "https://github.com/sebastianbergmann",
  9994. "type": "github"
  9995. }
  9996. ],
  9997. "time": "2021-12-02T12:48:52+00:00"
  9998. },
  9999. {
  10000. "name": "phpunit/php-invoker",
  10001. "version": "3.1.1",
  10002. "source": {
  10003. "type": "git",
  10004. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10005. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10006. },
  10007. "dist": {
  10008. "type": "zip",
  10009. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10010. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10011. "shasum": ""
  10012. },
  10013. "require": {
  10014. "php": ">=7.3"
  10015. },
  10016. "require-dev": {
  10017. "ext-pcntl": "*",
  10018. "phpunit/phpunit": "^9.3"
  10019. },
  10020. "suggest": {
  10021. "ext-pcntl": "*"
  10022. },
  10023. "type": "library",
  10024. "extra": {
  10025. "branch-alias": {
  10026. "dev-master": "3.1-dev"
  10027. }
  10028. },
  10029. "autoload": {
  10030. "classmap": [
  10031. "src/"
  10032. ]
  10033. },
  10034. "notification-url": "https://packagist.org/downloads/",
  10035. "license": [
  10036. "BSD-3-Clause"
  10037. ],
  10038. "authors": [
  10039. {
  10040. "name": "Sebastian Bergmann",
  10041. "email": "sebastian@phpunit.de",
  10042. "role": "lead"
  10043. }
  10044. ],
  10045. "description": "Invoke callables with a timeout",
  10046. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10047. "keywords": [
  10048. "process"
  10049. ],
  10050. "support": {
  10051. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10052. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10053. },
  10054. "funding": [
  10055. {
  10056. "url": "https://github.com/sebastianbergmann",
  10057. "type": "github"
  10058. }
  10059. ],
  10060. "time": "2020-09-28T05:58:55+00:00"
  10061. },
  10062. {
  10063. "name": "phpunit/php-text-template",
  10064. "version": "2.0.4",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10068. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10073. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10074. "shasum": ""
  10075. },
  10076. "require": {
  10077. "php": ">=7.3"
  10078. },
  10079. "require-dev": {
  10080. "phpunit/phpunit": "^9.3"
  10081. },
  10082. "type": "library",
  10083. "extra": {
  10084. "branch-alias": {
  10085. "dev-master": "2.0-dev"
  10086. }
  10087. },
  10088. "autoload": {
  10089. "classmap": [
  10090. "src/"
  10091. ]
  10092. },
  10093. "notification-url": "https://packagist.org/downloads/",
  10094. "license": [
  10095. "BSD-3-Clause"
  10096. ],
  10097. "authors": [
  10098. {
  10099. "name": "Sebastian Bergmann",
  10100. "email": "sebastian@phpunit.de",
  10101. "role": "lead"
  10102. }
  10103. ],
  10104. "description": "Simple template engine.",
  10105. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10106. "keywords": [
  10107. "template"
  10108. ],
  10109. "support": {
  10110. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10111. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://github.com/sebastianbergmann",
  10116. "type": "github"
  10117. }
  10118. ],
  10119. "time": "2020-10-26T05:33:50+00:00"
  10120. },
  10121. {
  10122. "name": "phpunit/php-timer",
  10123. "version": "5.0.3",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10127. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10132. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "php": ">=7.3"
  10137. },
  10138. "require-dev": {
  10139. "phpunit/phpunit": "^9.3"
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-master": "5.0-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "classmap": [
  10149. "src/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "BSD-3-Clause"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Sebastian Bergmann",
  10159. "email": "sebastian@phpunit.de",
  10160. "role": "lead"
  10161. }
  10162. ],
  10163. "description": "Utility class for timing",
  10164. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10165. "keywords": [
  10166. "timer"
  10167. ],
  10168. "support": {
  10169. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10170. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10171. },
  10172. "funding": [
  10173. {
  10174. "url": "https://github.com/sebastianbergmann",
  10175. "type": "github"
  10176. }
  10177. ],
  10178. "time": "2020-10-26T13:16:10+00:00"
  10179. },
  10180. {
  10181. "name": "phpunit/phpunit",
  10182. "version": "9.5.10",
  10183. "source": {
  10184. "type": "git",
  10185. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10186. "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a"
  10187. },
  10188. "dist": {
  10189. "type": "zip",
  10190. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a",
  10191. "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a",
  10192. "shasum": ""
  10193. },
  10194. "require": {
  10195. "doctrine/instantiator": "^1.3.1",
  10196. "ext-dom": "*",
  10197. "ext-json": "*",
  10198. "ext-libxml": "*",
  10199. "ext-mbstring": "*",
  10200. "ext-xml": "*",
  10201. "ext-xmlwriter": "*",
  10202. "myclabs/deep-copy": "^1.10.1",
  10203. "phar-io/manifest": "^2.0.3",
  10204. "phar-io/version": "^3.0.2",
  10205. "php": ">=7.3",
  10206. "phpspec/prophecy": "^1.12.1",
  10207. "phpunit/php-code-coverage": "^9.2.7",
  10208. "phpunit/php-file-iterator": "^3.0.5",
  10209. "phpunit/php-invoker": "^3.1.1",
  10210. "phpunit/php-text-template": "^2.0.3",
  10211. "phpunit/php-timer": "^5.0.2",
  10212. "sebastian/cli-parser": "^1.0.1",
  10213. "sebastian/code-unit": "^1.0.6",
  10214. "sebastian/comparator": "^4.0.5",
  10215. "sebastian/diff": "^4.0.3",
  10216. "sebastian/environment": "^5.1.3",
  10217. "sebastian/exporter": "^4.0.3",
  10218. "sebastian/global-state": "^5.0.1",
  10219. "sebastian/object-enumerator": "^4.0.3",
  10220. "sebastian/resource-operations": "^3.0.3",
  10221. "sebastian/type": "^2.3.4",
  10222. "sebastian/version": "^3.0.2"
  10223. },
  10224. "require-dev": {
  10225. "ext-pdo": "*",
  10226. "phpspec/prophecy-phpunit": "^2.0.1"
  10227. },
  10228. "suggest": {
  10229. "ext-soap": "*",
  10230. "ext-xdebug": "*"
  10231. },
  10232. "bin": [
  10233. "phpunit"
  10234. ],
  10235. "type": "library",
  10236. "extra": {
  10237. "branch-alias": {
  10238. "dev-master": "9.5-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "classmap": [
  10243. "src/"
  10244. ],
  10245. "files": [
  10246. "src/Framework/Assert/Functions.php"
  10247. ]
  10248. },
  10249. "notification-url": "https://packagist.org/downloads/",
  10250. "license": [
  10251. "BSD-3-Clause"
  10252. ],
  10253. "authors": [
  10254. {
  10255. "name": "Sebastian Bergmann",
  10256. "email": "sebastian@phpunit.de",
  10257. "role": "lead"
  10258. }
  10259. ],
  10260. "description": "The PHP Unit Testing framework.",
  10261. "homepage": "https://phpunit.de/",
  10262. "keywords": [
  10263. "phpunit",
  10264. "testing",
  10265. "xunit"
  10266. ],
  10267. "support": {
  10268. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10269. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10"
  10270. },
  10271. "funding": [
  10272. {
  10273. "url": "https://phpunit.de/donate.html",
  10274. "type": "custom"
  10275. },
  10276. {
  10277. "url": "https://github.com/sebastianbergmann",
  10278. "type": "github"
  10279. }
  10280. ],
  10281. "time": "2021-09-25T07:38:51+00:00"
  10282. },
  10283. {
  10284. "name": "sebastian/cli-parser",
  10285. "version": "1.0.1",
  10286. "source": {
  10287. "type": "git",
  10288. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10289. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10290. },
  10291. "dist": {
  10292. "type": "zip",
  10293. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10294. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10295. "shasum": ""
  10296. },
  10297. "require": {
  10298. "php": ">=7.3"
  10299. },
  10300. "require-dev": {
  10301. "phpunit/phpunit": "^9.3"
  10302. },
  10303. "type": "library",
  10304. "extra": {
  10305. "branch-alias": {
  10306. "dev-master": "1.0-dev"
  10307. }
  10308. },
  10309. "autoload": {
  10310. "classmap": [
  10311. "src/"
  10312. ]
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "BSD-3-Clause"
  10317. ],
  10318. "authors": [
  10319. {
  10320. "name": "Sebastian Bergmann",
  10321. "email": "sebastian@phpunit.de",
  10322. "role": "lead"
  10323. }
  10324. ],
  10325. "description": "Library for parsing CLI options",
  10326. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10327. "support": {
  10328. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10329. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10330. },
  10331. "funding": [
  10332. {
  10333. "url": "https://github.com/sebastianbergmann",
  10334. "type": "github"
  10335. }
  10336. ],
  10337. "time": "2020-09-28T06:08:49+00:00"
  10338. },
  10339. {
  10340. "name": "sebastian/code-unit",
  10341. "version": "1.0.8",
  10342. "source": {
  10343. "type": "git",
  10344. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10345. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10346. },
  10347. "dist": {
  10348. "type": "zip",
  10349. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10350. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10351. "shasum": ""
  10352. },
  10353. "require": {
  10354. "php": ">=7.3"
  10355. },
  10356. "require-dev": {
  10357. "phpunit/phpunit": "^9.3"
  10358. },
  10359. "type": "library",
  10360. "extra": {
  10361. "branch-alias": {
  10362. "dev-master": "1.0-dev"
  10363. }
  10364. },
  10365. "autoload": {
  10366. "classmap": [
  10367. "src/"
  10368. ]
  10369. },
  10370. "notification-url": "https://packagist.org/downloads/",
  10371. "license": [
  10372. "BSD-3-Clause"
  10373. ],
  10374. "authors": [
  10375. {
  10376. "name": "Sebastian Bergmann",
  10377. "email": "sebastian@phpunit.de",
  10378. "role": "lead"
  10379. }
  10380. ],
  10381. "description": "Collection of value objects that represent the PHP code units",
  10382. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10383. "support": {
  10384. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10385. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://github.com/sebastianbergmann",
  10390. "type": "github"
  10391. }
  10392. ],
  10393. "time": "2020-10-26T13:08:54+00:00"
  10394. },
  10395. {
  10396. "name": "sebastian/code-unit-reverse-lookup",
  10397. "version": "2.0.3",
  10398. "source": {
  10399. "type": "git",
  10400. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10401. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10402. },
  10403. "dist": {
  10404. "type": "zip",
  10405. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10406. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10407. "shasum": ""
  10408. },
  10409. "require": {
  10410. "php": ">=7.3"
  10411. },
  10412. "require-dev": {
  10413. "phpunit/phpunit": "^9.3"
  10414. },
  10415. "type": "library",
  10416. "extra": {
  10417. "branch-alias": {
  10418. "dev-master": "2.0-dev"
  10419. }
  10420. },
  10421. "autoload": {
  10422. "classmap": [
  10423. "src/"
  10424. ]
  10425. },
  10426. "notification-url": "https://packagist.org/downloads/",
  10427. "license": [
  10428. "BSD-3-Clause"
  10429. ],
  10430. "authors": [
  10431. {
  10432. "name": "Sebastian Bergmann",
  10433. "email": "sebastian@phpunit.de"
  10434. }
  10435. ],
  10436. "description": "Looks up which function or method a line of code belongs to",
  10437. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10438. "support": {
  10439. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10440. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10441. },
  10442. "funding": [
  10443. {
  10444. "url": "https://github.com/sebastianbergmann",
  10445. "type": "github"
  10446. }
  10447. ],
  10448. "time": "2020-09-28T05:30:19+00:00"
  10449. },
  10450. {
  10451. "name": "sebastian/comparator",
  10452. "version": "4.0.6",
  10453. "source": {
  10454. "type": "git",
  10455. "url": "https://github.com/sebastianbergmann/comparator.git",
  10456. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10457. },
  10458. "dist": {
  10459. "type": "zip",
  10460. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10461. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10462. "shasum": ""
  10463. },
  10464. "require": {
  10465. "php": ">=7.3",
  10466. "sebastian/diff": "^4.0",
  10467. "sebastian/exporter": "^4.0"
  10468. },
  10469. "require-dev": {
  10470. "phpunit/phpunit": "^9.3"
  10471. },
  10472. "type": "library",
  10473. "extra": {
  10474. "branch-alias": {
  10475. "dev-master": "4.0-dev"
  10476. }
  10477. },
  10478. "autoload": {
  10479. "classmap": [
  10480. "src/"
  10481. ]
  10482. },
  10483. "notification-url": "https://packagist.org/downloads/",
  10484. "license": [
  10485. "BSD-3-Clause"
  10486. ],
  10487. "authors": [
  10488. {
  10489. "name": "Sebastian Bergmann",
  10490. "email": "sebastian@phpunit.de"
  10491. },
  10492. {
  10493. "name": "Jeff Welch",
  10494. "email": "whatthejeff@gmail.com"
  10495. },
  10496. {
  10497. "name": "Volker Dusch",
  10498. "email": "github@wallbash.com"
  10499. },
  10500. {
  10501. "name": "Bernhard Schussek",
  10502. "email": "bschussek@2bepublished.at"
  10503. }
  10504. ],
  10505. "description": "Provides the functionality to compare PHP values for equality",
  10506. "homepage": "https://github.com/sebastianbergmann/comparator",
  10507. "keywords": [
  10508. "comparator",
  10509. "compare",
  10510. "equality"
  10511. ],
  10512. "support": {
  10513. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10514. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10515. },
  10516. "funding": [
  10517. {
  10518. "url": "https://github.com/sebastianbergmann",
  10519. "type": "github"
  10520. }
  10521. ],
  10522. "time": "2020-10-26T15:49:45+00:00"
  10523. },
  10524. {
  10525. "name": "sebastian/complexity",
  10526. "version": "2.0.2",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/sebastianbergmann/complexity.git",
  10530. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10535. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10536. "shasum": ""
  10537. },
  10538. "require": {
  10539. "nikic/php-parser": "^4.7",
  10540. "php": ">=7.3"
  10541. },
  10542. "require-dev": {
  10543. "phpunit/phpunit": "^9.3"
  10544. },
  10545. "type": "library",
  10546. "extra": {
  10547. "branch-alias": {
  10548. "dev-master": "2.0-dev"
  10549. }
  10550. },
  10551. "autoload": {
  10552. "classmap": [
  10553. "src/"
  10554. ]
  10555. },
  10556. "notification-url": "https://packagist.org/downloads/",
  10557. "license": [
  10558. "BSD-3-Clause"
  10559. ],
  10560. "authors": [
  10561. {
  10562. "name": "Sebastian Bergmann",
  10563. "email": "sebastian@phpunit.de",
  10564. "role": "lead"
  10565. }
  10566. ],
  10567. "description": "Library for calculating the complexity of PHP code units",
  10568. "homepage": "https://github.com/sebastianbergmann/complexity",
  10569. "support": {
  10570. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10571. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://github.com/sebastianbergmann",
  10576. "type": "github"
  10577. }
  10578. ],
  10579. "time": "2020-10-26T15:52:27+00:00"
  10580. },
  10581. {
  10582. "name": "sebastian/diff",
  10583. "version": "4.0.4",
  10584. "source": {
  10585. "type": "git",
  10586. "url": "https://github.com/sebastianbergmann/diff.git",
  10587. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10588. },
  10589. "dist": {
  10590. "type": "zip",
  10591. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10592. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10593. "shasum": ""
  10594. },
  10595. "require": {
  10596. "php": ">=7.3"
  10597. },
  10598. "require-dev": {
  10599. "phpunit/phpunit": "^9.3",
  10600. "symfony/process": "^4.2 || ^5"
  10601. },
  10602. "type": "library",
  10603. "extra": {
  10604. "branch-alias": {
  10605. "dev-master": "4.0-dev"
  10606. }
  10607. },
  10608. "autoload": {
  10609. "classmap": [
  10610. "src/"
  10611. ]
  10612. },
  10613. "notification-url": "https://packagist.org/downloads/",
  10614. "license": [
  10615. "BSD-3-Clause"
  10616. ],
  10617. "authors": [
  10618. {
  10619. "name": "Sebastian Bergmann",
  10620. "email": "sebastian@phpunit.de"
  10621. },
  10622. {
  10623. "name": "Kore Nordmann",
  10624. "email": "mail@kore-nordmann.de"
  10625. }
  10626. ],
  10627. "description": "Diff implementation",
  10628. "homepage": "https://github.com/sebastianbergmann/diff",
  10629. "keywords": [
  10630. "diff",
  10631. "udiff",
  10632. "unidiff",
  10633. "unified diff"
  10634. ],
  10635. "support": {
  10636. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10637. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10638. },
  10639. "funding": [
  10640. {
  10641. "url": "https://github.com/sebastianbergmann",
  10642. "type": "github"
  10643. }
  10644. ],
  10645. "time": "2020-10-26T13:10:38+00:00"
  10646. },
  10647. {
  10648. "name": "sebastian/environment",
  10649. "version": "5.1.3",
  10650. "source": {
  10651. "type": "git",
  10652. "url": "https://github.com/sebastianbergmann/environment.git",
  10653. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10654. },
  10655. "dist": {
  10656. "type": "zip",
  10657. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10658. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10659. "shasum": ""
  10660. },
  10661. "require": {
  10662. "php": ">=7.3"
  10663. },
  10664. "require-dev": {
  10665. "phpunit/phpunit": "^9.3"
  10666. },
  10667. "suggest": {
  10668. "ext-posix": "*"
  10669. },
  10670. "type": "library",
  10671. "extra": {
  10672. "branch-alias": {
  10673. "dev-master": "5.1-dev"
  10674. }
  10675. },
  10676. "autoload": {
  10677. "classmap": [
  10678. "src/"
  10679. ]
  10680. },
  10681. "notification-url": "https://packagist.org/downloads/",
  10682. "license": [
  10683. "BSD-3-Clause"
  10684. ],
  10685. "authors": [
  10686. {
  10687. "name": "Sebastian Bergmann",
  10688. "email": "sebastian@phpunit.de"
  10689. }
  10690. ],
  10691. "description": "Provides functionality to handle HHVM/PHP environments",
  10692. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10693. "keywords": [
  10694. "Xdebug",
  10695. "environment",
  10696. "hhvm"
  10697. ],
  10698. "support": {
  10699. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10700. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10701. },
  10702. "funding": [
  10703. {
  10704. "url": "https://github.com/sebastianbergmann",
  10705. "type": "github"
  10706. }
  10707. ],
  10708. "time": "2020-09-28T05:52:38+00:00"
  10709. },
  10710. {
  10711. "name": "sebastian/exporter",
  10712. "version": "4.0.4",
  10713. "source": {
  10714. "type": "git",
  10715. "url": "https://github.com/sebastianbergmann/exporter.git",
  10716. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  10717. },
  10718. "dist": {
  10719. "type": "zip",
  10720. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10721. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10722. "shasum": ""
  10723. },
  10724. "require": {
  10725. "php": ">=7.3",
  10726. "sebastian/recursion-context": "^4.0"
  10727. },
  10728. "require-dev": {
  10729. "ext-mbstring": "*",
  10730. "phpunit/phpunit": "^9.3"
  10731. },
  10732. "type": "library",
  10733. "extra": {
  10734. "branch-alias": {
  10735. "dev-master": "4.0-dev"
  10736. }
  10737. },
  10738. "autoload": {
  10739. "classmap": [
  10740. "src/"
  10741. ]
  10742. },
  10743. "notification-url": "https://packagist.org/downloads/",
  10744. "license": [
  10745. "BSD-3-Clause"
  10746. ],
  10747. "authors": [
  10748. {
  10749. "name": "Sebastian Bergmann",
  10750. "email": "sebastian@phpunit.de"
  10751. },
  10752. {
  10753. "name": "Jeff Welch",
  10754. "email": "whatthejeff@gmail.com"
  10755. },
  10756. {
  10757. "name": "Volker Dusch",
  10758. "email": "github@wallbash.com"
  10759. },
  10760. {
  10761. "name": "Adam Harvey",
  10762. "email": "aharvey@php.net"
  10763. },
  10764. {
  10765. "name": "Bernhard Schussek",
  10766. "email": "bschussek@gmail.com"
  10767. }
  10768. ],
  10769. "description": "Provides the functionality to export PHP variables for visualization",
  10770. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10771. "keywords": [
  10772. "export",
  10773. "exporter"
  10774. ],
  10775. "support": {
  10776. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10777. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  10778. },
  10779. "funding": [
  10780. {
  10781. "url": "https://github.com/sebastianbergmann",
  10782. "type": "github"
  10783. }
  10784. ],
  10785. "time": "2021-11-11T14:18:36+00:00"
  10786. },
  10787. {
  10788. "name": "sebastian/global-state",
  10789. "version": "5.0.3",
  10790. "source": {
  10791. "type": "git",
  10792. "url": "https://github.com/sebastianbergmann/global-state.git",
  10793. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
  10794. },
  10795. "dist": {
  10796. "type": "zip",
  10797. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  10798. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  10799. "shasum": ""
  10800. },
  10801. "require": {
  10802. "php": ">=7.3",
  10803. "sebastian/object-reflector": "^2.0",
  10804. "sebastian/recursion-context": "^4.0"
  10805. },
  10806. "require-dev": {
  10807. "ext-dom": "*",
  10808. "phpunit/phpunit": "^9.3"
  10809. },
  10810. "suggest": {
  10811. "ext-uopz": "*"
  10812. },
  10813. "type": "library",
  10814. "extra": {
  10815. "branch-alias": {
  10816. "dev-master": "5.0-dev"
  10817. }
  10818. },
  10819. "autoload": {
  10820. "classmap": [
  10821. "src/"
  10822. ]
  10823. },
  10824. "notification-url": "https://packagist.org/downloads/",
  10825. "license": [
  10826. "BSD-3-Clause"
  10827. ],
  10828. "authors": [
  10829. {
  10830. "name": "Sebastian Bergmann",
  10831. "email": "sebastian@phpunit.de"
  10832. }
  10833. ],
  10834. "description": "Snapshotting of global state",
  10835. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10836. "keywords": [
  10837. "global state"
  10838. ],
  10839. "support": {
  10840. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10841. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
  10842. },
  10843. "funding": [
  10844. {
  10845. "url": "https://github.com/sebastianbergmann",
  10846. "type": "github"
  10847. }
  10848. ],
  10849. "time": "2021-06-11T13:31:12+00:00"
  10850. },
  10851. {
  10852. "name": "sebastian/lines-of-code",
  10853. "version": "1.0.3",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10857. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10862. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "nikic/php-parser": "^4.6",
  10867. "php": ">=7.3"
  10868. },
  10869. "require-dev": {
  10870. "phpunit/phpunit": "^9.3"
  10871. },
  10872. "type": "library",
  10873. "extra": {
  10874. "branch-alias": {
  10875. "dev-master": "1.0-dev"
  10876. }
  10877. },
  10878. "autoload": {
  10879. "classmap": [
  10880. "src/"
  10881. ]
  10882. },
  10883. "notification-url": "https://packagist.org/downloads/",
  10884. "license": [
  10885. "BSD-3-Clause"
  10886. ],
  10887. "authors": [
  10888. {
  10889. "name": "Sebastian Bergmann",
  10890. "email": "sebastian@phpunit.de",
  10891. "role": "lead"
  10892. }
  10893. ],
  10894. "description": "Library for counting the lines of code in PHP source code",
  10895. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10896. "support": {
  10897. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10898. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10899. },
  10900. "funding": [
  10901. {
  10902. "url": "https://github.com/sebastianbergmann",
  10903. "type": "github"
  10904. }
  10905. ],
  10906. "time": "2020-11-28T06:42:11+00:00"
  10907. },
  10908. {
  10909. "name": "sebastian/object-enumerator",
  10910. "version": "4.0.4",
  10911. "source": {
  10912. "type": "git",
  10913. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10914. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10915. },
  10916. "dist": {
  10917. "type": "zip",
  10918. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10919. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10920. "shasum": ""
  10921. },
  10922. "require": {
  10923. "php": ">=7.3",
  10924. "sebastian/object-reflector": "^2.0",
  10925. "sebastian/recursion-context": "^4.0"
  10926. },
  10927. "require-dev": {
  10928. "phpunit/phpunit": "^9.3"
  10929. },
  10930. "type": "library",
  10931. "extra": {
  10932. "branch-alias": {
  10933. "dev-master": "4.0-dev"
  10934. }
  10935. },
  10936. "autoload": {
  10937. "classmap": [
  10938. "src/"
  10939. ]
  10940. },
  10941. "notification-url": "https://packagist.org/downloads/",
  10942. "license": [
  10943. "BSD-3-Clause"
  10944. ],
  10945. "authors": [
  10946. {
  10947. "name": "Sebastian Bergmann",
  10948. "email": "sebastian@phpunit.de"
  10949. }
  10950. ],
  10951. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10952. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10953. "support": {
  10954. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10955. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10956. },
  10957. "funding": [
  10958. {
  10959. "url": "https://github.com/sebastianbergmann",
  10960. "type": "github"
  10961. }
  10962. ],
  10963. "time": "2020-10-26T13:12:34+00:00"
  10964. },
  10965. {
  10966. "name": "sebastian/object-reflector",
  10967. "version": "2.0.4",
  10968. "source": {
  10969. "type": "git",
  10970. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10971. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10972. },
  10973. "dist": {
  10974. "type": "zip",
  10975. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10976. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10977. "shasum": ""
  10978. },
  10979. "require": {
  10980. "php": ">=7.3"
  10981. },
  10982. "require-dev": {
  10983. "phpunit/phpunit": "^9.3"
  10984. },
  10985. "type": "library",
  10986. "extra": {
  10987. "branch-alias": {
  10988. "dev-master": "2.0-dev"
  10989. }
  10990. },
  10991. "autoload": {
  10992. "classmap": [
  10993. "src/"
  10994. ]
  10995. },
  10996. "notification-url": "https://packagist.org/downloads/",
  10997. "license": [
  10998. "BSD-3-Clause"
  10999. ],
  11000. "authors": [
  11001. {
  11002. "name": "Sebastian Bergmann",
  11003. "email": "sebastian@phpunit.de"
  11004. }
  11005. ],
  11006. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11007. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11008. "support": {
  11009. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11010. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11011. },
  11012. "funding": [
  11013. {
  11014. "url": "https://github.com/sebastianbergmann",
  11015. "type": "github"
  11016. }
  11017. ],
  11018. "time": "2020-10-26T13:14:26+00:00"
  11019. },
  11020. {
  11021. "name": "sebastian/recursion-context",
  11022. "version": "4.0.4",
  11023. "source": {
  11024. "type": "git",
  11025. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11026. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11027. },
  11028. "dist": {
  11029. "type": "zip",
  11030. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11031. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11032. "shasum": ""
  11033. },
  11034. "require": {
  11035. "php": ">=7.3"
  11036. },
  11037. "require-dev": {
  11038. "phpunit/phpunit": "^9.3"
  11039. },
  11040. "type": "library",
  11041. "extra": {
  11042. "branch-alias": {
  11043. "dev-master": "4.0-dev"
  11044. }
  11045. },
  11046. "autoload": {
  11047. "classmap": [
  11048. "src/"
  11049. ]
  11050. },
  11051. "notification-url": "https://packagist.org/downloads/",
  11052. "license": [
  11053. "BSD-3-Clause"
  11054. ],
  11055. "authors": [
  11056. {
  11057. "name": "Sebastian Bergmann",
  11058. "email": "sebastian@phpunit.de"
  11059. },
  11060. {
  11061. "name": "Jeff Welch",
  11062. "email": "whatthejeff@gmail.com"
  11063. },
  11064. {
  11065. "name": "Adam Harvey",
  11066. "email": "aharvey@php.net"
  11067. }
  11068. ],
  11069. "description": "Provides functionality to recursively process PHP variables",
  11070. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11071. "support": {
  11072. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11073. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11074. },
  11075. "funding": [
  11076. {
  11077. "url": "https://github.com/sebastianbergmann",
  11078. "type": "github"
  11079. }
  11080. ],
  11081. "time": "2020-10-26T13:17:30+00:00"
  11082. },
  11083. {
  11084. "name": "sebastian/resource-operations",
  11085. "version": "3.0.3",
  11086. "source": {
  11087. "type": "git",
  11088. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11089. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11090. },
  11091. "dist": {
  11092. "type": "zip",
  11093. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11094. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11095. "shasum": ""
  11096. },
  11097. "require": {
  11098. "php": ">=7.3"
  11099. },
  11100. "require-dev": {
  11101. "phpunit/phpunit": "^9.0"
  11102. },
  11103. "type": "library",
  11104. "extra": {
  11105. "branch-alias": {
  11106. "dev-master": "3.0-dev"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "classmap": [
  11111. "src/"
  11112. ]
  11113. },
  11114. "notification-url": "https://packagist.org/downloads/",
  11115. "license": [
  11116. "BSD-3-Clause"
  11117. ],
  11118. "authors": [
  11119. {
  11120. "name": "Sebastian Bergmann",
  11121. "email": "sebastian@phpunit.de"
  11122. }
  11123. ],
  11124. "description": "Provides a list of PHP built-in functions that operate on resources",
  11125. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11126. "support": {
  11127. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11128. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11129. },
  11130. "funding": [
  11131. {
  11132. "url": "https://github.com/sebastianbergmann",
  11133. "type": "github"
  11134. }
  11135. ],
  11136. "time": "2020-09-28T06:45:17+00:00"
  11137. },
  11138. {
  11139. "name": "sebastian/type",
  11140. "version": "2.3.4",
  11141. "source": {
  11142. "type": "git",
  11143. "url": "https://github.com/sebastianbergmann/type.git",
  11144. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  11145. },
  11146. "dist": {
  11147. "type": "zip",
  11148. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  11149. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  11150. "shasum": ""
  11151. },
  11152. "require": {
  11153. "php": ">=7.3"
  11154. },
  11155. "require-dev": {
  11156. "phpunit/phpunit": "^9.3"
  11157. },
  11158. "type": "library",
  11159. "extra": {
  11160. "branch-alias": {
  11161. "dev-master": "2.3-dev"
  11162. }
  11163. },
  11164. "autoload": {
  11165. "classmap": [
  11166. "src/"
  11167. ]
  11168. },
  11169. "notification-url": "https://packagist.org/downloads/",
  11170. "license": [
  11171. "BSD-3-Clause"
  11172. ],
  11173. "authors": [
  11174. {
  11175. "name": "Sebastian Bergmann",
  11176. "email": "sebastian@phpunit.de",
  11177. "role": "lead"
  11178. }
  11179. ],
  11180. "description": "Collection of value objects that represent the types of the PHP type system",
  11181. "homepage": "https://github.com/sebastianbergmann/type",
  11182. "support": {
  11183. "issues": "https://github.com/sebastianbergmann/type/issues",
  11184. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  11185. },
  11186. "funding": [
  11187. {
  11188. "url": "https://github.com/sebastianbergmann",
  11189. "type": "github"
  11190. }
  11191. ],
  11192. "time": "2021-06-15T12:49:02+00:00"
  11193. },
  11194. {
  11195. "name": "sebastian/version",
  11196. "version": "3.0.2",
  11197. "source": {
  11198. "type": "git",
  11199. "url": "https://github.com/sebastianbergmann/version.git",
  11200. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11201. },
  11202. "dist": {
  11203. "type": "zip",
  11204. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11205. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11206. "shasum": ""
  11207. },
  11208. "require": {
  11209. "php": ">=7.3"
  11210. },
  11211. "type": "library",
  11212. "extra": {
  11213. "branch-alias": {
  11214. "dev-master": "3.0-dev"
  11215. }
  11216. },
  11217. "autoload": {
  11218. "classmap": [
  11219. "src/"
  11220. ]
  11221. },
  11222. "notification-url": "https://packagist.org/downloads/",
  11223. "license": [
  11224. "BSD-3-Clause"
  11225. ],
  11226. "authors": [
  11227. {
  11228. "name": "Sebastian Bergmann",
  11229. "email": "sebastian@phpunit.de",
  11230. "role": "lead"
  11231. }
  11232. ],
  11233. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11234. "homepage": "https://github.com/sebastianbergmann/version",
  11235. "support": {
  11236. "issues": "https://github.com/sebastianbergmann/version/issues",
  11237. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11238. },
  11239. "funding": [
  11240. {
  11241. "url": "https://github.com/sebastianbergmann",
  11242. "type": "github"
  11243. }
  11244. ],
  11245. "time": "2020-09-28T06:39:44+00:00"
  11246. },
  11247. {
  11248. "name": "theseer/tokenizer",
  11249. "version": "1.2.1",
  11250. "source": {
  11251. "type": "git",
  11252. "url": "https://github.com/theseer/tokenizer.git",
  11253. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11254. },
  11255. "dist": {
  11256. "type": "zip",
  11257. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11258. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11259. "shasum": ""
  11260. },
  11261. "require": {
  11262. "ext-dom": "*",
  11263. "ext-tokenizer": "*",
  11264. "ext-xmlwriter": "*",
  11265. "php": "^7.2 || ^8.0"
  11266. },
  11267. "type": "library",
  11268. "autoload": {
  11269. "classmap": [
  11270. "src/"
  11271. ]
  11272. },
  11273. "notification-url": "https://packagist.org/downloads/",
  11274. "license": [
  11275. "BSD-3-Clause"
  11276. ],
  11277. "authors": [
  11278. {
  11279. "name": "Arne Blankerts",
  11280. "email": "arne@blankerts.de",
  11281. "role": "Developer"
  11282. }
  11283. ],
  11284. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11285. "support": {
  11286. "issues": "https://github.com/theseer/tokenizer/issues",
  11287. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11288. },
  11289. "funding": [
  11290. {
  11291. "url": "https://github.com/theseer",
  11292. "type": "github"
  11293. }
  11294. ],
  11295. "time": "2021-07-28T10:34:58+00:00"
  11296. }
  11297. ],
  11298. "aliases": [],
  11299. "minimum-stability": "dev",
  11300. "stability-flags": [],
  11301. "prefer-stable": true,
  11302. "prefer-lowest": false,
  11303. "platform": {
  11304. "php": "^7.4|^8.0",
  11305. "ext-bcmath": "*",
  11306. "ext-ctype": "*",
  11307. "ext-curl": "*",
  11308. "ext-intl": "*",
  11309. "ext-json": "*",
  11310. "ext-mbstring": "*",
  11311. "ext-openssl": "*"
  11312. },
  11313. "platform-dev": [],
  11314. "plugin-api-version": "2.1.0"
  11315. }