composer.lock 192 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422
  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": "6915fee4834cac0251f47409404ca293",
  8. "packages": [
  9. {
  10. "name": "cakephp/core",
  11. "version": "4.3.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/cakephp/core.git",
  15. "reference": "499f17738d40560ec077d7d2039c9af4969c6b17"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/cakephp/core/zipball/499f17738d40560ec077d7d2039c9af4969c6b17",
  20. "reference": "499f17738d40560ec077d7d2039c9af4969c6b17",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "cakephp/utility": "^4.0",
  25. "php": ">=7.2.0"
  26. },
  27. "suggest": {
  28. "cakephp/cache": "To use Configure::store() and restore().",
  29. "cakephp/event": "To use PluginApplicationInterface or plugin applications.",
  30. "league/container": "To use Container and ServiceProvider classes"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "files": [
  35. "functions.php"
  36. ],
  37. "psr-4": {
  38. "Cake\\Core\\": "."
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "CakePHP Community",
  48. "homepage": "https://github.com/cakephp/core/graphs/contributors"
  49. }
  50. ],
  51. "description": "CakePHP Framework Core classes",
  52. "homepage": "https://cakephp.org",
  53. "keywords": [
  54. "cakephp",
  55. "core",
  56. "framework"
  57. ],
  58. "support": {
  59. "forum": "https://stackoverflow.com/tags/cakephp",
  60. "irc": "irc://irc.freenode.org/cakephp",
  61. "issues": "https://github.com/cakephp/cakephp/issues",
  62. "source": "https://github.com/cakephp/core"
  63. },
  64. "time": "2022-03-10T13:13:51+00:00"
  65. },
  66. {
  67. "name": "cakephp/database",
  68. "version": "4.3.7",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/cakephp/database.git",
  72. "reference": "0a32584763af097eaaba96cf062e2d5d31e6ea3b"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/cakephp/database/zipball/0a32584763af097eaaba96cf062e2d5d31e6ea3b",
  77. "reference": "0a32584763af097eaaba96cf062e2d5d31e6ea3b",
  78. "shasum": ""
  79. },
  80. "require": {
  81. "cakephp/core": "^4.0",
  82. "cakephp/datasource": "^4.0",
  83. "php": ">=7.2.0"
  84. },
  85. "suggest": {
  86. "cakephp/i18n": "If you are using locale-aware datetime formats or Chronos types."
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Cake\\Database\\": "."
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "authors": [
  99. {
  100. "name": "CakePHP Community",
  101. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  102. }
  103. ],
  104. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  105. "homepage": "https://cakephp.org",
  106. "keywords": [
  107. "abstraction",
  108. "cakephp",
  109. "database",
  110. "database abstraction",
  111. "pdo"
  112. ],
  113. "support": {
  114. "forum": "https://stackoverflow.com/tags/cakephp",
  115. "irc": "irc://irc.freenode.org/cakephp",
  116. "issues": "https://github.com/cakephp/cakephp/issues",
  117. "source": "https://github.com/cakephp/database"
  118. },
  119. "time": "2022-03-12T14:25:33+00:00"
  120. },
  121. {
  122. "name": "cakephp/datasource",
  123. "version": "4.3.7",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/cakephp/datasource.git",
  127. "reference": "d9e88333a8c6832fddfc38d092f30efcab8cd34d"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/cakephp/datasource/zipball/d9e88333a8c6832fddfc38d092f30efcab8cd34d",
  132. "reference": "d9e88333a8c6832fddfc38d092f30efcab8cd34d",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "cakephp/core": "^4.0",
  137. "php": ">=7.2.0",
  138. "psr/log": "^1.0 || ^2.0",
  139. "psr/simple-cache": "^1.0 || ^2.0"
  140. },
  141. "suggest": {
  142. "cakephp/cache": "If you decide to use Query caching.",
  143. "cakephp/collection": "If you decide to use ResultSetInterface.",
  144. "cakephp/utility": "If you decide to use EntityTrait."
  145. },
  146. "type": "library",
  147. "autoload": {
  148. "psr-4": {
  149. "Cake\\Datasource\\": "."
  150. }
  151. },
  152. "notification-url": "https://packagist.org/downloads/",
  153. "license": [
  154. "MIT"
  155. ],
  156. "authors": [
  157. {
  158. "name": "CakePHP Community",
  159. "homepage": "https://github.com/cakephp/datasource/graphs/contributors"
  160. }
  161. ],
  162. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  163. "homepage": "https://cakephp.org",
  164. "keywords": [
  165. "cakephp",
  166. "connection management",
  167. "datasource",
  168. "entity",
  169. "query"
  170. ],
  171. "support": {
  172. "forum": "https://stackoverflow.com/tags/cakephp",
  173. "irc": "irc://irc.freenode.org/cakephp",
  174. "issues": "https://github.com/cakephp/cakephp/issues",
  175. "source": "https://github.com/cakephp/datasource"
  176. },
  177. "time": "2022-03-04T04:39:56+00:00"
  178. },
  179. {
  180. "name": "cakephp/utility",
  181. "version": "4.3.7",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/cakephp/utility.git",
  185. "reference": "3d352060ca3e49c81c3fd2bdb092ee345d8f4e38"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/cakephp/utility/zipball/3d352060ca3e49c81c3fd2bdb092ee345d8f4e38",
  190. "reference": "3d352060ca3e49c81c3fd2bdb092ee345d8f4e38",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "cakephp/core": "^4.0",
  195. "php": ">=7.2.0"
  196. },
  197. "suggest": {
  198. "ext-intl": "To use Text::transliterate() or Text::slug()",
  199. "lib-ICU": "To use Text::transliterate() or Text::slug()"
  200. },
  201. "type": "library",
  202. "autoload": {
  203. "files": [
  204. "bootstrap.php"
  205. ],
  206. "psr-4": {
  207. "Cake\\Utility\\": "."
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "CakePHP Community",
  217. "homepage": "https://github.com/cakephp/utility/graphs/contributors"
  218. }
  219. ],
  220. "description": "CakePHP Utility classes such as Inflector, String, Hash, and Security",
  221. "homepage": "https://cakephp.org",
  222. "keywords": [
  223. "cakephp",
  224. "hash",
  225. "inflector",
  226. "security",
  227. "string",
  228. "utility"
  229. ],
  230. "support": {
  231. "forum": "https://stackoverflow.com/tags/cakephp",
  232. "irc": "irc://irc.freenode.org/cakephp",
  233. "issues": "https://github.com/cakephp/cakephp/issues",
  234. "source": "https://github.com/cakephp/utility"
  235. },
  236. "time": "2022-01-28T18:02:00+00:00"
  237. },
  238. {
  239. "name": "doctrine/inflector",
  240. "version": "2.0.4",
  241. "source": {
  242. "type": "git",
  243. "url": "https://github.com/doctrine/inflector.git",
  244. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  245. },
  246. "dist": {
  247. "type": "zip",
  248. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  249. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  250. "shasum": ""
  251. },
  252. "require": {
  253. "php": "^7.2 || ^8.0"
  254. },
  255. "require-dev": {
  256. "doctrine/coding-standard": "^8.2",
  257. "phpstan/phpstan": "^0.12",
  258. "phpstan/phpstan-phpunit": "^0.12",
  259. "phpstan/phpstan-strict-rules": "^0.12",
  260. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  261. "vimeo/psalm": "^4.10"
  262. },
  263. "type": "library",
  264. "autoload": {
  265. "psr-4": {
  266. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  267. }
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "MIT"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Guilherme Blanco",
  276. "email": "guilhermeblanco@gmail.com"
  277. },
  278. {
  279. "name": "Roman Borschel",
  280. "email": "roman@code-factory.org"
  281. },
  282. {
  283. "name": "Benjamin Eberlei",
  284. "email": "kontakt@beberlei.de"
  285. },
  286. {
  287. "name": "Jonathan Wage",
  288. "email": "jonwage@gmail.com"
  289. },
  290. {
  291. "name": "Johannes Schmitt",
  292. "email": "schmittjoh@gmail.com"
  293. }
  294. ],
  295. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  296. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  297. "keywords": [
  298. "inflection",
  299. "inflector",
  300. "lowercase",
  301. "manipulation",
  302. "php",
  303. "plural",
  304. "singular",
  305. "strings",
  306. "uppercase",
  307. "words"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/doctrine/inflector/issues",
  311. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  312. },
  313. "funding": [
  314. {
  315. "url": "https://www.doctrine-project.org/sponsorship.html",
  316. "type": "custom"
  317. },
  318. {
  319. "url": "https://www.patreon.com/phpdoctrine",
  320. "type": "patreon"
  321. },
  322. {
  323. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  324. "type": "tidelift"
  325. }
  326. ],
  327. "time": "2021-10-22T20:16:43+00:00"
  328. },
  329. {
  330. "name": "illuminate/bus",
  331. "version": "v8.83.5",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/illuminate/bus.git",
  335. "reference": "d2a8ae4bfd881086e55455e470776358eab27eae"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://api.github.com/repos/illuminate/bus/zipball/d2a8ae4bfd881086e55455e470776358eab27eae",
  340. "reference": "d2a8ae4bfd881086e55455e470776358eab27eae",
  341. "shasum": ""
  342. },
  343. "require": {
  344. "illuminate/collections": "^8.0",
  345. "illuminate/contracts": "^8.0",
  346. "illuminate/pipeline": "^8.0",
  347. "illuminate/support": "^8.0",
  348. "php": "^7.3|^8.0"
  349. },
  350. "suggest": {
  351. "illuminate/queue": "Required to use closures when chaining jobs (^7.0)."
  352. },
  353. "type": "library",
  354. "extra": {
  355. "branch-alias": {
  356. "dev-master": "8.x-dev"
  357. }
  358. },
  359. "autoload": {
  360. "psr-4": {
  361. "Illuminate\\Bus\\": ""
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Taylor Otwell",
  371. "email": "taylor@laravel.com"
  372. }
  373. ],
  374. "description": "The Illuminate Bus package.",
  375. "homepage": "https://laravel.com",
  376. "support": {
  377. "issues": "https://github.com/laravel/framework/issues",
  378. "source": "https://github.com/laravel/framework"
  379. },
  380. "time": "2022-03-07T15:02:42+00:00"
  381. },
  382. {
  383. "name": "illuminate/collections",
  384. "version": "v8.83.5",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/illuminate/collections.git",
  388. "reference": "5cf7ed1c0a1b8049576b29f5cab5c822149aaa91"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/illuminate/collections/zipball/5cf7ed1c0a1b8049576b29f5cab5c822149aaa91",
  393. "reference": "5cf7ed1c0a1b8049576b29f5cab5c822149aaa91",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "illuminate/contracts": "^8.0",
  398. "illuminate/macroable": "^8.0",
  399. "php": "^7.3|^8.0"
  400. },
  401. "suggest": {
  402. "symfony/var-dumper": "Required to use the dump method (^5.4)."
  403. },
  404. "type": "library",
  405. "extra": {
  406. "branch-alias": {
  407. "dev-master": "8.x-dev"
  408. }
  409. },
  410. "autoload": {
  411. "files": [
  412. "helpers.php"
  413. ],
  414. "psr-4": {
  415. "Illuminate\\Support\\": ""
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Taylor Otwell",
  425. "email": "taylor@laravel.com"
  426. }
  427. ],
  428. "description": "The Illuminate Collections package.",
  429. "homepage": "https://laravel.com",
  430. "support": {
  431. "issues": "https://github.com/laravel/framework/issues",
  432. "source": "https://github.com/laravel/framework"
  433. },
  434. "time": "2022-02-15T14:40:58+00:00"
  435. },
  436. {
  437. "name": "illuminate/container",
  438. "version": "v8.83.5",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/illuminate/container.git",
  442. "reference": "14062628d05f75047c5a1360b9350028427d568e"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/illuminate/container/zipball/14062628d05f75047c5a1360b9350028427d568e",
  447. "reference": "14062628d05f75047c5a1360b9350028427d568e",
  448. "shasum": ""
  449. },
  450. "require": {
  451. "illuminate/contracts": "^8.0",
  452. "php": "^7.3|^8.0",
  453. "psr/container": "^1.0"
  454. },
  455. "provide": {
  456. "psr/container-implementation": "1.0"
  457. },
  458. "type": "library",
  459. "extra": {
  460. "branch-alias": {
  461. "dev-master": "8.x-dev"
  462. }
  463. },
  464. "autoload": {
  465. "psr-4": {
  466. "Illuminate\\Container\\": ""
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Taylor Otwell",
  476. "email": "taylor@laravel.com"
  477. }
  478. ],
  479. "description": "The Illuminate Container package.",
  480. "homepage": "https://laravel.com",
  481. "support": {
  482. "issues": "https://github.com/laravel/framework/issues",
  483. "source": "https://github.com/laravel/framework"
  484. },
  485. "time": "2022-02-02T21:03:35+00:00"
  486. },
  487. {
  488. "name": "illuminate/contracts",
  489. "version": "v8.83.5",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/illuminate/contracts.git",
  493. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  498. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "php": "^7.3|^8.0",
  503. "psr/container": "^1.0",
  504. "psr/simple-cache": "^1.0"
  505. },
  506. "type": "library",
  507. "extra": {
  508. "branch-alias": {
  509. "dev-master": "8.x-dev"
  510. }
  511. },
  512. "autoload": {
  513. "psr-4": {
  514. "Illuminate\\Contracts\\": ""
  515. }
  516. },
  517. "notification-url": "https://packagist.org/downloads/",
  518. "license": [
  519. "MIT"
  520. ],
  521. "authors": [
  522. {
  523. "name": "Taylor Otwell",
  524. "email": "taylor@laravel.com"
  525. }
  526. ],
  527. "description": "The Illuminate Contracts package.",
  528. "homepage": "https://laravel.com",
  529. "support": {
  530. "issues": "https://github.com/laravel/framework/issues",
  531. "source": "https://github.com/laravel/framework"
  532. },
  533. "time": "2022-01-13T14:47:47+00:00"
  534. },
  535. {
  536. "name": "illuminate/database",
  537. "version": "v8.83.5",
  538. "source": {
  539. "type": "git",
  540. "url": "https://github.com/illuminate/database.git",
  541. "reference": "e0fa6cce0825d7054d6ff3a3efca678f6054e403"
  542. },
  543. "dist": {
  544. "type": "zip",
  545. "url": "https://api.github.com/repos/illuminate/database/zipball/e0fa6cce0825d7054d6ff3a3efca678f6054e403",
  546. "reference": "e0fa6cce0825d7054d6ff3a3efca678f6054e403",
  547. "shasum": ""
  548. },
  549. "require": {
  550. "ext-json": "*",
  551. "illuminate/collections": "^8.0",
  552. "illuminate/container": "^8.0",
  553. "illuminate/contracts": "^8.0",
  554. "illuminate/macroable": "^8.0",
  555. "illuminate/support": "^8.0",
  556. "php": "^7.3|^8.0",
  557. "symfony/console": "^5.4"
  558. },
  559. "suggest": {
  560. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  561. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  562. "illuminate/console": "Required to use the database commands (^8.0).",
  563. "illuminate/events": "Required to use the observers with Eloquent (^8.0).",
  564. "illuminate/filesystem": "Required to use the migrations (^8.0).",
  565. "illuminate/pagination": "Required to paginate the result set (^8.0).",
  566. "symfony/finder": "Required to use Eloquent model factories (^5.4)."
  567. },
  568. "type": "library",
  569. "extra": {
  570. "branch-alias": {
  571. "dev-master": "8.x-dev"
  572. }
  573. },
  574. "autoload": {
  575. "psr-4": {
  576. "Illuminate\\Database\\": ""
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "MIT"
  582. ],
  583. "authors": [
  584. {
  585. "name": "Taylor Otwell",
  586. "email": "taylor@laravel.com"
  587. }
  588. ],
  589. "description": "The Illuminate Database package.",
  590. "homepage": "https://laravel.com",
  591. "keywords": [
  592. "database",
  593. "laravel",
  594. "orm",
  595. "sql"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/laravel/framework/issues",
  599. "source": "https://github.com/laravel/framework"
  600. },
  601. "time": "2022-02-22T14:55:52+00:00"
  602. },
  603. {
  604. "name": "illuminate/events",
  605. "version": "v8.83.5",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/illuminate/events.git",
  609. "reference": "b7f06cafb6c09581617f2ca05d69e9b159e5a35d"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/illuminate/events/zipball/b7f06cafb6c09581617f2ca05d69e9b159e5a35d",
  614. "reference": "b7f06cafb6c09581617f2ca05d69e9b159e5a35d",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "illuminate/bus": "^8.0",
  619. "illuminate/collections": "^8.0",
  620. "illuminate/container": "^8.0",
  621. "illuminate/contracts": "^8.0",
  622. "illuminate/macroable": "^8.0",
  623. "illuminate/support": "^8.0",
  624. "php": "^7.3|^8.0"
  625. },
  626. "type": "library",
  627. "extra": {
  628. "branch-alias": {
  629. "dev-master": "8.x-dev"
  630. }
  631. },
  632. "autoload": {
  633. "files": [
  634. "functions.php"
  635. ],
  636. "psr-4": {
  637. "Illuminate\\Events\\": ""
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Taylor Otwell",
  647. "email": "taylor@laravel.com"
  648. }
  649. ],
  650. "description": "The Illuminate Events package.",
  651. "homepage": "https://laravel.com",
  652. "support": {
  653. "issues": "https://github.com/laravel/framework/issues",
  654. "source": "https://github.com/laravel/framework"
  655. },
  656. "time": "2021-09-15T14:32:50+00:00"
  657. },
  658. {
  659. "name": "illuminate/macroable",
  660. "version": "v8.83.5",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/illuminate/macroable.git",
  664. "reference": "aed81891a6e046fdee72edd497f822190f61c162"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
  669. "reference": "aed81891a6e046fdee72edd497f822190f61c162",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": "^7.3|^8.0"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "branch-alias": {
  678. "dev-master": "8.x-dev"
  679. }
  680. },
  681. "autoload": {
  682. "psr-4": {
  683. "Illuminate\\Support\\": ""
  684. }
  685. },
  686. "notification-url": "https://packagist.org/downloads/",
  687. "license": [
  688. "MIT"
  689. ],
  690. "authors": [
  691. {
  692. "name": "Taylor Otwell",
  693. "email": "taylor@laravel.com"
  694. }
  695. ],
  696. "description": "The Illuminate Macroable package.",
  697. "homepage": "https://laravel.com",
  698. "support": {
  699. "issues": "https://github.com/laravel/framework/issues",
  700. "source": "https://github.com/laravel/framework"
  701. },
  702. "time": "2021-11-16T13:57:03+00:00"
  703. },
  704. {
  705. "name": "illuminate/pagination",
  706. "version": "v8.83.5",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/illuminate/pagination.git",
  710. "reference": "a0a5784a052663fb044baed95f56801b57c2d002"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://api.github.com/repos/illuminate/pagination/zipball/a0a5784a052663fb044baed95f56801b57c2d002",
  715. "reference": "a0a5784a052663fb044baed95f56801b57c2d002",
  716. "shasum": ""
  717. },
  718. "require": {
  719. "ext-json": "*",
  720. "illuminate/collections": "^8.0",
  721. "illuminate/contracts": "^8.0",
  722. "illuminate/support": "^8.0",
  723. "php": "^7.3|^8.0"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-master": "8.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "Illuminate\\Pagination\\": ""
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Taylor Otwell",
  743. "email": "taylor@laravel.com"
  744. }
  745. ],
  746. "description": "The Illuminate Pagination package.",
  747. "homepage": "https://laravel.com",
  748. "support": {
  749. "issues": "https://github.com/laravel/framework/issues",
  750. "source": "https://github.com/laravel/framework"
  751. },
  752. "time": "2022-01-05T15:05:14+00:00"
  753. },
  754. {
  755. "name": "illuminate/pipeline",
  756. "version": "v8.83.5",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/illuminate/pipeline.git",
  760. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  765. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  766. "shasum": ""
  767. },
  768. "require": {
  769. "illuminate/contracts": "^8.0",
  770. "illuminate/support": "^8.0",
  771. "php": "^7.3|^8.0"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "branch-alias": {
  776. "dev-master": "8.x-dev"
  777. }
  778. },
  779. "autoload": {
  780. "psr-4": {
  781. "Illuminate\\Pipeline\\": ""
  782. }
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "MIT"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Taylor Otwell",
  791. "email": "taylor@laravel.com"
  792. }
  793. ],
  794. "description": "The Illuminate Pipeline package.",
  795. "homepage": "https://laravel.com",
  796. "support": {
  797. "issues": "https://github.com/laravel/framework/issues",
  798. "source": "https://github.com/laravel/framework"
  799. },
  800. "time": "2021-03-26T18:39:16+00:00"
  801. },
  802. {
  803. "name": "illuminate/redis",
  804. "version": "v8.83.5",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/illuminate/redis.git",
  808. "reference": "0fee121324054226823a59623fab3d98ad88fbd5"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/illuminate/redis/zipball/0fee121324054226823a59623fab3d98ad88fbd5",
  813. "reference": "0fee121324054226823a59623fab3d98ad88fbd5",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "illuminate/collections": "^8.0",
  818. "illuminate/contracts": "^8.0",
  819. "illuminate/macroable": "^8.0",
  820. "illuminate/support": "^8.0",
  821. "php": "^7.3|^8.0"
  822. },
  823. "suggest": {
  824. "ext-redis": "Required to use the phpredis connector (^4.0|^5.0).",
  825. "predis/predis": "Required to use the predis connector (^1.1.9)."
  826. },
  827. "type": "library",
  828. "extra": {
  829. "branch-alias": {
  830. "dev-master": "8.x-dev"
  831. }
  832. },
  833. "autoload": {
  834. "psr-4": {
  835. "Illuminate\\Redis\\": ""
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "MIT"
  841. ],
  842. "authors": [
  843. {
  844. "name": "Taylor Otwell",
  845. "email": "taylor@laravel.com"
  846. }
  847. ],
  848. "description": "The Illuminate Redis package.",
  849. "homepage": "https://laravel.com",
  850. "support": {
  851. "issues": "https://github.com/laravel/framework/issues",
  852. "source": "https://github.com/laravel/framework"
  853. },
  854. "time": "2022-01-24T02:32:30+00:00"
  855. },
  856. {
  857. "name": "illuminate/support",
  858. "version": "v8.83.5",
  859. "source": {
  860. "type": "git",
  861. "url": "https://github.com/illuminate/support.git",
  862. "reference": "79afba1609f944a1678986c9e2c4486ae25999a6"
  863. },
  864. "dist": {
  865. "type": "zip",
  866. "url": "https://api.github.com/repos/illuminate/support/zipball/79afba1609f944a1678986c9e2c4486ae25999a6",
  867. "reference": "79afba1609f944a1678986c9e2c4486ae25999a6",
  868. "shasum": ""
  869. },
  870. "require": {
  871. "doctrine/inflector": "^1.4|^2.0",
  872. "ext-json": "*",
  873. "ext-mbstring": "*",
  874. "illuminate/collections": "^8.0",
  875. "illuminate/contracts": "^8.0",
  876. "illuminate/macroable": "^8.0",
  877. "nesbot/carbon": "^2.53.1",
  878. "php": "^7.3|^8.0",
  879. "voku/portable-ascii": "^1.6.1"
  880. },
  881. "conflict": {
  882. "tightenco/collect": "<5.5.33"
  883. },
  884. "suggest": {
  885. "illuminate/filesystem": "Required to use the composer class (^8.0).",
  886. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).",
  887. "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
  888. "symfony/process": "Required to use the composer class (^5.4).",
  889. "symfony/var-dumper": "Required to use the dd function (^5.4).",
  890. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  891. },
  892. "type": "library",
  893. "extra": {
  894. "branch-alias": {
  895. "dev-master": "8.x-dev"
  896. }
  897. },
  898. "autoload": {
  899. "files": [
  900. "helpers.php"
  901. ],
  902. "psr-4": {
  903. "Illuminate\\Support\\": ""
  904. }
  905. },
  906. "notification-url": "https://packagist.org/downloads/",
  907. "license": [
  908. "MIT"
  909. ],
  910. "authors": [
  911. {
  912. "name": "Taylor Otwell",
  913. "email": "taylor@laravel.com"
  914. }
  915. ],
  916. "description": "The Illuminate Support package.",
  917. "homepage": "https://laravel.com",
  918. "support": {
  919. "issues": "https://github.com/laravel/framework/issues",
  920. "source": "https://github.com/laravel/framework"
  921. },
  922. "time": "2022-02-25T19:54:55+00:00"
  923. },
  924. {
  925. "name": "monolog/monolog",
  926. "version": "2.4.0",
  927. "source": {
  928. "type": "git",
  929. "url": "https://github.com/Seldaek/monolog.git",
  930. "reference": "d7fd7450628561ba697b7097d86db72662f54aef"
  931. },
  932. "dist": {
  933. "type": "zip",
  934. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/d7fd7450628561ba697b7097d86db72662f54aef",
  935. "reference": "d7fd7450628561ba697b7097d86db72662f54aef",
  936. "shasum": ""
  937. },
  938. "require": {
  939. "php": ">=7.2",
  940. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  941. },
  942. "provide": {
  943. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  944. },
  945. "require-dev": {
  946. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  947. "doctrine/couchdb": "~1.0@dev",
  948. "elasticsearch/elasticsearch": "^7",
  949. "graylog2/gelf-php": "^1.4.2",
  950. "mongodb/mongodb": "^1.8",
  951. "php-amqplib/php-amqplib": "~2.4 || ^3",
  952. "php-console/php-console": "^3.1.3",
  953. "phpspec/prophecy": "^1.6.1",
  954. "phpstan/phpstan": "^0.12.91",
  955. "phpunit/phpunit": "^8.5",
  956. "predis/predis": "^1.1",
  957. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  958. "ruflin/elastica": ">=0.90@dev",
  959. "swiftmailer/swiftmailer": "^5.3|^6.0"
  960. },
  961. "suggest": {
  962. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  963. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  964. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  965. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  966. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  967. "ext-mbstring": "Allow to work properly with unicode symbols",
  968. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  969. "ext-openssl": "Required to send log messages using SSL",
  970. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  971. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  972. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  973. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  974. "php-console/php-console": "Allow sending log messages to Google Chrome",
  975. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  976. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  977. },
  978. "type": "library",
  979. "extra": {
  980. "branch-alias": {
  981. "dev-main": "2.x-dev"
  982. }
  983. },
  984. "autoload": {
  985. "psr-4": {
  986. "Monolog\\": "src/Monolog"
  987. }
  988. },
  989. "notification-url": "https://packagist.org/downloads/",
  990. "license": [
  991. "MIT"
  992. ],
  993. "authors": [
  994. {
  995. "name": "Jordi Boggiano",
  996. "email": "j.boggiano@seld.be",
  997. "homepage": "https://seld.be"
  998. }
  999. ],
  1000. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1001. "homepage": "https://github.com/Seldaek/monolog",
  1002. "keywords": [
  1003. "log",
  1004. "logging",
  1005. "psr-3"
  1006. ],
  1007. "support": {
  1008. "issues": "https://github.com/Seldaek/monolog/issues",
  1009. "source": "https://github.com/Seldaek/monolog/tree/2.4.0"
  1010. },
  1011. "funding": [
  1012. {
  1013. "url": "https://github.com/Seldaek",
  1014. "type": "github"
  1015. },
  1016. {
  1017. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1018. "type": "tidelift"
  1019. }
  1020. ],
  1021. "time": "2022-03-14T12:44:37+00:00"
  1022. },
  1023. {
  1024. "name": "nesbot/carbon",
  1025. "version": "2.57.0",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/briannesbitt/Carbon.git",
  1029. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  1034. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "ext-json": "*",
  1039. "php": "^7.1.8 || ^8.0",
  1040. "symfony/polyfill-mbstring": "^1.0",
  1041. "symfony/polyfill-php80": "^1.16",
  1042. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1043. },
  1044. "require-dev": {
  1045. "doctrine/dbal": "^2.0 || ^3.0",
  1046. "doctrine/orm": "^2.7",
  1047. "friendsofphp/php-cs-fixer": "^3.0",
  1048. "kylekatarnls/multi-tester": "^2.0",
  1049. "phpmd/phpmd": "^2.9",
  1050. "phpstan/extension-installer": "^1.0",
  1051. "phpstan/phpstan": "^0.12.54 || ^1.0",
  1052. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1053. "squizlabs/php_codesniffer": "^3.4"
  1054. },
  1055. "bin": [
  1056. "bin/carbon"
  1057. ],
  1058. "type": "library",
  1059. "extra": {
  1060. "branch-alias": {
  1061. "dev-3.x": "3.x-dev",
  1062. "dev-master": "2.x-dev"
  1063. },
  1064. "laravel": {
  1065. "providers": [
  1066. "Carbon\\Laravel\\ServiceProvider"
  1067. ]
  1068. },
  1069. "phpstan": {
  1070. "includes": [
  1071. "extension.neon"
  1072. ]
  1073. }
  1074. },
  1075. "autoload": {
  1076. "psr-4": {
  1077. "Carbon\\": "src/Carbon/"
  1078. }
  1079. },
  1080. "notification-url": "https://packagist.org/downloads/",
  1081. "license": [
  1082. "MIT"
  1083. ],
  1084. "authors": [
  1085. {
  1086. "name": "Brian Nesbitt",
  1087. "email": "brian@nesbot.com",
  1088. "homepage": "https://markido.com"
  1089. },
  1090. {
  1091. "name": "kylekatarnls",
  1092. "homepage": "https://github.com/kylekatarnls"
  1093. }
  1094. ],
  1095. "description": "An API extension for DateTime that supports 281 different languages.",
  1096. "homepage": "https://carbon.nesbot.com",
  1097. "keywords": [
  1098. "date",
  1099. "datetime",
  1100. "time"
  1101. ],
  1102. "support": {
  1103. "docs": "https://carbon.nesbot.com/docs",
  1104. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1105. "source": "https://github.com/briannesbitt/Carbon"
  1106. },
  1107. "funding": [
  1108. {
  1109. "url": "https://opencollective.com/Carbon",
  1110. "type": "open_collective"
  1111. },
  1112. {
  1113. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1114. "type": "tidelift"
  1115. }
  1116. ],
  1117. "time": "2022-02-13T18:13:33+00:00"
  1118. },
  1119. {
  1120. "name": "nikic/fast-route",
  1121. "version": "v1.3.0",
  1122. "source": {
  1123. "type": "git",
  1124. "url": "https://github.com/nikic/FastRoute.git",
  1125. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1126. },
  1127. "dist": {
  1128. "type": "zip",
  1129. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1130. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1131. "shasum": ""
  1132. },
  1133. "require": {
  1134. "php": ">=5.4.0"
  1135. },
  1136. "require-dev": {
  1137. "phpunit/phpunit": "^4.8.35|~5.7"
  1138. },
  1139. "type": "library",
  1140. "autoload": {
  1141. "files": [
  1142. "src/functions.php"
  1143. ],
  1144. "psr-4": {
  1145. "FastRoute\\": "src/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "BSD-3-Clause"
  1151. ],
  1152. "authors": [
  1153. {
  1154. "name": "Nikita Popov",
  1155. "email": "nikic@php.net"
  1156. }
  1157. ],
  1158. "description": "Fast request router for PHP",
  1159. "keywords": [
  1160. "router",
  1161. "routing"
  1162. ],
  1163. "support": {
  1164. "issues": "https://github.com/nikic/FastRoute/issues",
  1165. "source": "https://github.com/nikic/FastRoute/tree/master"
  1166. },
  1167. "time": "2018-02-13T20:26:39+00:00"
  1168. },
  1169. {
  1170. "name": "pda/pheanstalk",
  1171. "version": "v4.0.4",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/pheanstalk/pheanstalk.git",
  1175. "reference": "1a43eb97a53144a2e692bce2ea2be721cc9913a4"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/pheanstalk/pheanstalk/zipball/1a43eb97a53144a2e692bce2ea2be721cc9913a4",
  1180. "reference": "1a43eb97a53144a2e692bce2ea2be721cc9913a4",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "ext-mbstring": "*",
  1185. "php": ">=7.1.0"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "^7"
  1189. },
  1190. "type": "library",
  1191. "autoload": {
  1192. "psr-4": {
  1193. "Pheanstalk\\": "src/"
  1194. }
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Paul Annesley",
  1203. "email": "paul@annesley.cc",
  1204. "homepage": "http://paul.annesley.cc/",
  1205. "role": "Developer"
  1206. },
  1207. {
  1208. "name": "Sam Mousa",
  1209. "email": "sam@mousa.nl",
  1210. "role": "Maintainer"
  1211. }
  1212. ],
  1213. "description": "PHP client for beanstalkd queue",
  1214. "homepage": "https://github.com/pheanstalk/pheanstalk",
  1215. "keywords": [
  1216. "beanstalkd"
  1217. ],
  1218. "support": {
  1219. "issues": "https://github.com/pheanstalk/pheanstalk/issues",
  1220. "source": "https://github.com/pheanstalk/pheanstalk/tree/v4.0.4"
  1221. },
  1222. "time": "2021-11-19T15:00:20+00:00"
  1223. },
  1224. {
  1225. "name": "psr/cache",
  1226. "version": "1.0.1",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/php-fig/cache.git",
  1230. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1235. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "php": ">=5.3.0"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "1.0.x-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Psr\\Cache\\": "src/"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "PHP-FIG",
  1259. "homepage": "http://www.php-fig.org/"
  1260. }
  1261. ],
  1262. "description": "Common interface for caching libraries",
  1263. "keywords": [
  1264. "cache",
  1265. "psr",
  1266. "psr-6"
  1267. ],
  1268. "support": {
  1269. "source": "https://github.com/php-fig/cache/tree/master"
  1270. },
  1271. "time": "2016-08-06T20:24:11+00:00"
  1272. },
  1273. {
  1274. "name": "psr/container",
  1275. "version": "1.1.2",
  1276. "source": {
  1277. "type": "git",
  1278. "url": "https://github.com/php-fig/container.git",
  1279. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1280. },
  1281. "dist": {
  1282. "type": "zip",
  1283. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1284. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1285. "shasum": ""
  1286. },
  1287. "require": {
  1288. "php": ">=7.4.0"
  1289. },
  1290. "type": "library",
  1291. "autoload": {
  1292. "psr-4": {
  1293. "Psr\\Container\\": "src/"
  1294. }
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "PHP-FIG",
  1303. "homepage": "https://www.php-fig.org/"
  1304. }
  1305. ],
  1306. "description": "Common Container Interface (PHP FIG PSR-11)",
  1307. "homepage": "https://github.com/php-fig/container",
  1308. "keywords": [
  1309. "PSR-11",
  1310. "container",
  1311. "container-interface",
  1312. "container-interop",
  1313. "psr"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/php-fig/container/issues",
  1317. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1318. },
  1319. "time": "2021-11-05T16:50:12+00:00"
  1320. },
  1321. {
  1322. "name": "psr/log",
  1323. "version": "1.1.4",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/php-fig/log.git",
  1327. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1332. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "php": ">=5.3.0"
  1337. },
  1338. "type": "library",
  1339. "extra": {
  1340. "branch-alias": {
  1341. "dev-master": "1.1.x-dev"
  1342. }
  1343. },
  1344. "autoload": {
  1345. "psr-4": {
  1346. "Psr\\Log\\": "Psr/Log/"
  1347. }
  1348. },
  1349. "notification-url": "https://packagist.org/downloads/",
  1350. "license": [
  1351. "MIT"
  1352. ],
  1353. "authors": [
  1354. {
  1355. "name": "PHP-FIG",
  1356. "homepage": "https://www.php-fig.org/"
  1357. }
  1358. ],
  1359. "description": "Common interface for logging libraries",
  1360. "homepage": "https://github.com/php-fig/log",
  1361. "keywords": [
  1362. "log",
  1363. "psr",
  1364. "psr-3"
  1365. ],
  1366. "support": {
  1367. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1368. },
  1369. "time": "2021-05-03T11:20:27+00:00"
  1370. },
  1371. {
  1372. "name": "psr/simple-cache",
  1373. "version": "1.0.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/php-fig/simple-cache.git",
  1377. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1382. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": ">=5.3.0"
  1387. },
  1388. "type": "library",
  1389. "extra": {
  1390. "branch-alias": {
  1391. "dev-master": "1.0.x-dev"
  1392. }
  1393. },
  1394. "autoload": {
  1395. "psr-4": {
  1396. "Psr\\SimpleCache\\": "src/"
  1397. }
  1398. },
  1399. "notification-url": "https://packagist.org/downloads/",
  1400. "license": [
  1401. "MIT"
  1402. ],
  1403. "authors": [
  1404. {
  1405. "name": "PHP-FIG",
  1406. "homepage": "http://www.php-fig.org/"
  1407. }
  1408. ],
  1409. "description": "Common interfaces for simple caching",
  1410. "keywords": [
  1411. "cache",
  1412. "caching",
  1413. "psr",
  1414. "psr-16",
  1415. "simple-cache"
  1416. ],
  1417. "support": {
  1418. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1419. },
  1420. "time": "2017-10-23T01:57:42+00:00"
  1421. },
  1422. {
  1423. "name": "robmorgan/phinx",
  1424. "version": "0.12.10",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/cakephp/phinx.git",
  1428. "reference": "ad056cff354fc67fedf9bf96c441c2b428afad0c"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/cakephp/phinx/zipball/ad056cff354fc67fedf9bf96c441c2b428afad0c",
  1433. "reference": "ad056cff354fc67fedf9bf96c441c2b428afad0c",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "cakephp/database": "^4.0",
  1438. "php": ">=7.2",
  1439. "psr/container": "^1.0 || ^2.0",
  1440. "symfony/config": "^3.4|^4.0|^5.0|^6.0",
  1441. "symfony/console": "^3.4|^4.0|^5.0|^6.0"
  1442. },
  1443. "require-dev": {
  1444. "cakephp/cakephp-codesniffer": "^4.0",
  1445. "ext-json": "*",
  1446. "ext-pdo": "*",
  1447. "phpunit/phpunit": "^8.5|^9.3",
  1448. "sebastian/comparator": ">=1.2.3",
  1449. "symfony/yaml": "^3.4|^4.0|^5.0"
  1450. },
  1451. "suggest": {
  1452. "ext-json": "Install if using JSON configuration format",
  1453. "ext-pdo": "PDO extension is needed",
  1454. "symfony/yaml": "Install if using YAML configuration format"
  1455. },
  1456. "bin": [
  1457. "bin/phinx"
  1458. ],
  1459. "type": "library",
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Phinx\\": "src/Phinx/"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Rob Morgan",
  1472. "email": "robbym@gmail.com",
  1473. "homepage": "https://robmorgan.id.au",
  1474. "role": "Lead Developer"
  1475. },
  1476. {
  1477. "name": "Woody Gilk",
  1478. "email": "woody.gilk@gmail.com",
  1479. "homepage": "https://shadowhand.me",
  1480. "role": "Developer"
  1481. },
  1482. {
  1483. "name": "Richard Quadling",
  1484. "email": "rquadling@gmail.com",
  1485. "role": "Developer"
  1486. },
  1487. {
  1488. "name": "CakePHP Community",
  1489. "homepage": "https://github.com/cakephp/phinx/graphs/contributors",
  1490. "role": "Developer"
  1491. }
  1492. ],
  1493. "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
  1494. "homepage": "https://phinx.org",
  1495. "keywords": [
  1496. "database",
  1497. "database migrations",
  1498. "db",
  1499. "migrations",
  1500. "phinx"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/cakephp/phinx/issues",
  1504. "source": "https://github.com/cakephp/phinx/tree/0.12.10"
  1505. },
  1506. "time": "2022-01-21T19:53:14+00:00"
  1507. },
  1508. {
  1509. "name": "symfony/cache",
  1510. "version": "v5.4.6",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/symfony/cache.git",
  1514. "reference": "c0718d0e01ac14251a45cc9c8b93716ec41ae64b"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/symfony/cache/zipball/c0718d0e01ac14251a45cc9c8b93716ec41ae64b",
  1519. "reference": "c0718d0e01ac14251a45cc9c8b93716ec41ae64b",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=7.2.5",
  1524. "psr/cache": "^1.0|^2.0",
  1525. "psr/log": "^1.1|^2|^3",
  1526. "symfony/cache-contracts": "^1.1.7|^2",
  1527. "symfony/deprecation-contracts": "^2.1|^3",
  1528. "symfony/polyfill-php73": "^1.9",
  1529. "symfony/polyfill-php80": "^1.16",
  1530. "symfony/service-contracts": "^1.1|^2|^3",
  1531. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  1532. },
  1533. "conflict": {
  1534. "doctrine/dbal": "<2.13.1",
  1535. "symfony/dependency-injection": "<4.4",
  1536. "symfony/http-kernel": "<4.4",
  1537. "symfony/var-dumper": "<4.4"
  1538. },
  1539. "provide": {
  1540. "psr/cache-implementation": "1.0|2.0",
  1541. "psr/simple-cache-implementation": "1.0|2.0",
  1542. "symfony/cache-implementation": "1.0|2.0"
  1543. },
  1544. "require-dev": {
  1545. "cache/integration-tests": "dev-master",
  1546. "doctrine/cache": "^1.6|^2.0",
  1547. "doctrine/dbal": "^2.13.1|^3.0",
  1548. "predis/predis": "^1.1",
  1549. "psr/simple-cache": "^1.0|^2.0",
  1550. "symfony/config": "^4.4|^5.0|^6.0",
  1551. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1552. "symfony/filesystem": "^4.4|^5.0|^6.0",
  1553. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  1554. "symfony/messenger": "^4.4|^5.0|^6.0",
  1555. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1556. },
  1557. "type": "library",
  1558. "autoload": {
  1559. "psr-4": {
  1560. "Symfony\\Component\\Cache\\": ""
  1561. },
  1562. "exclude-from-classmap": [
  1563. "/Tests/"
  1564. ]
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Nicolas Grekas",
  1573. "email": "p@tchwork.com"
  1574. },
  1575. {
  1576. "name": "Symfony Community",
  1577. "homepage": "https://symfony.com/contributors"
  1578. }
  1579. ],
  1580. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  1581. "homepage": "https://symfony.com",
  1582. "keywords": [
  1583. "caching",
  1584. "psr6"
  1585. ],
  1586. "support": {
  1587. "source": "https://github.com/symfony/cache/tree/v5.4.6"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://symfony.com/sponsor",
  1592. "type": "custom"
  1593. },
  1594. {
  1595. "url": "https://github.com/fabpot",
  1596. "type": "github"
  1597. },
  1598. {
  1599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1600. "type": "tidelift"
  1601. }
  1602. ],
  1603. "time": "2022-03-02T12:56:28+00:00"
  1604. },
  1605. {
  1606. "name": "symfony/cache-contracts",
  1607. "version": "v2.5.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/symfony/cache-contracts.git",
  1611. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ac2e168102a2e06a2624f0379bde94cd5854ced2",
  1616. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=7.2.5",
  1621. "psr/cache": "^1.0|^2.0|^3.0"
  1622. },
  1623. "suggest": {
  1624. "symfony/cache-implementation": ""
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-main": "2.5-dev"
  1630. },
  1631. "thanks": {
  1632. "name": "symfony/contracts",
  1633. "url": "https://github.com/symfony/contracts"
  1634. }
  1635. },
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Symfony\\Contracts\\Cache\\": ""
  1639. }
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "MIT"
  1644. ],
  1645. "authors": [
  1646. {
  1647. "name": "Nicolas Grekas",
  1648. "email": "p@tchwork.com"
  1649. },
  1650. {
  1651. "name": "Symfony Community",
  1652. "homepage": "https://symfony.com/contributors"
  1653. }
  1654. ],
  1655. "description": "Generic abstractions related to caching",
  1656. "homepage": "https://symfony.com",
  1657. "keywords": [
  1658. "abstractions",
  1659. "contracts",
  1660. "decoupling",
  1661. "interfaces",
  1662. "interoperability",
  1663. "standards"
  1664. ],
  1665. "support": {
  1666. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.0"
  1667. },
  1668. "funding": [
  1669. {
  1670. "url": "https://symfony.com/sponsor",
  1671. "type": "custom"
  1672. },
  1673. {
  1674. "url": "https://github.com/fabpot",
  1675. "type": "github"
  1676. },
  1677. {
  1678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1679. "type": "tidelift"
  1680. }
  1681. ],
  1682. "time": "2021-08-17T14:20:01+00:00"
  1683. },
  1684. {
  1685. "name": "symfony/config",
  1686. "version": "v5.4.3",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/symfony/config.git",
  1690. "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/symfony/config/zipball/d65e1bd990c740e31feb07d2b0927b8d4df9956f",
  1695. "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "php": ">=7.2.5",
  1700. "symfony/deprecation-contracts": "^2.1|^3",
  1701. "symfony/filesystem": "^4.4|^5.0|^6.0",
  1702. "symfony/polyfill-ctype": "~1.8",
  1703. "symfony/polyfill-php80": "^1.16",
  1704. "symfony/polyfill-php81": "^1.22"
  1705. },
  1706. "conflict": {
  1707. "symfony/finder": "<4.4"
  1708. },
  1709. "require-dev": {
  1710. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  1711. "symfony/finder": "^4.4|^5.0|^6.0",
  1712. "symfony/messenger": "^4.4|^5.0|^6.0",
  1713. "symfony/service-contracts": "^1.1|^2|^3",
  1714. "symfony/yaml": "^4.4|^5.0|^6.0"
  1715. },
  1716. "suggest": {
  1717. "symfony/yaml": "To use the yaml reference dumper"
  1718. },
  1719. "type": "library",
  1720. "autoload": {
  1721. "psr-4": {
  1722. "Symfony\\Component\\Config\\": ""
  1723. },
  1724. "exclude-from-classmap": [
  1725. "/Tests/"
  1726. ]
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Fabien Potencier",
  1735. "email": "fabien@symfony.com"
  1736. },
  1737. {
  1738. "name": "Symfony Community",
  1739. "homepage": "https://symfony.com/contributors"
  1740. }
  1741. ],
  1742. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1743. "homepage": "https://symfony.com",
  1744. "support": {
  1745. "source": "https://github.com/symfony/config/tree/v5.4.3"
  1746. },
  1747. "funding": [
  1748. {
  1749. "url": "https://symfony.com/sponsor",
  1750. "type": "custom"
  1751. },
  1752. {
  1753. "url": "https://github.com/fabpot",
  1754. "type": "github"
  1755. },
  1756. {
  1757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1758. "type": "tidelift"
  1759. }
  1760. ],
  1761. "time": "2022-01-03T09:50:52+00:00"
  1762. },
  1763. {
  1764. "name": "symfony/console",
  1765. "version": "v5.4.5",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/symfony/console.git",
  1769. "reference": "d8111acc99876953f52fe16d4c50eb60940d49ad"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/symfony/console/zipball/d8111acc99876953f52fe16d4c50eb60940d49ad",
  1774. "reference": "d8111acc99876953f52fe16d4c50eb60940d49ad",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "php": ">=7.2.5",
  1779. "symfony/deprecation-contracts": "^2.1|^3",
  1780. "symfony/polyfill-mbstring": "~1.0",
  1781. "symfony/polyfill-php73": "^1.9",
  1782. "symfony/polyfill-php80": "^1.16",
  1783. "symfony/service-contracts": "^1.1|^2|^3",
  1784. "symfony/string": "^5.1|^6.0"
  1785. },
  1786. "conflict": {
  1787. "psr/log": ">=3",
  1788. "symfony/dependency-injection": "<4.4",
  1789. "symfony/dotenv": "<5.1",
  1790. "symfony/event-dispatcher": "<4.4",
  1791. "symfony/lock": "<4.4",
  1792. "symfony/process": "<4.4"
  1793. },
  1794. "provide": {
  1795. "psr/log-implementation": "1.0|2.0"
  1796. },
  1797. "require-dev": {
  1798. "psr/log": "^1|^2",
  1799. "symfony/config": "^4.4|^5.0|^6.0",
  1800. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1801. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  1802. "symfony/lock": "^4.4|^5.0|^6.0",
  1803. "symfony/process": "^4.4|^5.0|^6.0",
  1804. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1805. },
  1806. "suggest": {
  1807. "psr/log": "For using the console logger",
  1808. "symfony/event-dispatcher": "",
  1809. "symfony/lock": "",
  1810. "symfony/process": ""
  1811. },
  1812. "type": "library",
  1813. "autoload": {
  1814. "psr-4": {
  1815. "Symfony\\Component\\Console\\": ""
  1816. },
  1817. "exclude-from-classmap": [
  1818. "/Tests/"
  1819. ]
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Fabien Potencier",
  1828. "email": "fabien@symfony.com"
  1829. },
  1830. {
  1831. "name": "Symfony Community",
  1832. "homepage": "https://symfony.com/contributors"
  1833. }
  1834. ],
  1835. "description": "Eases the creation of beautiful and testable command line interfaces",
  1836. "homepage": "https://symfony.com",
  1837. "keywords": [
  1838. "cli",
  1839. "command line",
  1840. "console",
  1841. "terminal"
  1842. ],
  1843. "support": {
  1844. "source": "https://github.com/symfony/console/tree/v5.4.5"
  1845. },
  1846. "funding": [
  1847. {
  1848. "url": "https://symfony.com/sponsor",
  1849. "type": "custom"
  1850. },
  1851. {
  1852. "url": "https://github.com/fabpot",
  1853. "type": "github"
  1854. },
  1855. {
  1856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1857. "type": "tidelift"
  1858. }
  1859. ],
  1860. "time": "2022-02-24T12:45:35+00:00"
  1861. },
  1862. {
  1863. "name": "symfony/deprecation-contracts",
  1864. "version": "v2.5.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://github.com/symfony/deprecation-contracts.git",
  1868. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1873. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1874. "shasum": ""
  1875. },
  1876. "require": {
  1877. "php": ">=7.1"
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-main": "2.5-dev"
  1883. },
  1884. "thanks": {
  1885. "name": "symfony/contracts",
  1886. "url": "https://github.com/symfony/contracts"
  1887. }
  1888. },
  1889. "autoload": {
  1890. "files": [
  1891. "function.php"
  1892. ]
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Nicolas Grekas",
  1901. "email": "p@tchwork.com"
  1902. },
  1903. {
  1904. "name": "Symfony Community",
  1905. "homepage": "https://symfony.com/contributors"
  1906. }
  1907. ],
  1908. "description": "A generic function and convention to trigger deprecation notices",
  1909. "homepage": "https://symfony.com",
  1910. "support": {
  1911. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://symfony.com/sponsor",
  1916. "type": "custom"
  1917. },
  1918. {
  1919. "url": "https://github.com/fabpot",
  1920. "type": "github"
  1921. },
  1922. {
  1923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1924. "type": "tidelift"
  1925. }
  1926. ],
  1927. "time": "2021-07-12T14:48:14+00:00"
  1928. },
  1929. {
  1930. "name": "symfony/filesystem",
  1931. "version": "v5.4.6",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/symfony/filesystem.git",
  1935. "reference": "d53a45039974952af7f7ebc461ccdd4295e29440"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d53a45039974952af7f7ebc461ccdd4295e29440",
  1940. "reference": "d53a45039974952af7f7ebc461ccdd4295e29440",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "php": ">=7.2.5",
  1945. "symfony/polyfill-ctype": "~1.8",
  1946. "symfony/polyfill-mbstring": "~1.8",
  1947. "symfony/polyfill-php80": "^1.16"
  1948. },
  1949. "type": "library",
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Symfony\\Component\\Filesystem\\": ""
  1953. },
  1954. "exclude-from-classmap": [
  1955. "/Tests/"
  1956. ]
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Fabien Potencier",
  1965. "email": "fabien@symfony.com"
  1966. },
  1967. {
  1968. "name": "Symfony Community",
  1969. "homepage": "https://symfony.com/contributors"
  1970. }
  1971. ],
  1972. "description": "Provides basic utilities for the filesystem",
  1973. "homepage": "https://symfony.com",
  1974. "support": {
  1975. "source": "https://github.com/symfony/filesystem/tree/v5.4.6"
  1976. },
  1977. "funding": [
  1978. {
  1979. "url": "https://symfony.com/sponsor",
  1980. "type": "custom"
  1981. },
  1982. {
  1983. "url": "https://github.com/fabpot",
  1984. "type": "github"
  1985. },
  1986. {
  1987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1988. "type": "tidelift"
  1989. }
  1990. ],
  1991. "time": "2022-03-02T12:42:23+00:00"
  1992. },
  1993. {
  1994. "name": "symfony/polyfill-ctype",
  1995. "version": "v1.25.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/symfony/polyfill-ctype.git",
  1999. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  2004. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "php": ">=7.1"
  2009. },
  2010. "provide": {
  2011. "ext-ctype": "*"
  2012. },
  2013. "suggest": {
  2014. "ext-ctype": "For best performance"
  2015. },
  2016. "type": "library",
  2017. "extra": {
  2018. "branch-alias": {
  2019. "dev-main": "1.23-dev"
  2020. },
  2021. "thanks": {
  2022. "name": "symfony/polyfill",
  2023. "url": "https://github.com/symfony/polyfill"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "files": [
  2028. "bootstrap.php"
  2029. ],
  2030. "psr-4": {
  2031. "Symfony\\Polyfill\\Ctype\\": ""
  2032. }
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Gert de Pagter",
  2041. "email": "BackEndTea@gmail.com"
  2042. },
  2043. {
  2044. "name": "Symfony Community",
  2045. "homepage": "https://symfony.com/contributors"
  2046. }
  2047. ],
  2048. "description": "Symfony polyfill for ctype functions",
  2049. "homepage": "https://symfony.com",
  2050. "keywords": [
  2051. "compatibility",
  2052. "ctype",
  2053. "polyfill",
  2054. "portable"
  2055. ],
  2056. "support": {
  2057. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://symfony.com/sponsor",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://github.com/fabpot",
  2066. "type": "github"
  2067. },
  2068. {
  2069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2070. "type": "tidelift"
  2071. }
  2072. ],
  2073. "time": "2021-10-20T20:35:02+00:00"
  2074. },
  2075. {
  2076. "name": "symfony/polyfill-intl-grapheme",
  2077. "version": "v1.25.0",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2081. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  2086. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "php": ">=7.1"
  2091. },
  2092. "suggest": {
  2093. "ext-intl": "For best performance"
  2094. },
  2095. "type": "library",
  2096. "extra": {
  2097. "branch-alias": {
  2098. "dev-main": "1.23-dev"
  2099. },
  2100. "thanks": {
  2101. "name": "symfony/polyfill",
  2102. "url": "https://github.com/symfony/polyfill"
  2103. }
  2104. },
  2105. "autoload": {
  2106. "files": [
  2107. "bootstrap.php"
  2108. ],
  2109. "psr-4": {
  2110. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2111. }
  2112. },
  2113. "notification-url": "https://packagist.org/downloads/",
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "Nicolas Grekas",
  2120. "email": "p@tchwork.com"
  2121. },
  2122. {
  2123. "name": "Symfony Community",
  2124. "homepage": "https://symfony.com/contributors"
  2125. }
  2126. ],
  2127. "description": "Symfony polyfill for intl's grapheme_* functions",
  2128. "homepage": "https://symfony.com",
  2129. "keywords": [
  2130. "compatibility",
  2131. "grapheme",
  2132. "intl",
  2133. "polyfill",
  2134. "portable",
  2135. "shim"
  2136. ],
  2137. "support": {
  2138. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  2139. },
  2140. "funding": [
  2141. {
  2142. "url": "https://symfony.com/sponsor",
  2143. "type": "custom"
  2144. },
  2145. {
  2146. "url": "https://github.com/fabpot",
  2147. "type": "github"
  2148. },
  2149. {
  2150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2151. "type": "tidelift"
  2152. }
  2153. ],
  2154. "time": "2021-11-23T21:10:46+00:00"
  2155. },
  2156. {
  2157. "name": "symfony/polyfill-intl-normalizer",
  2158. "version": "v1.25.0",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2162. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2167. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2168. "shasum": ""
  2169. },
  2170. "require": {
  2171. "php": ">=7.1"
  2172. },
  2173. "suggest": {
  2174. "ext-intl": "For best performance"
  2175. },
  2176. "type": "library",
  2177. "extra": {
  2178. "branch-alias": {
  2179. "dev-main": "1.23-dev"
  2180. },
  2181. "thanks": {
  2182. "name": "symfony/polyfill",
  2183. "url": "https://github.com/symfony/polyfill"
  2184. }
  2185. },
  2186. "autoload": {
  2187. "files": [
  2188. "bootstrap.php"
  2189. ],
  2190. "psr-4": {
  2191. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2192. },
  2193. "classmap": [
  2194. "Resources/stubs"
  2195. ]
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Nicolas Grekas",
  2204. "email": "p@tchwork.com"
  2205. },
  2206. {
  2207. "name": "Symfony Community",
  2208. "homepage": "https://symfony.com/contributors"
  2209. }
  2210. ],
  2211. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2212. "homepage": "https://symfony.com",
  2213. "keywords": [
  2214. "compatibility",
  2215. "intl",
  2216. "normalizer",
  2217. "polyfill",
  2218. "portable",
  2219. "shim"
  2220. ],
  2221. "support": {
  2222. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  2223. },
  2224. "funding": [
  2225. {
  2226. "url": "https://symfony.com/sponsor",
  2227. "type": "custom"
  2228. },
  2229. {
  2230. "url": "https://github.com/fabpot",
  2231. "type": "github"
  2232. },
  2233. {
  2234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2235. "type": "tidelift"
  2236. }
  2237. ],
  2238. "time": "2021-02-19T12:13:01+00:00"
  2239. },
  2240. {
  2241. "name": "symfony/polyfill-mbstring",
  2242. "version": "v1.25.0",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2246. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2251. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2252. "shasum": ""
  2253. },
  2254. "require": {
  2255. "php": ">=7.1"
  2256. },
  2257. "provide": {
  2258. "ext-mbstring": "*"
  2259. },
  2260. "suggest": {
  2261. "ext-mbstring": "For best performance"
  2262. },
  2263. "type": "library",
  2264. "extra": {
  2265. "branch-alias": {
  2266. "dev-main": "1.23-dev"
  2267. },
  2268. "thanks": {
  2269. "name": "symfony/polyfill",
  2270. "url": "https://github.com/symfony/polyfill"
  2271. }
  2272. },
  2273. "autoload": {
  2274. "files": [
  2275. "bootstrap.php"
  2276. ],
  2277. "psr-4": {
  2278. "Symfony\\Polyfill\\Mbstring\\": ""
  2279. }
  2280. },
  2281. "notification-url": "https://packagist.org/downloads/",
  2282. "license": [
  2283. "MIT"
  2284. ],
  2285. "authors": [
  2286. {
  2287. "name": "Nicolas Grekas",
  2288. "email": "p@tchwork.com"
  2289. },
  2290. {
  2291. "name": "Symfony Community",
  2292. "homepage": "https://symfony.com/contributors"
  2293. }
  2294. ],
  2295. "description": "Symfony polyfill for the Mbstring extension",
  2296. "homepage": "https://symfony.com",
  2297. "keywords": [
  2298. "compatibility",
  2299. "mbstring",
  2300. "polyfill",
  2301. "portable",
  2302. "shim"
  2303. ],
  2304. "support": {
  2305. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  2306. },
  2307. "funding": [
  2308. {
  2309. "url": "https://symfony.com/sponsor",
  2310. "type": "custom"
  2311. },
  2312. {
  2313. "url": "https://github.com/fabpot",
  2314. "type": "github"
  2315. },
  2316. {
  2317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2318. "type": "tidelift"
  2319. }
  2320. ],
  2321. "time": "2021-11-30T18:21:41+00:00"
  2322. },
  2323. {
  2324. "name": "symfony/polyfill-php73",
  2325. "version": "v1.25.0",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://github.com/symfony/polyfill-php73.git",
  2329. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  2334. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  2335. "shasum": ""
  2336. },
  2337. "require": {
  2338. "php": ">=7.1"
  2339. },
  2340. "type": "library",
  2341. "extra": {
  2342. "branch-alias": {
  2343. "dev-main": "1.23-dev"
  2344. },
  2345. "thanks": {
  2346. "name": "symfony/polyfill",
  2347. "url": "https://github.com/symfony/polyfill"
  2348. }
  2349. },
  2350. "autoload": {
  2351. "files": [
  2352. "bootstrap.php"
  2353. ],
  2354. "psr-4": {
  2355. "Symfony\\Polyfill\\Php73\\": ""
  2356. },
  2357. "classmap": [
  2358. "Resources/stubs"
  2359. ]
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Nicolas Grekas",
  2368. "email": "p@tchwork.com"
  2369. },
  2370. {
  2371. "name": "Symfony Community",
  2372. "homepage": "https://symfony.com/contributors"
  2373. }
  2374. ],
  2375. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2376. "homepage": "https://symfony.com",
  2377. "keywords": [
  2378. "compatibility",
  2379. "polyfill",
  2380. "portable",
  2381. "shim"
  2382. ],
  2383. "support": {
  2384. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  2385. },
  2386. "funding": [
  2387. {
  2388. "url": "https://symfony.com/sponsor",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://github.com/fabpot",
  2393. "type": "github"
  2394. },
  2395. {
  2396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2397. "type": "tidelift"
  2398. }
  2399. ],
  2400. "time": "2021-06-05T21:20:04+00:00"
  2401. },
  2402. {
  2403. "name": "symfony/polyfill-php80",
  2404. "version": "v1.25.0",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/symfony/polyfill-php80.git",
  2408. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  2413. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "php": ">=7.1"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-main": "1.23-dev"
  2423. },
  2424. "thanks": {
  2425. "name": "symfony/polyfill",
  2426. "url": "https://github.com/symfony/polyfill"
  2427. }
  2428. },
  2429. "autoload": {
  2430. "files": [
  2431. "bootstrap.php"
  2432. ],
  2433. "psr-4": {
  2434. "Symfony\\Polyfill\\Php80\\": ""
  2435. },
  2436. "classmap": [
  2437. "Resources/stubs"
  2438. ]
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "Ion Bazan",
  2447. "email": "ion.bazan@gmail.com"
  2448. },
  2449. {
  2450. "name": "Nicolas Grekas",
  2451. "email": "p@tchwork.com"
  2452. },
  2453. {
  2454. "name": "Symfony Community",
  2455. "homepage": "https://symfony.com/contributors"
  2456. }
  2457. ],
  2458. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2459. "homepage": "https://symfony.com",
  2460. "keywords": [
  2461. "compatibility",
  2462. "polyfill",
  2463. "portable",
  2464. "shim"
  2465. ],
  2466. "support": {
  2467. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  2468. },
  2469. "funding": [
  2470. {
  2471. "url": "https://symfony.com/sponsor",
  2472. "type": "custom"
  2473. },
  2474. {
  2475. "url": "https://github.com/fabpot",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "time": "2022-03-04T08:16:47+00:00"
  2484. },
  2485. {
  2486. "name": "symfony/polyfill-php81",
  2487. "version": "v1.25.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/symfony/polyfill-php81.git",
  2491. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  2496. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": ">=7.1"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-main": "1.23-dev"
  2506. },
  2507. "thanks": {
  2508. "name": "symfony/polyfill",
  2509. "url": "https://github.com/symfony/polyfill"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "files": [
  2514. "bootstrap.php"
  2515. ],
  2516. "psr-4": {
  2517. "Symfony\\Polyfill\\Php81\\": ""
  2518. },
  2519. "classmap": [
  2520. "Resources/stubs"
  2521. ]
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Nicolas Grekas",
  2530. "email": "p@tchwork.com"
  2531. },
  2532. {
  2533. "name": "Symfony Community",
  2534. "homepage": "https://symfony.com/contributors"
  2535. }
  2536. ],
  2537. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  2538. "homepage": "https://symfony.com",
  2539. "keywords": [
  2540. "compatibility",
  2541. "polyfill",
  2542. "portable",
  2543. "shim"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://symfony.com/sponsor",
  2551. "type": "custom"
  2552. },
  2553. {
  2554. "url": "https://github.com/fabpot",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2559. "type": "tidelift"
  2560. }
  2561. ],
  2562. "time": "2021-09-13T13:58:11+00:00"
  2563. },
  2564. {
  2565. "name": "symfony/service-contracts",
  2566. "version": "v2.5.0",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/symfony/service-contracts.git",
  2570. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  2575. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "php": ">=7.2.5",
  2580. "psr/container": "^1.1",
  2581. "symfony/deprecation-contracts": "^2.1"
  2582. },
  2583. "conflict": {
  2584. "ext-psr": "<1.1|>=2"
  2585. },
  2586. "suggest": {
  2587. "symfony/service-implementation": ""
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-main": "2.5-dev"
  2593. },
  2594. "thanks": {
  2595. "name": "symfony/contracts",
  2596. "url": "https://github.com/symfony/contracts"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Symfony\\Contracts\\Service\\": ""
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Nicolas Grekas",
  2611. "email": "p@tchwork.com"
  2612. },
  2613. {
  2614. "name": "Symfony Community",
  2615. "homepage": "https://symfony.com/contributors"
  2616. }
  2617. ],
  2618. "description": "Generic abstractions related to writing services",
  2619. "homepage": "https://symfony.com",
  2620. "keywords": [
  2621. "abstractions",
  2622. "contracts",
  2623. "decoupling",
  2624. "interfaces",
  2625. "interoperability",
  2626. "standards"
  2627. ],
  2628. "support": {
  2629. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  2630. },
  2631. "funding": [
  2632. {
  2633. "url": "https://symfony.com/sponsor",
  2634. "type": "custom"
  2635. },
  2636. {
  2637. "url": "https://github.com/fabpot",
  2638. "type": "github"
  2639. },
  2640. {
  2641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2642. "type": "tidelift"
  2643. }
  2644. ],
  2645. "time": "2021-11-04T16:48:04+00:00"
  2646. },
  2647. {
  2648. "name": "symfony/string",
  2649. "version": "v5.4.3",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/symfony/string.git",
  2653. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10",
  2658. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "php": ">=7.2.5",
  2663. "symfony/polyfill-ctype": "~1.8",
  2664. "symfony/polyfill-intl-grapheme": "~1.0",
  2665. "symfony/polyfill-intl-normalizer": "~1.0",
  2666. "symfony/polyfill-mbstring": "~1.0",
  2667. "symfony/polyfill-php80": "~1.15"
  2668. },
  2669. "conflict": {
  2670. "symfony/translation-contracts": ">=3.0"
  2671. },
  2672. "require-dev": {
  2673. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2674. "symfony/http-client": "^4.4|^5.0|^6.0",
  2675. "symfony/translation-contracts": "^1.1|^2",
  2676. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2677. },
  2678. "type": "library",
  2679. "autoload": {
  2680. "files": [
  2681. "Resources/functions.php"
  2682. ],
  2683. "psr-4": {
  2684. "Symfony\\Component\\String\\": ""
  2685. },
  2686. "exclude-from-classmap": [
  2687. "/Tests/"
  2688. ]
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Nicolas Grekas",
  2697. "email": "p@tchwork.com"
  2698. },
  2699. {
  2700. "name": "Symfony Community",
  2701. "homepage": "https://symfony.com/contributors"
  2702. }
  2703. ],
  2704. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2705. "homepage": "https://symfony.com",
  2706. "keywords": [
  2707. "grapheme",
  2708. "i18n",
  2709. "string",
  2710. "unicode",
  2711. "utf-8",
  2712. "utf8"
  2713. ],
  2714. "support": {
  2715. "source": "https://github.com/symfony/string/tree/v5.4.3"
  2716. },
  2717. "funding": [
  2718. {
  2719. "url": "https://symfony.com/sponsor",
  2720. "type": "custom"
  2721. },
  2722. {
  2723. "url": "https://github.com/fabpot",
  2724. "type": "github"
  2725. },
  2726. {
  2727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2728. "type": "tidelift"
  2729. }
  2730. ],
  2731. "time": "2022-01-02T09:53:40+00:00"
  2732. },
  2733. {
  2734. "name": "symfony/translation",
  2735. "version": "v5.4.6",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/symfony/translation.git",
  2739. "reference": "a7ca9fdfffb0174209440c2ffa1dee228e15d95b"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/symfony/translation/zipball/a7ca9fdfffb0174209440c2ffa1dee228e15d95b",
  2744. "reference": "a7ca9fdfffb0174209440c2ffa1dee228e15d95b",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "php": ">=7.2.5",
  2749. "symfony/deprecation-contracts": "^2.1|^3",
  2750. "symfony/polyfill-mbstring": "~1.0",
  2751. "symfony/polyfill-php80": "^1.16",
  2752. "symfony/translation-contracts": "^2.3"
  2753. },
  2754. "conflict": {
  2755. "symfony/config": "<4.4",
  2756. "symfony/console": "<5.3",
  2757. "symfony/dependency-injection": "<5.0",
  2758. "symfony/http-kernel": "<5.0",
  2759. "symfony/twig-bundle": "<5.0",
  2760. "symfony/yaml": "<4.4"
  2761. },
  2762. "provide": {
  2763. "symfony/translation-implementation": "2.3"
  2764. },
  2765. "require-dev": {
  2766. "psr/log": "^1|^2|^3",
  2767. "symfony/config": "^4.4|^5.0|^6.0",
  2768. "symfony/console": "^5.4|^6.0",
  2769. "symfony/dependency-injection": "^5.0|^6.0",
  2770. "symfony/finder": "^4.4|^5.0|^6.0",
  2771. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  2772. "symfony/http-kernel": "^5.0|^6.0",
  2773. "symfony/intl": "^4.4|^5.0|^6.0",
  2774. "symfony/polyfill-intl-icu": "^1.21",
  2775. "symfony/service-contracts": "^1.1.2|^2|^3",
  2776. "symfony/yaml": "^4.4|^5.0|^6.0"
  2777. },
  2778. "suggest": {
  2779. "psr/log-implementation": "To use logging capability in translator",
  2780. "symfony/config": "",
  2781. "symfony/yaml": ""
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "files": [
  2786. "Resources/functions.php"
  2787. ],
  2788. "psr-4": {
  2789. "Symfony\\Component\\Translation\\": ""
  2790. },
  2791. "exclude-from-classmap": [
  2792. "/Tests/"
  2793. ]
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Fabien Potencier",
  2802. "email": "fabien@symfony.com"
  2803. },
  2804. {
  2805. "name": "Symfony Community",
  2806. "homepage": "https://symfony.com/contributors"
  2807. }
  2808. ],
  2809. "description": "Provides tools to internationalize your application",
  2810. "homepage": "https://symfony.com",
  2811. "support": {
  2812. "source": "https://github.com/symfony/translation/tree/v5.4.6"
  2813. },
  2814. "funding": [
  2815. {
  2816. "url": "https://symfony.com/sponsor",
  2817. "type": "custom"
  2818. },
  2819. {
  2820. "url": "https://github.com/fabpot",
  2821. "type": "github"
  2822. },
  2823. {
  2824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2825. "type": "tidelift"
  2826. }
  2827. ],
  2828. "time": "2022-03-02T12:56:28+00:00"
  2829. },
  2830. {
  2831. "name": "symfony/translation-contracts",
  2832. "version": "v2.5.0",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/symfony/translation-contracts.git",
  2836. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  2841. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "php": ">=7.2.5"
  2846. },
  2847. "suggest": {
  2848. "symfony/translation-implementation": ""
  2849. },
  2850. "type": "library",
  2851. "extra": {
  2852. "branch-alias": {
  2853. "dev-main": "2.5-dev"
  2854. },
  2855. "thanks": {
  2856. "name": "symfony/contracts",
  2857. "url": "https://github.com/symfony/contracts"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "psr-4": {
  2862. "Symfony\\Contracts\\Translation\\": ""
  2863. }
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "Nicolas Grekas",
  2872. "email": "p@tchwork.com"
  2873. },
  2874. {
  2875. "name": "Symfony Community",
  2876. "homepage": "https://symfony.com/contributors"
  2877. }
  2878. ],
  2879. "description": "Generic abstractions related to translation",
  2880. "homepage": "https://symfony.com",
  2881. "keywords": [
  2882. "abstractions",
  2883. "contracts",
  2884. "decoupling",
  2885. "interfaces",
  2886. "interoperability",
  2887. "standards"
  2888. ],
  2889. "support": {
  2890. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  2891. },
  2892. "funding": [
  2893. {
  2894. "url": "https://symfony.com/sponsor",
  2895. "type": "custom"
  2896. },
  2897. {
  2898. "url": "https://github.com/fabpot",
  2899. "type": "github"
  2900. },
  2901. {
  2902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2903. "type": "tidelift"
  2904. }
  2905. ],
  2906. "time": "2021-08-17T14:20:01+00:00"
  2907. },
  2908. {
  2909. "name": "symfony/var-exporter",
  2910. "version": "v5.4.6",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://github.com/symfony/var-exporter.git",
  2914. "reference": "49e2355fe6f59ea30c18ebb68edf13b7e20582e5"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/49e2355fe6f59ea30c18ebb68edf13b7e20582e5",
  2919. "reference": "49e2355fe6f59ea30c18ebb68edf13b7e20582e5",
  2920. "shasum": ""
  2921. },
  2922. "require": {
  2923. "php": ">=7.2.5",
  2924. "symfony/polyfill-php80": "^1.16"
  2925. },
  2926. "require-dev": {
  2927. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  2928. },
  2929. "type": "library",
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Symfony\\Component\\VarExporter\\": ""
  2933. },
  2934. "exclude-from-classmap": [
  2935. "/Tests/"
  2936. ]
  2937. },
  2938. "notification-url": "https://packagist.org/downloads/",
  2939. "license": [
  2940. "MIT"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "Nicolas Grekas",
  2945. "email": "p@tchwork.com"
  2946. },
  2947. {
  2948. "name": "Symfony Community",
  2949. "homepage": "https://symfony.com/contributors"
  2950. }
  2951. ],
  2952. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  2953. "homepage": "https://symfony.com",
  2954. "keywords": [
  2955. "clone",
  2956. "construct",
  2957. "export",
  2958. "hydrate",
  2959. "instantiate",
  2960. "serialize"
  2961. ],
  2962. "support": {
  2963. "source": "https://github.com/symfony/var-exporter/tree/v5.4.6"
  2964. },
  2965. "funding": [
  2966. {
  2967. "url": "https://symfony.com/sponsor",
  2968. "type": "custom"
  2969. },
  2970. {
  2971. "url": "https://github.com/fabpot",
  2972. "type": "github"
  2973. },
  2974. {
  2975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2976. "type": "tidelift"
  2977. }
  2978. ],
  2979. "time": "2022-03-02T12:42:23+00:00"
  2980. },
  2981. {
  2982. "name": "voku/portable-ascii",
  2983. "version": "1.6.1",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/voku/portable-ascii.git",
  2987. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  2992. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  2993. "shasum": ""
  2994. },
  2995. "require": {
  2996. "php": ">=7.0.0"
  2997. },
  2998. "require-dev": {
  2999. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  3000. },
  3001. "suggest": {
  3002. "ext-intl": "Use Intl for transliterator_transliterate() support"
  3003. },
  3004. "type": "library",
  3005. "autoload": {
  3006. "psr-4": {
  3007. "voku\\": "src/voku/"
  3008. }
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Lars Moelleken",
  3017. "homepage": "http://www.moelleken.org/"
  3018. }
  3019. ],
  3020. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  3021. "homepage": "https://github.com/voku/portable-ascii",
  3022. "keywords": [
  3023. "ascii",
  3024. "clean",
  3025. "php"
  3026. ],
  3027. "support": {
  3028. "issues": "https://github.com/voku/portable-ascii/issues",
  3029. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  3030. },
  3031. "funding": [
  3032. {
  3033. "url": "https://www.paypal.me/moelleken",
  3034. "type": "custom"
  3035. },
  3036. {
  3037. "url": "https://github.com/voku",
  3038. "type": "github"
  3039. },
  3040. {
  3041. "url": "https://opencollective.com/portable-ascii",
  3042. "type": "open_collective"
  3043. },
  3044. {
  3045. "url": "https://www.patreon.com/voku",
  3046. "type": "patreon"
  3047. },
  3048. {
  3049. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  3050. "type": "tidelift"
  3051. }
  3052. ],
  3053. "time": "2022-01-24T18:55:24+00:00"
  3054. },
  3055. {
  3056. "name": "webman/console",
  3057. "version": "v1.0.24",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/webman-php/console.git",
  3061. "reference": "e4ff8b4d669ac02bf975b98d5d00ccd652967c23"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/webman-php/console/zipball/e4ff8b4d669ac02bf975b98d5d00ccd652967c23",
  3066. "reference": "e4ff8b4d669ac02bf975b98d5d00ccd652967c23",
  3067. "shasum": ""
  3068. },
  3069. "require": {
  3070. "symfony/console": ">=5.0"
  3071. },
  3072. "require-dev": {
  3073. "workerman/webman": "^1.0"
  3074. },
  3075. "type": "library",
  3076. "autoload": {
  3077. "psr-4": {
  3078. "Webman\\Console\\": "src"
  3079. }
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "MIT"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "walkor",
  3088. "email": "walkor@workerman.net",
  3089. "homepage": "http://www.workerman.net",
  3090. "role": "Developer"
  3091. }
  3092. ],
  3093. "description": "Webman console",
  3094. "homepage": "http://www.workerman.net",
  3095. "keywords": [
  3096. "webman console"
  3097. ],
  3098. "support": {
  3099. "email": "walkor@workerman.net",
  3100. "forum": "http://www.workerman.net/questions",
  3101. "issues": "https://github.com/webman-php/console/issues",
  3102. "source": "https://github.com/webman-php/console",
  3103. "wiki": "http://www.workerman.net/doc/webman"
  3104. },
  3105. "time": "2022-03-25T02:01:45+00:00"
  3106. },
  3107. {
  3108. "name": "webman/redis-queue",
  3109. "version": "v1.1.2",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/webman-php/redis-queue.git",
  3113. "reference": "70c430453c6ddf5256660d0d33ee4e5f4ce7530d"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/webman-php/redis-queue/zipball/70c430453c6ddf5256660d0d33ee4e5f4ce7530d",
  3118. "reference": "70c430453c6ddf5256660d0d33ee4e5f4ce7530d",
  3119. "shasum": ""
  3120. },
  3121. "require": {
  3122. "workerman/redis-queue": "^1.0"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "psr-4": {
  3127. "Webman\\RedisQueue\\": "./src"
  3128. }
  3129. },
  3130. "notification-url": "https://packagist.org/downloads/",
  3131. "description": "Redis message queue plugin for webman.",
  3132. "support": {
  3133. "issues": "https://github.com/webman-php/redis-queue/issues",
  3134. "source": "https://github.com/webman-php/redis-queue/tree/v1.1.2"
  3135. },
  3136. "time": "2022-03-25T08:58:10+00:00"
  3137. },
  3138. {
  3139. "name": "workerman/crontab",
  3140. "version": "v1.0.2",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/walkor/crontab.git",
  3144. "reference": "28106241415049ee340a8a7cd9b640165240a2fa"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/walkor/crontab/zipball/28106241415049ee340a8a7cd9b640165240a2fa",
  3149. "reference": "28106241415049ee340a8a7cd9b640165240a2fa",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "php": ">=7.0",
  3154. "workerman/workerman": ">=3.5.0"
  3155. },
  3156. "type": "library",
  3157. "autoload": {
  3158. "psr-4": {
  3159. "Workerman\\Crontab\\": "./src"
  3160. }
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "walkor",
  3169. "email": "walkor@workerman.net",
  3170. "homepage": "http://www.workerman.net",
  3171. "role": "Developer"
  3172. }
  3173. ],
  3174. "description": "A crontab written in PHP based on workerman",
  3175. "homepage": "http://www.workerman.net",
  3176. "keywords": [
  3177. "crontab"
  3178. ],
  3179. "support": {
  3180. "email": "walkor@workerman.net",
  3181. "forum": "http://wenda.workerman.net/",
  3182. "issues": "https://github.com/walkor/workerman/issues",
  3183. "source": "https://github.com/walkor/crontab",
  3184. "wiki": "http://doc.workerman.net/"
  3185. },
  3186. "time": "2021-10-06T14:18:14+00:00"
  3187. },
  3188. {
  3189. "name": "workerman/redis",
  3190. "version": "v1.0.7",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/walkor/redis.git",
  3194. "reference": "5e65740b72042130b9c928a2be7bebb8609a1f2e"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/walkor/redis/zipball/5e65740b72042130b9c928a2be7bebb8609a1f2e",
  3199. "reference": "5e65740b72042130b9c928a2be7bebb8609a1f2e",
  3200. "shasum": ""
  3201. },
  3202. "require": {
  3203. "php": ">=5.4",
  3204. "workerman/workerman": ">=3.5.0"
  3205. },
  3206. "type": "library",
  3207. "autoload": {
  3208. "psr-4": {
  3209. "Workerman\\Redis\\": "./src"
  3210. }
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "homepage": "http://www.workerman.net",
  3217. "support": {
  3218. "issues": "https://github.com/walkor/redis/issues",
  3219. "source": "https://github.com/walkor/redis/tree/v1.0.7"
  3220. },
  3221. "time": "2021-10-13T10:28:56+00:00"
  3222. },
  3223. {
  3224. "name": "workerman/redis-queue",
  3225. "version": "v1.0.6",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/walkor/redis-queue.git",
  3229. "reference": "6f6d51aa2e485965625a06c42881c9394dff7548"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/walkor/redis-queue/zipball/6f6d51aa2e485965625a06c42881c9394dff7548",
  3234. "reference": "6f6d51aa2e485965625a06c42881c9394dff7548",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "php": ">=5.4",
  3239. "workerman/redis": "^1.0"
  3240. },
  3241. "type": "library",
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Workerman\\RedisQueue\\": "./src"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "description": "Message queue system written in PHP based on workerman and backed by Redis.",
  3252. "homepage": "http://www.workerman.net",
  3253. "support": {
  3254. "issues": "https://github.com/walkor/redis-queue/issues",
  3255. "source": "https://github.com/walkor/redis-queue/tree/v1.0.6"
  3256. },
  3257. "time": "2022-03-22T15:27:02+00:00"
  3258. },
  3259. {
  3260. "name": "workerman/webman-framework",
  3261. "version": "v1.3.6",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/walkor/webman-framework.git",
  3265. "reference": "cbc82cd13477492787122be9ccbd20124eff88d5"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/walkor/webman-framework/zipball/cbc82cd13477492787122be9ccbd20124eff88d5",
  3270. "reference": "cbc82cd13477492787122be9ccbd20124eff88d5",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "nikic/fast-route": "^1.3",
  3275. "php": ">=7.2",
  3276. "psr/container": ">=1.0",
  3277. "workerman/workerman": "^4.0.4"
  3278. },
  3279. "suggest": {
  3280. "ext-event": "For better performance. "
  3281. },
  3282. "type": "library",
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Webman\\": "./src",
  3286. "Support\\": "./src/support",
  3287. "support\\": "./src/support",
  3288. "Support\\View\\": "./src/support/view",
  3289. "Support\\Bootstrap\\": "./src/support/bootstrap",
  3290. "Support\\Exception\\": "./src/support/exception"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "walkor",
  3300. "email": "walkor@workerman.net",
  3301. "homepage": "http://www.workerman.net",
  3302. "role": "Developer"
  3303. }
  3304. ],
  3305. "description": "High performance HTTP Service Framework.",
  3306. "homepage": "http://www.workerman.net",
  3307. "keywords": [
  3308. "High Performance",
  3309. "http service"
  3310. ],
  3311. "support": {
  3312. "email": "walkor@workerman.net",
  3313. "forum": "http://wenda.workerman.net/",
  3314. "issues": "https://github.com/walkor/webman/issues",
  3315. "source": "https://github.com/walkor/webman-framework",
  3316. "wiki": "http://doc.workerman.net/"
  3317. },
  3318. "funding": [
  3319. {
  3320. "url": "https://opencollective.com/walkor",
  3321. "type": "open_collective"
  3322. },
  3323. {
  3324. "url": "https://www.patreon.com/walkor",
  3325. "type": "patreon"
  3326. }
  3327. ],
  3328. "time": "2022-03-25T08:15:45+00:00"
  3329. },
  3330. {
  3331. "name": "workerman/workerman",
  3332. "version": "v4.0.31",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/walkor/workerman.git",
  3336. "reference": "39df5a1627345678e8b83ac86efabafdf31ca9d5"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/walkor/workerman/zipball/39df5a1627345678e8b83ac86efabafdf31ca9d5",
  3341. "reference": "39df5a1627345678e8b83ac86efabafdf31ca9d5",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": ">=5.3"
  3346. },
  3347. "suggest": {
  3348. "ext-event": "For better performance. "
  3349. },
  3350. "type": "library",
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Workerman\\": "./"
  3354. }
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "walkor",
  3363. "email": "walkor@workerman.net",
  3364. "homepage": "http://www.workerman.net",
  3365. "role": "Developer"
  3366. }
  3367. ],
  3368. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3369. "homepage": "http://www.workerman.net",
  3370. "keywords": [
  3371. "asynchronous",
  3372. "event-loop"
  3373. ],
  3374. "support": {
  3375. "email": "walkor@workerman.net",
  3376. "forum": "http://wenda.workerman.net/",
  3377. "issues": "https://github.com/walkor/workerman/issues",
  3378. "source": "https://github.com/walkor/workerman",
  3379. "wiki": "http://doc.workerman.net/"
  3380. },
  3381. "funding": [
  3382. {
  3383. "url": "https://opencollective.com/workerman",
  3384. "type": "open_collective"
  3385. },
  3386. {
  3387. "url": "https://www.patreon.com/walkor",
  3388. "type": "patreon"
  3389. }
  3390. ],
  3391. "time": "2022-03-23T02:14:58+00:00"
  3392. }
  3393. ],
  3394. "packages-dev": [
  3395. {
  3396. "name": "doctrine/instantiator",
  3397. "version": "1.4.1",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/doctrine/instantiator.git",
  3401. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  3406. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  3407. "shasum": ""
  3408. },
  3409. "require": {
  3410. "php": "^7.1 || ^8.0"
  3411. },
  3412. "require-dev": {
  3413. "doctrine/coding-standard": "^9",
  3414. "ext-pdo": "*",
  3415. "ext-phar": "*",
  3416. "phpbench/phpbench": "^0.16 || ^1",
  3417. "phpstan/phpstan": "^1.4",
  3418. "phpstan/phpstan-phpunit": "^1",
  3419. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  3420. "vimeo/psalm": "^4.22"
  3421. },
  3422. "type": "library",
  3423. "autoload": {
  3424. "psr-4": {
  3425. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3426. }
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Marco Pivetta",
  3435. "email": "ocramius@gmail.com",
  3436. "homepage": "https://ocramius.github.io/"
  3437. }
  3438. ],
  3439. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3440. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3441. "keywords": [
  3442. "constructor",
  3443. "instantiate"
  3444. ],
  3445. "support": {
  3446. "issues": "https://github.com/doctrine/instantiator/issues",
  3447. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  3448. },
  3449. "funding": [
  3450. {
  3451. "url": "https://www.doctrine-project.org/sponsorship.html",
  3452. "type": "custom"
  3453. },
  3454. {
  3455. "url": "https://www.patreon.com/phpdoctrine",
  3456. "type": "patreon"
  3457. },
  3458. {
  3459. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3460. "type": "tidelift"
  3461. }
  3462. ],
  3463. "time": "2022-03-03T08:28:38+00:00"
  3464. },
  3465. {
  3466. "name": "myclabs/deep-copy",
  3467. "version": "1.11.0",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/myclabs/DeepCopy.git",
  3471. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  3476. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  3477. "shasum": ""
  3478. },
  3479. "require": {
  3480. "php": "^7.1 || ^8.0"
  3481. },
  3482. "conflict": {
  3483. "doctrine/collections": "<1.6.8",
  3484. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  3485. },
  3486. "require-dev": {
  3487. "doctrine/collections": "^1.6.8",
  3488. "doctrine/common": "^2.13.3 || ^3.2.2",
  3489. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3490. },
  3491. "type": "library",
  3492. "autoload": {
  3493. "files": [
  3494. "src/DeepCopy/deep_copy.php"
  3495. ],
  3496. "psr-4": {
  3497. "DeepCopy\\": "src/DeepCopy/"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "description": "Create deep copies (clones) of your objects",
  3505. "keywords": [
  3506. "clone",
  3507. "copy",
  3508. "duplicate",
  3509. "object",
  3510. "object graph"
  3511. ],
  3512. "support": {
  3513. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3514. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  3515. },
  3516. "funding": [
  3517. {
  3518. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3519. "type": "tidelift"
  3520. }
  3521. ],
  3522. "time": "2022-03-03T13:19:32+00:00"
  3523. },
  3524. {
  3525. "name": "nikic/php-parser",
  3526. "version": "v4.13.2",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/nikic/PHP-Parser.git",
  3530. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3535. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3536. "shasum": ""
  3537. },
  3538. "require": {
  3539. "ext-tokenizer": "*",
  3540. "php": ">=7.0"
  3541. },
  3542. "require-dev": {
  3543. "ircmaxell/php-yacc": "^0.0.7",
  3544. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3545. },
  3546. "bin": [
  3547. "bin/php-parse"
  3548. ],
  3549. "type": "library",
  3550. "extra": {
  3551. "branch-alias": {
  3552. "dev-master": "4.9-dev"
  3553. }
  3554. },
  3555. "autoload": {
  3556. "psr-4": {
  3557. "PhpParser\\": "lib/PhpParser"
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "BSD-3-Clause"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Nikita Popov"
  3567. }
  3568. ],
  3569. "description": "A PHP parser written in PHP",
  3570. "keywords": [
  3571. "parser",
  3572. "php"
  3573. ],
  3574. "support": {
  3575. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3576. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  3577. },
  3578. "time": "2021-11-30T19:35:32+00:00"
  3579. },
  3580. {
  3581. "name": "phar-io/manifest",
  3582. "version": "2.0.3",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/phar-io/manifest.git",
  3586. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  3591. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "ext-dom": "*",
  3596. "ext-phar": "*",
  3597. "ext-xmlwriter": "*",
  3598. "phar-io/version": "^3.0.1",
  3599. "php": "^7.2 || ^8.0"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-master": "2.0.x-dev"
  3605. }
  3606. },
  3607. "autoload": {
  3608. "classmap": [
  3609. "src/"
  3610. ]
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "BSD-3-Clause"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "Arne Blankerts",
  3619. "email": "arne@blankerts.de",
  3620. "role": "Developer"
  3621. },
  3622. {
  3623. "name": "Sebastian Heuer",
  3624. "email": "sebastian@phpeople.de",
  3625. "role": "Developer"
  3626. },
  3627. {
  3628. "name": "Sebastian Bergmann",
  3629. "email": "sebastian@phpunit.de",
  3630. "role": "Developer"
  3631. }
  3632. ],
  3633. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3634. "support": {
  3635. "issues": "https://github.com/phar-io/manifest/issues",
  3636. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  3637. },
  3638. "time": "2021-07-20T11:28:43+00:00"
  3639. },
  3640. {
  3641. "name": "phar-io/version",
  3642. "version": "3.2.1",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/phar-io/version.git",
  3646. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3651. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "php": "^7.2 || ^8.0"
  3656. },
  3657. "type": "library",
  3658. "autoload": {
  3659. "classmap": [
  3660. "src/"
  3661. ]
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "BSD-3-Clause"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Arne Blankerts",
  3670. "email": "arne@blankerts.de",
  3671. "role": "Developer"
  3672. },
  3673. {
  3674. "name": "Sebastian Heuer",
  3675. "email": "sebastian@phpeople.de",
  3676. "role": "Developer"
  3677. },
  3678. {
  3679. "name": "Sebastian Bergmann",
  3680. "email": "sebastian@phpunit.de",
  3681. "role": "Developer"
  3682. }
  3683. ],
  3684. "description": "Library for handling version information and constraints",
  3685. "support": {
  3686. "issues": "https://github.com/phar-io/version/issues",
  3687. "source": "https://github.com/phar-io/version/tree/3.2.1"
  3688. },
  3689. "time": "2022-02-21T01:04:05+00:00"
  3690. },
  3691. {
  3692. "name": "phpdocumentor/reflection-common",
  3693. "version": "2.2.0",
  3694. "source": {
  3695. "type": "git",
  3696. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3697. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3698. },
  3699. "dist": {
  3700. "type": "zip",
  3701. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3702. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3703. "shasum": ""
  3704. },
  3705. "require": {
  3706. "php": "^7.2 || ^8.0"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-2.x": "2.x-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "psr-4": {
  3716. "phpDocumentor\\Reflection\\": "src/"
  3717. }
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Jaap van Otterdijk",
  3726. "email": "opensource@ijaap.nl"
  3727. }
  3728. ],
  3729. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3730. "homepage": "http://www.phpdoc.org",
  3731. "keywords": [
  3732. "FQSEN",
  3733. "phpDocumentor",
  3734. "phpdoc",
  3735. "reflection",
  3736. "static analysis"
  3737. ],
  3738. "support": {
  3739. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3740. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3741. },
  3742. "time": "2020-06-27T09:03:43+00:00"
  3743. },
  3744. {
  3745. "name": "phpdocumentor/reflection-docblock",
  3746. "version": "5.3.0",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3750. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  3755. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  3756. "shasum": ""
  3757. },
  3758. "require": {
  3759. "ext-filter": "*",
  3760. "php": "^7.2 || ^8.0",
  3761. "phpdocumentor/reflection-common": "^2.2",
  3762. "phpdocumentor/type-resolver": "^1.3",
  3763. "webmozart/assert": "^1.9.1"
  3764. },
  3765. "require-dev": {
  3766. "mockery/mockery": "~1.3.2",
  3767. "psalm/phar": "^4.8"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-master": "5.x-dev"
  3773. }
  3774. },
  3775. "autoload": {
  3776. "psr-4": {
  3777. "phpDocumentor\\Reflection\\": "src"
  3778. }
  3779. },
  3780. "notification-url": "https://packagist.org/downloads/",
  3781. "license": [
  3782. "MIT"
  3783. ],
  3784. "authors": [
  3785. {
  3786. "name": "Mike van Riel",
  3787. "email": "me@mikevanriel.com"
  3788. },
  3789. {
  3790. "name": "Jaap van Otterdijk",
  3791. "email": "account@ijaap.nl"
  3792. }
  3793. ],
  3794. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3795. "support": {
  3796. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3797. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  3798. },
  3799. "time": "2021-10-19T17:43:47+00:00"
  3800. },
  3801. {
  3802. "name": "phpdocumentor/type-resolver",
  3803. "version": "1.6.0",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3807. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  3812. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "php": "^7.2 || ^8.0",
  3817. "phpdocumentor/reflection-common": "^2.0"
  3818. },
  3819. "require-dev": {
  3820. "ext-tokenizer": "*",
  3821. "psalm/phar": "^4.8"
  3822. },
  3823. "type": "library",
  3824. "extra": {
  3825. "branch-alias": {
  3826. "dev-1.x": "1.x-dev"
  3827. }
  3828. },
  3829. "autoload": {
  3830. "psr-4": {
  3831. "phpDocumentor\\Reflection\\": "src"
  3832. }
  3833. },
  3834. "notification-url": "https://packagist.org/downloads/",
  3835. "license": [
  3836. "MIT"
  3837. ],
  3838. "authors": [
  3839. {
  3840. "name": "Mike van Riel",
  3841. "email": "me@mikevanriel.com"
  3842. }
  3843. ],
  3844. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3845. "support": {
  3846. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3847. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  3848. },
  3849. "time": "2022-01-04T19:58:01+00:00"
  3850. },
  3851. {
  3852. "name": "phpspec/prophecy",
  3853. "version": "v1.15.0",
  3854. "source": {
  3855. "type": "git",
  3856. "url": "https://github.com/phpspec/prophecy.git",
  3857. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  3858. },
  3859. "dist": {
  3860. "type": "zip",
  3861. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  3862. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  3863. "shasum": ""
  3864. },
  3865. "require": {
  3866. "doctrine/instantiator": "^1.2",
  3867. "php": "^7.2 || ~8.0, <8.2",
  3868. "phpdocumentor/reflection-docblock": "^5.2",
  3869. "sebastian/comparator": "^3.0 || ^4.0",
  3870. "sebastian/recursion-context": "^3.0 || ^4.0"
  3871. },
  3872. "require-dev": {
  3873. "phpspec/phpspec": "^6.0 || ^7.0",
  3874. "phpunit/phpunit": "^8.0 || ^9.0"
  3875. },
  3876. "type": "library",
  3877. "extra": {
  3878. "branch-alias": {
  3879. "dev-master": "1.x-dev"
  3880. }
  3881. },
  3882. "autoload": {
  3883. "psr-4": {
  3884. "Prophecy\\": "src/Prophecy"
  3885. }
  3886. },
  3887. "notification-url": "https://packagist.org/downloads/",
  3888. "license": [
  3889. "MIT"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "Konstantin Kudryashov",
  3894. "email": "ever.zet@gmail.com",
  3895. "homepage": "http://everzet.com"
  3896. },
  3897. {
  3898. "name": "Marcello Duarte",
  3899. "email": "marcello.duarte@gmail.com"
  3900. }
  3901. ],
  3902. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3903. "homepage": "https://github.com/phpspec/prophecy",
  3904. "keywords": [
  3905. "Double",
  3906. "Dummy",
  3907. "fake",
  3908. "mock",
  3909. "spy",
  3910. "stub"
  3911. ],
  3912. "support": {
  3913. "issues": "https://github.com/phpspec/prophecy/issues",
  3914. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  3915. },
  3916. "time": "2021-12-08T12:19:24+00:00"
  3917. },
  3918. {
  3919. "name": "phpunit/php-code-coverage",
  3920. "version": "9.2.15",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3924. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  3929. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  3930. "shasum": ""
  3931. },
  3932. "require": {
  3933. "ext-dom": "*",
  3934. "ext-libxml": "*",
  3935. "ext-xmlwriter": "*",
  3936. "nikic/php-parser": "^4.13.0",
  3937. "php": ">=7.3",
  3938. "phpunit/php-file-iterator": "^3.0.3",
  3939. "phpunit/php-text-template": "^2.0.2",
  3940. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  3941. "sebastian/complexity": "^2.0",
  3942. "sebastian/environment": "^5.1.2",
  3943. "sebastian/lines-of-code": "^1.0.3",
  3944. "sebastian/version": "^3.0.1",
  3945. "theseer/tokenizer": "^1.2.0"
  3946. },
  3947. "require-dev": {
  3948. "phpunit/phpunit": "^9.3"
  3949. },
  3950. "suggest": {
  3951. "ext-pcov": "*",
  3952. "ext-xdebug": "*"
  3953. },
  3954. "type": "library",
  3955. "extra": {
  3956. "branch-alias": {
  3957. "dev-master": "9.2-dev"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "classmap": [
  3962. "src/"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "BSD-3-Clause"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Sebastian Bergmann",
  3972. "email": "sebastian@phpunit.de",
  3973. "role": "lead"
  3974. }
  3975. ],
  3976. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3977. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3978. "keywords": [
  3979. "coverage",
  3980. "testing",
  3981. "xunit"
  3982. ],
  3983. "support": {
  3984. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3985. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  3986. },
  3987. "funding": [
  3988. {
  3989. "url": "https://github.com/sebastianbergmann",
  3990. "type": "github"
  3991. }
  3992. ],
  3993. "time": "2022-03-07T09:28:20+00:00"
  3994. },
  3995. {
  3996. "name": "phpunit/php-file-iterator",
  3997. "version": "3.0.6",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4001. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  4002. },
  4003. "dist": {
  4004. "type": "zip",
  4005. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4006. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4007. "shasum": ""
  4008. },
  4009. "require": {
  4010. "php": ">=7.3"
  4011. },
  4012. "require-dev": {
  4013. "phpunit/phpunit": "^9.3"
  4014. },
  4015. "type": "library",
  4016. "extra": {
  4017. "branch-alias": {
  4018. "dev-master": "3.0-dev"
  4019. }
  4020. },
  4021. "autoload": {
  4022. "classmap": [
  4023. "src/"
  4024. ]
  4025. },
  4026. "notification-url": "https://packagist.org/downloads/",
  4027. "license": [
  4028. "BSD-3-Clause"
  4029. ],
  4030. "authors": [
  4031. {
  4032. "name": "Sebastian Bergmann",
  4033. "email": "sebastian@phpunit.de",
  4034. "role": "lead"
  4035. }
  4036. ],
  4037. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4038. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4039. "keywords": [
  4040. "filesystem",
  4041. "iterator"
  4042. ],
  4043. "support": {
  4044. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4045. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  4046. },
  4047. "funding": [
  4048. {
  4049. "url": "https://github.com/sebastianbergmann",
  4050. "type": "github"
  4051. }
  4052. ],
  4053. "time": "2021-12-02T12:48:52+00:00"
  4054. },
  4055. {
  4056. "name": "phpunit/php-invoker",
  4057. "version": "3.1.1",
  4058. "source": {
  4059. "type": "git",
  4060. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4061. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  4062. },
  4063. "dist": {
  4064. "type": "zip",
  4065. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4066. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4067. "shasum": ""
  4068. },
  4069. "require": {
  4070. "php": ">=7.3"
  4071. },
  4072. "require-dev": {
  4073. "ext-pcntl": "*",
  4074. "phpunit/phpunit": "^9.3"
  4075. },
  4076. "suggest": {
  4077. "ext-pcntl": "*"
  4078. },
  4079. "type": "library",
  4080. "extra": {
  4081. "branch-alias": {
  4082. "dev-master": "3.1-dev"
  4083. }
  4084. },
  4085. "autoload": {
  4086. "classmap": [
  4087. "src/"
  4088. ]
  4089. },
  4090. "notification-url": "https://packagist.org/downloads/",
  4091. "license": [
  4092. "BSD-3-Clause"
  4093. ],
  4094. "authors": [
  4095. {
  4096. "name": "Sebastian Bergmann",
  4097. "email": "sebastian@phpunit.de",
  4098. "role": "lead"
  4099. }
  4100. ],
  4101. "description": "Invoke callables with a timeout",
  4102. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4103. "keywords": [
  4104. "process"
  4105. ],
  4106. "support": {
  4107. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4108. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  4109. },
  4110. "funding": [
  4111. {
  4112. "url": "https://github.com/sebastianbergmann",
  4113. "type": "github"
  4114. }
  4115. ],
  4116. "time": "2020-09-28T05:58:55+00:00"
  4117. },
  4118. {
  4119. "name": "phpunit/php-text-template",
  4120. "version": "2.0.4",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4124. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4129. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4130. "shasum": ""
  4131. },
  4132. "require": {
  4133. "php": ">=7.3"
  4134. },
  4135. "require-dev": {
  4136. "phpunit/phpunit": "^9.3"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "2.0-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "classmap": [
  4146. "src/"
  4147. ]
  4148. },
  4149. "notification-url": "https://packagist.org/downloads/",
  4150. "license": [
  4151. "BSD-3-Clause"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "Sebastian Bergmann",
  4156. "email": "sebastian@phpunit.de",
  4157. "role": "lead"
  4158. }
  4159. ],
  4160. "description": "Simple template engine.",
  4161. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4162. "keywords": [
  4163. "template"
  4164. ],
  4165. "support": {
  4166. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4167. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  4168. },
  4169. "funding": [
  4170. {
  4171. "url": "https://github.com/sebastianbergmann",
  4172. "type": "github"
  4173. }
  4174. ],
  4175. "time": "2020-10-26T05:33:50+00:00"
  4176. },
  4177. {
  4178. "name": "phpunit/php-timer",
  4179. "version": "5.0.3",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4183. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4188. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4189. "shasum": ""
  4190. },
  4191. "require": {
  4192. "php": ">=7.3"
  4193. },
  4194. "require-dev": {
  4195. "phpunit/phpunit": "^9.3"
  4196. },
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-master": "5.0-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "classmap": [
  4205. "src/"
  4206. ]
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "BSD-3-Clause"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "Sebastian Bergmann",
  4215. "email": "sebastian@phpunit.de",
  4216. "role": "lead"
  4217. }
  4218. ],
  4219. "description": "Utility class for timing",
  4220. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4221. "keywords": [
  4222. "timer"
  4223. ],
  4224. "support": {
  4225. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4226. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4227. },
  4228. "funding": [
  4229. {
  4230. "url": "https://github.com/sebastianbergmann",
  4231. "type": "github"
  4232. }
  4233. ],
  4234. "time": "2020-10-26T13:16:10+00:00"
  4235. },
  4236. {
  4237. "name": "phpunit/phpunit",
  4238. "version": "9.5.19",
  4239. "source": {
  4240. "type": "git",
  4241. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4242. "reference": "35ea4b7f3acabb26f4bb640f8c30866c401da807"
  4243. },
  4244. "dist": {
  4245. "type": "zip",
  4246. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/35ea4b7f3acabb26f4bb640f8c30866c401da807",
  4247. "reference": "35ea4b7f3acabb26f4bb640f8c30866c401da807",
  4248. "shasum": ""
  4249. },
  4250. "require": {
  4251. "doctrine/instantiator": "^1.3.1",
  4252. "ext-dom": "*",
  4253. "ext-json": "*",
  4254. "ext-libxml": "*",
  4255. "ext-mbstring": "*",
  4256. "ext-xml": "*",
  4257. "ext-xmlwriter": "*",
  4258. "myclabs/deep-copy": "^1.10.1",
  4259. "phar-io/manifest": "^2.0.3",
  4260. "phar-io/version": "^3.0.2",
  4261. "php": ">=7.3",
  4262. "phpspec/prophecy": "^1.12.1",
  4263. "phpunit/php-code-coverage": "^9.2.13",
  4264. "phpunit/php-file-iterator": "^3.0.5",
  4265. "phpunit/php-invoker": "^3.1.1",
  4266. "phpunit/php-text-template": "^2.0.3",
  4267. "phpunit/php-timer": "^5.0.2",
  4268. "sebastian/cli-parser": "^1.0.1",
  4269. "sebastian/code-unit": "^1.0.6",
  4270. "sebastian/comparator": "^4.0.5",
  4271. "sebastian/diff": "^4.0.3",
  4272. "sebastian/environment": "^5.1.3",
  4273. "sebastian/exporter": "^4.0.3",
  4274. "sebastian/global-state": "^5.0.1",
  4275. "sebastian/object-enumerator": "^4.0.3",
  4276. "sebastian/resource-operations": "^3.0.3",
  4277. "sebastian/type": "^3.0",
  4278. "sebastian/version": "^3.0.2"
  4279. },
  4280. "require-dev": {
  4281. "ext-pdo": "*",
  4282. "phpspec/prophecy-phpunit": "^2.0.1"
  4283. },
  4284. "suggest": {
  4285. "ext-soap": "*",
  4286. "ext-xdebug": "*"
  4287. },
  4288. "bin": [
  4289. "phpunit"
  4290. ],
  4291. "type": "library",
  4292. "extra": {
  4293. "branch-alias": {
  4294. "dev-master": "9.5-dev"
  4295. }
  4296. },
  4297. "autoload": {
  4298. "files": [
  4299. "src/Framework/Assert/Functions.php"
  4300. ],
  4301. "classmap": [
  4302. "src/"
  4303. ]
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "BSD-3-Clause"
  4308. ],
  4309. "authors": [
  4310. {
  4311. "name": "Sebastian Bergmann",
  4312. "email": "sebastian@phpunit.de",
  4313. "role": "lead"
  4314. }
  4315. ],
  4316. "description": "The PHP Unit Testing framework.",
  4317. "homepage": "https://phpunit.de/",
  4318. "keywords": [
  4319. "phpunit",
  4320. "testing",
  4321. "xunit"
  4322. ],
  4323. "support": {
  4324. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4325. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.19"
  4326. },
  4327. "funding": [
  4328. {
  4329. "url": "https://phpunit.de/sponsors.html",
  4330. "type": "custom"
  4331. },
  4332. {
  4333. "url": "https://github.com/sebastianbergmann",
  4334. "type": "github"
  4335. }
  4336. ],
  4337. "time": "2022-03-15T09:57:31+00:00"
  4338. },
  4339. {
  4340. "name": "sebastian/cli-parser",
  4341. "version": "1.0.1",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  4345. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4350. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4351. "shasum": ""
  4352. },
  4353. "require": {
  4354. "php": ">=7.3"
  4355. },
  4356. "require-dev": {
  4357. "phpunit/phpunit": "^9.3"
  4358. },
  4359. "type": "library",
  4360. "extra": {
  4361. "branch-alias": {
  4362. "dev-master": "1.0-dev"
  4363. }
  4364. },
  4365. "autoload": {
  4366. "classmap": [
  4367. "src/"
  4368. ]
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "BSD-3-Clause"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Sebastian Bergmann",
  4377. "email": "sebastian@phpunit.de",
  4378. "role": "lead"
  4379. }
  4380. ],
  4381. "description": "Library for parsing CLI options",
  4382. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  4383. "support": {
  4384. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  4385. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  4386. },
  4387. "funding": [
  4388. {
  4389. "url": "https://github.com/sebastianbergmann",
  4390. "type": "github"
  4391. }
  4392. ],
  4393. "time": "2020-09-28T06:08:49+00:00"
  4394. },
  4395. {
  4396. "name": "sebastian/code-unit",
  4397. "version": "1.0.8",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/sebastianbergmann/code-unit.git",
  4401. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4406. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "php": ">=7.3"
  4411. },
  4412. "require-dev": {
  4413. "phpunit/phpunit": "^9.3"
  4414. },
  4415. "type": "library",
  4416. "extra": {
  4417. "branch-alias": {
  4418. "dev-master": "1.0-dev"
  4419. }
  4420. },
  4421. "autoload": {
  4422. "classmap": [
  4423. "src/"
  4424. ]
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "BSD-3-Clause"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Sebastian Bergmann",
  4433. "email": "sebastian@phpunit.de",
  4434. "role": "lead"
  4435. }
  4436. ],
  4437. "description": "Collection of value objects that represent the PHP code units",
  4438. "homepage": "https://github.com/sebastianbergmann/code-unit",
  4439. "support": {
  4440. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  4441. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  4442. },
  4443. "funding": [
  4444. {
  4445. "url": "https://github.com/sebastianbergmann",
  4446. "type": "github"
  4447. }
  4448. ],
  4449. "time": "2020-10-26T13:08:54+00:00"
  4450. },
  4451. {
  4452. "name": "sebastian/code-unit-reverse-lookup",
  4453. "version": "2.0.3",
  4454. "source": {
  4455. "type": "git",
  4456. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4457. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  4458. },
  4459. "dist": {
  4460. "type": "zip",
  4461. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4462. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4463. "shasum": ""
  4464. },
  4465. "require": {
  4466. "php": ">=7.3"
  4467. },
  4468. "require-dev": {
  4469. "phpunit/phpunit": "^9.3"
  4470. },
  4471. "type": "library",
  4472. "extra": {
  4473. "branch-alias": {
  4474. "dev-master": "2.0-dev"
  4475. }
  4476. },
  4477. "autoload": {
  4478. "classmap": [
  4479. "src/"
  4480. ]
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "BSD-3-Clause"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Sebastian Bergmann",
  4489. "email": "sebastian@phpunit.de"
  4490. }
  4491. ],
  4492. "description": "Looks up which function or method a line of code belongs to",
  4493. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4494. "support": {
  4495. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4496. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  4497. },
  4498. "funding": [
  4499. {
  4500. "url": "https://github.com/sebastianbergmann",
  4501. "type": "github"
  4502. }
  4503. ],
  4504. "time": "2020-09-28T05:30:19+00:00"
  4505. },
  4506. {
  4507. "name": "sebastian/comparator",
  4508. "version": "4.0.6",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/sebastianbergmann/comparator.git",
  4512. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  4517. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": ">=7.3",
  4522. "sebastian/diff": "^4.0",
  4523. "sebastian/exporter": "^4.0"
  4524. },
  4525. "require-dev": {
  4526. "phpunit/phpunit": "^9.3"
  4527. },
  4528. "type": "library",
  4529. "extra": {
  4530. "branch-alias": {
  4531. "dev-master": "4.0-dev"
  4532. }
  4533. },
  4534. "autoload": {
  4535. "classmap": [
  4536. "src/"
  4537. ]
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "BSD-3-Clause"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Sebastian Bergmann",
  4546. "email": "sebastian@phpunit.de"
  4547. },
  4548. {
  4549. "name": "Jeff Welch",
  4550. "email": "whatthejeff@gmail.com"
  4551. },
  4552. {
  4553. "name": "Volker Dusch",
  4554. "email": "github@wallbash.com"
  4555. },
  4556. {
  4557. "name": "Bernhard Schussek",
  4558. "email": "bschussek@2bepublished.at"
  4559. }
  4560. ],
  4561. "description": "Provides the functionality to compare PHP values for equality",
  4562. "homepage": "https://github.com/sebastianbergmann/comparator",
  4563. "keywords": [
  4564. "comparator",
  4565. "compare",
  4566. "equality"
  4567. ],
  4568. "support": {
  4569. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4570. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  4571. },
  4572. "funding": [
  4573. {
  4574. "url": "https://github.com/sebastianbergmann",
  4575. "type": "github"
  4576. }
  4577. ],
  4578. "time": "2020-10-26T15:49:45+00:00"
  4579. },
  4580. {
  4581. "name": "sebastian/complexity",
  4582. "version": "2.0.2",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/sebastianbergmann/complexity.git",
  4586. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  4591. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "nikic/php-parser": "^4.7",
  4596. "php": ">=7.3"
  4597. },
  4598. "require-dev": {
  4599. "phpunit/phpunit": "^9.3"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "2.0-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "classmap": [
  4609. "src/"
  4610. ]
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "BSD-3-Clause"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Sebastian Bergmann",
  4619. "email": "sebastian@phpunit.de",
  4620. "role": "lead"
  4621. }
  4622. ],
  4623. "description": "Library for calculating the complexity of PHP code units",
  4624. "homepage": "https://github.com/sebastianbergmann/complexity",
  4625. "support": {
  4626. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  4627. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  4628. },
  4629. "funding": [
  4630. {
  4631. "url": "https://github.com/sebastianbergmann",
  4632. "type": "github"
  4633. }
  4634. ],
  4635. "time": "2020-10-26T15:52:27+00:00"
  4636. },
  4637. {
  4638. "name": "sebastian/diff",
  4639. "version": "4.0.4",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://github.com/sebastianbergmann/diff.git",
  4643. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  4648. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  4649. "shasum": ""
  4650. },
  4651. "require": {
  4652. "php": ">=7.3"
  4653. },
  4654. "require-dev": {
  4655. "phpunit/phpunit": "^9.3",
  4656. "symfony/process": "^4.2 || ^5"
  4657. },
  4658. "type": "library",
  4659. "extra": {
  4660. "branch-alias": {
  4661. "dev-master": "4.0-dev"
  4662. }
  4663. },
  4664. "autoload": {
  4665. "classmap": [
  4666. "src/"
  4667. ]
  4668. },
  4669. "notification-url": "https://packagist.org/downloads/",
  4670. "license": [
  4671. "BSD-3-Clause"
  4672. ],
  4673. "authors": [
  4674. {
  4675. "name": "Sebastian Bergmann",
  4676. "email": "sebastian@phpunit.de"
  4677. },
  4678. {
  4679. "name": "Kore Nordmann",
  4680. "email": "mail@kore-nordmann.de"
  4681. }
  4682. ],
  4683. "description": "Diff implementation",
  4684. "homepage": "https://github.com/sebastianbergmann/diff",
  4685. "keywords": [
  4686. "diff",
  4687. "udiff",
  4688. "unidiff",
  4689. "unified diff"
  4690. ],
  4691. "support": {
  4692. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4693. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  4694. },
  4695. "funding": [
  4696. {
  4697. "url": "https://github.com/sebastianbergmann",
  4698. "type": "github"
  4699. }
  4700. ],
  4701. "time": "2020-10-26T13:10:38+00:00"
  4702. },
  4703. {
  4704. "name": "sebastian/environment",
  4705. "version": "5.1.3",
  4706. "source": {
  4707. "type": "git",
  4708. "url": "https://github.com/sebastianbergmann/environment.git",
  4709. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  4710. },
  4711. "dist": {
  4712. "type": "zip",
  4713. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  4714. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  4715. "shasum": ""
  4716. },
  4717. "require": {
  4718. "php": ">=7.3"
  4719. },
  4720. "require-dev": {
  4721. "phpunit/phpunit": "^9.3"
  4722. },
  4723. "suggest": {
  4724. "ext-posix": "*"
  4725. },
  4726. "type": "library",
  4727. "extra": {
  4728. "branch-alias": {
  4729. "dev-master": "5.1-dev"
  4730. }
  4731. },
  4732. "autoload": {
  4733. "classmap": [
  4734. "src/"
  4735. ]
  4736. },
  4737. "notification-url": "https://packagist.org/downloads/",
  4738. "license": [
  4739. "BSD-3-Clause"
  4740. ],
  4741. "authors": [
  4742. {
  4743. "name": "Sebastian Bergmann",
  4744. "email": "sebastian@phpunit.de"
  4745. }
  4746. ],
  4747. "description": "Provides functionality to handle HHVM/PHP environments",
  4748. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4749. "keywords": [
  4750. "Xdebug",
  4751. "environment",
  4752. "hhvm"
  4753. ],
  4754. "support": {
  4755. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4756. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  4757. },
  4758. "funding": [
  4759. {
  4760. "url": "https://github.com/sebastianbergmann",
  4761. "type": "github"
  4762. }
  4763. ],
  4764. "time": "2020-09-28T05:52:38+00:00"
  4765. },
  4766. {
  4767. "name": "sebastian/exporter",
  4768. "version": "4.0.4",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/sebastianbergmann/exporter.git",
  4772. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  4777. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  4778. "shasum": ""
  4779. },
  4780. "require": {
  4781. "php": ">=7.3",
  4782. "sebastian/recursion-context": "^4.0"
  4783. },
  4784. "require-dev": {
  4785. "ext-mbstring": "*",
  4786. "phpunit/phpunit": "^9.3"
  4787. },
  4788. "type": "library",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-master": "4.0-dev"
  4792. }
  4793. },
  4794. "autoload": {
  4795. "classmap": [
  4796. "src/"
  4797. ]
  4798. },
  4799. "notification-url": "https://packagist.org/downloads/",
  4800. "license": [
  4801. "BSD-3-Clause"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "Sebastian Bergmann",
  4806. "email": "sebastian@phpunit.de"
  4807. },
  4808. {
  4809. "name": "Jeff Welch",
  4810. "email": "whatthejeff@gmail.com"
  4811. },
  4812. {
  4813. "name": "Volker Dusch",
  4814. "email": "github@wallbash.com"
  4815. },
  4816. {
  4817. "name": "Adam Harvey",
  4818. "email": "aharvey@php.net"
  4819. },
  4820. {
  4821. "name": "Bernhard Schussek",
  4822. "email": "bschussek@gmail.com"
  4823. }
  4824. ],
  4825. "description": "Provides the functionality to export PHP variables for visualization",
  4826. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  4827. "keywords": [
  4828. "export",
  4829. "exporter"
  4830. ],
  4831. "support": {
  4832. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4833. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://github.com/sebastianbergmann",
  4838. "type": "github"
  4839. }
  4840. ],
  4841. "time": "2021-11-11T14:18:36+00:00"
  4842. },
  4843. {
  4844. "name": "sebastian/global-state",
  4845. "version": "5.0.5",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/sebastianbergmann/global-state.git",
  4849. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  4854. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  4855. "shasum": ""
  4856. },
  4857. "require": {
  4858. "php": ">=7.3",
  4859. "sebastian/object-reflector": "^2.0",
  4860. "sebastian/recursion-context": "^4.0"
  4861. },
  4862. "require-dev": {
  4863. "ext-dom": "*",
  4864. "phpunit/phpunit": "^9.3"
  4865. },
  4866. "suggest": {
  4867. "ext-uopz": "*"
  4868. },
  4869. "type": "library",
  4870. "extra": {
  4871. "branch-alias": {
  4872. "dev-master": "5.0-dev"
  4873. }
  4874. },
  4875. "autoload": {
  4876. "classmap": [
  4877. "src/"
  4878. ]
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "BSD-3-Clause"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Sebastian Bergmann",
  4887. "email": "sebastian@phpunit.de"
  4888. }
  4889. ],
  4890. "description": "Snapshotting of global state",
  4891. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4892. "keywords": [
  4893. "global state"
  4894. ],
  4895. "support": {
  4896. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4897. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  4898. },
  4899. "funding": [
  4900. {
  4901. "url": "https://github.com/sebastianbergmann",
  4902. "type": "github"
  4903. }
  4904. ],
  4905. "time": "2022-02-14T08:28:10+00:00"
  4906. },
  4907. {
  4908. "name": "sebastian/lines-of-code",
  4909. "version": "1.0.3",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  4913. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  4918. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  4919. "shasum": ""
  4920. },
  4921. "require": {
  4922. "nikic/php-parser": "^4.6",
  4923. "php": ">=7.3"
  4924. },
  4925. "require-dev": {
  4926. "phpunit/phpunit": "^9.3"
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "1.0-dev"
  4932. }
  4933. },
  4934. "autoload": {
  4935. "classmap": [
  4936. "src/"
  4937. ]
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "BSD-3-Clause"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Sebastian Bergmann",
  4946. "email": "sebastian@phpunit.de",
  4947. "role": "lead"
  4948. }
  4949. ],
  4950. "description": "Library for counting the lines of code in PHP source code",
  4951. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  4952. "support": {
  4953. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  4954. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  4955. },
  4956. "funding": [
  4957. {
  4958. "url": "https://github.com/sebastianbergmann",
  4959. "type": "github"
  4960. }
  4961. ],
  4962. "time": "2020-11-28T06:42:11+00:00"
  4963. },
  4964. {
  4965. "name": "sebastian/object-enumerator",
  4966. "version": "4.0.4",
  4967. "source": {
  4968. "type": "git",
  4969. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4970. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  4971. },
  4972. "dist": {
  4973. "type": "zip",
  4974. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  4975. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  4976. "shasum": ""
  4977. },
  4978. "require": {
  4979. "php": ">=7.3",
  4980. "sebastian/object-reflector": "^2.0",
  4981. "sebastian/recursion-context": "^4.0"
  4982. },
  4983. "require-dev": {
  4984. "phpunit/phpunit": "^9.3"
  4985. },
  4986. "type": "library",
  4987. "extra": {
  4988. "branch-alias": {
  4989. "dev-master": "4.0-dev"
  4990. }
  4991. },
  4992. "autoload": {
  4993. "classmap": [
  4994. "src/"
  4995. ]
  4996. },
  4997. "notification-url": "https://packagist.org/downloads/",
  4998. "license": [
  4999. "BSD-3-Clause"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "Sebastian Bergmann",
  5004. "email": "sebastian@phpunit.de"
  5005. }
  5006. ],
  5007. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5008. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5009. "support": {
  5010. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5011. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5012. },
  5013. "funding": [
  5014. {
  5015. "url": "https://github.com/sebastianbergmann",
  5016. "type": "github"
  5017. }
  5018. ],
  5019. "time": "2020-10-26T13:12:34+00:00"
  5020. },
  5021. {
  5022. "name": "sebastian/object-reflector",
  5023. "version": "2.0.4",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5027. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5032. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5033. "shasum": ""
  5034. },
  5035. "require": {
  5036. "php": ">=7.3"
  5037. },
  5038. "require-dev": {
  5039. "phpunit/phpunit": "^9.3"
  5040. },
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-master": "2.0-dev"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "classmap": [
  5049. "src/"
  5050. ]
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "BSD-3-Clause"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Sebastian Bergmann",
  5059. "email": "sebastian@phpunit.de"
  5060. }
  5061. ],
  5062. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5063. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5064. "support": {
  5065. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5066. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5067. },
  5068. "funding": [
  5069. {
  5070. "url": "https://github.com/sebastianbergmann",
  5071. "type": "github"
  5072. }
  5073. ],
  5074. "time": "2020-10-26T13:14:26+00:00"
  5075. },
  5076. {
  5077. "name": "sebastian/recursion-context",
  5078. "version": "4.0.4",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5082. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  5087. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "php": ">=7.3"
  5092. },
  5093. "require-dev": {
  5094. "phpunit/phpunit": "^9.3"
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-master": "4.0-dev"
  5100. }
  5101. },
  5102. "autoload": {
  5103. "classmap": [
  5104. "src/"
  5105. ]
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "BSD-3-Clause"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Sebastian Bergmann",
  5114. "email": "sebastian@phpunit.de"
  5115. },
  5116. {
  5117. "name": "Jeff Welch",
  5118. "email": "whatthejeff@gmail.com"
  5119. },
  5120. {
  5121. "name": "Adam Harvey",
  5122. "email": "aharvey@php.net"
  5123. }
  5124. ],
  5125. "description": "Provides functionality to recursively process PHP variables",
  5126. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5127. "support": {
  5128. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5129. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://github.com/sebastianbergmann",
  5134. "type": "github"
  5135. }
  5136. ],
  5137. "time": "2020-10-26T13:17:30+00:00"
  5138. },
  5139. {
  5140. "name": "sebastian/resource-operations",
  5141. "version": "3.0.3",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5145. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5150. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=7.3"
  5155. },
  5156. "require-dev": {
  5157. "phpunit/phpunit": "^9.0"
  5158. },
  5159. "type": "library",
  5160. "extra": {
  5161. "branch-alias": {
  5162. "dev-master": "3.0-dev"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "classmap": [
  5167. "src/"
  5168. ]
  5169. },
  5170. "notification-url": "https://packagist.org/downloads/",
  5171. "license": [
  5172. "BSD-3-Clause"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "Sebastian Bergmann",
  5177. "email": "sebastian@phpunit.de"
  5178. }
  5179. ],
  5180. "description": "Provides a list of PHP built-in functions that operate on resources",
  5181. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5182. "support": {
  5183. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5184. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5185. },
  5186. "funding": [
  5187. {
  5188. "url": "https://github.com/sebastianbergmann",
  5189. "type": "github"
  5190. }
  5191. ],
  5192. "time": "2020-09-28T06:45:17+00:00"
  5193. },
  5194. {
  5195. "name": "sebastian/type",
  5196. "version": "3.0.0",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/sebastianbergmann/type.git",
  5200. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  5205. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": ">=7.3"
  5210. },
  5211. "require-dev": {
  5212. "phpunit/phpunit": "^9.5"
  5213. },
  5214. "type": "library",
  5215. "extra": {
  5216. "branch-alias": {
  5217. "dev-master": "3.0-dev"
  5218. }
  5219. },
  5220. "autoload": {
  5221. "classmap": [
  5222. "src/"
  5223. ]
  5224. },
  5225. "notification-url": "https://packagist.org/downloads/",
  5226. "license": [
  5227. "BSD-3-Clause"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Sebastian Bergmann",
  5232. "email": "sebastian@phpunit.de",
  5233. "role": "lead"
  5234. }
  5235. ],
  5236. "description": "Collection of value objects that represent the types of the PHP type system",
  5237. "homepage": "https://github.com/sebastianbergmann/type",
  5238. "support": {
  5239. "issues": "https://github.com/sebastianbergmann/type/issues",
  5240. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  5241. },
  5242. "funding": [
  5243. {
  5244. "url": "https://github.com/sebastianbergmann",
  5245. "type": "github"
  5246. }
  5247. ],
  5248. "time": "2022-03-15T09:54:48+00:00"
  5249. },
  5250. {
  5251. "name": "sebastian/version",
  5252. "version": "3.0.2",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/sebastianbergmann/version.git",
  5256. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5261. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=7.3"
  5266. },
  5267. "type": "library",
  5268. "extra": {
  5269. "branch-alias": {
  5270. "dev-master": "3.0-dev"
  5271. }
  5272. },
  5273. "autoload": {
  5274. "classmap": [
  5275. "src/"
  5276. ]
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "BSD-3-Clause"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Sebastian Bergmann",
  5285. "email": "sebastian@phpunit.de",
  5286. "role": "lead"
  5287. }
  5288. ],
  5289. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5290. "homepage": "https://github.com/sebastianbergmann/version",
  5291. "support": {
  5292. "issues": "https://github.com/sebastianbergmann/version/issues",
  5293. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://github.com/sebastianbergmann",
  5298. "type": "github"
  5299. }
  5300. ],
  5301. "time": "2020-09-28T06:39:44+00:00"
  5302. },
  5303. {
  5304. "name": "theseer/tokenizer",
  5305. "version": "1.2.1",
  5306. "source": {
  5307. "type": "git",
  5308. "url": "https://github.com/theseer/tokenizer.git",
  5309. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  5310. },
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  5314. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "ext-dom": "*",
  5319. "ext-tokenizer": "*",
  5320. "ext-xmlwriter": "*",
  5321. "php": "^7.2 || ^8.0"
  5322. },
  5323. "type": "library",
  5324. "autoload": {
  5325. "classmap": [
  5326. "src/"
  5327. ]
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "BSD-3-Clause"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Arne Blankerts",
  5336. "email": "arne@blankerts.de",
  5337. "role": "Developer"
  5338. }
  5339. ],
  5340. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5341. "support": {
  5342. "issues": "https://github.com/theseer/tokenizer/issues",
  5343. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  5344. },
  5345. "funding": [
  5346. {
  5347. "url": "https://github.com/theseer",
  5348. "type": "github"
  5349. }
  5350. ],
  5351. "time": "2021-07-28T10:34:58+00:00"
  5352. },
  5353. {
  5354. "name": "webmozart/assert",
  5355. "version": "1.10.0",
  5356. "source": {
  5357. "type": "git",
  5358. "url": "https://github.com/webmozarts/assert.git",
  5359. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5360. },
  5361. "dist": {
  5362. "type": "zip",
  5363. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5364. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5365. "shasum": ""
  5366. },
  5367. "require": {
  5368. "php": "^7.2 || ^8.0",
  5369. "symfony/polyfill-ctype": "^1.8"
  5370. },
  5371. "conflict": {
  5372. "phpstan/phpstan": "<0.12.20",
  5373. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5374. },
  5375. "require-dev": {
  5376. "phpunit/phpunit": "^8.5.13"
  5377. },
  5378. "type": "library",
  5379. "extra": {
  5380. "branch-alias": {
  5381. "dev-master": "1.10-dev"
  5382. }
  5383. },
  5384. "autoload": {
  5385. "psr-4": {
  5386. "Webmozart\\Assert\\": "src/"
  5387. }
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "MIT"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Bernhard Schussek",
  5396. "email": "bschussek@gmail.com"
  5397. }
  5398. ],
  5399. "description": "Assertions to validate method input/output with nice error messages.",
  5400. "keywords": [
  5401. "assert",
  5402. "check",
  5403. "validate"
  5404. ],
  5405. "support": {
  5406. "issues": "https://github.com/webmozarts/assert/issues",
  5407. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5408. },
  5409. "time": "2021-03-09T10:59:23+00:00"
  5410. }
  5411. ],
  5412. "aliases": [],
  5413. "minimum-stability": "stable",
  5414. "stability-flags": [],
  5415. "prefer-stable": false,
  5416. "prefer-lowest": false,
  5417. "platform": {
  5418. "php": ">=7.2"
  5419. },
  5420. "platform-dev": [],
  5421. "plugin-api-version": "2.2.0"
  5422. }