composer.lock 197 KB

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