composer.lock 211 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809
  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": "ca5097cc916877770f4df0896177853e",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "brick/math",
  12. "version": "0.10.2",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/brick/math.git",
  16. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  21. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": "^7.4 || ^8.0"
  27. },
  28. "require-dev": {
  29. "php-coveralls/php-coveralls": "^2.2",
  30. "phpunit/phpunit": "^9.0",
  31. "vimeo/psalm": "4.25.0"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-4": {
  36. "Brick\\Math\\": "src/"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "description": "Arbitrary-precision arithmetic library",
  44. "keywords": [
  45. "Arbitrary-precision",
  46. "BigInteger",
  47. "BigRational",
  48. "arithmetic",
  49. "bigdecimal",
  50. "bignum",
  51. "brick",
  52. "math"
  53. ],
  54. "support": {
  55. "issues": "https://github.com/brick/math/issues",
  56. "source": "https://github.com/brick/math/tree/0.10.2"
  57. },
  58. "funding": [
  59. {
  60. "url": "https://github.com/BenMorel",
  61. "type": "github"
  62. }
  63. ],
  64. "time": "2022-08-10T22:54:19+00:00"
  65. },
  66. {
  67. "name": "container-interop/container-interop",
  68. "version": "1.2.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/container-interop/container-interop.git",
  72. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  77. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  78. "shasum": ""
  79. },
  80. "require": {
  81. "psr/container": "^1.0"
  82. },
  83. "type": "library",
  84. "autoload": {
  85. "psr-4": {
  86. "Interop\\Container\\": "src/Interop/Container/"
  87. }
  88. },
  89. "notification-url": "https://packagist.org/downloads/",
  90. "license": [
  91. "MIT"
  92. ],
  93. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  94. "homepage": "https://github.com/container-interop/container-interop",
  95. "support": {
  96. "issues": "https://github.com/container-interop/container-interop/issues",
  97. "source": "https://github.com/container-interop/container-interop/tree/master"
  98. },
  99. "abandoned": "psr/container",
  100. "time": "2017-02-14T19:40:03+00:00"
  101. },
  102. {
  103. "name": "doctrine/inflector",
  104. "version": "2.0.5",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/doctrine/inflector.git",
  108. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  113. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  114. "shasum": ""
  115. },
  116. "require": {
  117. "php": "^7.2 || ^8.0"
  118. },
  119. "require-dev": {
  120. "doctrine/coding-standard": "^9",
  121. "phpstan/phpstan": "^1.8",
  122. "phpstan/phpstan-phpunit": "^1.1",
  123. "phpstan/phpstan-strict-rules": "^1.3",
  124. "phpunit/phpunit": "^8.5 || ^9.5",
  125. "vimeo/psalm": "^4.25"
  126. },
  127. "type": "library",
  128. "autoload": {
  129. "psr-4": {
  130. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  131. }
  132. },
  133. "notification-url": "https://packagist.org/downloads/",
  134. "license": [
  135. "MIT"
  136. ],
  137. "authors": [
  138. {
  139. "name": "Guilherme Blanco",
  140. "email": "guilhermeblanco@gmail.com"
  141. },
  142. {
  143. "name": "Roman Borschel",
  144. "email": "roman@code-factory.org"
  145. },
  146. {
  147. "name": "Benjamin Eberlei",
  148. "email": "kontakt@beberlei.de"
  149. },
  150. {
  151. "name": "Jonathan Wage",
  152. "email": "jonwage@gmail.com"
  153. },
  154. {
  155. "name": "Johannes Schmitt",
  156. "email": "schmittjoh@gmail.com"
  157. }
  158. ],
  159. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  160. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  161. "keywords": [
  162. "inflection",
  163. "inflector",
  164. "lowercase",
  165. "manipulation",
  166. "php",
  167. "plural",
  168. "singular",
  169. "strings",
  170. "uppercase",
  171. "words"
  172. ],
  173. "support": {
  174. "issues": "https://github.com/doctrine/inflector/issues",
  175. "source": "https://github.com/doctrine/inflector/tree/2.0.5"
  176. },
  177. "funding": [
  178. {
  179. "url": "https://www.doctrine-project.org/sponsorship.html",
  180. "type": "custom"
  181. },
  182. {
  183. "url": "https://www.patreon.com/phpdoctrine",
  184. "type": "patreon"
  185. },
  186. {
  187. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  188. "type": "tidelift"
  189. }
  190. ],
  191. "time": "2022-09-07T09:01:28+00:00"
  192. },
  193. {
  194. "name": "doctrine/lexer",
  195. "version": "1.2.3",
  196. "source": {
  197. "type": "git",
  198. "url": "https://github.com/doctrine/lexer.git",
  199. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  200. },
  201. "dist": {
  202. "type": "zip",
  203. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  204. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  205. "shasum": ""
  206. },
  207. "require": {
  208. "php": "^7.1 || ^8.0"
  209. },
  210. "require-dev": {
  211. "doctrine/coding-standard": "^9.0",
  212. "phpstan/phpstan": "^1.3",
  213. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  214. "vimeo/psalm": "^4.11"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "authors": [
  227. {
  228. "name": "Guilherme Blanco",
  229. "email": "guilhermeblanco@gmail.com"
  230. },
  231. {
  232. "name": "Roman Borschel",
  233. "email": "roman@code-factory.org"
  234. },
  235. {
  236. "name": "Johannes Schmitt",
  237. "email": "schmittjoh@gmail.com"
  238. }
  239. ],
  240. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  241. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  242. "keywords": [
  243. "annotations",
  244. "docblock",
  245. "lexer",
  246. "parser",
  247. "php"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/doctrine/lexer/issues",
  251. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  252. },
  253. "funding": [
  254. {
  255. "url": "https://www.doctrine-project.org/sponsorship.html",
  256. "type": "custom"
  257. },
  258. {
  259. "url": "https://www.patreon.com/phpdoctrine",
  260. "type": "patreon"
  261. },
  262. {
  263. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  264. "type": "tidelift"
  265. }
  266. ],
  267. "time": "2022-02-28T11:07:21+00:00"
  268. },
  269. {
  270. "name": "dragonmantank/cron-expression",
  271. "version": "v3.3.2",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/dragonmantank/cron-expression.git",
  275. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  280. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "php": "^7.2|^8.0",
  285. "webmozart/assert": "^1.0"
  286. },
  287. "replace": {
  288. "mtdowling/cron-expression": "^1.0"
  289. },
  290. "require-dev": {
  291. "phpstan/extension-installer": "^1.0",
  292. "phpstan/phpstan": "^1.0",
  293. "phpstan/phpstan-webmozart-assert": "^1.0",
  294. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  295. },
  296. "type": "library",
  297. "autoload": {
  298. "psr-4": {
  299. "Cron\\": "src/Cron/"
  300. }
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "MIT"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Chris Tankersley",
  309. "email": "chris@ctankersley.com",
  310. "homepage": "https://github.com/dragonmantank"
  311. }
  312. ],
  313. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  314. "keywords": [
  315. "cron",
  316. "schedule"
  317. ],
  318. "support": {
  319. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  320. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  321. },
  322. "funding": [
  323. {
  324. "url": "https://github.com/dragonmantank",
  325. "type": "github"
  326. }
  327. ],
  328. "time": "2022-09-10T18:51:20+00:00"
  329. },
  330. {
  331. "name": "egulias/email-validator",
  332. "version": "2.1.25",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/egulias/EmailValidator.git",
  336. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  341. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  342. "shasum": ""
  343. },
  344. "require": {
  345. "doctrine/lexer": "^1.0.1",
  346. "php": ">=5.5",
  347. "symfony/polyfill-intl-idn": "^1.10"
  348. },
  349. "require-dev": {
  350. "dominicsayers/isemail": "^3.0.7",
  351. "phpunit/phpunit": "^4.8.36|^7.5.15",
  352. "satooshi/php-coveralls": "^1.0.1"
  353. },
  354. "suggest": {
  355. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  356. },
  357. "type": "library",
  358. "extra": {
  359. "branch-alias": {
  360. "dev-master": "2.1.x-dev"
  361. }
  362. },
  363. "autoload": {
  364. "psr-4": {
  365. "Egulias\\EmailValidator\\": "src"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Eduardo Gulias Davis"
  375. }
  376. ],
  377. "description": "A library for validating emails against several RFCs",
  378. "homepage": "https://github.com/egulias/EmailValidator",
  379. "keywords": [
  380. "email",
  381. "emailvalidation",
  382. "emailvalidator",
  383. "validation",
  384. "validator"
  385. ],
  386. "support": {
  387. "issues": "https://github.com/egulias/EmailValidator/issues",
  388. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  389. },
  390. "funding": [
  391. {
  392. "url": "https://github.com/egulias",
  393. "type": "github"
  394. }
  395. ],
  396. "time": "2020-12-29T14:50:06+00:00"
  397. },
  398. {
  399. "name": "graham-campbell/result-type",
  400. "version": "v1.1.0",
  401. "source": {
  402. "type": "git",
  403. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  404. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  409. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "php": "^7.2.5 || ^8.0",
  414. "phpoption/phpoption": "^1.9"
  415. },
  416. "require-dev": {
  417. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "GrahamCampbell\\ResultType\\": "src/"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Graham Campbell",
  432. "email": "hello@gjcampbell.co.uk",
  433. "homepage": "https://github.com/GrahamCampbell"
  434. }
  435. ],
  436. "description": "An Implementation Of The Result Type",
  437. "keywords": [
  438. "Graham Campbell",
  439. "GrahamCampbell",
  440. "Result Type",
  441. "Result-Type",
  442. "result"
  443. ],
  444. "support": {
  445. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  446. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  447. },
  448. "funding": [
  449. {
  450. "url": "https://github.com/GrahamCampbell",
  451. "type": "github"
  452. },
  453. {
  454. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  455. "type": "tidelift"
  456. }
  457. ],
  458. "time": "2022-07-30T15:56:11+00:00"
  459. },
  460. {
  461. "name": "hamcrest/hamcrest-php",
  462. "version": "v2.0.1",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/hamcrest/hamcrest-php.git",
  466. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  471. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "php": "^5.3|^7.0|^8.0"
  476. },
  477. "replace": {
  478. "cordoval/hamcrest-php": "*",
  479. "davedevelopment/hamcrest-php": "*",
  480. "kodova/hamcrest-php": "*"
  481. },
  482. "require-dev": {
  483. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  484. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  485. },
  486. "type": "library",
  487. "extra": {
  488. "branch-alias": {
  489. "dev-master": "2.1-dev"
  490. }
  491. },
  492. "autoload": {
  493. "classmap": [
  494. "hamcrest"
  495. ]
  496. },
  497. "notification-url": "https://packagist.org/downloads/",
  498. "license": [
  499. "BSD-3-Clause"
  500. ],
  501. "description": "This is the PHP port of Hamcrest Matchers",
  502. "keywords": [
  503. "test"
  504. ],
  505. "support": {
  506. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  507. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  508. },
  509. "time": "2020-07-09T08:09:16+00:00"
  510. },
  511. {
  512. "name": "laravel/framework",
  513. "version": "v8.83.25",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/laravel/framework.git",
  517. "reference": "b77b908a9426efa41d6286a2ef4c3adbf5398ca1"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/laravel/framework/zipball/b77b908a9426efa41d6286a2ef4c3adbf5398ca1",
  522. "reference": "b77b908a9426efa41d6286a2ef4c3adbf5398ca1",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "doctrine/inflector": "^1.4|^2.0",
  527. "dragonmantank/cron-expression": "^3.0.2",
  528. "egulias/email-validator": "^2.1.10",
  529. "ext-json": "*",
  530. "ext-mbstring": "*",
  531. "ext-openssl": "*",
  532. "laravel/serializable-closure": "^1.0",
  533. "league/commonmark": "^1.3|^2.0.2",
  534. "league/flysystem": "^1.1",
  535. "monolog/monolog": "^2.0",
  536. "nesbot/carbon": "^2.53.1",
  537. "opis/closure": "^3.6",
  538. "php": "^7.3|^8.0",
  539. "psr/container": "^1.0",
  540. "psr/log": "^1.0|^2.0",
  541. "psr/simple-cache": "^1.0",
  542. "ramsey/uuid": "^4.2.2",
  543. "swiftmailer/swiftmailer": "^6.3",
  544. "symfony/console": "^5.4",
  545. "symfony/error-handler": "^5.4",
  546. "symfony/finder": "^5.4",
  547. "symfony/http-foundation": "^5.4",
  548. "symfony/http-kernel": "^5.4",
  549. "symfony/mime": "^5.4",
  550. "symfony/process": "^5.4",
  551. "symfony/routing": "^5.4",
  552. "symfony/var-dumper": "^5.4",
  553. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  554. "vlucas/phpdotenv": "^5.4.1",
  555. "voku/portable-ascii": "^1.6.1"
  556. },
  557. "conflict": {
  558. "tightenco/collect": "<5.5.33"
  559. },
  560. "provide": {
  561. "psr/container-implementation": "1.0",
  562. "psr/simple-cache-implementation": "1.0"
  563. },
  564. "replace": {
  565. "illuminate/auth": "self.version",
  566. "illuminate/broadcasting": "self.version",
  567. "illuminate/bus": "self.version",
  568. "illuminate/cache": "self.version",
  569. "illuminate/collections": "self.version",
  570. "illuminate/config": "self.version",
  571. "illuminate/console": "self.version",
  572. "illuminate/container": "self.version",
  573. "illuminate/contracts": "self.version",
  574. "illuminate/cookie": "self.version",
  575. "illuminate/database": "self.version",
  576. "illuminate/encryption": "self.version",
  577. "illuminate/events": "self.version",
  578. "illuminate/filesystem": "self.version",
  579. "illuminate/hashing": "self.version",
  580. "illuminate/http": "self.version",
  581. "illuminate/log": "self.version",
  582. "illuminate/macroable": "self.version",
  583. "illuminate/mail": "self.version",
  584. "illuminate/notifications": "self.version",
  585. "illuminate/pagination": "self.version",
  586. "illuminate/pipeline": "self.version",
  587. "illuminate/queue": "self.version",
  588. "illuminate/redis": "self.version",
  589. "illuminate/routing": "self.version",
  590. "illuminate/session": "self.version",
  591. "illuminate/support": "self.version",
  592. "illuminate/testing": "self.version",
  593. "illuminate/translation": "self.version",
  594. "illuminate/validation": "self.version",
  595. "illuminate/view": "self.version"
  596. },
  597. "require-dev": {
  598. "aws/aws-sdk-php": "^3.198.1",
  599. "doctrine/dbal": "^2.13.3|^3.1.4",
  600. "filp/whoops": "^2.14.3",
  601. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  602. "league/flysystem-cached-adapter": "^1.0",
  603. "mockery/mockery": "^1.4.4",
  604. "orchestra/testbench-core": "^6.27",
  605. "pda/pheanstalk": "^4.0",
  606. "phpunit/phpunit": "^8.5.19|^9.5.8",
  607. "predis/predis": "^1.1.9",
  608. "symfony/cache": "^5.4"
  609. },
  610. "suggest": {
  611. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  612. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  613. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  614. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  615. "ext-bcmath": "Required to use the multiple_of validation rule.",
  616. "ext-ftp": "Required to use the Flysystem FTP driver.",
  617. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  618. "ext-memcached": "Required to use the memcache cache driver.",
  619. "ext-pcntl": "Required to use all features of the queue worker.",
  620. "ext-posix": "Required to use all features of the queue worker.",
  621. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  622. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  623. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  624. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  625. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  626. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  627. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  628. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  629. "mockery/mockery": "Required to use mocking (^1.4.4).",
  630. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  631. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  632. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  633. "predis/predis": "Required to use the predis connector (^1.1.9).",
  634. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  635. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  636. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  637. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  638. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  639. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  640. },
  641. "type": "library",
  642. "extra": {
  643. "branch-alias": {
  644. "dev-master": "8.x-dev"
  645. }
  646. },
  647. "autoload": {
  648. "files": [
  649. "src/Illuminate/Collections/helpers.php",
  650. "src/Illuminate/Events/functions.php",
  651. "src/Illuminate/Foundation/helpers.php",
  652. "src/Illuminate/Support/helpers.php"
  653. ],
  654. "psr-4": {
  655. "Illuminate\\": "src/Illuminate/",
  656. "Illuminate\\Support\\": [
  657. "src/Illuminate/Macroable/",
  658. "src/Illuminate/Collections/"
  659. ]
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Taylor Otwell",
  669. "email": "taylor@laravel.com"
  670. }
  671. ],
  672. "description": "The Laravel Framework.",
  673. "homepage": "https://laravel.com",
  674. "keywords": [
  675. "framework",
  676. "laravel"
  677. ],
  678. "support": {
  679. "issues": "https://github.com/laravel/framework/issues",
  680. "source": "https://github.com/laravel/framework"
  681. },
  682. "time": "2022-09-30T13:00:40+00:00"
  683. },
  684. {
  685. "name": "laravel/serializable-closure",
  686. "version": "v1.2.2",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/laravel/serializable-closure.git",
  690. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  695. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "php": "^7.3|^8.0"
  700. },
  701. "require-dev": {
  702. "nesbot/carbon": "^2.61",
  703. "pestphp/pest": "^1.21.3",
  704. "phpstan/phpstan": "^1.8.2",
  705. "symfony/var-dumper": "^5.4.11"
  706. },
  707. "type": "library",
  708. "extra": {
  709. "branch-alias": {
  710. "dev-master": "1.x-dev"
  711. }
  712. },
  713. "autoload": {
  714. "psr-4": {
  715. "Laravel\\SerializableClosure\\": "src/"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Taylor Otwell",
  725. "email": "taylor@laravel.com"
  726. },
  727. {
  728. "name": "Nuno Maduro",
  729. "email": "nuno@laravel.com"
  730. }
  731. ],
  732. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  733. "keywords": [
  734. "closure",
  735. "laravel",
  736. "serializable"
  737. ],
  738. "support": {
  739. "issues": "https://github.com/laravel/serializable-closure/issues",
  740. "source": "https://github.com/laravel/serializable-closure"
  741. },
  742. "time": "2022-09-08T13:45:54+00:00"
  743. },
  744. {
  745. "name": "latte/latte",
  746. "version": "v2.11.5",
  747. "source": {
  748. "type": "git",
  749. "url": "https://github.com/nette/latte.git",
  750. "reference": "89e647e51213af8a270fe9903b8735a2f6c83ad1"
  751. },
  752. "dist": {
  753. "type": "zip",
  754. "url": "https://api.github.com/repos/nette/latte/zipball/89e647e51213af8a270fe9903b8735a2f6c83ad1",
  755. "reference": "89e647e51213af8a270fe9903b8735a2f6c83ad1",
  756. "shasum": ""
  757. },
  758. "require": {
  759. "ext-json": "*",
  760. "ext-tokenizer": "*",
  761. "php": ">=7.1 <8.2"
  762. },
  763. "conflict": {
  764. "nette/application": "<2.4.1"
  765. },
  766. "require-dev": {
  767. "nette/php-generator": "^3.3.4",
  768. "nette/tester": "^2.0",
  769. "nette/utils": "^3.0",
  770. "phpstan/phpstan": "^1",
  771. "tracy/tracy": "^2.3"
  772. },
  773. "suggest": {
  774. "ext-fileinfo": "to use filter |datastream",
  775. "ext-iconv": "to use filters |reverse, |substring",
  776. "ext-mbstring": "to use filters like lower, upper, capitalize, ...",
  777. "nette/php-generator": "to use tag {templatePrint}",
  778. "nette/utils": "to use filter |webalize"
  779. },
  780. "bin": [
  781. "bin/latte-lint"
  782. ],
  783. "type": "library",
  784. "extra": {
  785. "branch-alias": {
  786. "dev-master": "2.11-dev"
  787. }
  788. },
  789. "autoload": {
  790. "classmap": [
  791. "src/"
  792. ]
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "BSD-3-Clause",
  797. "GPL-2.0-only",
  798. "GPL-3.0-only"
  799. ],
  800. "authors": [
  801. {
  802. "name": "David Grudl",
  803. "homepage": "https://davidgrudl.com"
  804. },
  805. {
  806. "name": "Nette Community",
  807. "homepage": "https://nette.org/contributors"
  808. }
  809. ],
  810. "description": "☕ Latte: the intuitive and fast template engine for those who want the most secure PHP sites. Introduces context-sensitive escaping.",
  811. "homepage": "https://latte.nette.org",
  812. "keywords": [
  813. "context-sensitive",
  814. "engine",
  815. "escaping",
  816. "html",
  817. "nette",
  818. "security",
  819. "template",
  820. "twig"
  821. ],
  822. "support": {
  823. "issues": "https://github.com/nette/latte/issues",
  824. "source": "https://github.com/nette/latte/tree/v2.11.5"
  825. },
  826. "time": "2022-06-26T10:12:18+00:00"
  827. },
  828. {
  829. "name": "league/commonmark",
  830. "version": "1.6.7",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/thephpleague/commonmark.git",
  834. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  839. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  840. "shasum": ""
  841. },
  842. "require": {
  843. "ext-mbstring": "*",
  844. "php": "^7.1 || ^8.0"
  845. },
  846. "conflict": {
  847. "scrutinizer/ocular": "1.7.*"
  848. },
  849. "require-dev": {
  850. "cebe/markdown": "~1.0",
  851. "commonmark/commonmark.js": "0.29.2",
  852. "erusev/parsedown": "~1.0",
  853. "ext-json": "*",
  854. "github/gfm": "0.29.0",
  855. "michelf/php-markdown": "~1.4",
  856. "mikehaertl/php-shellcommand": "^1.4",
  857. "phpstan/phpstan": "^0.12.90",
  858. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  859. "scrutinizer/ocular": "^1.5",
  860. "symfony/finder": "^4.2"
  861. },
  862. "bin": [
  863. "bin/commonmark"
  864. ],
  865. "type": "library",
  866. "autoload": {
  867. "psr-4": {
  868. "League\\CommonMark\\": "src"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "BSD-3-Clause"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Colin O'Dell",
  878. "email": "colinodell@gmail.com",
  879. "homepage": "https://www.colinodell.com",
  880. "role": "Lead Developer"
  881. }
  882. ],
  883. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  884. "homepage": "https://commonmark.thephpleague.com",
  885. "keywords": [
  886. "commonmark",
  887. "flavored",
  888. "gfm",
  889. "github",
  890. "github-flavored",
  891. "markdown",
  892. "md",
  893. "parser"
  894. ],
  895. "support": {
  896. "docs": "https://commonmark.thephpleague.com/",
  897. "issues": "https://github.com/thephpleague/commonmark/issues",
  898. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  899. "source": "https://github.com/thephpleague/commonmark"
  900. },
  901. "funding": [
  902. {
  903. "url": "https://www.colinodell.com/sponsor",
  904. "type": "custom"
  905. },
  906. {
  907. "url": "https://www.paypal.me/colinpodell/10.00",
  908. "type": "custom"
  909. },
  910. {
  911. "url": "https://github.com/colinodell",
  912. "type": "github"
  913. },
  914. {
  915. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  916. "type": "tidelift"
  917. }
  918. ],
  919. "time": "2022-01-13T17:18:13+00:00"
  920. },
  921. {
  922. "name": "league/container",
  923. "version": "2.5.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/thephpleague/container.git",
  927. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  932. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "container-interop/container-interop": "^1.2",
  937. "php": "^5.4 || ^7.0 || ^8.0"
  938. },
  939. "provide": {
  940. "container-interop/container-interop-implementation": "^1.2",
  941. "psr/container-implementation": "^1.0"
  942. },
  943. "replace": {
  944. "orno/di": "~2.0"
  945. },
  946. "require-dev": {
  947. "phpunit/phpunit": "^4.8.36",
  948. "scrutinizer/ocular": "^1.3",
  949. "squizlabs/php_codesniffer": "^3.5"
  950. },
  951. "type": "library",
  952. "extra": {
  953. "branch-alias": {
  954. "dev-2.x": "2.x-dev",
  955. "dev-1.x": "1.x-dev"
  956. }
  957. },
  958. "autoload": {
  959. "psr-4": {
  960. "League\\Container\\": "src"
  961. }
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Phil Bennett",
  970. "email": "philipobenito@gmail.com",
  971. "homepage": "http://www.philipobenito.com",
  972. "role": "Developer"
  973. }
  974. ],
  975. "description": "A fast and intuitive dependency injection container.",
  976. "homepage": "https://github.com/thephpleague/container",
  977. "keywords": [
  978. "container",
  979. "dependency",
  980. "di",
  981. "injection",
  982. "league",
  983. "provider",
  984. "service"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/thephpleague/container/issues",
  988. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  989. },
  990. "funding": [
  991. {
  992. "url": "https://github.com/philipobenito",
  993. "type": "github"
  994. }
  995. ],
  996. "time": "2021-02-22T09:20:06+00:00"
  997. },
  998. {
  999. "name": "league/flysystem",
  1000. "version": "1.1.10",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/thephpleague/flysystem.git",
  1004. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1009. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "ext-fileinfo": "*",
  1014. "league/mime-type-detection": "^1.3",
  1015. "php": "^7.2.5 || ^8.0"
  1016. },
  1017. "conflict": {
  1018. "league/flysystem-sftp": "<1.0.6"
  1019. },
  1020. "require-dev": {
  1021. "phpspec/prophecy": "^1.11.1",
  1022. "phpunit/phpunit": "^8.5.8"
  1023. },
  1024. "suggest": {
  1025. "ext-ftp": "Allows you to use FTP server storage",
  1026. "ext-openssl": "Allows you to use FTPS server storage",
  1027. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1028. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1029. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1030. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1031. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1032. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1033. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1034. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1035. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1036. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1037. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1038. },
  1039. "type": "library",
  1040. "extra": {
  1041. "branch-alias": {
  1042. "dev-master": "1.1-dev"
  1043. }
  1044. },
  1045. "autoload": {
  1046. "psr-4": {
  1047. "League\\Flysystem\\": "src/"
  1048. }
  1049. },
  1050. "notification-url": "https://packagist.org/downloads/",
  1051. "license": [
  1052. "MIT"
  1053. ],
  1054. "authors": [
  1055. {
  1056. "name": "Frank de Jonge",
  1057. "email": "info@frenky.net"
  1058. }
  1059. ],
  1060. "description": "Filesystem abstraction: Many filesystems, one API.",
  1061. "keywords": [
  1062. "Cloud Files",
  1063. "WebDAV",
  1064. "abstraction",
  1065. "aws",
  1066. "cloud",
  1067. "copy.com",
  1068. "dropbox",
  1069. "file systems",
  1070. "files",
  1071. "filesystem",
  1072. "filesystems",
  1073. "ftp",
  1074. "rackspace",
  1075. "remote",
  1076. "s3",
  1077. "sftp",
  1078. "storage"
  1079. ],
  1080. "support": {
  1081. "issues": "https://github.com/thephpleague/flysystem/issues",
  1082. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1083. },
  1084. "funding": [
  1085. {
  1086. "url": "https://offset.earth/frankdejonge",
  1087. "type": "other"
  1088. }
  1089. ],
  1090. "time": "2022-10-04T09:16:37+00:00"
  1091. },
  1092. {
  1093. "name": "league/mime-type-detection",
  1094. "version": "1.11.0",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1098. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1103. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1104. "shasum": ""
  1105. },
  1106. "require": {
  1107. "ext-fileinfo": "*",
  1108. "php": "^7.2 || ^8.0"
  1109. },
  1110. "require-dev": {
  1111. "friendsofphp/php-cs-fixer": "^3.2",
  1112. "phpstan/phpstan": "^0.12.68",
  1113. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1114. },
  1115. "type": "library",
  1116. "autoload": {
  1117. "psr-4": {
  1118. "League\\MimeTypeDetection\\": "src"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "MIT"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "Frank de Jonge",
  1128. "email": "info@frankdejonge.nl"
  1129. }
  1130. ],
  1131. "description": "Mime-type detection for Flysystem",
  1132. "support": {
  1133. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1134. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://github.com/frankdejonge",
  1139. "type": "github"
  1140. },
  1141. {
  1142. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1143. "type": "tidelift"
  1144. }
  1145. ],
  1146. "time": "2022-04-17T13:12:02+00:00"
  1147. },
  1148. {
  1149. "name": "mikey179/vfsstream",
  1150. "version": "v1.6.11",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/bovigo/vfsStream.git",
  1154. "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f",
  1159. "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "php": ">=5.3.0"
  1164. },
  1165. "require-dev": {
  1166. "phpunit/phpunit": "^4.5|^5.0"
  1167. },
  1168. "type": "library",
  1169. "extra": {
  1170. "branch-alias": {
  1171. "dev-master": "1.6.x-dev"
  1172. }
  1173. },
  1174. "autoload": {
  1175. "psr-0": {
  1176. "org\\bovigo\\vfs\\": "src/main/php"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "BSD-3-Clause"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "Frank Kleine",
  1186. "homepage": "http://frankkleine.de/",
  1187. "role": "Developer"
  1188. }
  1189. ],
  1190. "description": "Virtual file system to mock the real file system in unit tests.",
  1191. "homepage": "http://vfs.bovigo.org/",
  1192. "support": {
  1193. "issues": "https://github.com/bovigo/vfsStream/issues",
  1194. "source": "https://github.com/bovigo/vfsStream/tree/master",
  1195. "wiki": "https://github.com/bovigo/vfsStream/wiki"
  1196. },
  1197. "time": "2022-02-23T02:02:42+00:00"
  1198. },
  1199. {
  1200. "name": "mockery/mockery",
  1201. "version": "1.5.1",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/mockery/mockery.git",
  1205. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  1210. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "hamcrest/hamcrest-php": "^2.0.1",
  1215. "lib-pcre": ">=7.0",
  1216. "php": "^7.3 || ^8.0"
  1217. },
  1218. "conflict": {
  1219. "phpunit/phpunit": "<8.0"
  1220. },
  1221. "require-dev": {
  1222. "phpunit/phpunit": "^8.5 || ^9.3"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "1.4.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-0": {
  1232. "Mockery": "library/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "BSD-3-Clause"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Pádraic Brady",
  1242. "email": "padraic.brady@gmail.com",
  1243. "homepage": "http://blog.astrumfutura.com"
  1244. },
  1245. {
  1246. "name": "Dave Marshall",
  1247. "email": "dave.marshall@atstsolutions.co.uk",
  1248. "homepage": "http://davedevelopment.co.uk"
  1249. }
  1250. ],
  1251. "description": "Mockery is a simple yet flexible PHP mock object framework",
  1252. "homepage": "https://github.com/mockery/mockery",
  1253. "keywords": [
  1254. "BDD",
  1255. "TDD",
  1256. "library",
  1257. "mock",
  1258. "mock objects",
  1259. "mockery",
  1260. "stub",
  1261. "test",
  1262. "test double",
  1263. "testing"
  1264. ],
  1265. "support": {
  1266. "issues": "https://github.com/mockery/mockery/issues",
  1267. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  1268. },
  1269. "time": "2022-09-07T15:32:08+00:00"
  1270. },
  1271. {
  1272. "name": "monolog/monolog",
  1273. "version": "2.8.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/Seldaek/monolog.git",
  1277. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  1282. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "php": ">=7.2",
  1287. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1288. },
  1289. "provide": {
  1290. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1291. },
  1292. "require-dev": {
  1293. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1294. "doctrine/couchdb": "~1.0@dev",
  1295. "elasticsearch/elasticsearch": "^7 || ^8",
  1296. "ext-json": "*",
  1297. "graylog2/gelf-php": "^1.4.2",
  1298. "guzzlehttp/guzzle": "^7.4",
  1299. "guzzlehttp/psr7": "^2.2",
  1300. "mongodb/mongodb": "^1.8",
  1301. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1302. "phpspec/prophecy": "^1.15",
  1303. "phpstan/phpstan": "^0.12.91",
  1304. "phpunit/phpunit": "^8.5.14",
  1305. "predis/predis": "^1.1 || ^2.0",
  1306. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1307. "ruflin/elastica": "^7",
  1308. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1309. "symfony/mailer": "^5.4 || ^6",
  1310. "symfony/mime": "^5.4 || ^6"
  1311. },
  1312. "suggest": {
  1313. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1314. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1315. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1316. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1317. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1318. "ext-mbstring": "Allow to work properly with unicode symbols",
  1319. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1320. "ext-openssl": "Required to send log messages using SSL",
  1321. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1322. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1323. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1324. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1325. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1326. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1327. },
  1328. "type": "library",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-main": "2.x-dev"
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Monolog\\": "src/Monolog"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Jordi Boggiano",
  1346. "email": "j.boggiano@seld.be",
  1347. "homepage": "https://seld.be"
  1348. }
  1349. ],
  1350. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1351. "homepage": "https://github.com/Seldaek/monolog",
  1352. "keywords": [
  1353. "log",
  1354. "logging",
  1355. "psr-3"
  1356. ],
  1357. "support": {
  1358. "issues": "https://github.com/Seldaek/monolog/issues",
  1359. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  1360. },
  1361. "funding": [
  1362. {
  1363. "url": "https://github.com/Seldaek",
  1364. "type": "github"
  1365. },
  1366. {
  1367. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1368. "type": "tidelift"
  1369. }
  1370. ],
  1371. "time": "2022-07-24T11:55:47+00:00"
  1372. },
  1373. {
  1374. "name": "nesbot/carbon",
  1375. "version": "2.62.1",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/briannesbitt/Carbon.git",
  1379. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  1384. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "ext-json": "*",
  1389. "php": "^7.1.8 || ^8.0",
  1390. "symfony/polyfill-mbstring": "^1.0",
  1391. "symfony/polyfill-php80": "^1.16",
  1392. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1393. },
  1394. "require-dev": {
  1395. "doctrine/dbal": "^2.0 || ^3.0",
  1396. "doctrine/orm": "^2.7",
  1397. "friendsofphp/php-cs-fixer": "^3.0",
  1398. "kylekatarnls/multi-tester": "^2.0",
  1399. "ondrejmirtes/better-reflection": "*",
  1400. "phpmd/phpmd": "^2.9",
  1401. "phpstan/extension-installer": "^1.0",
  1402. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1403. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1404. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1405. "squizlabs/php_codesniffer": "^3.4"
  1406. },
  1407. "bin": [
  1408. "bin/carbon"
  1409. ],
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-3.x": "3.x-dev",
  1414. "dev-master": "2.x-dev"
  1415. },
  1416. "laravel": {
  1417. "providers": [
  1418. "Carbon\\Laravel\\ServiceProvider"
  1419. ]
  1420. },
  1421. "phpstan": {
  1422. "includes": [
  1423. "extension.neon"
  1424. ]
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Carbon\\": "src/Carbon/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "Brian Nesbitt",
  1439. "email": "brian@nesbot.com",
  1440. "homepage": "https://markido.com"
  1441. },
  1442. {
  1443. "name": "kylekatarnls",
  1444. "homepage": "https://github.com/kylekatarnls"
  1445. }
  1446. ],
  1447. "description": "An API extension for DateTime that supports 281 different languages.",
  1448. "homepage": "https://carbon.nesbot.com",
  1449. "keywords": [
  1450. "date",
  1451. "datetime",
  1452. "time"
  1453. ],
  1454. "support": {
  1455. "docs": "https://carbon.nesbot.com/docs",
  1456. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1457. "source": "https://github.com/briannesbitt/Carbon"
  1458. },
  1459. "funding": [
  1460. {
  1461. "url": "https://github.com/sponsors/kylekatarnls",
  1462. "type": "github"
  1463. },
  1464. {
  1465. "url": "https://opencollective.com/Carbon#sponsor",
  1466. "type": "opencollective"
  1467. },
  1468. {
  1469. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1470. "type": "tidelift"
  1471. }
  1472. ],
  1473. "time": "2022-09-02T07:48:13+00:00"
  1474. },
  1475. {
  1476. "name": "nette/di",
  1477. "version": "v2.4.17",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/nette/di.git",
  1481. "reference": "aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/nette/di/zipball/aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d",
  1486. "reference": "aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d",
  1487. "shasum": ""
  1488. },
  1489. "require": {
  1490. "ext-tokenizer": "*",
  1491. "nette/neon": "^2.3.3 || ~3.0.0",
  1492. "nette/php-generator": "^2.6.1 || ^3.0.0",
  1493. "nette/utils": "^2.5.0 || ~3.0.0",
  1494. "php": ">=5.6 <8.1"
  1495. },
  1496. "conflict": {
  1497. "nette/bootstrap": "<2.4",
  1498. "nette/nette": "<2.2"
  1499. },
  1500. "require-dev": {
  1501. "nette/tester": "^2.0",
  1502. "tracy/tracy": "^2.3"
  1503. },
  1504. "type": "library",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "2.4-dev"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "classmap": [
  1512. "src/"
  1513. ]
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "BSD-3-Clause",
  1518. "GPL-2.0",
  1519. "GPL-3.0"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "David Grudl",
  1524. "homepage": "https://davidgrudl.com"
  1525. },
  1526. {
  1527. "name": "Nette Community",
  1528. "homepage": "https://nette.org/contributors"
  1529. }
  1530. ],
  1531. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  1532. "homepage": "https://nette.org",
  1533. "keywords": [
  1534. "compiled",
  1535. "di",
  1536. "dic",
  1537. "factory",
  1538. "ioc",
  1539. "nette",
  1540. "static"
  1541. ],
  1542. "support": {
  1543. "issues": "https://github.com/nette/di/issues",
  1544. "source": "https://github.com/nette/di/tree/v2.4.17"
  1545. },
  1546. "time": "2020-11-06T00:28:18+00:00"
  1547. },
  1548. {
  1549. "name": "nette/neon",
  1550. "version": "v3.0.1",
  1551. "source": {
  1552. "type": "git",
  1553. "url": "https://github.com/nette/neon.git",
  1554. "reference": "5674a266495125d43d9fb58d6663b98bd827fa81"
  1555. },
  1556. "dist": {
  1557. "type": "zip",
  1558. "url": "https://api.github.com/repos/nette/neon/zipball/5674a266495125d43d9fb58d6663b98bd827fa81",
  1559. "reference": "5674a266495125d43d9fb58d6663b98bd827fa81",
  1560. "shasum": ""
  1561. },
  1562. "require": {
  1563. "ext-iconv": "*",
  1564. "ext-json": "*",
  1565. "php": ">=7.0"
  1566. },
  1567. "require-dev": {
  1568. "nette/tester": "^2.0",
  1569. "tracy/tracy": "^2.3"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "branch-alias": {
  1574. "dev-master": "3.0-dev"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "classmap": [
  1579. "src/"
  1580. ]
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "BSD-3-Clause",
  1585. "GPL-2.0",
  1586. "GPL-3.0"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "David Grudl",
  1591. "homepage": "https://davidgrudl.com"
  1592. },
  1593. {
  1594. "name": "Nette Community",
  1595. "homepage": "https://nette.org/contributors"
  1596. }
  1597. ],
  1598. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  1599. "homepage": "https://ne-on.org",
  1600. "keywords": [
  1601. "export",
  1602. "import",
  1603. "neon",
  1604. "nette",
  1605. "yaml"
  1606. ],
  1607. "support": {
  1608. "issues": "https://github.com/nette/neon/issues",
  1609. "source": "https://github.com/nette/neon/tree/v3.0.1"
  1610. },
  1611. "time": "2020-03-04T11:45:23+00:00"
  1612. },
  1613. {
  1614. "name": "nette/php-generator",
  1615. "version": "v3.4.1",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/nette/php-generator.git",
  1619. "reference": "7051954c534cebafd650efe8b145ac75b223cb66"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/nette/php-generator/zipball/7051954c534cebafd650efe8b145ac75b223cb66",
  1624. "reference": "7051954c534cebafd650efe8b145ac75b223cb66",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "nette/utils": "^2.4.2 || ^3.0",
  1629. "php": ">=7.1"
  1630. },
  1631. "require-dev": {
  1632. "nette/tester": "^2.0",
  1633. "nikic/php-parser": "^4.4",
  1634. "phpstan/phpstan": "^0.12",
  1635. "tracy/tracy": "^2.3"
  1636. },
  1637. "suggest": {
  1638. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  1639. },
  1640. "type": "library",
  1641. "extra": {
  1642. "branch-alias": {
  1643. "dev-master": "3.4-dev"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "classmap": [
  1648. "src/"
  1649. ]
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "BSD-3-Clause",
  1654. "GPL-2.0-only",
  1655. "GPL-3.0-only"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "David Grudl",
  1660. "homepage": "https://davidgrudl.com"
  1661. },
  1662. {
  1663. "name": "Nette Community",
  1664. "homepage": "https://nette.org/contributors"
  1665. }
  1666. ],
  1667. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  1668. "homepage": "https://nette.org",
  1669. "keywords": [
  1670. "code",
  1671. "nette",
  1672. "php",
  1673. "scaffolding"
  1674. ],
  1675. "support": {
  1676. "issues": "https://github.com/nette/php-generator/issues",
  1677. "source": "https://github.com/nette/php-generator/tree/master"
  1678. },
  1679. "time": "2020-06-19T14:31:47+00:00"
  1680. },
  1681. {
  1682. "name": "nette/utils",
  1683. "version": "v3.0.4",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/nette/utils.git",
  1687. "reference": "4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://api.github.com/repos/nette/utils/zipball/4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a",
  1692. "reference": "4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": ">=7.1"
  1697. },
  1698. "require-dev": {
  1699. "nette/tester": "~2.0",
  1700. "phpstan/phpstan": "^0.12",
  1701. "tracy/tracy": "^2.3"
  1702. },
  1703. "suggest": {
  1704. "ext-gd": "to use Image",
  1705. "ext-iconv": "to use Strings::webalize() and toAscii()",
  1706. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1707. "ext-json": "to use Nette\\Utils\\Json",
  1708. "ext-mbstring": "to use Strings::lower() etc...",
  1709. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1710. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "3.0-dev"
  1716. }
  1717. },
  1718. "autoload": {
  1719. "classmap": [
  1720. "src/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "BSD-3-Clause",
  1726. "GPL-2.0",
  1727. "GPL-3.0"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "David Grudl",
  1732. "homepage": "https://davidgrudl.com"
  1733. },
  1734. {
  1735. "name": "Nette Community",
  1736. "homepage": "https://nette.org/contributors"
  1737. }
  1738. ],
  1739. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1740. "homepage": "https://nette.org",
  1741. "keywords": [
  1742. "array",
  1743. "core",
  1744. "datetime",
  1745. "images",
  1746. "json",
  1747. "nette",
  1748. "paginator",
  1749. "password",
  1750. "slugify",
  1751. "string",
  1752. "unicode",
  1753. "utf-8",
  1754. "utility",
  1755. "validation"
  1756. ],
  1757. "support": {
  1758. "issues": "https://github.com/nette/utils/issues",
  1759. "source": "https://github.com/nette/utils/tree/v3.0.4"
  1760. },
  1761. "time": "2020-11-05T23:46:36+00:00"
  1762. },
  1763. {
  1764. "name": "opis/closure",
  1765. "version": "3.6.3",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/opis/closure.git",
  1769. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1774. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "php": "^5.4 || ^7.0 || ^8.0"
  1779. },
  1780. "require-dev": {
  1781. "jeremeamia/superclosure": "^2.0",
  1782. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1783. },
  1784. "type": "library",
  1785. "extra": {
  1786. "branch-alias": {
  1787. "dev-master": "3.6.x-dev"
  1788. }
  1789. },
  1790. "autoload": {
  1791. "files": [
  1792. "functions.php"
  1793. ],
  1794. "psr-4": {
  1795. "Opis\\Closure\\": "src/"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Marius Sarca",
  1805. "email": "marius.sarca@gmail.com"
  1806. },
  1807. {
  1808. "name": "Sorin Sarca",
  1809. "email": "sarca_sorin@hotmail.com"
  1810. }
  1811. ],
  1812. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1813. "homepage": "https://opis.io/closure",
  1814. "keywords": [
  1815. "anonymous functions",
  1816. "closure",
  1817. "function",
  1818. "serializable",
  1819. "serialization",
  1820. "serialize"
  1821. ],
  1822. "support": {
  1823. "issues": "https://github.com/opis/closure/issues",
  1824. "source": "https://github.com/opis/closure/tree/3.6.3"
  1825. },
  1826. "time": "2022-01-27T09:35:39+00:00"
  1827. },
  1828. {
  1829. "name": "phpoption/phpoption",
  1830. "version": "1.9.0",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/schmittjoh/php-option.git",
  1834. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  1839. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  1840. "shasum": ""
  1841. },
  1842. "require": {
  1843. "php": "^7.2.5 || ^8.0"
  1844. },
  1845. "require-dev": {
  1846. "bamarni/composer-bin-plugin": "^1.8",
  1847. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  1848. },
  1849. "type": "library",
  1850. "extra": {
  1851. "bamarni-bin": {
  1852. "bin-links": true,
  1853. "forward-command": true
  1854. },
  1855. "branch-alias": {
  1856. "dev-master": "1.9-dev"
  1857. }
  1858. },
  1859. "autoload": {
  1860. "psr-4": {
  1861. "PhpOption\\": "src/PhpOption/"
  1862. }
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "Apache-2.0"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "Johannes M. Schmitt",
  1871. "email": "schmittjoh@gmail.com",
  1872. "homepage": "https://github.com/schmittjoh"
  1873. },
  1874. {
  1875. "name": "Graham Campbell",
  1876. "email": "hello@gjcampbell.co.uk",
  1877. "homepage": "https://github.com/GrahamCampbell"
  1878. }
  1879. ],
  1880. "description": "Option Type for PHP",
  1881. "keywords": [
  1882. "language",
  1883. "option",
  1884. "php",
  1885. "type"
  1886. ],
  1887. "support": {
  1888. "issues": "https://github.com/schmittjoh/php-option/issues",
  1889. "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
  1890. },
  1891. "funding": [
  1892. {
  1893. "url": "https://github.com/GrahamCampbell",
  1894. "type": "github"
  1895. },
  1896. {
  1897. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1898. "type": "tidelift"
  1899. }
  1900. ],
  1901. "time": "2022-07-30T15:51:26+00:00"
  1902. },
  1903. {
  1904. "name": "pimple/pimple",
  1905. "version": "v1.1.1",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/silexphp/Pimple.git",
  1909. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1914. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1915. "shasum": ""
  1916. },
  1917. "require": {
  1918. "php": ">=5.3.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "1.1.x-dev"
  1924. }
  1925. },
  1926. "autoload": {
  1927. "psr-0": {
  1928. "Pimple": "lib/"
  1929. }
  1930. },
  1931. "notification-url": "https://packagist.org/downloads/",
  1932. "license": [
  1933. "MIT"
  1934. ],
  1935. "authors": [
  1936. {
  1937. "name": "Fabien Potencier",
  1938. "email": "fabien@symfony.com"
  1939. }
  1940. ],
  1941. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1942. "homepage": "http://pimple.sensiolabs.org",
  1943. "keywords": [
  1944. "container",
  1945. "dependency injection"
  1946. ],
  1947. "support": {
  1948. "issues": "https://github.com/silexphp/Pimple/issues",
  1949. "source": "https://github.com/silexphp/Pimple/tree/v1.1.1"
  1950. },
  1951. "time": "2013-11-22T08:30:29+00:00"
  1952. },
  1953. {
  1954. "name": "plumphp/plum",
  1955. "version": "v0.1",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/plumphp/plum.git",
  1959. "reference": "876c37a318959d99695244b97f058bc5b2a5a1e2"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/plumphp/plum/zipball/876c37a318959d99695244b97f058bc5b2a5a1e2",
  1964. "reference": "876c37a318959d99695244b97f058bc5b2a5a1e2",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "symfony/property-access": "~2.4"
  1969. },
  1970. "require-dev": {
  1971. "mikey179/vfsstream": "~1.4",
  1972. "mockery/mockery": "~0.9",
  1973. "phpunit/phpunit": "~4.3"
  1974. },
  1975. "type": "library",
  1976. "autoload": {
  1977. "psr-4": {
  1978. "Plum\\Plum\\": "src"
  1979. }
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Florian Eckerstorfer",
  1988. "email": "florian@eckerstorfer.co"
  1989. }
  1990. ],
  1991. "description": "Plum is a data processing pipeline that helps you to write structured, reusable and well tested data processing code.",
  1992. "support": {
  1993. "issues": "https://github.com/plumphp/plum/issues",
  1994. "source": "https://github.com/plumphp/plum/tree/master"
  1995. },
  1996. "time": "2015-03-18T15:32:30+00:00"
  1997. },
  1998. {
  1999. "name": "psr/container",
  2000. "version": "1.1.2",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/php-fig/container.git",
  2004. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2009. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2010. "shasum": ""
  2011. },
  2012. "require": {
  2013. "php": ">=7.4.0"
  2014. },
  2015. "type": "library",
  2016. "autoload": {
  2017. "psr-4": {
  2018. "Psr\\Container\\": "src/"
  2019. }
  2020. },
  2021. "notification-url": "https://packagist.org/downloads/",
  2022. "license": [
  2023. "MIT"
  2024. ],
  2025. "authors": [
  2026. {
  2027. "name": "PHP-FIG",
  2028. "homepage": "https://www.php-fig.org/"
  2029. }
  2030. ],
  2031. "description": "Common Container Interface (PHP FIG PSR-11)",
  2032. "homepage": "https://github.com/php-fig/container",
  2033. "keywords": [
  2034. "PSR-11",
  2035. "container",
  2036. "container-interface",
  2037. "container-interop",
  2038. "psr"
  2039. ],
  2040. "support": {
  2041. "issues": "https://github.com/php-fig/container/issues",
  2042. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2043. },
  2044. "time": "2021-11-05T16:50:12+00:00"
  2045. },
  2046. {
  2047. "name": "psr/event-dispatcher",
  2048. "version": "1.0.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/php-fig/event-dispatcher.git",
  2052. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2057. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "php": ">=7.2.0"
  2062. },
  2063. "type": "library",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "1.0.x-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Psr\\EventDispatcher\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "PHP-FIG",
  2081. "homepage": "http://www.php-fig.org/"
  2082. }
  2083. ],
  2084. "description": "Standard interfaces for event handling.",
  2085. "keywords": [
  2086. "events",
  2087. "psr",
  2088. "psr-14"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2092. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2093. },
  2094. "time": "2019-01-08T18:20:26+00:00"
  2095. },
  2096. {
  2097. "name": "psr/log",
  2098. "version": "2.0.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/php-fig/log.git",
  2102. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  2107. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "php": ">=8.0.0"
  2112. },
  2113. "type": "library",
  2114. "extra": {
  2115. "branch-alias": {
  2116. "dev-master": "2.0.x-dev"
  2117. }
  2118. },
  2119. "autoload": {
  2120. "psr-4": {
  2121. "Psr\\Log\\": "src"
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "authors": [
  2129. {
  2130. "name": "PHP-FIG",
  2131. "homepage": "https://www.php-fig.org/"
  2132. }
  2133. ],
  2134. "description": "Common interface for logging libraries",
  2135. "homepage": "https://github.com/php-fig/log",
  2136. "keywords": [
  2137. "log",
  2138. "psr",
  2139. "psr-3"
  2140. ],
  2141. "support": {
  2142. "source": "https://github.com/php-fig/log/tree/2.0.0"
  2143. },
  2144. "time": "2021-07-14T16:41:46+00:00"
  2145. },
  2146. {
  2147. "name": "psr/simple-cache",
  2148. "version": "1.0.1",
  2149. "source": {
  2150. "type": "git",
  2151. "url": "https://github.com/php-fig/simple-cache.git",
  2152. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2153. },
  2154. "dist": {
  2155. "type": "zip",
  2156. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2157. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2158. "shasum": ""
  2159. },
  2160. "require": {
  2161. "php": ">=5.3.0"
  2162. },
  2163. "type": "library",
  2164. "extra": {
  2165. "branch-alias": {
  2166. "dev-master": "1.0.x-dev"
  2167. }
  2168. },
  2169. "autoload": {
  2170. "psr-4": {
  2171. "Psr\\SimpleCache\\": "src/"
  2172. }
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "MIT"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "PHP-FIG",
  2181. "homepage": "http://www.php-fig.org/"
  2182. }
  2183. ],
  2184. "description": "Common interfaces for simple caching",
  2185. "keywords": [
  2186. "cache",
  2187. "caching",
  2188. "psr",
  2189. "psr-16",
  2190. "simple-cache"
  2191. ],
  2192. "support": {
  2193. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2194. },
  2195. "time": "2017-10-23T01:57:42+00:00"
  2196. },
  2197. {
  2198. "name": "ramsey/collection",
  2199. "version": "1.2.2",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/ramsey/collection.git",
  2203. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2208. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": "^7.3 || ^8",
  2213. "symfony/polyfill-php81": "^1.23"
  2214. },
  2215. "require-dev": {
  2216. "captainhook/captainhook": "^5.3",
  2217. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2218. "ergebnis/composer-normalize": "^2.6",
  2219. "fakerphp/faker": "^1.5",
  2220. "hamcrest/hamcrest-php": "^2",
  2221. "jangregor/phpstan-prophecy": "^0.8",
  2222. "mockery/mockery": "^1.3",
  2223. "phpspec/prophecy-phpunit": "^2.0",
  2224. "phpstan/extension-installer": "^1",
  2225. "phpstan/phpstan": "^0.12.32",
  2226. "phpstan/phpstan-mockery": "^0.12.5",
  2227. "phpstan/phpstan-phpunit": "^0.12.11",
  2228. "phpunit/phpunit": "^8.5 || ^9",
  2229. "psy/psysh": "^0.10.4",
  2230. "slevomat/coding-standard": "^6.3",
  2231. "squizlabs/php_codesniffer": "^3.5",
  2232. "vimeo/psalm": "^4.4"
  2233. },
  2234. "type": "library",
  2235. "autoload": {
  2236. "psr-4": {
  2237. "Ramsey\\Collection\\": "src/"
  2238. }
  2239. },
  2240. "notification-url": "https://packagist.org/downloads/",
  2241. "license": [
  2242. "MIT"
  2243. ],
  2244. "authors": [
  2245. {
  2246. "name": "Ben Ramsey",
  2247. "email": "ben@benramsey.com",
  2248. "homepage": "https://benramsey.com"
  2249. }
  2250. ],
  2251. "description": "A PHP library for representing and manipulating collections.",
  2252. "keywords": [
  2253. "array",
  2254. "collection",
  2255. "hash",
  2256. "map",
  2257. "queue",
  2258. "set"
  2259. ],
  2260. "support": {
  2261. "issues": "https://github.com/ramsey/collection/issues",
  2262. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2263. },
  2264. "funding": [
  2265. {
  2266. "url": "https://github.com/ramsey",
  2267. "type": "github"
  2268. },
  2269. {
  2270. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2271. "type": "tidelift"
  2272. }
  2273. ],
  2274. "time": "2021-10-10T03:01:02+00:00"
  2275. },
  2276. {
  2277. "name": "ramsey/uuid",
  2278. "version": "4.5.1",
  2279. "source": {
  2280. "type": "git",
  2281. "url": "https://github.com/ramsey/uuid.git",
  2282. "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d"
  2283. },
  2284. "dist": {
  2285. "type": "zip",
  2286. "url": "https://api.github.com/repos/ramsey/uuid/zipball/a161a26d917604dc6d3aa25100fddf2556e9f35d",
  2287. "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d",
  2288. "shasum": ""
  2289. },
  2290. "require": {
  2291. "brick/math": "^0.8.8 || ^0.9 || ^0.10",
  2292. "ext-ctype": "*",
  2293. "ext-json": "*",
  2294. "php": "^8.0",
  2295. "ramsey/collection": "^1.0"
  2296. },
  2297. "replace": {
  2298. "rhumsaa/uuid": "self.version"
  2299. },
  2300. "require-dev": {
  2301. "captainhook/captainhook": "^5.10",
  2302. "captainhook/plugin-composer": "^5.3",
  2303. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2304. "doctrine/annotations": "^1.8",
  2305. "ergebnis/composer-normalize": "^2.15",
  2306. "mockery/mockery": "^1.3",
  2307. "paragonie/random-lib": "^2",
  2308. "php-mock/php-mock": "^2.2",
  2309. "php-mock/php-mock-mockery": "^1.3",
  2310. "php-parallel-lint/php-parallel-lint": "^1.1",
  2311. "phpbench/phpbench": "^1.0",
  2312. "phpstan/extension-installer": "^1.1",
  2313. "phpstan/phpstan": "^1.8",
  2314. "phpstan/phpstan-mockery": "^1.1",
  2315. "phpstan/phpstan-phpunit": "^1.1",
  2316. "phpunit/phpunit": "^8.5 || ^9",
  2317. "ramsey/composer-repl": "^1.4",
  2318. "slevomat/coding-standard": "^8.4",
  2319. "squizlabs/php_codesniffer": "^3.5",
  2320. "vimeo/psalm": "^4.9"
  2321. },
  2322. "suggest": {
  2323. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2324. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2325. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2326. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2327. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2328. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "captainhook": {
  2333. "force-install": true
  2334. }
  2335. },
  2336. "autoload": {
  2337. "files": [
  2338. "src/functions.php"
  2339. ],
  2340. "psr-4": {
  2341. "Ramsey\\Uuid\\": "src/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2349. "keywords": [
  2350. "guid",
  2351. "identifier",
  2352. "uuid"
  2353. ],
  2354. "support": {
  2355. "issues": "https://github.com/ramsey/uuid/issues",
  2356. "source": "https://github.com/ramsey/uuid/tree/4.5.1"
  2357. },
  2358. "funding": [
  2359. {
  2360. "url": "https://github.com/ramsey",
  2361. "type": "github"
  2362. },
  2363. {
  2364. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2365. "type": "tidelift"
  2366. }
  2367. ],
  2368. "time": "2022-09-16T03:22:46+00:00"
  2369. },
  2370. {
  2371. "name": "swiftmailer/swiftmailer",
  2372. "version": "v6.3.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2376. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2381. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "egulias/email-validator": "^2.0|^3.1",
  2386. "php": ">=7.0.0",
  2387. "symfony/polyfill-iconv": "^1.0",
  2388. "symfony/polyfill-intl-idn": "^1.10",
  2389. "symfony/polyfill-mbstring": "^1.0"
  2390. },
  2391. "require-dev": {
  2392. "mockery/mockery": "^1.0",
  2393. "symfony/phpunit-bridge": "^4.4|^5.4"
  2394. },
  2395. "suggest": {
  2396. "ext-intl": "Needed to support internationalized email addresses"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "6.2-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "files": [
  2406. "lib/swift_required.php"
  2407. ]
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "Chris Corbyn"
  2416. },
  2417. {
  2418. "name": "Fabien Potencier",
  2419. "email": "fabien@symfony.com"
  2420. }
  2421. ],
  2422. "description": "Swiftmailer, free feature-rich PHP mailer",
  2423. "homepage": "https://swiftmailer.symfony.com",
  2424. "keywords": [
  2425. "email",
  2426. "mail",
  2427. "mailer"
  2428. ],
  2429. "support": {
  2430. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2431. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2432. },
  2433. "funding": [
  2434. {
  2435. "url": "https://github.com/fabpot",
  2436. "type": "github"
  2437. },
  2438. {
  2439. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2440. "type": "tidelift"
  2441. }
  2442. ],
  2443. "abandoned": "symfony/mailer",
  2444. "time": "2021-10-18T15:26:12+00:00"
  2445. },
  2446. {
  2447. "name": "symfony/config",
  2448. "version": "v6.0.11",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/symfony/config.git",
  2452. "reference": "956d4ec5df274dda91a4cedfccc2bfd063f6f649"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/symfony/config/zipball/956d4ec5df274dda91a4cedfccc2bfd063f6f649",
  2457. "reference": "956d4ec5df274dda91a4cedfccc2bfd063f6f649",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": ">=8.0.2",
  2462. "symfony/deprecation-contracts": "^2.1|^3",
  2463. "symfony/filesystem": "^5.4|^6.0",
  2464. "symfony/polyfill-ctype": "~1.8",
  2465. "symfony/polyfill-php81": "^1.22"
  2466. },
  2467. "conflict": {
  2468. "symfony/finder": "<4.4"
  2469. },
  2470. "require-dev": {
  2471. "symfony/event-dispatcher": "^5.4|^6.0",
  2472. "symfony/finder": "^5.4|^6.0",
  2473. "symfony/messenger": "^5.4|^6.0",
  2474. "symfony/service-contracts": "^1.1|^2|^3",
  2475. "symfony/yaml": "^5.4|^6.0"
  2476. },
  2477. "suggest": {
  2478. "symfony/yaml": "To use the yaml reference dumper"
  2479. },
  2480. "type": "library",
  2481. "autoload": {
  2482. "psr-4": {
  2483. "Symfony\\Component\\Config\\": ""
  2484. },
  2485. "exclude-from-classmap": [
  2486. "/Tests/"
  2487. ]
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Fabien Potencier",
  2496. "email": "fabien@symfony.com"
  2497. },
  2498. {
  2499. "name": "Symfony Community",
  2500. "homepage": "https://symfony.com/contributors"
  2501. }
  2502. ],
  2503. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2504. "homepage": "https://symfony.com",
  2505. "support": {
  2506. "source": "https://github.com/symfony/config/tree/v6.0.11"
  2507. },
  2508. "funding": [
  2509. {
  2510. "url": "https://symfony.com/sponsor",
  2511. "type": "custom"
  2512. },
  2513. {
  2514. "url": "https://github.com/fabpot",
  2515. "type": "github"
  2516. },
  2517. {
  2518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2519. "type": "tidelift"
  2520. }
  2521. ],
  2522. "time": "2022-06-27T17:10:44+00:00"
  2523. },
  2524. {
  2525. "name": "symfony/console",
  2526. "version": "v5.4.14",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/symfony/console.git",
  2530. "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/symfony/console/zipball/984ea2c0f45f42dfed01d2f3987b187467c4b16d",
  2535. "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "php": ">=7.2.5",
  2540. "symfony/deprecation-contracts": "^2.1|^3",
  2541. "symfony/polyfill-mbstring": "~1.0",
  2542. "symfony/polyfill-php73": "^1.9",
  2543. "symfony/polyfill-php80": "^1.16",
  2544. "symfony/service-contracts": "^1.1|^2|^3",
  2545. "symfony/string": "^5.1|^6.0"
  2546. },
  2547. "conflict": {
  2548. "psr/log": ">=3",
  2549. "symfony/dependency-injection": "<4.4",
  2550. "symfony/dotenv": "<5.1",
  2551. "symfony/event-dispatcher": "<4.4",
  2552. "symfony/lock": "<4.4",
  2553. "symfony/process": "<4.4"
  2554. },
  2555. "provide": {
  2556. "psr/log-implementation": "1.0|2.0"
  2557. },
  2558. "require-dev": {
  2559. "psr/log": "^1|^2",
  2560. "symfony/config": "^4.4|^5.0|^6.0",
  2561. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2562. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2563. "symfony/lock": "^4.4|^5.0|^6.0",
  2564. "symfony/process": "^4.4|^5.0|^6.0",
  2565. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2566. },
  2567. "suggest": {
  2568. "psr/log": "For using the console logger",
  2569. "symfony/event-dispatcher": "",
  2570. "symfony/lock": "",
  2571. "symfony/process": ""
  2572. },
  2573. "type": "library",
  2574. "autoload": {
  2575. "psr-4": {
  2576. "Symfony\\Component\\Console\\": ""
  2577. },
  2578. "exclude-from-classmap": [
  2579. "/Tests/"
  2580. ]
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Fabien Potencier",
  2589. "email": "fabien@symfony.com"
  2590. },
  2591. {
  2592. "name": "Symfony Community",
  2593. "homepage": "https://symfony.com/contributors"
  2594. }
  2595. ],
  2596. "description": "Eases the creation of beautiful and testable command line interfaces",
  2597. "homepage": "https://symfony.com",
  2598. "keywords": [
  2599. "cli",
  2600. "command line",
  2601. "console",
  2602. "terminal"
  2603. ],
  2604. "support": {
  2605. "source": "https://github.com/symfony/console/tree/v5.4.14"
  2606. },
  2607. "funding": [
  2608. {
  2609. "url": "https://symfony.com/sponsor",
  2610. "type": "custom"
  2611. },
  2612. {
  2613. "url": "https://github.com/fabpot",
  2614. "type": "github"
  2615. },
  2616. {
  2617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2618. "type": "tidelift"
  2619. }
  2620. ],
  2621. "time": "2022-10-07T08:01:20+00:00"
  2622. },
  2623. {
  2624. "name": "symfony/css-selector",
  2625. "version": "v6.0.11",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/symfony/css-selector.git",
  2629. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  2634. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": ">=8.0.2"
  2639. },
  2640. "type": "library",
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Symfony\\Component\\CssSelector\\": ""
  2644. },
  2645. "exclude-from-classmap": [
  2646. "/Tests/"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Fabien Potencier",
  2656. "email": "fabien@symfony.com"
  2657. },
  2658. {
  2659. "name": "Jean-François Simon",
  2660. "email": "jeanfrancois.simon@sensiolabs.com"
  2661. },
  2662. {
  2663. "name": "Symfony Community",
  2664. "homepage": "https://symfony.com/contributors"
  2665. }
  2666. ],
  2667. "description": "Converts CSS selectors to XPath expressions",
  2668. "homepage": "https://symfony.com",
  2669. "support": {
  2670. "source": "https://github.com/symfony/css-selector/tree/v6.0.11"
  2671. },
  2672. "funding": [
  2673. {
  2674. "url": "https://symfony.com/sponsor",
  2675. "type": "custom"
  2676. },
  2677. {
  2678. "url": "https://github.com/fabpot",
  2679. "type": "github"
  2680. },
  2681. {
  2682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2683. "type": "tidelift"
  2684. }
  2685. ],
  2686. "time": "2022-06-27T17:10:44+00:00"
  2687. },
  2688. {
  2689. "name": "symfony/dependency-injection",
  2690. "version": "v6.0.13",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/symfony/dependency-injection.git",
  2694. "reference": "6339881a2970b9f6bf6f4d2b07a540b4e3740f98"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6339881a2970b9f6bf6f4d2b07a540b4e3740f98",
  2699. "reference": "6339881a2970b9f6bf6f4d2b07a540b4e3740f98",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "php": ">=8.0.2",
  2704. "psr/container": "^1.1|^2.0",
  2705. "symfony/deprecation-contracts": "^2.1|^3",
  2706. "symfony/polyfill-php81": "^1.22",
  2707. "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
  2708. },
  2709. "conflict": {
  2710. "ext-psr": "<1.1|>=2",
  2711. "symfony/config": "<5.4",
  2712. "symfony/finder": "<5.4",
  2713. "symfony/proxy-manager-bridge": "<5.4",
  2714. "symfony/yaml": "<5.4"
  2715. },
  2716. "provide": {
  2717. "psr/container-implementation": "1.1|2.0",
  2718. "symfony/service-implementation": "1.1|2.0|3.0"
  2719. },
  2720. "require-dev": {
  2721. "symfony/config": "^5.4|^6.0",
  2722. "symfony/expression-language": "^5.4|^6.0",
  2723. "symfony/yaml": "^5.4|^6.0"
  2724. },
  2725. "suggest": {
  2726. "symfony/config": "",
  2727. "symfony/expression-language": "For using expressions in service container configuration",
  2728. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2729. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2730. "symfony/yaml": ""
  2731. },
  2732. "type": "library",
  2733. "autoload": {
  2734. "psr-4": {
  2735. "Symfony\\Component\\DependencyInjection\\": ""
  2736. },
  2737. "exclude-from-classmap": [
  2738. "/Tests/"
  2739. ]
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Fabien Potencier",
  2748. "email": "fabien@symfony.com"
  2749. },
  2750. {
  2751. "name": "Symfony Community",
  2752. "homepage": "https://symfony.com/contributors"
  2753. }
  2754. ],
  2755. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2756. "homepage": "https://symfony.com",
  2757. "support": {
  2758. "source": "https://github.com/symfony/dependency-injection/tree/v6.0.13"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://symfony.com/sponsor",
  2763. "type": "custom"
  2764. },
  2765. {
  2766. "url": "https://github.com/fabpot",
  2767. "type": "github"
  2768. },
  2769. {
  2770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2771. "type": "tidelift"
  2772. }
  2773. ],
  2774. "time": "2022-09-28T16:00:20+00:00"
  2775. },
  2776. {
  2777. "name": "symfony/deprecation-contracts",
  2778. "version": "v3.0.2",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/symfony/deprecation-contracts.git",
  2782. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  2787. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "php": ">=8.0.2"
  2792. },
  2793. "type": "library",
  2794. "extra": {
  2795. "branch-alias": {
  2796. "dev-main": "3.0-dev"
  2797. },
  2798. "thanks": {
  2799. "name": "symfony/contracts",
  2800. "url": "https://github.com/symfony/contracts"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "files": [
  2805. "function.php"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Nicolas Grekas",
  2815. "email": "p@tchwork.com"
  2816. },
  2817. {
  2818. "name": "Symfony Community",
  2819. "homepage": "https://symfony.com/contributors"
  2820. }
  2821. ],
  2822. "description": "A generic function and convention to trigger deprecation notices",
  2823. "homepage": "https://symfony.com",
  2824. "support": {
  2825. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  2826. },
  2827. "funding": [
  2828. {
  2829. "url": "https://symfony.com/sponsor",
  2830. "type": "custom"
  2831. },
  2832. {
  2833. "url": "https://github.com/fabpot",
  2834. "type": "github"
  2835. },
  2836. {
  2837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2838. "type": "tidelift"
  2839. }
  2840. ],
  2841. "time": "2022-01-02T09:55:41+00:00"
  2842. },
  2843. {
  2844. "name": "symfony/error-handler",
  2845. "version": "v5.4.14",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/symfony/error-handler.git",
  2849. "reference": "5fe6d42ffeb68b094df8fdbf3acf23f391cc6be0"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/symfony/error-handler/zipball/5fe6d42ffeb68b094df8fdbf3acf23f391cc6be0",
  2854. "reference": "5fe6d42ffeb68b094df8fdbf3acf23f391cc6be0",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "php": ">=7.2.5",
  2859. "psr/log": "^1|^2|^3",
  2860. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2861. },
  2862. "require-dev": {
  2863. "symfony/deprecation-contracts": "^2.1|^3",
  2864. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2865. "symfony/serializer": "^4.4|^5.0|^6.0"
  2866. },
  2867. "bin": [
  2868. "Resources/bin/patch-type-declarations"
  2869. ],
  2870. "type": "library",
  2871. "autoload": {
  2872. "psr-4": {
  2873. "Symfony\\Component\\ErrorHandler\\": ""
  2874. },
  2875. "exclude-from-classmap": [
  2876. "/Tests/"
  2877. ]
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "Fabien Potencier",
  2886. "email": "fabien@symfony.com"
  2887. },
  2888. {
  2889. "name": "Symfony Community",
  2890. "homepage": "https://symfony.com/contributors"
  2891. }
  2892. ],
  2893. "description": "Provides tools to manage errors and ease debugging PHP code",
  2894. "homepage": "https://symfony.com",
  2895. "support": {
  2896. "source": "https://github.com/symfony/error-handler/tree/v5.4.14"
  2897. },
  2898. "funding": [
  2899. {
  2900. "url": "https://symfony.com/sponsor",
  2901. "type": "custom"
  2902. },
  2903. {
  2904. "url": "https://github.com/fabpot",
  2905. "type": "github"
  2906. },
  2907. {
  2908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2909. "type": "tidelift"
  2910. }
  2911. ],
  2912. "time": "2022-10-03T15:15:50+00:00"
  2913. },
  2914. {
  2915. "name": "symfony/event-dispatcher",
  2916. "version": "v6.0.9",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/symfony/event-dispatcher.git",
  2920. "reference": "5c85b58422865d42c6eb46f7693339056db098a8"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5c85b58422865d42c6eb46f7693339056db098a8",
  2925. "reference": "5c85b58422865d42c6eb46f7693339056db098a8",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "php": ">=8.0.2",
  2930. "symfony/event-dispatcher-contracts": "^2|^3"
  2931. },
  2932. "conflict": {
  2933. "symfony/dependency-injection": "<5.4"
  2934. },
  2935. "provide": {
  2936. "psr/event-dispatcher-implementation": "1.0",
  2937. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2938. },
  2939. "require-dev": {
  2940. "psr/log": "^1|^2|^3",
  2941. "symfony/config": "^5.4|^6.0",
  2942. "symfony/dependency-injection": "^5.4|^6.0",
  2943. "symfony/error-handler": "^5.4|^6.0",
  2944. "symfony/expression-language": "^5.4|^6.0",
  2945. "symfony/http-foundation": "^5.4|^6.0",
  2946. "symfony/service-contracts": "^1.1|^2|^3",
  2947. "symfony/stopwatch": "^5.4|^6.0"
  2948. },
  2949. "suggest": {
  2950. "symfony/dependency-injection": "",
  2951. "symfony/http-kernel": ""
  2952. },
  2953. "type": "library",
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Symfony\\Component\\EventDispatcher\\": ""
  2957. },
  2958. "exclude-from-classmap": [
  2959. "/Tests/"
  2960. ]
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "Fabien Potencier",
  2969. "email": "fabien@symfony.com"
  2970. },
  2971. {
  2972. "name": "Symfony Community",
  2973. "homepage": "https://symfony.com/contributors"
  2974. }
  2975. ],
  2976. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2977. "homepage": "https://symfony.com",
  2978. "support": {
  2979. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.9"
  2980. },
  2981. "funding": [
  2982. {
  2983. "url": "https://symfony.com/sponsor",
  2984. "type": "custom"
  2985. },
  2986. {
  2987. "url": "https://github.com/fabpot",
  2988. "type": "github"
  2989. },
  2990. {
  2991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2992. "type": "tidelift"
  2993. }
  2994. ],
  2995. "time": "2022-05-05T16:45:52+00:00"
  2996. },
  2997. {
  2998. "name": "symfony/event-dispatcher-contracts",
  2999. "version": "v3.0.2",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3003. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  3008. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "php": ">=8.0.2",
  3013. "psr/event-dispatcher": "^1"
  3014. },
  3015. "suggest": {
  3016. "symfony/event-dispatcher-implementation": ""
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "branch-alias": {
  3021. "dev-main": "3.0-dev"
  3022. },
  3023. "thanks": {
  3024. "name": "symfony/contracts",
  3025. "url": "https://github.com/symfony/contracts"
  3026. }
  3027. },
  3028. "autoload": {
  3029. "psr-4": {
  3030. "Symfony\\Contracts\\EventDispatcher\\": ""
  3031. }
  3032. },
  3033. "notification-url": "https://packagist.org/downloads/",
  3034. "license": [
  3035. "MIT"
  3036. ],
  3037. "authors": [
  3038. {
  3039. "name": "Nicolas Grekas",
  3040. "email": "p@tchwork.com"
  3041. },
  3042. {
  3043. "name": "Symfony Community",
  3044. "homepage": "https://symfony.com/contributors"
  3045. }
  3046. ],
  3047. "description": "Generic abstractions related to dispatching event",
  3048. "homepage": "https://symfony.com",
  3049. "keywords": [
  3050. "abstractions",
  3051. "contracts",
  3052. "decoupling",
  3053. "interfaces",
  3054. "interoperability",
  3055. "standards"
  3056. ],
  3057. "support": {
  3058. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  3059. },
  3060. "funding": [
  3061. {
  3062. "url": "https://symfony.com/sponsor",
  3063. "type": "custom"
  3064. },
  3065. {
  3066. "url": "https://github.com/fabpot",
  3067. "type": "github"
  3068. },
  3069. {
  3070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3071. "type": "tidelift"
  3072. }
  3073. ],
  3074. "time": "2022-01-02T09:55:41+00:00"
  3075. },
  3076. {
  3077. "name": "symfony/filesystem",
  3078. "version": "v6.0.13",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://github.com/symfony/filesystem.git",
  3082. "reference": "3adca49133bd055ebe6011ed1e012be3c908af79"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://api.github.com/repos/symfony/filesystem/zipball/3adca49133bd055ebe6011ed1e012be3c908af79",
  3087. "reference": "3adca49133bd055ebe6011ed1e012be3c908af79",
  3088. "shasum": ""
  3089. },
  3090. "require": {
  3091. "php": ">=8.0.2",
  3092. "symfony/polyfill-ctype": "~1.8",
  3093. "symfony/polyfill-mbstring": "~1.8"
  3094. },
  3095. "type": "library",
  3096. "autoload": {
  3097. "psr-4": {
  3098. "Symfony\\Component\\Filesystem\\": ""
  3099. },
  3100. "exclude-from-classmap": [
  3101. "/Tests/"
  3102. ]
  3103. },
  3104. "notification-url": "https://packagist.org/downloads/",
  3105. "license": [
  3106. "MIT"
  3107. ],
  3108. "authors": [
  3109. {
  3110. "name": "Fabien Potencier",
  3111. "email": "fabien@symfony.com"
  3112. },
  3113. {
  3114. "name": "Symfony Community",
  3115. "homepage": "https://symfony.com/contributors"
  3116. }
  3117. ],
  3118. "description": "Provides basic utilities for the filesystem",
  3119. "homepage": "https://symfony.com",
  3120. "support": {
  3121. "source": "https://github.com/symfony/filesystem/tree/v6.0.13"
  3122. },
  3123. "funding": [
  3124. {
  3125. "url": "https://symfony.com/sponsor",
  3126. "type": "custom"
  3127. },
  3128. {
  3129. "url": "https://github.com/fabpot",
  3130. "type": "github"
  3131. },
  3132. {
  3133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3134. "type": "tidelift"
  3135. }
  3136. ],
  3137. "time": "2022-09-21T20:25:27+00:00"
  3138. },
  3139. {
  3140. "name": "symfony/finder",
  3141. "version": "v5.4.11",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/symfony/finder.git",
  3145. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3150. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=7.2.5",
  3155. "symfony/deprecation-contracts": "^2.1|^3",
  3156. "symfony/polyfill-php80": "^1.16"
  3157. },
  3158. "type": "library",
  3159. "autoload": {
  3160. "psr-4": {
  3161. "Symfony\\Component\\Finder\\": ""
  3162. },
  3163. "exclude-from-classmap": [
  3164. "/Tests/"
  3165. ]
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Fabien Potencier",
  3174. "email": "fabien@symfony.com"
  3175. },
  3176. {
  3177. "name": "Symfony Community",
  3178. "homepage": "https://symfony.com/contributors"
  3179. }
  3180. ],
  3181. "description": "Finds files and directories via an intuitive fluent interface",
  3182. "homepage": "https://symfony.com",
  3183. "support": {
  3184. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  3185. },
  3186. "funding": [
  3187. {
  3188. "url": "https://symfony.com/sponsor",
  3189. "type": "custom"
  3190. },
  3191. {
  3192. "url": "https://github.com/fabpot",
  3193. "type": "github"
  3194. },
  3195. {
  3196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3197. "type": "tidelift"
  3198. }
  3199. ],
  3200. "time": "2022-07-29T07:37:50+00:00"
  3201. },
  3202. {
  3203. "name": "symfony/http-foundation",
  3204. "version": "v5.4.14",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/symfony/http-foundation.git",
  3208. "reference": "e7c7b395c3a61d746919c21e915f51f0039c3f75"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7c7b395c3a61d746919c21e915f51f0039c3f75",
  3213. "reference": "e7c7b395c3a61d746919c21e915f51f0039c3f75",
  3214. "shasum": ""
  3215. },
  3216. "require": {
  3217. "php": ">=7.2.5",
  3218. "symfony/deprecation-contracts": "^2.1|^3",
  3219. "symfony/polyfill-mbstring": "~1.1",
  3220. "symfony/polyfill-php80": "^1.16"
  3221. },
  3222. "require-dev": {
  3223. "predis/predis": "~1.0",
  3224. "symfony/cache": "^4.4|^5.0|^6.0",
  3225. "symfony/dependency-injection": "^5.4|^6.0",
  3226. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3227. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3228. "symfony/mime": "^4.4|^5.0|^6.0",
  3229. "symfony/rate-limiter": "^5.2|^6.0"
  3230. },
  3231. "suggest": {
  3232. "symfony/mime": "To use the file extension guesser"
  3233. },
  3234. "type": "library",
  3235. "autoload": {
  3236. "psr-4": {
  3237. "Symfony\\Component\\HttpFoundation\\": ""
  3238. },
  3239. "exclude-from-classmap": [
  3240. "/Tests/"
  3241. ]
  3242. },
  3243. "notification-url": "https://packagist.org/downloads/",
  3244. "license": [
  3245. "MIT"
  3246. ],
  3247. "authors": [
  3248. {
  3249. "name": "Fabien Potencier",
  3250. "email": "fabien@symfony.com"
  3251. },
  3252. {
  3253. "name": "Symfony Community",
  3254. "homepage": "https://symfony.com/contributors"
  3255. }
  3256. ],
  3257. "description": "Defines an object-oriented layer for the HTTP specification",
  3258. "homepage": "https://symfony.com",
  3259. "support": {
  3260. "source": "https://github.com/symfony/http-foundation/tree/v5.4.14"
  3261. },
  3262. "funding": [
  3263. {
  3264. "url": "https://symfony.com/sponsor",
  3265. "type": "custom"
  3266. },
  3267. {
  3268. "url": "https://github.com/fabpot",
  3269. "type": "github"
  3270. },
  3271. {
  3272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3273. "type": "tidelift"
  3274. }
  3275. ],
  3276. "time": "2022-10-01T21:59:28+00:00"
  3277. },
  3278. {
  3279. "name": "symfony/http-kernel",
  3280. "version": "v5.4.14",
  3281. "source": {
  3282. "type": "git",
  3283. "url": "https://github.com/symfony/http-kernel.git",
  3284. "reference": "6f77fabc1a37c2dceecc6f78cca44772705dc52f"
  3285. },
  3286. "dist": {
  3287. "type": "zip",
  3288. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6f77fabc1a37c2dceecc6f78cca44772705dc52f",
  3289. "reference": "6f77fabc1a37c2dceecc6f78cca44772705dc52f",
  3290. "shasum": ""
  3291. },
  3292. "require": {
  3293. "php": ">=7.2.5",
  3294. "psr/log": "^1|^2",
  3295. "symfony/deprecation-contracts": "^2.1|^3",
  3296. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3297. "symfony/event-dispatcher": "^5.0|^6.0",
  3298. "symfony/http-foundation": "^5.3.7|^6.0",
  3299. "symfony/polyfill-ctype": "^1.8",
  3300. "symfony/polyfill-php73": "^1.9",
  3301. "symfony/polyfill-php80": "^1.16"
  3302. },
  3303. "conflict": {
  3304. "symfony/browser-kit": "<5.4",
  3305. "symfony/cache": "<5.0",
  3306. "symfony/config": "<5.0",
  3307. "symfony/console": "<4.4",
  3308. "symfony/dependency-injection": "<5.3",
  3309. "symfony/doctrine-bridge": "<5.0",
  3310. "symfony/form": "<5.0",
  3311. "symfony/http-client": "<5.0",
  3312. "symfony/mailer": "<5.0",
  3313. "symfony/messenger": "<5.0",
  3314. "symfony/translation": "<5.0",
  3315. "symfony/twig-bridge": "<5.0",
  3316. "symfony/validator": "<5.0",
  3317. "twig/twig": "<2.13"
  3318. },
  3319. "provide": {
  3320. "psr/log-implementation": "1.0|2.0"
  3321. },
  3322. "require-dev": {
  3323. "psr/cache": "^1.0|^2.0|^3.0",
  3324. "symfony/browser-kit": "^5.4|^6.0",
  3325. "symfony/config": "^5.0|^6.0",
  3326. "symfony/console": "^4.4|^5.0|^6.0",
  3327. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3328. "symfony/dependency-injection": "^5.3|^6.0",
  3329. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3330. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3331. "symfony/finder": "^4.4|^5.0|^6.0",
  3332. "symfony/http-client-contracts": "^1.1|^2|^3",
  3333. "symfony/process": "^4.4|^5.0|^6.0",
  3334. "symfony/routing": "^4.4|^5.0|^6.0",
  3335. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3336. "symfony/translation": "^4.4|^5.0|^6.0",
  3337. "symfony/translation-contracts": "^1.1|^2|^3",
  3338. "twig/twig": "^2.13|^3.0.4"
  3339. },
  3340. "suggest": {
  3341. "symfony/browser-kit": "",
  3342. "symfony/config": "",
  3343. "symfony/console": "",
  3344. "symfony/dependency-injection": ""
  3345. },
  3346. "type": "library",
  3347. "autoload": {
  3348. "psr-4": {
  3349. "Symfony\\Component\\HttpKernel\\": ""
  3350. },
  3351. "exclude-from-classmap": [
  3352. "/Tests/"
  3353. ]
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Fabien Potencier",
  3362. "email": "fabien@symfony.com"
  3363. },
  3364. {
  3365. "name": "Symfony Community",
  3366. "homepage": "https://symfony.com/contributors"
  3367. }
  3368. ],
  3369. "description": "Provides a structured process for converting a Request into a Response",
  3370. "homepage": "https://symfony.com",
  3371. "support": {
  3372. "source": "https://github.com/symfony/http-kernel/tree/v5.4.14"
  3373. },
  3374. "funding": [
  3375. {
  3376. "url": "https://symfony.com/sponsor",
  3377. "type": "custom"
  3378. },
  3379. {
  3380. "url": "https://github.com/fabpot",
  3381. "type": "github"
  3382. },
  3383. {
  3384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3385. "type": "tidelift"
  3386. }
  3387. ],
  3388. "time": "2022-10-12T07:12:21+00:00"
  3389. },
  3390. {
  3391. "name": "symfony/mime",
  3392. "version": "v5.4.14",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/symfony/mime.git",
  3396. "reference": "1c118b253bb3495d81e95a6e3ec6c2766a98a0c4"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/symfony/mime/zipball/1c118b253bb3495d81e95a6e3ec6c2766a98a0c4",
  3401. "reference": "1c118b253bb3495d81e95a6e3ec6c2766a98a0c4",
  3402. "shasum": ""
  3403. },
  3404. "require": {
  3405. "php": ">=7.2.5",
  3406. "symfony/deprecation-contracts": "^2.1|^3",
  3407. "symfony/polyfill-intl-idn": "^1.10",
  3408. "symfony/polyfill-mbstring": "^1.0",
  3409. "symfony/polyfill-php80": "^1.16"
  3410. },
  3411. "conflict": {
  3412. "egulias/email-validator": "~3.0.0",
  3413. "phpdocumentor/reflection-docblock": "<3.2.2",
  3414. "phpdocumentor/type-resolver": "<1.4.0",
  3415. "symfony/mailer": "<4.4",
  3416. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  3417. },
  3418. "require-dev": {
  3419. "egulias/email-validator": "^2.1.10|^3.1",
  3420. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3421. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3422. "symfony/property-access": "^4.4|^5.1|^6.0",
  3423. "symfony/property-info": "^4.4|^5.1|^6.0",
  3424. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  3425. },
  3426. "type": "library",
  3427. "autoload": {
  3428. "psr-4": {
  3429. "Symfony\\Component\\Mime\\": ""
  3430. },
  3431. "exclude-from-classmap": [
  3432. "/Tests/"
  3433. ]
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Fabien Potencier",
  3442. "email": "fabien@symfony.com"
  3443. },
  3444. {
  3445. "name": "Symfony Community",
  3446. "homepage": "https://symfony.com/contributors"
  3447. }
  3448. ],
  3449. "description": "Allows manipulating MIME messages",
  3450. "homepage": "https://symfony.com",
  3451. "keywords": [
  3452. "mime",
  3453. "mime-type"
  3454. ],
  3455. "support": {
  3456. "source": "https://github.com/symfony/mime/tree/v5.4.14"
  3457. },
  3458. "funding": [
  3459. {
  3460. "url": "https://symfony.com/sponsor",
  3461. "type": "custom"
  3462. },
  3463. {
  3464. "url": "https://github.com/fabpot",
  3465. "type": "github"
  3466. },
  3467. {
  3468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3469. "type": "tidelift"
  3470. }
  3471. ],
  3472. "time": "2022-10-07T08:01:20+00:00"
  3473. },
  3474. {
  3475. "name": "symfony/phpunit-bridge",
  3476. "version": "v6.1.6",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://github.com/symfony/phpunit-bridge.git",
  3480. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/07cf788ac9ae83b59d46599bb5098c3add88c68b",
  3485. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b",
  3486. "shasum": ""
  3487. },
  3488. "require": {
  3489. "php": ">=7.1.3"
  3490. },
  3491. "conflict": {
  3492. "phpunit/phpunit": "<7.5|9.1.2"
  3493. },
  3494. "require-dev": {
  3495. "symfony/deprecation-contracts": "^2.1|^3.0",
  3496. "symfony/error-handler": "^5.4|^6.0"
  3497. },
  3498. "suggest": {
  3499. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  3500. },
  3501. "bin": [
  3502. "bin/simple-phpunit"
  3503. ],
  3504. "type": "symfony-bridge",
  3505. "extra": {
  3506. "thanks": {
  3507. "name": "phpunit/phpunit",
  3508. "url": "https://github.com/sebastianbergmann/phpunit"
  3509. }
  3510. },
  3511. "autoload": {
  3512. "files": [
  3513. "bootstrap.php"
  3514. ],
  3515. "psr-4": {
  3516. "Symfony\\Bridge\\PhpUnit\\": ""
  3517. },
  3518. "exclude-from-classmap": [
  3519. "/Tests/"
  3520. ]
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "MIT"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Nicolas Grekas",
  3529. "email": "p@tchwork.com"
  3530. },
  3531. {
  3532. "name": "Symfony Community",
  3533. "homepage": "https://symfony.com/contributors"
  3534. }
  3535. ],
  3536. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  3537. "homepage": "https://symfony.com",
  3538. "support": {
  3539. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.1.6"
  3540. },
  3541. "funding": [
  3542. {
  3543. "url": "https://symfony.com/sponsor",
  3544. "type": "custom"
  3545. },
  3546. {
  3547. "url": "https://github.com/fabpot",
  3548. "type": "github"
  3549. },
  3550. {
  3551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3552. "type": "tidelift"
  3553. }
  3554. ],
  3555. "time": "2022-10-07T08:04:03+00:00"
  3556. },
  3557. {
  3558. "name": "symfony/polyfill-ctype",
  3559. "version": "v1.26.0",
  3560. "source": {
  3561. "type": "git",
  3562. "url": "https://github.com/symfony/polyfill-ctype.git",
  3563. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3564. },
  3565. "dist": {
  3566. "type": "zip",
  3567. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3568. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3569. "shasum": ""
  3570. },
  3571. "require": {
  3572. "php": ">=7.1"
  3573. },
  3574. "provide": {
  3575. "ext-ctype": "*"
  3576. },
  3577. "suggest": {
  3578. "ext-ctype": "For best performance"
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "branch-alias": {
  3583. "dev-main": "1.26-dev"
  3584. },
  3585. "thanks": {
  3586. "name": "symfony/polyfill",
  3587. "url": "https://github.com/symfony/polyfill"
  3588. }
  3589. },
  3590. "autoload": {
  3591. "files": [
  3592. "bootstrap.php"
  3593. ],
  3594. "psr-4": {
  3595. "Symfony\\Polyfill\\Ctype\\": ""
  3596. }
  3597. },
  3598. "notification-url": "https://packagist.org/downloads/",
  3599. "license": [
  3600. "MIT"
  3601. ],
  3602. "authors": [
  3603. {
  3604. "name": "Gert de Pagter",
  3605. "email": "BackEndTea@gmail.com"
  3606. },
  3607. {
  3608. "name": "Symfony Community",
  3609. "homepage": "https://symfony.com/contributors"
  3610. }
  3611. ],
  3612. "description": "Symfony polyfill for ctype functions",
  3613. "homepage": "https://symfony.com",
  3614. "keywords": [
  3615. "compatibility",
  3616. "ctype",
  3617. "polyfill",
  3618. "portable"
  3619. ],
  3620. "support": {
  3621. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3622. },
  3623. "funding": [
  3624. {
  3625. "url": "https://symfony.com/sponsor",
  3626. "type": "custom"
  3627. },
  3628. {
  3629. "url": "https://github.com/fabpot",
  3630. "type": "github"
  3631. },
  3632. {
  3633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3634. "type": "tidelift"
  3635. }
  3636. ],
  3637. "time": "2022-05-24T11:49:31+00:00"
  3638. },
  3639. {
  3640. "name": "symfony/polyfill-iconv",
  3641. "version": "v1.26.0",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/symfony/polyfill-iconv.git",
  3645. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  3650. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  3651. "shasum": ""
  3652. },
  3653. "require": {
  3654. "php": ">=7.1"
  3655. },
  3656. "provide": {
  3657. "ext-iconv": "*"
  3658. },
  3659. "suggest": {
  3660. "ext-iconv": "For best performance"
  3661. },
  3662. "type": "library",
  3663. "extra": {
  3664. "branch-alias": {
  3665. "dev-main": "1.26-dev"
  3666. },
  3667. "thanks": {
  3668. "name": "symfony/polyfill",
  3669. "url": "https://github.com/symfony/polyfill"
  3670. }
  3671. },
  3672. "autoload": {
  3673. "files": [
  3674. "bootstrap.php"
  3675. ],
  3676. "psr-4": {
  3677. "Symfony\\Polyfill\\Iconv\\": ""
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "Nicolas Grekas",
  3687. "email": "p@tchwork.com"
  3688. },
  3689. {
  3690. "name": "Symfony Community",
  3691. "homepage": "https://symfony.com/contributors"
  3692. }
  3693. ],
  3694. "description": "Symfony polyfill for the Iconv extension",
  3695. "homepage": "https://symfony.com",
  3696. "keywords": [
  3697. "compatibility",
  3698. "iconv",
  3699. "polyfill",
  3700. "portable",
  3701. "shim"
  3702. ],
  3703. "support": {
  3704. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  3705. },
  3706. "funding": [
  3707. {
  3708. "url": "https://symfony.com/sponsor",
  3709. "type": "custom"
  3710. },
  3711. {
  3712. "url": "https://github.com/fabpot",
  3713. "type": "github"
  3714. },
  3715. {
  3716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3717. "type": "tidelift"
  3718. }
  3719. ],
  3720. "time": "2022-05-24T11:49:31+00:00"
  3721. },
  3722. {
  3723. "name": "symfony/polyfill-intl-grapheme",
  3724. "version": "v1.26.0",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3728. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  3733. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  3734. "shasum": ""
  3735. },
  3736. "require": {
  3737. "php": ">=7.1"
  3738. },
  3739. "suggest": {
  3740. "ext-intl": "For best performance"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-main": "1.26-dev"
  3746. },
  3747. "thanks": {
  3748. "name": "symfony/polyfill",
  3749. "url": "https://github.com/symfony/polyfill"
  3750. }
  3751. },
  3752. "autoload": {
  3753. "files": [
  3754. "bootstrap.php"
  3755. ],
  3756. "psr-4": {
  3757. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3758. }
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Nicolas Grekas",
  3767. "email": "p@tchwork.com"
  3768. },
  3769. {
  3770. "name": "Symfony Community",
  3771. "homepage": "https://symfony.com/contributors"
  3772. }
  3773. ],
  3774. "description": "Symfony polyfill for intl's grapheme_* functions",
  3775. "homepage": "https://symfony.com",
  3776. "keywords": [
  3777. "compatibility",
  3778. "grapheme",
  3779. "intl",
  3780. "polyfill",
  3781. "portable",
  3782. "shim"
  3783. ],
  3784. "support": {
  3785. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://symfony.com/sponsor",
  3790. "type": "custom"
  3791. },
  3792. {
  3793. "url": "https://github.com/fabpot",
  3794. "type": "github"
  3795. },
  3796. {
  3797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3798. "type": "tidelift"
  3799. }
  3800. ],
  3801. "time": "2022-05-24T11:49:31+00:00"
  3802. },
  3803. {
  3804. "name": "symfony/polyfill-intl-idn",
  3805. "version": "v1.26.0",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3809. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3814. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "php": ">=7.1",
  3819. "symfony/polyfill-intl-normalizer": "^1.10",
  3820. "symfony/polyfill-php72": "^1.10"
  3821. },
  3822. "suggest": {
  3823. "ext-intl": "For best performance"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-main": "1.26-dev"
  3829. },
  3830. "thanks": {
  3831. "name": "symfony/polyfill",
  3832. "url": "https://github.com/symfony/polyfill"
  3833. }
  3834. },
  3835. "autoload": {
  3836. "files": [
  3837. "bootstrap.php"
  3838. ],
  3839. "psr-4": {
  3840. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3841. }
  3842. },
  3843. "notification-url": "https://packagist.org/downloads/",
  3844. "license": [
  3845. "MIT"
  3846. ],
  3847. "authors": [
  3848. {
  3849. "name": "Laurent Bassin",
  3850. "email": "laurent@bassin.info"
  3851. },
  3852. {
  3853. "name": "Trevor Rowbotham",
  3854. "email": "trevor.rowbotham@pm.me"
  3855. },
  3856. {
  3857. "name": "Symfony Community",
  3858. "homepage": "https://symfony.com/contributors"
  3859. }
  3860. ],
  3861. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3862. "homepage": "https://symfony.com",
  3863. "keywords": [
  3864. "compatibility",
  3865. "idn",
  3866. "intl",
  3867. "polyfill",
  3868. "portable",
  3869. "shim"
  3870. ],
  3871. "support": {
  3872. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  3873. },
  3874. "funding": [
  3875. {
  3876. "url": "https://symfony.com/sponsor",
  3877. "type": "custom"
  3878. },
  3879. {
  3880. "url": "https://github.com/fabpot",
  3881. "type": "github"
  3882. },
  3883. {
  3884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3885. "type": "tidelift"
  3886. }
  3887. ],
  3888. "time": "2022-05-24T11:49:31+00:00"
  3889. },
  3890. {
  3891. "name": "symfony/polyfill-intl-normalizer",
  3892. "version": "v1.26.0",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3896. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3901. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3902. "shasum": ""
  3903. },
  3904. "require": {
  3905. "php": ">=7.1"
  3906. },
  3907. "suggest": {
  3908. "ext-intl": "For best performance"
  3909. },
  3910. "type": "library",
  3911. "extra": {
  3912. "branch-alias": {
  3913. "dev-main": "1.26-dev"
  3914. },
  3915. "thanks": {
  3916. "name": "symfony/polyfill",
  3917. "url": "https://github.com/symfony/polyfill"
  3918. }
  3919. },
  3920. "autoload": {
  3921. "files": [
  3922. "bootstrap.php"
  3923. ],
  3924. "psr-4": {
  3925. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3926. },
  3927. "classmap": [
  3928. "Resources/stubs"
  3929. ]
  3930. },
  3931. "notification-url": "https://packagist.org/downloads/",
  3932. "license": [
  3933. "MIT"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "Nicolas Grekas",
  3938. "email": "p@tchwork.com"
  3939. },
  3940. {
  3941. "name": "Symfony Community",
  3942. "homepage": "https://symfony.com/contributors"
  3943. }
  3944. ],
  3945. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3946. "homepage": "https://symfony.com",
  3947. "keywords": [
  3948. "compatibility",
  3949. "intl",
  3950. "normalizer",
  3951. "polyfill",
  3952. "portable",
  3953. "shim"
  3954. ],
  3955. "support": {
  3956. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  3957. },
  3958. "funding": [
  3959. {
  3960. "url": "https://symfony.com/sponsor",
  3961. "type": "custom"
  3962. },
  3963. {
  3964. "url": "https://github.com/fabpot",
  3965. "type": "github"
  3966. },
  3967. {
  3968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3969. "type": "tidelift"
  3970. }
  3971. ],
  3972. "time": "2022-05-24T11:49:31+00:00"
  3973. },
  3974. {
  3975. "name": "symfony/polyfill-mbstring",
  3976. "version": "v1.26.0",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3980. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3985. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "php": ">=7.1"
  3990. },
  3991. "provide": {
  3992. "ext-mbstring": "*"
  3993. },
  3994. "suggest": {
  3995. "ext-mbstring": "For best performance"
  3996. },
  3997. "type": "library",
  3998. "extra": {
  3999. "branch-alias": {
  4000. "dev-main": "1.26-dev"
  4001. },
  4002. "thanks": {
  4003. "name": "symfony/polyfill",
  4004. "url": "https://github.com/symfony/polyfill"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "files": [
  4009. "bootstrap.php"
  4010. ],
  4011. "psr-4": {
  4012. "Symfony\\Polyfill\\Mbstring\\": ""
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "Nicolas Grekas",
  4022. "email": "p@tchwork.com"
  4023. },
  4024. {
  4025. "name": "Symfony Community",
  4026. "homepage": "https://symfony.com/contributors"
  4027. }
  4028. ],
  4029. "description": "Symfony polyfill for the Mbstring extension",
  4030. "homepage": "https://symfony.com",
  4031. "keywords": [
  4032. "compatibility",
  4033. "mbstring",
  4034. "polyfill",
  4035. "portable",
  4036. "shim"
  4037. ],
  4038. "support": {
  4039. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4040. },
  4041. "funding": [
  4042. {
  4043. "url": "https://symfony.com/sponsor",
  4044. "type": "custom"
  4045. },
  4046. {
  4047. "url": "https://github.com/fabpot",
  4048. "type": "github"
  4049. },
  4050. {
  4051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4052. "type": "tidelift"
  4053. }
  4054. ],
  4055. "time": "2022-05-24T11:49:31+00:00"
  4056. },
  4057. {
  4058. "name": "symfony/polyfill-php72",
  4059. "version": "v1.26.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/symfony/polyfill-php72.git",
  4063. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4068. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "php": ">=7.1"
  4073. },
  4074. "type": "library",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-main": "1.26-dev"
  4078. },
  4079. "thanks": {
  4080. "name": "symfony/polyfill",
  4081. "url": "https://github.com/symfony/polyfill"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "files": [
  4086. "bootstrap.php"
  4087. ],
  4088. "psr-4": {
  4089. "Symfony\\Polyfill\\Php72\\": ""
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "Nicolas Grekas",
  4099. "email": "p@tchwork.com"
  4100. },
  4101. {
  4102. "name": "Symfony Community",
  4103. "homepage": "https://symfony.com/contributors"
  4104. }
  4105. ],
  4106. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4107. "homepage": "https://symfony.com",
  4108. "keywords": [
  4109. "compatibility",
  4110. "polyfill",
  4111. "portable",
  4112. "shim"
  4113. ],
  4114. "support": {
  4115. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  4116. },
  4117. "funding": [
  4118. {
  4119. "url": "https://symfony.com/sponsor",
  4120. "type": "custom"
  4121. },
  4122. {
  4123. "url": "https://github.com/fabpot",
  4124. "type": "github"
  4125. },
  4126. {
  4127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4128. "type": "tidelift"
  4129. }
  4130. ],
  4131. "time": "2022-05-24T11:49:31+00:00"
  4132. },
  4133. {
  4134. "name": "symfony/polyfill-php73",
  4135. "version": "v1.26.0",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/symfony/polyfill-php73.git",
  4139. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4144. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4145. "shasum": ""
  4146. },
  4147. "require": {
  4148. "php": ">=7.1"
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-main": "1.26-dev"
  4154. },
  4155. "thanks": {
  4156. "name": "symfony/polyfill",
  4157. "url": "https://github.com/symfony/polyfill"
  4158. }
  4159. },
  4160. "autoload": {
  4161. "files": [
  4162. "bootstrap.php"
  4163. ],
  4164. "psr-4": {
  4165. "Symfony\\Polyfill\\Php73\\": ""
  4166. },
  4167. "classmap": [
  4168. "Resources/stubs"
  4169. ]
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Nicolas Grekas",
  4178. "email": "p@tchwork.com"
  4179. },
  4180. {
  4181. "name": "Symfony Community",
  4182. "homepage": "https://symfony.com/contributors"
  4183. }
  4184. ],
  4185. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4186. "homepage": "https://symfony.com",
  4187. "keywords": [
  4188. "compatibility",
  4189. "polyfill",
  4190. "portable",
  4191. "shim"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  4195. },
  4196. "funding": [
  4197. {
  4198. "url": "https://symfony.com/sponsor",
  4199. "type": "custom"
  4200. },
  4201. {
  4202. "url": "https://github.com/fabpot",
  4203. "type": "github"
  4204. },
  4205. {
  4206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4207. "type": "tidelift"
  4208. }
  4209. ],
  4210. "time": "2022-05-24T11:49:31+00:00"
  4211. },
  4212. {
  4213. "name": "symfony/polyfill-php80",
  4214. "version": "v1.26.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/symfony/polyfill-php80.git",
  4218. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4223. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "php": ">=7.1"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-main": "1.26-dev"
  4233. },
  4234. "thanks": {
  4235. "name": "symfony/polyfill",
  4236. "url": "https://github.com/symfony/polyfill"
  4237. }
  4238. },
  4239. "autoload": {
  4240. "files": [
  4241. "bootstrap.php"
  4242. ],
  4243. "psr-4": {
  4244. "Symfony\\Polyfill\\Php80\\": ""
  4245. },
  4246. "classmap": [
  4247. "Resources/stubs"
  4248. ]
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Ion Bazan",
  4257. "email": "ion.bazan@gmail.com"
  4258. },
  4259. {
  4260. "name": "Nicolas Grekas",
  4261. "email": "p@tchwork.com"
  4262. },
  4263. {
  4264. "name": "Symfony Community",
  4265. "homepage": "https://symfony.com/contributors"
  4266. }
  4267. ],
  4268. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4269. "homepage": "https://symfony.com",
  4270. "keywords": [
  4271. "compatibility",
  4272. "polyfill",
  4273. "portable",
  4274. "shim"
  4275. ],
  4276. "support": {
  4277. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4278. },
  4279. "funding": [
  4280. {
  4281. "url": "https://symfony.com/sponsor",
  4282. "type": "custom"
  4283. },
  4284. {
  4285. "url": "https://github.com/fabpot",
  4286. "type": "github"
  4287. },
  4288. {
  4289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4290. "type": "tidelift"
  4291. }
  4292. ],
  4293. "time": "2022-05-10T07:21:04+00:00"
  4294. },
  4295. {
  4296. "name": "symfony/polyfill-php81",
  4297. "version": "v1.26.0",
  4298. "source": {
  4299. "type": "git",
  4300. "url": "https://github.com/symfony/polyfill-php81.git",
  4301. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  4302. },
  4303. "dist": {
  4304. "type": "zip",
  4305. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4306. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4307. "shasum": ""
  4308. },
  4309. "require": {
  4310. "php": ">=7.1"
  4311. },
  4312. "type": "library",
  4313. "extra": {
  4314. "branch-alias": {
  4315. "dev-main": "1.26-dev"
  4316. },
  4317. "thanks": {
  4318. "name": "symfony/polyfill",
  4319. "url": "https://github.com/symfony/polyfill"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "files": [
  4324. "bootstrap.php"
  4325. ],
  4326. "psr-4": {
  4327. "Symfony\\Polyfill\\Php81\\": ""
  4328. },
  4329. "classmap": [
  4330. "Resources/stubs"
  4331. ]
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Nicolas Grekas",
  4340. "email": "p@tchwork.com"
  4341. },
  4342. {
  4343. "name": "Symfony Community",
  4344. "homepage": "https://symfony.com/contributors"
  4345. }
  4346. ],
  4347. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4348. "homepage": "https://symfony.com",
  4349. "keywords": [
  4350. "compatibility",
  4351. "polyfill",
  4352. "portable",
  4353. "shim"
  4354. ],
  4355. "support": {
  4356. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  4357. },
  4358. "funding": [
  4359. {
  4360. "url": "https://symfony.com/sponsor",
  4361. "type": "custom"
  4362. },
  4363. {
  4364. "url": "https://github.com/fabpot",
  4365. "type": "github"
  4366. },
  4367. {
  4368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4369. "type": "tidelift"
  4370. }
  4371. ],
  4372. "time": "2022-05-24T11:49:31+00:00"
  4373. },
  4374. {
  4375. "name": "symfony/process",
  4376. "version": "v5.4.11",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/symfony/process.git",
  4380. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  4385. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "php": ">=7.2.5",
  4390. "symfony/polyfill-php80": "^1.16"
  4391. },
  4392. "type": "library",
  4393. "autoload": {
  4394. "psr-4": {
  4395. "Symfony\\Component\\Process\\": ""
  4396. },
  4397. "exclude-from-classmap": [
  4398. "/Tests/"
  4399. ]
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "Fabien Potencier",
  4408. "email": "fabien@symfony.com"
  4409. },
  4410. {
  4411. "name": "Symfony Community",
  4412. "homepage": "https://symfony.com/contributors"
  4413. }
  4414. ],
  4415. "description": "Executes commands in sub-processes",
  4416. "homepage": "https://symfony.com",
  4417. "support": {
  4418. "source": "https://github.com/symfony/process/tree/v5.4.11"
  4419. },
  4420. "funding": [
  4421. {
  4422. "url": "https://symfony.com/sponsor",
  4423. "type": "custom"
  4424. },
  4425. {
  4426. "url": "https://github.com/fabpot",
  4427. "type": "github"
  4428. },
  4429. {
  4430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4431. "type": "tidelift"
  4432. }
  4433. ],
  4434. "time": "2022-06-27T16:58:25+00:00"
  4435. },
  4436. {
  4437. "name": "symfony/property-access",
  4438. "version": "v2.8.52",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/symfony/property-access.git",
  4442. "reference": "c8f10191183be9bb0d5a1b8364d3891f1bde07b6"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/symfony/property-access/zipball/c8f10191183be9bb0d5a1b8364d3891f1bde07b6",
  4447. "reference": "c8f10191183be9bb0d5a1b8364d3891f1bde07b6",
  4448. "shasum": ""
  4449. },
  4450. "require": {
  4451. "php": ">=5.3.9",
  4452. "symfony/polyfill-ctype": "~1.8"
  4453. },
  4454. "type": "library",
  4455. "extra": {
  4456. "branch-alias": {
  4457. "dev-master": "2.8-dev"
  4458. }
  4459. },
  4460. "autoload": {
  4461. "psr-4": {
  4462. "Symfony\\Component\\PropertyAccess\\": ""
  4463. },
  4464. "exclude-from-classmap": [
  4465. "/Tests/"
  4466. ]
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "Fabien Potencier",
  4475. "email": "fabien@symfony.com"
  4476. },
  4477. {
  4478. "name": "Symfony Community",
  4479. "homepage": "https://symfony.com/contributors"
  4480. }
  4481. ],
  4482. "description": "Symfony PropertyAccess Component",
  4483. "homepage": "https://symfony.com",
  4484. "keywords": [
  4485. "access",
  4486. "array",
  4487. "extraction",
  4488. "index",
  4489. "injection",
  4490. "object",
  4491. "property",
  4492. "property path",
  4493. "reflection"
  4494. ],
  4495. "support": {
  4496. "source": "https://github.com/symfony/property-access/tree/v2.8.50"
  4497. },
  4498. "time": "2018-11-11T11:18:13+00:00"
  4499. },
  4500. {
  4501. "name": "symfony/routing",
  4502. "version": "v5.4.11",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/symfony/routing.git",
  4506. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  4511. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "php": ">=7.2.5",
  4516. "symfony/deprecation-contracts": "^2.1|^3",
  4517. "symfony/polyfill-php80": "^1.16"
  4518. },
  4519. "conflict": {
  4520. "doctrine/annotations": "<1.12",
  4521. "symfony/config": "<5.3",
  4522. "symfony/dependency-injection": "<4.4",
  4523. "symfony/yaml": "<4.4"
  4524. },
  4525. "require-dev": {
  4526. "doctrine/annotations": "^1.12",
  4527. "psr/log": "^1|^2|^3",
  4528. "symfony/config": "^5.3|^6.0",
  4529. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4530. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4531. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4532. "symfony/yaml": "^4.4|^5.0|^6.0"
  4533. },
  4534. "suggest": {
  4535. "symfony/config": "For using the all-in-one router or any loader",
  4536. "symfony/expression-language": "For using expression matching",
  4537. "symfony/http-foundation": "For using a Symfony Request object",
  4538. "symfony/yaml": "For using the YAML loader"
  4539. },
  4540. "type": "library",
  4541. "autoload": {
  4542. "psr-4": {
  4543. "Symfony\\Component\\Routing\\": ""
  4544. },
  4545. "exclude-from-classmap": [
  4546. "/Tests/"
  4547. ]
  4548. },
  4549. "notification-url": "https://packagist.org/downloads/",
  4550. "license": [
  4551. "MIT"
  4552. ],
  4553. "authors": [
  4554. {
  4555. "name": "Fabien Potencier",
  4556. "email": "fabien@symfony.com"
  4557. },
  4558. {
  4559. "name": "Symfony Community",
  4560. "homepage": "https://symfony.com/contributors"
  4561. }
  4562. ],
  4563. "description": "Maps an HTTP request to a set of configuration variables",
  4564. "homepage": "https://symfony.com",
  4565. "keywords": [
  4566. "router",
  4567. "routing",
  4568. "uri",
  4569. "url"
  4570. ],
  4571. "support": {
  4572. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  4573. },
  4574. "funding": [
  4575. {
  4576. "url": "https://symfony.com/sponsor",
  4577. "type": "custom"
  4578. },
  4579. {
  4580. "url": "https://github.com/fabpot",
  4581. "type": "github"
  4582. },
  4583. {
  4584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4585. "type": "tidelift"
  4586. }
  4587. ],
  4588. "time": "2022-07-20T13:00:38+00:00"
  4589. },
  4590. {
  4591. "name": "symfony/service-contracts",
  4592. "version": "v2.5.2",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/symfony/service-contracts.git",
  4596. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4601. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4602. "shasum": ""
  4603. },
  4604. "require": {
  4605. "php": ">=7.2.5",
  4606. "psr/container": "^1.1",
  4607. "symfony/deprecation-contracts": "^2.1|^3"
  4608. },
  4609. "conflict": {
  4610. "ext-psr": "<1.1|>=2"
  4611. },
  4612. "suggest": {
  4613. "symfony/service-implementation": ""
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-main": "2.5-dev"
  4619. },
  4620. "thanks": {
  4621. "name": "symfony/contracts",
  4622. "url": "https://github.com/symfony/contracts"
  4623. }
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Symfony\\Contracts\\Service\\": ""
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Nicolas Grekas",
  4637. "email": "p@tchwork.com"
  4638. },
  4639. {
  4640. "name": "Symfony Community",
  4641. "homepage": "https://symfony.com/contributors"
  4642. }
  4643. ],
  4644. "description": "Generic abstractions related to writing services",
  4645. "homepage": "https://symfony.com",
  4646. "keywords": [
  4647. "abstractions",
  4648. "contracts",
  4649. "decoupling",
  4650. "interfaces",
  4651. "interoperability",
  4652. "standards"
  4653. ],
  4654. "support": {
  4655. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4656. },
  4657. "funding": [
  4658. {
  4659. "url": "https://symfony.com/sponsor",
  4660. "type": "custom"
  4661. },
  4662. {
  4663. "url": "https://github.com/fabpot",
  4664. "type": "github"
  4665. },
  4666. {
  4667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4668. "type": "tidelift"
  4669. }
  4670. ],
  4671. "time": "2022-05-30T19:17:29+00:00"
  4672. },
  4673. {
  4674. "name": "symfony/string",
  4675. "version": "v6.0.14",
  4676. "source": {
  4677. "type": "git",
  4678. "url": "https://github.com/symfony/string.git",
  4679. "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c"
  4680. },
  4681. "dist": {
  4682. "type": "zip",
  4683. "url": "https://api.github.com/repos/symfony/string/zipball/3db7da820a6e4a584b714b3933c34c6a7db4d86c",
  4684. "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c",
  4685. "shasum": ""
  4686. },
  4687. "require": {
  4688. "php": ">=8.0.2",
  4689. "symfony/polyfill-ctype": "~1.8",
  4690. "symfony/polyfill-intl-grapheme": "~1.0",
  4691. "symfony/polyfill-intl-normalizer": "~1.0",
  4692. "symfony/polyfill-mbstring": "~1.0"
  4693. },
  4694. "conflict": {
  4695. "symfony/translation-contracts": "<2.0"
  4696. },
  4697. "require-dev": {
  4698. "symfony/error-handler": "^5.4|^6.0",
  4699. "symfony/http-client": "^5.4|^6.0",
  4700. "symfony/translation-contracts": "^2.0|^3.0",
  4701. "symfony/var-exporter": "^5.4|^6.0"
  4702. },
  4703. "type": "library",
  4704. "autoload": {
  4705. "files": [
  4706. "Resources/functions.php"
  4707. ],
  4708. "psr-4": {
  4709. "Symfony\\Component\\String\\": ""
  4710. },
  4711. "exclude-from-classmap": [
  4712. "/Tests/"
  4713. ]
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "Nicolas Grekas",
  4722. "email": "p@tchwork.com"
  4723. },
  4724. {
  4725. "name": "Symfony Community",
  4726. "homepage": "https://symfony.com/contributors"
  4727. }
  4728. ],
  4729. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4730. "homepage": "https://symfony.com",
  4731. "keywords": [
  4732. "grapheme",
  4733. "i18n",
  4734. "string",
  4735. "unicode",
  4736. "utf-8",
  4737. "utf8"
  4738. ],
  4739. "support": {
  4740. "source": "https://github.com/symfony/string/tree/v6.0.14"
  4741. },
  4742. "funding": [
  4743. {
  4744. "url": "https://symfony.com/sponsor",
  4745. "type": "custom"
  4746. },
  4747. {
  4748. "url": "https://github.com/fabpot",
  4749. "type": "github"
  4750. },
  4751. {
  4752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4753. "type": "tidelift"
  4754. }
  4755. ],
  4756. "time": "2022-10-10T09:34:08+00:00"
  4757. },
  4758. {
  4759. "name": "symfony/translation",
  4760. "version": "v6.0.14",
  4761. "source": {
  4762. "type": "git",
  4763. "url": "https://github.com/symfony/translation.git",
  4764. "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c"
  4765. },
  4766. "dist": {
  4767. "type": "zip",
  4768. "url": "https://api.github.com/repos/symfony/translation/zipball/6f99eb179aee4652c0a7cd7c11f2a870d904330c",
  4769. "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c",
  4770. "shasum": ""
  4771. },
  4772. "require": {
  4773. "php": ">=8.0.2",
  4774. "symfony/polyfill-mbstring": "~1.0",
  4775. "symfony/translation-contracts": "^2.3|^3.0"
  4776. },
  4777. "conflict": {
  4778. "symfony/config": "<5.4",
  4779. "symfony/console": "<5.4",
  4780. "symfony/dependency-injection": "<5.4",
  4781. "symfony/http-kernel": "<5.4",
  4782. "symfony/twig-bundle": "<5.4",
  4783. "symfony/yaml": "<5.4"
  4784. },
  4785. "provide": {
  4786. "symfony/translation-implementation": "2.3|3.0"
  4787. },
  4788. "require-dev": {
  4789. "psr/log": "^1|^2|^3",
  4790. "symfony/config": "^5.4|^6.0",
  4791. "symfony/console": "^5.4|^6.0",
  4792. "symfony/dependency-injection": "^5.4|^6.0",
  4793. "symfony/finder": "^5.4|^6.0",
  4794. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4795. "symfony/http-kernel": "^5.4|^6.0",
  4796. "symfony/intl": "^5.4|^6.0",
  4797. "symfony/polyfill-intl-icu": "^1.21",
  4798. "symfony/service-contracts": "^1.1.2|^2|^3",
  4799. "symfony/yaml": "^5.4|^6.0"
  4800. },
  4801. "suggest": {
  4802. "psr/log-implementation": "To use logging capability in translator",
  4803. "symfony/config": "",
  4804. "symfony/yaml": ""
  4805. },
  4806. "type": "library",
  4807. "autoload": {
  4808. "files": [
  4809. "Resources/functions.php"
  4810. ],
  4811. "psr-4": {
  4812. "Symfony\\Component\\Translation\\": ""
  4813. },
  4814. "exclude-from-classmap": [
  4815. "/Tests/"
  4816. ]
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Fabien Potencier",
  4825. "email": "fabien@symfony.com"
  4826. },
  4827. {
  4828. "name": "Symfony Community",
  4829. "homepage": "https://symfony.com/contributors"
  4830. }
  4831. ],
  4832. "description": "Provides tools to internationalize your application",
  4833. "homepage": "https://symfony.com",
  4834. "support": {
  4835. "source": "https://github.com/symfony/translation/tree/v6.0.14"
  4836. },
  4837. "funding": [
  4838. {
  4839. "url": "https://symfony.com/sponsor",
  4840. "type": "custom"
  4841. },
  4842. {
  4843. "url": "https://github.com/fabpot",
  4844. "type": "github"
  4845. },
  4846. {
  4847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4848. "type": "tidelift"
  4849. }
  4850. ],
  4851. "time": "2022-10-07T08:02:12+00:00"
  4852. },
  4853. {
  4854. "name": "symfony/translation-contracts",
  4855. "version": "v3.0.2",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://github.com/symfony/translation-contracts.git",
  4859. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  4864. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  4865. "shasum": ""
  4866. },
  4867. "require": {
  4868. "php": ">=8.0.2"
  4869. },
  4870. "suggest": {
  4871. "symfony/translation-implementation": ""
  4872. },
  4873. "type": "library",
  4874. "extra": {
  4875. "branch-alias": {
  4876. "dev-main": "3.0-dev"
  4877. },
  4878. "thanks": {
  4879. "name": "symfony/contracts",
  4880. "url": "https://github.com/symfony/contracts"
  4881. }
  4882. },
  4883. "autoload": {
  4884. "psr-4": {
  4885. "Symfony\\Contracts\\Translation\\": ""
  4886. }
  4887. },
  4888. "notification-url": "https://packagist.org/downloads/",
  4889. "license": [
  4890. "MIT"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "Nicolas Grekas",
  4895. "email": "p@tchwork.com"
  4896. },
  4897. {
  4898. "name": "Symfony Community",
  4899. "homepage": "https://symfony.com/contributors"
  4900. }
  4901. ],
  4902. "description": "Generic abstractions related to translation",
  4903. "homepage": "https://symfony.com",
  4904. "keywords": [
  4905. "abstractions",
  4906. "contracts",
  4907. "decoupling",
  4908. "interfaces",
  4909. "interoperability",
  4910. "standards"
  4911. ],
  4912. "support": {
  4913. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  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": "2022-06-27T17:10:44+00:00"
  4930. },
  4931. {
  4932. "name": "symfony/var-dumper",
  4933. "version": "v5.4.14",
  4934. "source": {
  4935. "type": "git",
  4936. "url": "https://github.com/symfony/var-dumper.git",
  4937. "reference": "6894d06145fefebd9a4c7272baa026a1c394a430"
  4938. },
  4939. "dist": {
  4940. "type": "zip",
  4941. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6894d06145fefebd9a4c7272baa026a1c394a430",
  4942. "reference": "6894d06145fefebd9a4c7272baa026a1c394a430",
  4943. "shasum": ""
  4944. },
  4945. "require": {
  4946. "php": ">=7.2.5",
  4947. "symfony/polyfill-mbstring": "~1.0",
  4948. "symfony/polyfill-php80": "^1.16"
  4949. },
  4950. "conflict": {
  4951. "phpunit/phpunit": "<5.4.3",
  4952. "symfony/console": "<4.4"
  4953. },
  4954. "require-dev": {
  4955. "ext-iconv": "*",
  4956. "symfony/console": "^4.4|^5.0|^6.0",
  4957. "symfony/process": "^4.4|^5.0|^6.0",
  4958. "symfony/uid": "^5.1|^6.0",
  4959. "twig/twig": "^2.13|^3.0.4"
  4960. },
  4961. "suggest": {
  4962. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4963. "ext-intl": "To show region name in time zone dump",
  4964. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4965. },
  4966. "bin": [
  4967. "Resources/bin/var-dump-server"
  4968. ],
  4969. "type": "library",
  4970. "autoload": {
  4971. "files": [
  4972. "Resources/functions/dump.php"
  4973. ],
  4974. "psr-4": {
  4975. "Symfony\\Component\\VarDumper\\": ""
  4976. },
  4977. "exclude-from-classmap": [
  4978. "/Tests/"
  4979. ]
  4980. },
  4981. "notification-url": "https://packagist.org/downloads/",
  4982. "license": [
  4983. "MIT"
  4984. ],
  4985. "authors": [
  4986. {
  4987. "name": "Nicolas Grekas",
  4988. "email": "p@tchwork.com"
  4989. },
  4990. {
  4991. "name": "Symfony Community",
  4992. "homepage": "https://symfony.com/contributors"
  4993. }
  4994. ],
  4995. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4996. "homepage": "https://symfony.com",
  4997. "keywords": [
  4998. "debug",
  4999. "dump"
  5000. ],
  5001. "support": {
  5002. "source": "https://github.com/symfony/var-dumper/tree/v5.4.14"
  5003. },
  5004. "funding": [
  5005. {
  5006. "url": "https://symfony.com/sponsor",
  5007. "type": "custom"
  5008. },
  5009. {
  5010. "url": "https://github.com/fabpot",
  5011. "type": "github"
  5012. },
  5013. {
  5014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5015. "type": "tidelift"
  5016. }
  5017. ],
  5018. "time": "2022-10-07T08:01:20+00:00"
  5019. },
  5020. {
  5021. "name": "tijsverkoyen/css-to-inline-styles",
  5022. "version": "2.2.5",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5026. "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19",
  5031. "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "ext-dom": "*",
  5036. "ext-libxml": "*",
  5037. "php": "^5.5 || ^7.0 || ^8.0",
  5038. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5039. },
  5040. "require-dev": {
  5041. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5042. },
  5043. "type": "library",
  5044. "extra": {
  5045. "branch-alias": {
  5046. "dev-master": "2.2.x-dev"
  5047. }
  5048. },
  5049. "autoload": {
  5050. "psr-4": {
  5051. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5052. }
  5053. },
  5054. "notification-url": "https://packagist.org/downloads/",
  5055. "license": [
  5056. "BSD-3-Clause"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "Tijs Verkoyen",
  5061. "email": "css_to_inline_styles@verkoyen.eu",
  5062. "role": "Developer"
  5063. }
  5064. ],
  5065. "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.",
  5066. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5067. "support": {
  5068. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5069. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5"
  5070. },
  5071. "time": "2022-09-12T13:28:28+00:00"
  5072. },
  5073. {
  5074. "name": "twig/twig",
  5075. "version": "v3.4.3",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/twigphp/Twig.git",
  5079. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  5084. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  5085. "shasum": ""
  5086. },
  5087. "require": {
  5088. "php": ">=7.2.5",
  5089. "symfony/polyfill-ctype": "^1.8",
  5090. "symfony/polyfill-mbstring": "^1.3"
  5091. },
  5092. "require-dev": {
  5093. "psr/container": "^1.0",
  5094. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-master": "3.4-dev"
  5100. }
  5101. },
  5102. "autoload": {
  5103. "psr-4": {
  5104. "Twig\\": "src/"
  5105. }
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "BSD-3-Clause"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Fabien Potencier",
  5114. "email": "fabien@symfony.com",
  5115. "homepage": "http://fabien.potencier.org",
  5116. "role": "Lead Developer"
  5117. },
  5118. {
  5119. "name": "Twig Team",
  5120. "role": "Contributors"
  5121. },
  5122. {
  5123. "name": "Armin Ronacher",
  5124. "email": "armin.ronacher@active-4.com",
  5125. "role": "Project Founder"
  5126. }
  5127. ],
  5128. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5129. "homepage": "https://twig.symfony.com",
  5130. "keywords": [
  5131. "templating"
  5132. ],
  5133. "support": {
  5134. "issues": "https://github.com/twigphp/Twig/issues",
  5135. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://github.com/fabpot",
  5140. "type": "github"
  5141. },
  5142. {
  5143. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  5144. "type": "tidelift"
  5145. }
  5146. ],
  5147. "time": "2022-09-28T08:42:51+00:00"
  5148. },
  5149. {
  5150. "name": "vlucas/phpdotenv",
  5151. "version": "v5.5.0",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/vlucas/phpdotenv.git",
  5155. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5160. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5161. "shasum": ""
  5162. },
  5163. "require": {
  5164. "ext-pcre": "*",
  5165. "graham-campbell/result-type": "^1.0.2",
  5166. "php": "^7.1.3 || ^8.0",
  5167. "phpoption/phpoption": "^1.8",
  5168. "symfony/polyfill-ctype": "^1.23",
  5169. "symfony/polyfill-mbstring": "^1.23.1",
  5170. "symfony/polyfill-php80": "^1.23.1"
  5171. },
  5172. "require-dev": {
  5173. "bamarni/composer-bin-plugin": "^1.4.1",
  5174. "ext-filter": "*",
  5175. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  5176. },
  5177. "suggest": {
  5178. "ext-filter": "Required to use the boolean validator."
  5179. },
  5180. "type": "library",
  5181. "extra": {
  5182. "bamarni-bin": {
  5183. "bin-links": true,
  5184. "forward-command": true
  5185. },
  5186. "branch-alias": {
  5187. "dev-master": "5.5-dev"
  5188. }
  5189. },
  5190. "autoload": {
  5191. "psr-4": {
  5192. "Dotenv\\": "src/"
  5193. }
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "BSD-3-Clause"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Graham Campbell",
  5202. "email": "hello@gjcampbell.co.uk",
  5203. "homepage": "https://github.com/GrahamCampbell"
  5204. },
  5205. {
  5206. "name": "Vance Lucas",
  5207. "email": "vance@vancelucas.com",
  5208. "homepage": "https://github.com/vlucas"
  5209. }
  5210. ],
  5211. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5212. "keywords": [
  5213. "dotenv",
  5214. "env",
  5215. "environment"
  5216. ],
  5217. "support": {
  5218. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5219. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  5220. },
  5221. "funding": [
  5222. {
  5223. "url": "https://github.com/GrahamCampbell",
  5224. "type": "github"
  5225. },
  5226. {
  5227. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5228. "type": "tidelift"
  5229. }
  5230. ],
  5231. "time": "2022-10-16T01:01:54+00:00"
  5232. },
  5233. {
  5234. "name": "voku/portable-ascii",
  5235. "version": "1.6.1",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://github.com/voku/portable-ascii.git",
  5239. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5244. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5245. "shasum": ""
  5246. },
  5247. "require": {
  5248. "php": ">=7.0.0"
  5249. },
  5250. "require-dev": {
  5251. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5252. },
  5253. "suggest": {
  5254. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5255. },
  5256. "type": "library",
  5257. "autoload": {
  5258. "psr-4": {
  5259. "voku\\": "src/voku/"
  5260. }
  5261. },
  5262. "notification-url": "https://packagist.org/downloads/",
  5263. "license": [
  5264. "MIT"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "Lars Moelleken",
  5269. "homepage": "http://www.moelleken.org/"
  5270. }
  5271. ],
  5272. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5273. "homepage": "https://github.com/voku/portable-ascii",
  5274. "keywords": [
  5275. "ascii",
  5276. "clean",
  5277. "php"
  5278. ],
  5279. "support": {
  5280. "issues": "https://github.com/voku/portable-ascii/issues",
  5281. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5282. },
  5283. "funding": [
  5284. {
  5285. "url": "https://www.paypal.me/moelleken",
  5286. "type": "custom"
  5287. },
  5288. {
  5289. "url": "https://github.com/voku",
  5290. "type": "github"
  5291. },
  5292. {
  5293. "url": "https://opencollective.com/portable-ascii",
  5294. "type": "open_collective"
  5295. },
  5296. {
  5297. "url": "https://www.patreon.com/voku",
  5298. "type": "patreon"
  5299. },
  5300. {
  5301. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5302. "type": "tidelift"
  5303. }
  5304. ],
  5305. "time": "2022-01-24T18:55:24+00:00"
  5306. },
  5307. {
  5308. "name": "webmozart/assert",
  5309. "version": "1.11.0",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/webmozarts/assert.git",
  5313. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5318. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "ext-ctype": "*",
  5323. "php": "^7.2 || ^8.0"
  5324. },
  5325. "conflict": {
  5326. "phpstan/phpstan": "<0.12.20",
  5327. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5328. },
  5329. "require-dev": {
  5330. "phpunit/phpunit": "^8.5.13"
  5331. },
  5332. "type": "library",
  5333. "extra": {
  5334. "branch-alias": {
  5335. "dev-master": "1.10-dev"
  5336. }
  5337. },
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Webmozart\\Assert\\": "src/"
  5341. }
  5342. },
  5343. "notification-url": "https://packagist.org/downloads/",
  5344. "license": [
  5345. "MIT"
  5346. ],
  5347. "authors": [
  5348. {
  5349. "name": "Bernhard Schussek",
  5350. "email": "bschussek@gmail.com"
  5351. }
  5352. ],
  5353. "description": "Assertions to validate method input/output with nice error messages.",
  5354. "keywords": [
  5355. "assert",
  5356. "check",
  5357. "validate"
  5358. ],
  5359. "support": {
  5360. "issues": "https://github.com/webmozarts/assert/issues",
  5361. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  5362. },
  5363. "time": "2022-06-03T18:03:27+00:00"
  5364. },
  5365. {
  5366. "name": "zendframework/zend-eventmanager",
  5367. "version": "2.6.2",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://github.com/zendframework/zend-eventmanager.git",
  5371. "reference": "b4354f75f694504d32e7d080641854f830acb865"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/b4354f75f694504d32e7d080641854f830acb865",
  5376. "reference": "b4354f75f694504d32e7d080641854f830acb865",
  5377. "shasum": ""
  5378. },
  5379. "require": {
  5380. "php": ">=5.5",
  5381. "zendframework/zend-stdlib": "~2.5"
  5382. },
  5383. "require-dev": {
  5384. "athletic/athletic": "dev-master",
  5385. "fabpot/php-cs-fixer": "1.7.*",
  5386. "phpunit/phpunit": "~4.0"
  5387. },
  5388. "type": "library",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-master": "2.6-dev",
  5392. "dev-develop": "3.0-dev"
  5393. }
  5394. },
  5395. "autoload": {
  5396. "psr-4": {
  5397. "Zend\\EventManager\\": "src/"
  5398. }
  5399. },
  5400. "notification-url": "https://packagist.org/downloads/",
  5401. "license": [
  5402. "BSD-3-Clause"
  5403. ],
  5404. "homepage": "https://github.com/zendframework/zend-eventmanager",
  5405. "keywords": [
  5406. "eventmanager",
  5407. "zf2"
  5408. ],
  5409. "support": {
  5410. "issues": "https://github.com/zendframework/zend-eventmanager/issues",
  5411. "source": "https://github.com/zendframework/zend-eventmanager/tree/master"
  5412. },
  5413. "abandoned": "laminas/laminas-eventmanager",
  5414. "time": "2016-01-12T23:08:36+00:00"
  5415. },
  5416. {
  5417. "name": "zendframework/zend-hydrator",
  5418. "version": "1.0.0",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/zendframework/zend-hydrator.git",
  5422. "reference": "f3ed8b833355140350bbed98d8a7b8b66875903f"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/f3ed8b833355140350bbed98d8a7b8b66875903f",
  5427. "reference": "f3ed8b833355140350bbed98d8a7b8b66875903f",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "php": ">=5.5",
  5432. "zendframework/zend-stdlib": "^2.5.1"
  5433. },
  5434. "require-dev": {
  5435. "phpunit/phpunit": "~4.0",
  5436. "squizlabs/php_codesniffer": "^2.0@dev",
  5437. "zendframework/zend-eventmanager": "^2.5.1",
  5438. "zendframework/zend-filter": "^2.5.1",
  5439. "zendframework/zend-inputfilter": "^2.5.1",
  5440. "zendframework/zend-serializer": "^2.5.1",
  5441. "zendframework/zend-servicemanager": "^2.5.1"
  5442. },
  5443. "suggest": {
  5444. "zendframework/zend-eventmanager": "^2.5.1, to support aggregate hydrator usage",
  5445. "zendframework/zend-filter": "^2.5.1, to support naming strategy hydrator usage",
  5446. "zendframework/zend-serializer": "^2.5.1, to use the SerializableStrategy",
  5447. "zendframework/zend-servicemanager": "^2.5.1, to support hydrator plugin manager usage"
  5448. },
  5449. "type": "library",
  5450. "extra": {
  5451. "branch-alias": {
  5452. "dev-master": "1.0-dev",
  5453. "dev-develop": "1.1-dev"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Zend\\Hydrator\\": "src/"
  5459. }
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "BSD-3-Clause"
  5464. ],
  5465. "homepage": "https://github.com/zendframework/zend-hydrator",
  5466. "keywords": [
  5467. "hydrator",
  5468. "zf2"
  5469. ],
  5470. "support": {
  5471. "issues": "https://github.com/zendframework/zend-hydrator/issues",
  5472. "source": "https://github.com/zendframework/zend-hydrator/tree/master"
  5473. },
  5474. "abandoned": "laminas/laminas-hydrator",
  5475. "time": "2015-09-17T14:06:43+00:00"
  5476. },
  5477. {
  5478. "name": "zendframework/zend-loader",
  5479. "version": "2.5.1",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/zendframework/zend-loader.git",
  5483. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/zendframework/zend-loader/zipball/c5fd2f071bde071f4363def7dea8dec7393e135c",
  5488. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": ">=5.3.23"
  5493. },
  5494. "require-dev": {
  5495. "fabpot/php-cs-fixer": "1.7.*",
  5496. "phpunit/phpunit": "~4.0"
  5497. },
  5498. "type": "library",
  5499. "extra": {
  5500. "branch-alias": {
  5501. "dev-master": "2.5-dev",
  5502. "dev-develop": "2.6-dev"
  5503. }
  5504. },
  5505. "autoload": {
  5506. "psr-4": {
  5507. "Zend\\Loader\\": "src/"
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "BSD-3-Clause"
  5513. ],
  5514. "homepage": "https://github.com/zendframework/zend-loader",
  5515. "keywords": [
  5516. "loader",
  5517. "zf2"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/zendframework/zend-loader/issues",
  5521. "source": "https://github.com/zendframework/zend-loader/tree/release-2.5.0"
  5522. },
  5523. "abandoned": "laminas/laminas-loader",
  5524. "time": "2015-06-03T14:05:47+00:00"
  5525. },
  5526. {
  5527. "name": "zendframework/zend-modulemanager",
  5528. "version": "2.6.1",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/zendframework/zend-modulemanager.git",
  5532. "reference": "5d11387829cfc68359da7ea600dea835acb31a22"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/zendframework/zend-modulemanager/zipball/5d11387829cfc68359da7ea600dea835acb31a22",
  5537. "reference": "5d11387829cfc68359da7ea600dea835acb31a22",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "php": ">=5.5",
  5542. "zendframework/zend-eventmanager": "~2.5",
  5543. "zendframework/zend-stdlib": "~2.7"
  5544. },
  5545. "require-dev": {
  5546. "fabpot/php-cs-fixer": "1.7.*",
  5547. "phpunit/phpunit": "~4.0",
  5548. "zendframework/zend-config": "~2.5",
  5549. "zendframework/zend-console": "~2.5",
  5550. "zendframework/zend-di": "~2.5",
  5551. "zendframework/zend-loader": "~2.5",
  5552. "zendframework/zend-mvc": "~2.5",
  5553. "zendframework/zend-servicemanager": "~2.5"
  5554. },
  5555. "suggest": {
  5556. "zendframework/zend-config": "Zend\\Config component",
  5557. "zendframework/zend-console": "Zend\\Console component",
  5558. "zendframework/zend-loader": "Zend\\Loader component",
  5559. "zendframework/zend-mvc": "Zend\\Mvc component",
  5560. "zendframework/zend-servicemanager": "Zend\\ServiceManager component"
  5561. },
  5562. "type": "library",
  5563. "extra": {
  5564. "branch-alias": {
  5565. "dev-master": "2.6-dev",
  5566. "dev-develop": "2.7-dev"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Zend\\ModuleManager\\": "src/"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "BSD-3-Clause"
  5577. ],
  5578. "homepage": "https://github.com/zendframework/zend-modulemanager",
  5579. "keywords": [
  5580. "modulemanager",
  5581. "zf2"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/zendframework/zend-modulemanager/issues",
  5585. "source": "https://github.com/zendframework/zend-modulemanager/tree/release-2.6.1"
  5586. },
  5587. "abandoned": "laminas/laminas-modulemanager",
  5588. "time": "2015-09-22T17:28:07+00:00"
  5589. },
  5590. {
  5591. "name": "zendframework/zend-servicemanager",
  5592. "version": "2.6.0",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5596. "reference": "1dc33f23bd0a7f4d8ba743b915fae523d356027a"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/1dc33f23bd0a7f4d8ba743b915fae523d356027a",
  5601. "reference": "1dc33f23bd0a7f4d8ba743b915fae523d356027a",
  5602. "shasum": ""
  5603. },
  5604. "require": {
  5605. "container-interop/container-interop": "~1.0",
  5606. "php": ">=5.5"
  5607. },
  5608. "require-dev": {
  5609. "fabpot/php-cs-fixer": "1.7.*",
  5610. "phpunit/phpunit": "~4.0",
  5611. "zendframework/zend-di": "~2.5",
  5612. "zendframework/zend-mvc": "~2.5"
  5613. },
  5614. "suggest": {
  5615. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5616. "zendframework/zend-di": "Zend\\Di component"
  5617. },
  5618. "type": "library",
  5619. "extra": {
  5620. "branch-alias": {
  5621. "dev-master": "2.6-dev",
  5622. "dev-develop": "2.7-dev"
  5623. }
  5624. },
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Zend\\ServiceManager\\": "src/"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "BSD-3-Clause"
  5633. ],
  5634. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5635. "keywords": [
  5636. "servicemanager",
  5637. "zf2"
  5638. ],
  5639. "support": {
  5640. "issues": "https://github.com/zendframework/zend-servicemanager/issues",
  5641. "source": "https://github.com/zendframework/zend-servicemanager/tree/release-2.6.0"
  5642. },
  5643. "abandoned": "laminas/laminas-servicemanager",
  5644. "time": "2015-07-23T21:49:08+00:00"
  5645. },
  5646. {
  5647. "name": "zendframework/zend-stdlib",
  5648. "version": "2.7.4",
  5649. "source": {
  5650. "type": "git",
  5651. "url": "https://github.com/zendframework/zend-stdlib.git",
  5652. "reference": "cae029346a33663b998507f94962eb27de060683"
  5653. },
  5654. "dist": {
  5655. "type": "zip",
  5656. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/cae029346a33663b998507f94962eb27de060683",
  5657. "reference": "cae029346a33663b998507f94962eb27de060683",
  5658. "shasum": ""
  5659. },
  5660. "require": {
  5661. "php": ">=5.5",
  5662. "zendframework/zend-hydrator": "~1.0"
  5663. },
  5664. "require-dev": {
  5665. "athletic/athletic": "~0.1",
  5666. "fabpot/php-cs-fixer": "1.7.*",
  5667. "phpunit/phpunit": "~4.0",
  5668. "zendframework/zend-config": "~2.5",
  5669. "zendframework/zend-eventmanager": "~2.5",
  5670. "zendframework/zend-filter": "~2.5",
  5671. "zendframework/zend-inputfilter": "~2.5",
  5672. "zendframework/zend-serializer": "~2.5",
  5673. "zendframework/zend-servicemanager": "~2.5"
  5674. },
  5675. "suggest": {
  5676. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  5677. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  5678. "zendframework/zend-serializer": "Zend\\Serializer component",
  5679. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  5680. },
  5681. "type": "library",
  5682. "extra": {
  5683. "branch-alias": {
  5684. "dev-master": "2.7-dev",
  5685. "dev-develop": "2.8-dev"
  5686. }
  5687. },
  5688. "autoload": {
  5689. "psr-4": {
  5690. "Zend\\Stdlib\\": "src/"
  5691. }
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "BSD-3-Clause"
  5696. ],
  5697. "homepage": "https://github.com/zendframework/zend-stdlib",
  5698. "keywords": [
  5699. "stdlib",
  5700. "zf2"
  5701. ],
  5702. "support": {
  5703. "issues": "https://github.com/zendframework/zend-stdlib/issues",
  5704. "source": "https://github.com/zendframework/zend-stdlib/tree/release-2.7.4"
  5705. },
  5706. "abandoned": "laminas/laminas-stdlib",
  5707. "time": "2015-10-15T15:57:32+00:00"
  5708. },
  5709. {
  5710. "name": "zendframework/zend-view",
  5711. "version": "2.5.2",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/zendframework/zend-view.git",
  5715. "reference": "b3d31e7ba6d0c13a76afe5c8d914a8ff08616b0d"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/zendframework/zend-view/zipball/b3d31e7ba6d0c13a76afe5c8d914a8ff08616b0d",
  5720. "reference": "b3d31e7ba6d0c13a76afe5c8d914a8ff08616b0d",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "php": ">=5.5",
  5725. "zendframework/zend-eventmanager": "~2.5",
  5726. "zendframework/zend-loader": "~2.5",
  5727. "zendframework/zend-stdlib": "~2.5"
  5728. },
  5729. "require-dev": {
  5730. "fabpot/php-cs-fixer": "1.7.*",
  5731. "phpunit/phpunit": "~4.0",
  5732. "zendframework/zend-authentication": "~2.5",
  5733. "zendframework/zend-cache": "~2.5",
  5734. "zendframework/zend-config": "~2.5",
  5735. "zendframework/zend-console": "~2.5",
  5736. "zendframework/zend-escaper": "~2.5",
  5737. "zendframework/zend-feed": "~2.5",
  5738. "zendframework/zend-filter": "~2.5",
  5739. "zendframework/zend-http": "~2.5",
  5740. "zendframework/zend-i18n": "~2.5",
  5741. "zendframework/zend-json": "~2.5",
  5742. "zendframework/zend-log": "~2.5",
  5743. "zendframework/zend-modulemanager": "~2.5",
  5744. "zendframework/zend-mvc": "~2.5",
  5745. "zendframework/zend-navigation": "~2.5",
  5746. "zendframework/zend-paginator": "~2.5",
  5747. "zendframework/zend-permissions-acl": "~2.5",
  5748. "zendframework/zend-serializer": "~2.5",
  5749. "zendframework/zend-servicemanager": "~2.5",
  5750. "zendframework/zend-session": "dev-master",
  5751. "zendframework/zend-uri": "~2.5"
  5752. },
  5753. "suggest": {
  5754. "zendframework/zend-authentication": "Zend\\Authentication component",
  5755. "zendframework/zend-escaper": "Zend\\Escaper component",
  5756. "zendframework/zend-feed": "Zend\\Feed component",
  5757. "zendframework/zend-filter": "Zend\\Filter component",
  5758. "zendframework/zend-http": "Zend\\Http component",
  5759. "zendframework/zend-i18n": "Zend\\I18n component",
  5760. "zendframework/zend-json": "Zend\\Json component",
  5761. "zendframework/zend-mvc": "Zend\\Mvc component",
  5762. "zendframework/zend-navigation": "Zend\\Navigation component",
  5763. "zendframework/zend-paginator": "Zend\\Paginator component",
  5764. "zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component",
  5765. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  5766. "zendframework/zend-uri": "Zend\\Uri component"
  5767. },
  5768. "type": "library",
  5769. "extra": {
  5770. "branch-alias": {
  5771. "dev-master": "2.5-dev",
  5772. "dev-develop": "2.6-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "psr-4": {
  5777. "Zend\\View\\": "src/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "BSD-3-Clause"
  5783. ],
  5784. "description": "provides a system of helpers, output filters, and variable escaping",
  5785. "homepage": "https://github.com/zendframework/zend-view",
  5786. "keywords": [
  5787. "view",
  5788. "zf2"
  5789. ],
  5790. "support": {
  5791. "issues": "https://github.com/zendframework/zend-view/issues",
  5792. "source": "https://github.com/zendframework/zend-view/tree/release-2.5.2"
  5793. },
  5794. "abandoned": "laminas/laminas-view",
  5795. "time": "2015-06-16T15:32:26+00:00"
  5796. }
  5797. ],
  5798. "aliases": [],
  5799. "minimum-stability": "stable",
  5800. "stability-flags": [],
  5801. "prefer-stable": false,
  5802. "prefer-lowest": false,
  5803. "platform": {
  5804. "php": "^7.1 || ~8.0.0 || ~8.1.0 || ~8.2.0",
  5805. "ext-mbstring": "*"
  5806. },
  5807. "platform-dev": [],
  5808. "plugin-api-version": "2.2.0"
  5809. }