composer.lock 202 KB

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