composer.lock 219 KB

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