composer.lock 299 KB

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