composer.lock 265 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444
  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": "6caecce430d09548ce0b9a2e23213d27",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.3.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2021-01-20T22:51:39+00:00"
  120. },
  121. {
  122. "name": "dnoegel/php-xdg-base-dir",
  123. "version": "v0.1.1",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  127. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  132. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": ">=5.3.2"
  137. },
  138. "require-dev": {
  139. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  140. },
  141. "type": "library",
  142. "autoload": {
  143. "psr-4": {
  144. "XdgBaseDir\\": "src/"
  145. }
  146. },
  147. "notification-url": "https://packagist.org/downloads/",
  148. "license": [
  149. "MIT"
  150. ],
  151. "description": "implementation of xdg base directory specification for php",
  152. "support": {
  153. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  154. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  155. },
  156. "time": "2019-12-04T15:06:13+00:00"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "2.0.3",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/doctrine/inflector.git",
  164. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  169. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^7.2 || ^8.0"
  174. },
  175. "require-dev": {
  176. "doctrine/coding-standard": "^7.0",
  177. "phpstan/phpstan": "^0.11",
  178. "phpstan/phpstan-phpunit": "^0.11",
  179. "phpstan/phpstan-strict-rules": "^0.11",
  180. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "2.0.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  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": "Benjamin Eberlei",
  208. "email": "kontakt@beberlei.de"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "jonwage@gmail.com"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "schmittjoh@gmail.com"
  217. }
  218. ],
  219. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  220. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  221. "keywords": [
  222. "inflection",
  223. "inflector",
  224. "lowercase",
  225. "manipulation",
  226. "php",
  227. "plural",
  228. "singular",
  229. "strings",
  230. "uppercase",
  231. "words"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/doctrine/inflector/issues",
  235. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://www.doctrine-project.org/sponsorship.html",
  240. "type": "custom"
  241. },
  242. {
  243. "url": "https://www.patreon.com/phpdoctrine",
  244. "type": "patreon"
  245. },
  246. {
  247. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  248. "type": "tidelift"
  249. }
  250. ],
  251. "time": "2020-05-29T15:13:26+00:00"
  252. },
  253. {
  254. "name": "doctrine/lexer",
  255. "version": "1.2.1",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/doctrine/lexer.git",
  259. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  264. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^7.2 || ^8.0"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^6.0",
  272. "phpstan/phpstan": "^0.11.8",
  273. "phpunit/phpunit": "^8.2"
  274. },
  275. "type": "library",
  276. "extra": {
  277. "branch-alias": {
  278. "dev-master": "1.2.x-dev"
  279. }
  280. },
  281. "autoload": {
  282. "psr-4": {
  283. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "MIT"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Guilherme Blanco",
  293. "email": "guilhermeblanco@gmail.com"
  294. },
  295. {
  296. "name": "Roman Borschel",
  297. "email": "roman@code-factory.org"
  298. },
  299. {
  300. "name": "Johannes Schmitt",
  301. "email": "schmittjoh@gmail.com"
  302. }
  303. ],
  304. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  305. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  306. "keywords": [
  307. "annotations",
  308. "docblock",
  309. "lexer",
  310. "parser",
  311. "php"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/lexer/issues",
  315. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-05-25T17:44:05+00:00"
  332. },
  333. {
  334. "name": "dragonmantank/cron-expression",
  335. "version": "v3.1.0",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/dragonmantank/cron-expression.git",
  339. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  344. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "php": "^7.2|^8.0",
  349. "webmozart/assert": "^1.7.0"
  350. },
  351. "replace": {
  352. "mtdowling/cron-expression": "^1.0"
  353. },
  354. "require-dev": {
  355. "phpstan/extension-installer": "^1.0",
  356. "phpstan/phpstan": "^0.12",
  357. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  358. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  359. },
  360. "type": "library",
  361. "autoload": {
  362. "psr-4": {
  363. "Cron\\": "src/Cron/"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "Chris Tankersley",
  373. "email": "chris@ctankersley.com",
  374. "homepage": "https://github.com/dragonmantank"
  375. }
  376. ],
  377. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  378. "keywords": [
  379. "cron",
  380. "schedule"
  381. ],
  382. "support": {
  383. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  384. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  385. },
  386. "funding": [
  387. {
  388. "url": "https://github.com/dragonmantank",
  389. "type": "github"
  390. }
  391. ],
  392. "time": "2020-11-24T19:55:57+00:00"
  393. },
  394. {
  395. "name": "egulias/email-validator",
  396. "version": "2.1.25",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/egulias/EmailValidator.git",
  400. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  405. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "doctrine/lexer": "^1.0.1",
  410. "php": ">=5.5",
  411. "symfony/polyfill-intl-idn": "^1.10"
  412. },
  413. "require-dev": {
  414. "dominicsayers/isemail": "^3.0.7",
  415. "phpunit/phpunit": "^4.8.36|^7.5.15",
  416. "satooshi/php-coveralls": "^1.0.1"
  417. },
  418. "suggest": {
  419. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "2.1.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Egulias\\EmailValidator\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Eduardo Gulias Davis"
  439. }
  440. ],
  441. "description": "A library for validating emails against several RFCs",
  442. "homepage": "https://github.com/egulias/EmailValidator",
  443. "keywords": [
  444. "email",
  445. "emailvalidation",
  446. "emailvalidator",
  447. "validation",
  448. "validator"
  449. ],
  450. "support": {
  451. "issues": "https://github.com/egulias/EmailValidator/issues",
  452. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  453. },
  454. "funding": [
  455. {
  456. "url": "https://github.com/egulias",
  457. "type": "github"
  458. }
  459. ],
  460. "time": "2020-12-29T14:50:06+00:00"
  461. },
  462. {
  463. "name": "fideloper/proxy",
  464. "version": "4.4.1",
  465. "source": {
  466. "type": "git",
  467. "url": "https://github.com/fideloper/TrustedProxy.git",
  468. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  469. },
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  473. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  474. "shasum": ""
  475. },
  476. "require": {
  477. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  478. "php": ">=5.4.0"
  479. },
  480. "require-dev": {
  481. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  482. "mockery/mockery": "^1.0",
  483. "phpunit/phpunit": "^6.0"
  484. },
  485. "type": "library",
  486. "extra": {
  487. "laravel": {
  488. "providers": [
  489. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  490. ]
  491. }
  492. },
  493. "autoload": {
  494. "psr-4": {
  495. "Fideloper\\Proxy\\": "src/"
  496. }
  497. },
  498. "notification-url": "https://packagist.org/downloads/",
  499. "license": [
  500. "MIT"
  501. ],
  502. "authors": [
  503. {
  504. "name": "Chris Fidao",
  505. "email": "fideloper@gmail.com"
  506. }
  507. ],
  508. "description": "Set trusted proxies for Laravel",
  509. "keywords": [
  510. "load balancing",
  511. "proxy",
  512. "trusted proxy"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  516. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  517. },
  518. "time": "2020-10-22T13:48:01+00:00"
  519. },
  520. {
  521. "name": "fruitcake/laravel-cors",
  522. "version": "v2.0.3",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/fruitcake/laravel-cors.git",
  526. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  531. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "asm89/stack-cors": "^2.0.1",
  536. "illuminate/contracts": "^6|^7|^8|^9",
  537. "illuminate/support": "^6|^7|^8|^9",
  538. "php": ">=7.2",
  539. "symfony/http-foundation": "^4|^5",
  540. "symfony/http-kernel": "^4.3.4|^5"
  541. },
  542. "require-dev": {
  543. "laravel/framework": "^6|^7|^8",
  544. "orchestra/testbench-dusk": "^4|^5|^6",
  545. "phpunit/phpunit": "^6|^7|^8",
  546. "squizlabs/php_codesniffer": "^3.5"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "2.0-dev"
  552. },
  553. "laravel": {
  554. "providers": [
  555. "Fruitcake\\Cors\\CorsServiceProvider"
  556. ]
  557. }
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "Fruitcake\\Cors\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Fruitcake",
  571. "homepage": "https://fruitcake.nl"
  572. },
  573. {
  574. "name": "Barry vd. Heuvel",
  575. "email": "barryvdh@gmail.com"
  576. }
  577. ],
  578. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  579. "keywords": [
  580. "api",
  581. "cors",
  582. "crossdomain",
  583. "laravel"
  584. ],
  585. "support": {
  586. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  587. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  588. },
  589. "funding": [
  590. {
  591. "url": "https://github.com/barryvdh",
  592. "type": "github"
  593. }
  594. ],
  595. "time": "2020-10-22T13:57:20+00:00"
  596. },
  597. {
  598. "name": "graham-campbell/result-type",
  599. "version": "v1.0.1",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  603. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  608. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "php": "^7.0|^8.0",
  613. "phpoption/phpoption": "^1.7.3"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  617. },
  618. "type": "library",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "1.0-dev"
  622. }
  623. },
  624. "autoload": {
  625. "psr-4": {
  626. "GrahamCampbell\\ResultType\\": "src/"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Graham Campbell",
  636. "email": "graham@alt-three.com"
  637. }
  638. ],
  639. "description": "An Implementation Of The Result Type",
  640. "keywords": [
  641. "Graham Campbell",
  642. "GrahamCampbell",
  643. "Result Type",
  644. "Result-Type",
  645. "result"
  646. ],
  647. "support": {
  648. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  649. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  650. },
  651. "funding": [
  652. {
  653. "url": "https://github.com/GrahamCampbell",
  654. "type": "github"
  655. },
  656. {
  657. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  658. "type": "tidelift"
  659. }
  660. ],
  661. "time": "2020-04-13T13:17:36+00:00"
  662. },
  663. {
  664. "name": "guzzlehttp/guzzle",
  665. "version": "7.2.0",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/guzzle/guzzle.git",
  669. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  674. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "ext-json": "*",
  679. "guzzlehttp/promises": "^1.4",
  680. "guzzlehttp/psr7": "^1.7",
  681. "php": "^7.2.5 || ^8.0",
  682. "psr/http-client": "^1.0"
  683. },
  684. "provide": {
  685. "psr/http-client-implementation": "1.0"
  686. },
  687. "require-dev": {
  688. "ext-curl": "*",
  689. "php-http/client-integration-tests": "^3.0",
  690. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  691. "psr/log": "^1.1"
  692. },
  693. "suggest": {
  694. "ext-curl": "Required for CURL handler support",
  695. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  696. "psr/log": "Required for using the Log middleware"
  697. },
  698. "type": "library",
  699. "extra": {
  700. "branch-alias": {
  701. "dev-master": "7.1-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "GuzzleHttp\\": "src/"
  707. },
  708. "files": [
  709. "src/functions_include.php"
  710. ]
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "MIT"
  715. ],
  716. "authors": [
  717. {
  718. "name": "Michael Dowling",
  719. "email": "mtdowling@gmail.com",
  720. "homepage": "https://github.com/mtdowling"
  721. },
  722. {
  723. "name": "Márk Sági-Kazár",
  724. "email": "mark.sagikazar@gmail.com",
  725. "homepage": "https://sagikazarmark.hu"
  726. }
  727. ],
  728. "description": "Guzzle is a PHP HTTP client library",
  729. "homepage": "http://guzzlephp.org/",
  730. "keywords": [
  731. "client",
  732. "curl",
  733. "framework",
  734. "http",
  735. "http client",
  736. "psr-18",
  737. "psr-7",
  738. "rest",
  739. "web service"
  740. ],
  741. "support": {
  742. "issues": "https://github.com/guzzle/guzzle/issues",
  743. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  744. },
  745. "funding": [
  746. {
  747. "url": "https://github.com/GrahamCampbell",
  748. "type": "github"
  749. },
  750. {
  751. "url": "https://github.com/Nyholm",
  752. "type": "github"
  753. },
  754. {
  755. "url": "https://github.com/alexeyshockov",
  756. "type": "github"
  757. },
  758. {
  759. "url": "https://github.com/gmponos",
  760. "type": "github"
  761. }
  762. ],
  763. "time": "2020-10-10T11:47:56+00:00"
  764. },
  765. {
  766. "name": "guzzlehttp/promises",
  767. "version": "1.4.0",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/guzzle/promises.git",
  771. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  776. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "php": ">=5.5"
  781. },
  782. "require-dev": {
  783. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "1.4-dev"
  789. }
  790. },
  791. "autoload": {
  792. "psr-4": {
  793. "GuzzleHttp\\Promise\\": "src/"
  794. },
  795. "files": [
  796. "src/functions_include.php"
  797. ]
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Michael Dowling",
  806. "email": "mtdowling@gmail.com",
  807. "homepage": "https://github.com/mtdowling"
  808. }
  809. ],
  810. "description": "Guzzle promises library",
  811. "keywords": [
  812. "promise"
  813. ],
  814. "support": {
  815. "issues": "https://github.com/guzzle/promises/issues",
  816. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  817. },
  818. "time": "2020-09-30T07:37:28+00:00"
  819. },
  820. {
  821. "name": "guzzlehttp/psr7",
  822. "version": "1.7.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/guzzle/psr7.git",
  826. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  831. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "php": ">=5.4.0",
  836. "psr/http-message": "~1.0",
  837. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  838. },
  839. "provide": {
  840. "psr/http-message-implementation": "1.0"
  841. },
  842. "require-dev": {
  843. "ext-zlib": "*",
  844. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  845. },
  846. "suggest": {
  847. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  848. },
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "1.7-dev"
  853. }
  854. },
  855. "autoload": {
  856. "psr-4": {
  857. "GuzzleHttp\\Psr7\\": "src/"
  858. },
  859. "files": [
  860. "src/functions_include.php"
  861. ]
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Michael Dowling",
  870. "email": "mtdowling@gmail.com",
  871. "homepage": "https://github.com/mtdowling"
  872. },
  873. {
  874. "name": "Tobias Schultze",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "PSR-7 message implementation that also provides common utility methods",
  879. "keywords": [
  880. "http",
  881. "message",
  882. "psr-7",
  883. "request",
  884. "response",
  885. "stream",
  886. "uri",
  887. "url"
  888. ],
  889. "support": {
  890. "issues": "https://github.com/guzzle/psr7/issues",
  891. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  892. },
  893. "time": "2020-09-30T07:37:11+00:00"
  894. },
  895. {
  896. "name": "laravel/framework",
  897. "version": "v8.27.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/laravel/framework.git",
  901. "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/laravel/framework/zipball/a6680d98f9dadaa363aa7d5218517a08706cee64",
  906. "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "doctrine/inflector": "^1.4|^2.0",
  911. "dragonmantank/cron-expression": "^3.0.2",
  912. "egulias/email-validator": "^2.1.10",
  913. "ext-json": "*",
  914. "ext-mbstring": "*",
  915. "ext-openssl": "*",
  916. "league/commonmark": "^1.3",
  917. "league/flysystem": "^1.1",
  918. "monolog/monolog": "^2.0",
  919. "nesbot/carbon": "^2.31",
  920. "opis/closure": "^3.6",
  921. "php": "^7.3|^8.0",
  922. "psr/container": "^1.0",
  923. "psr/simple-cache": "^1.0",
  924. "ramsey/uuid": "^4.0",
  925. "swiftmailer/swiftmailer": "^6.0",
  926. "symfony/console": "^5.1.4",
  927. "symfony/error-handler": "^5.1.4",
  928. "symfony/finder": "^5.1.4",
  929. "symfony/http-foundation": "^5.1.4",
  930. "symfony/http-kernel": "^5.1.4",
  931. "symfony/mime": "^5.1.4",
  932. "symfony/process": "^5.1.4",
  933. "symfony/routing": "^5.1.4",
  934. "symfony/var-dumper": "^5.1.4",
  935. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  936. "vlucas/phpdotenv": "^5.2",
  937. "voku/portable-ascii": "^1.4.8"
  938. },
  939. "conflict": {
  940. "tightenco/collect": "<5.5.33"
  941. },
  942. "provide": {
  943. "psr/container-implementation": "1.0"
  944. },
  945. "replace": {
  946. "illuminate/auth": "self.version",
  947. "illuminate/broadcasting": "self.version",
  948. "illuminate/bus": "self.version",
  949. "illuminate/cache": "self.version",
  950. "illuminate/collections": "self.version",
  951. "illuminate/config": "self.version",
  952. "illuminate/console": "self.version",
  953. "illuminate/container": "self.version",
  954. "illuminate/contracts": "self.version",
  955. "illuminate/cookie": "self.version",
  956. "illuminate/database": "self.version",
  957. "illuminate/encryption": "self.version",
  958. "illuminate/events": "self.version",
  959. "illuminate/filesystem": "self.version",
  960. "illuminate/hashing": "self.version",
  961. "illuminate/http": "self.version",
  962. "illuminate/log": "self.version",
  963. "illuminate/macroable": "self.version",
  964. "illuminate/mail": "self.version",
  965. "illuminate/notifications": "self.version",
  966. "illuminate/pagination": "self.version",
  967. "illuminate/pipeline": "self.version",
  968. "illuminate/queue": "self.version",
  969. "illuminate/redis": "self.version",
  970. "illuminate/routing": "self.version",
  971. "illuminate/session": "self.version",
  972. "illuminate/support": "self.version",
  973. "illuminate/testing": "self.version",
  974. "illuminate/translation": "self.version",
  975. "illuminate/validation": "self.version",
  976. "illuminate/view": "self.version"
  977. },
  978. "require-dev": {
  979. "aws/aws-sdk-php": "^3.155",
  980. "doctrine/dbal": "^2.6|^3.0",
  981. "filp/whoops": "^2.8",
  982. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  983. "league/flysystem-cached-adapter": "^1.0",
  984. "mockery/mockery": "^1.4.2",
  985. "orchestra/testbench-core": "^6.8",
  986. "pda/pheanstalk": "^4.0",
  987. "phpunit/phpunit": "^8.5.8|^9.3.3",
  988. "predis/predis": "^1.1.1",
  989. "symfony/cache": "^5.1.4"
  990. },
  991. "suggest": {
  992. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  993. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  994. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  995. "ext-ftp": "Required to use the Flysystem FTP driver.",
  996. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  997. "ext-memcached": "Required to use the memcache cache driver.",
  998. "ext-pcntl": "Required to use all features of the queue worker.",
  999. "ext-posix": "Required to use all features of the queue worker.",
  1000. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1001. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1002. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1003. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1004. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1005. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1006. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1007. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1008. "mockery/mockery": "Required to use mocking (^1.4.2).",
  1009. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1010. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1011. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  1012. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1013. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1014. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1015. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  1016. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  1017. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1018. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "8.x-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "files": [
  1028. "src/Illuminate/Collections/helpers.php",
  1029. "src/Illuminate/Events/functions.php",
  1030. "src/Illuminate/Foundation/helpers.php",
  1031. "src/Illuminate/Support/helpers.php"
  1032. ],
  1033. "psr-4": {
  1034. "Illuminate\\": "src/Illuminate/",
  1035. "Illuminate\\Support\\": [
  1036. "src/Illuminate/Macroable/",
  1037. "src/Illuminate/Collections/"
  1038. ]
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Taylor Otwell",
  1048. "email": "taylor@laravel.com"
  1049. }
  1050. ],
  1051. "description": "The Laravel Framework.",
  1052. "homepage": "https://laravel.com",
  1053. "keywords": [
  1054. "framework",
  1055. "laravel"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/laravel/framework/issues",
  1059. "source": "https://github.com/laravel/framework"
  1060. },
  1061. "time": "2021-02-09T15:14:54+00:00"
  1062. },
  1063. {
  1064. "name": "laravel/tinker",
  1065. "version": "v2.6.0",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/laravel/tinker.git",
  1069. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/laravel/tinker/zipball/daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1074. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1075. "shasum": ""
  1076. },
  1077. "require": {
  1078. "illuminate/console": "^6.0|^7.0|^8.0",
  1079. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1080. "illuminate/support": "^6.0|^7.0|^8.0",
  1081. "php": "^7.2.5|^8.0",
  1082. "psy/psysh": "^0.10.4",
  1083. "symfony/var-dumper": "^4.3.4|^5.0"
  1084. },
  1085. "require-dev": {
  1086. "mockery/mockery": "~1.3.3|^1.4.2",
  1087. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1088. },
  1089. "suggest": {
  1090. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "2.x-dev"
  1096. },
  1097. "laravel": {
  1098. "providers": [
  1099. "Laravel\\Tinker\\TinkerServiceProvider"
  1100. ]
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Laravel\\Tinker\\": "src/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Taylor Otwell",
  1115. "email": "taylor@laravel.com"
  1116. }
  1117. ],
  1118. "description": "Powerful REPL for the Laravel framework.",
  1119. "keywords": [
  1120. "REPL",
  1121. "Tinker",
  1122. "laravel",
  1123. "psysh"
  1124. ],
  1125. "support": {
  1126. "issues": "https://github.com/laravel/tinker/issues",
  1127. "source": "https://github.com/laravel/tinker/tree/v2.6.0"
  1128. },
  1129. "time": "2021-01-26T20:35:18+00:00"
  1130. },
  1131. {
  1132. "name": "league/commonmark",
  1133. "version": "1.5.7",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/thephpleague/commonmark.git",
  1137. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1142. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1143. "shasum": ""
  1144. },
  1145. "require": {
  1146. "ext-mbstring": "*",
  1147. "php": "^7.1 || ^8.0"
  1148. },
  1149. "conflict": {
  1150. "scrutinizer/ocular": "1.7.*"
  1151. },
  1152. "require-dev": {
  1153. "cebe/markdown": "~1.0",
  1154. "commonmark/commonmark.js": "0.29.2",
  1155. "erusev/parsedown": "~1.0",
  1156. "ext-json": "*",
  1157. "github/gfm": "0.29.0",
  1158. "michelf/php-markdown": "~1.4",
  1159. "mikehaertl/php-shellcommand": "^1.4",
  1160. "phpstan/phpstan": "^0.12",
  1161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1162. "scrutinizer/ocular": "^1.5",
  1163. "symfony/finder": "^4.2"
  1164. },
  1165. "bin": [
  1166. "bin/commonmark"
  1167. ],
  1168. "type": "library",
  1169. "autoload": {
  1170. "psr-4": {
  1171. "League\\CommonMark\\": "src"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "BSD-3-Clause"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Colin O'Dell",
  1181. "email": "colinodell@gmail.com",
  1182. "homepage": "https://www.colinodell.com",
  1183. "role": "Lead Developer"
  1184. }
  1185. ],
  1186. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1187. "homepage": "https://commonmark.thephpleague.com",
  1188. "keywords": [
  1189. "commonmark",
  1190. "flavored",
  1191. "gfm",
  1192. "github",
  1193. "github-flavored",
  1194. "markdown",
  1195. "md",
  1196. "parser"
  1197. ],
  1198. "support": {
  1199. "docs": "https://commonmark.thephpleague.com/",
  1200. "issues": "https://github.com/thephpleague/commonmark/issues",
  1201. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1202. "source": "https://github.com/thephpleague/commonmark"
  1203. },
  1204. "funding": [
  1205. {
  1206. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1207. "type": "custom"
  1208. },
  1209. {
  1210. "url": "https://www.colinodell.com/sponsor",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.paypal.me/colinpodell/10.00",
  1215. "type": "custom"
  1216. },
  1217. {
  1218. "url": "https://github.com/colinodell",
  1219. "type": "github"
  1220. },
  1221. {
  1222. "url": "https://www.patreon.com/colinodell",
  1223. "type": "patreon"
  1224. },
  1225. {
  1226. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1227. "type": "tidelift"
  1228. }
  1229. ],
  1230. "time": "2020-10-31T13:49:32+00:00"
  1231. },
  1232. {
  1233. "name": "league/flysystem",
  1234. "version": "1.1.3",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/thephpleague/flysystem.git",
  1238. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1243. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "ext-fileinfo": "*",
  1248. "league/mime-type-detection": "^1.3",
  1249. "php": "^7.2.5 || ^8.0"
  1250. },
  1251. "conflict": {
  1252. "league/flysystem-sftp": "<1.0.6"
  1253. },
  1254. "require-dev": {
  1255. "phpspec/prophecy": "^1.11.1",
  1256. "phpunit/phpunit": "^8.5.8"
  1257. },
  1258. "suggest": {
  1259. "ext-fileinfo": "Required for MimeType",
  1260. "ext-ftp": "Allows you to use FTP server storage",
  1261. "ext-openssl": "Allows you to use FTPS server storage",
  1262. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1263. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1264. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1265. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1266. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1267. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1268. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1269. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1270. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1271. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1272. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1273. },
  1274. "type": "library",
  1275. "extra": {
  1276. "branch-alias": {
  1277. "dev-master": "1.1-dev"
  1278. }
  1279. },
  1280. "autoload": {
  1281. "psr-4": {
  1282. "League\\Flysystem\\": "src/"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "MIT"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Frank de Jonge",
  1292. "email": "info@frenky.net"
  1293. }
  1294. ],
  1295. "description": "Filesystem abstraction: Many filesystems, one API.",
  1296. "keywords": [
  1297. "Cloud Files",
  1298. "WebDAV",
  1299. "abstraction",
  1300. "aws",
  1301. "cloud",
  1302. "copy.com",
  1303. "dropbox",
  1304. "file systems",
  1305. "files",
  1306. "filesystem",
  1307. "filesystems",
  1308. "ftp",
  1309. "rackspace",
  1310. "remote",
  1311. "s3",
  1312. "sftp",
  1313. "storage"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/thephpleague/flysystem/issues",
  1317. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://offset.earth/frankdejonge",
  1322. "type": "other"
  1323. }
  1324. ],
  1325. "time": "2020-08-23T07:39:11+00:00"
  1326. },
  1327. {
  1328. "name": "league/mime-type-detection",
  1329. "version": "1.7.0",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1333. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1338. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "ext-fileinfo": "*",
  1343. "php": "^7.2 || ^8.0"
  1344. },
  1345. "require-dev": {
  1346. "friendsofphp/php-cs-fixer": "^2.18",
  1347. "phpstan/phpstan": "^0.12.68",
  1348. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1349. },
  1350. "type": "library",
  1351. "autoload": {
  1352. "psr-4": {
  1353. "League\\MimeTypeDetection\\": "src"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "authors": [
  1361. {
  1362. "name": "Frank de Jonge",
  1363. "email": "info@frankdejonge.nl"
  1364. }
  1365. ],
  1366. "description": "Mime-type detection for Flysystem",
  1367. "support": {
  1368. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1369. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://github.com/frankdejonge",
  1374. "type": "github"
  1375. },
  1376. {
  1377. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1378. "type": "tidelift"
  1379. }
  1380. ],
  1381. "time": "2021-01-18T20:58:21+00:00"
  1382. },
  1383. {
  1384. "name": "monolog/monolog",
  1385. "version": "2.2.0",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/Seldaek/monolog.git",
  1389. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1394. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "php": ">=7.2",
  1399. "psr/log": "^1.0.1"
  1400. },
  1401. "provide": {
  1402. "psr/log-implementation": "1.0.0"
  1403. },
  1404. "require-dev": {
  1405. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1406. "doctrine/couchdb": "~1.0@dev",
  1407. "elasticsearch/elasticsearch": "^7",
  1408. "graylog2/gelf-php": "^1.4.2",
  1409. "mongodb/mongodb": "^1.8",
  1410. "php-amqplib/php-amqplib": "~2.4",
  1411. "php-console/php-console": "^3.1.3",
  1412. "phpspec/prophecy": "^1.6.1",
  1413. "phpstan/phpstan": "^0.12.59",
  1414. "phpunit/phpunit": "^8.5",
  1415. "predis/predis": "^1.1",
  1416. "rollbar/rollbar": "^1.3",
  1417. "ruflin/elastica": ">=0.90 <7.0.1",
  1418. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1419. },
  1420. "suggest": {
  1421. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1422. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1423. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1424. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1425. "ext-mbstring": "Allow to work properly with unicode symbols",
  1426. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1427. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1428. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1429. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1430. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1431. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1432. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-main": "2.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Monolog\\": "src/Monolog"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Jordi Boggiano",
  1452. "email": "j.boggiano@seld.be",
  1453. "homepage": "https://seld.be"
  1454. }
  1455. ],
  1456. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1457. "homepage": "https://github.com/Seldaek/monolog",
  1458. "keywords": [
  1459. "log",
  1460. "logging",
  1461. "psr-3"
  1462. ],
  1463. "support": {
  1464. "issues": "https://github.com/Seldaek/monolog/issues",
  1465. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  1466. },
  1467. "funding": [
  1468. {
  1469. "url": "https://github.com/Seldaek",
  1470. "type": "github"
  1471. },
  1472. {
  1473. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1474. "type": "tidelift"
  1475. }
  1476. ],
  1477. "time": "2020-12-14T13:15:25+00:00"
  1478. },
  1479. {
  1480. "name": "nesbot/carbon",
  1481. "version": "2.45.1",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/briannesbitt/Carbon.git",
  1485. "reference": "528783b188bdb853eb21239b1722831e0f000a8d"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d",
  1490. "reference": "528783b188bdb853eb21239b1722831e0f000a8d",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "ext-json": "*",
  1495. "php": "^7.1.8 || ^8.0",
  1496. "symfony/polyfill-mbstring": "^1.0",
  1497. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1498. },
  1499. "require-dev": {
  1500. "doctrine/orm": "^2.7",
  1501. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1502. "kylekatarnls/multi-tester": "^2.0",
  1503. "phpmd/phpmd": "^2.9",
  1504. "phpstan/extension-installer": "^1.0",
  1505. "phpstan/phpstan": "^0.12.54",
  1506. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1507. "squizlabs/php_codesniffer": "^3.4"
  1508. },
  1509. "bin": [
  1510. "bin/carbon"
  1511. ],
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "2.x-dev",
  1516. "dev-3.x": "3.x-dev"
  1517. },
  1518. "laravel": {
  1519. "providers": [
  1520. "Carbon\\Laravel\\ServiceProvider"
  1521. ]
  1522. },
  1523. "phpstan": {
  1524. "includes": [
  1525. "extension.neon"
  1526. ]
  1527. }
  1528. },
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Carbon\\": "src/Carbon/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Brian Nesbitt",
  1541. "email": "brian@nesbot.com",
  1542. "homepage": "http://nesbot.com"
  1543. },
  1544. {
  1545. "name": "kylekatarnls",
  1546. "homepage": "http://github.com/kylekatarnls"
  1547. }
  1548. ],
  1549. "description": "An API extension for DateTime that supports 281 different languages.",
  1550. "homepage": "http://carbon.nesbot.com",
  1551. "keywords": [
  1552. "date",
  1553. "datetime",
  1554. "time"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1558. "source": "https://github.com/briannesbitt/Carbon"
  1559. },
  1560. "funding": [
  1561. {
  1562. "url": "https://opencollective.com/Carbon",
  1563. "type": "open_collective"
  1564. },
  1565. {
  1566. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1567. "type": "tidelift"
  1568. }
  1569. ],
  1570. "time": "2021-02-11T18:30:17+00:00"
  1571. },
  1572. {
  1573. "name": "nikic/php-parser",
  1574. "version": "v4.10.4",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/nikic/PHP-Parser.git",
  1578. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1583. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "ext-tokenizer": "*",
  1588. "php": ">=7.0"
  1589. },
  1590. "require-dev": {
  1591. "ircmaxell/php-yacc": "^0.0.7",
  1592. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1593. },
  1594. "bin": [
  1595. "bin/php-parse"
  1596. ],
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "4.9-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-4": {
  1605. "PhpParser\\": "lib/PhpParser"
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "BSD-3-Clause"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Nikita Popov"
  1615. }
  1616. ],
  1617. "description": "A PHP parser written in PHP",
  1618. "keywords": [
  1619. "parser",
  1620. "php"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1624. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  1625. },
  1626. "time": "2020-12-20T10:01:03+00:00"
  1627. },
  1628. {
  1629. "name": "opis/closure",
  1630. "version": "3.6.1",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/opis/closure.git",
  1634. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1639. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": "^5.4 || ^7.0 || ^8.0"
  1644. },
  1645. "require-dev": {
  1646. "jeremeamia/superclosure": "^2.0",
  1647. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "3.6.x-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "psr-4": {
  1657. "Opis\\Closure\\": "src/"
  1658. },
  1659. "files": [
  1660. "functions.php"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Marius Sarca",
  1670. "email": "marius.sarca@gmail.com"
  1671. },
  1672. {
  1673. "name": "Sorin Sarca",
  1674. "email": "sarca_sorin@hotmail.com"
  1675. }
  1676. ],
  1677. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1678. "homepage": "https://opis.io/closure",
  1679. "keywords": [
  1680. "anonymous functions",
  1681. "closure",
  1682. "function",
  1683. "serializable",
  1684. "serialization",
  1685. "serialize"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/opis/closure/issues",
  1689. "source": "https://github.com/opis/closure/tree/3.6.1"
  1690. },
  1691. "time": "2020-11-07T02:01:34+00:00"
  1692. },
  1693. {
  1694. "name": "phpoption/phpoption",
  1695. "version": "1.7.5",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/schmittjoh/php-option.git",
  1699. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1704. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "php": "^5.5.9 || ^7.0 || ^8.0"
  1709. },
  1710. "require-dev": {
  1711. "bamarni/composer-bin-plugin": "^1.4.1",
  1712. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  1713. },
  1714. "type": "library",
  1715. "extra": {
  1716. "branch-alias": {
  1717. "dev-master": "1.7-dev"
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "PhpOption\\": "src/PhpOption/"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "Apache-2.0"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Johannes M. Schmitt",
  1732. "email": "schmittjoh@gmail.com"
  1733. },
  1734. {
  1735. "name": "Graham Campbell",
  1736. "email": "graham@alt-three.com"
  1737. }
  1738. ],
  1739. "description": "Option Type for PHP",
  1740. "keywords": [
  1741. "language",
  1742. "option",
  1743. "php",
  1744. "type"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/schmittjoh/php-option/issues",
  1748. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://github.com/GrahamCampbell",
  1753. "type": "github"
  1754. },
  1755. {
  1756. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1757. "type": "tidelift"
  1758. }
  1759. ],
  1760. "time": "2020-07-20T17:29:33+00:00"
  1761. },
  1762. {
  1763. "name": "predis/predis",
  1764. "version": "v1.1.6",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/predis/predis.git",
  1768. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  1773. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  1774. "shasum": ""
  1775. },
  1776. "require": {
  1777. "php": ">=5.3.9"
  1778. },
  1779. "require-dev": {
  1780. "cweagans/composer-patches": "^1.6",
  1781. "phpunit/phpunit": "~4.8"
  1782. },
  1783. "suggest": {
  1784. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1785. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "composer-exit-on-patch-failure": true,
  1790. "patches": {
  1791. "phpunit/phpunit-mock-objects": {
  1792. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  1793. },
  1794. "phpunit/phpunit": {
  1795. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  1796. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  1797. }
  1798. }
  1799. },
  1800. "autoload": {
  1801. "psr-4": {
  1802. "Predis\\": "src/"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "MIT"
  1808. ],
  1809. "authors": [
  1810. {
  1811. "name": "Daniele Alessandri",
  1812. "email": "suppakilla@gmail.com",
  1813. "homepage": "http://clorophilla.net",
  1814. "role": "Creator & Maintainer"
  1815. },
  1816. {
  1817. "name": "Till Krüss",
  1818. "homepage": "https://till.im",
  1819. "role": "Maintainer"
  1820. }
  1821. ],
  1822. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1823. "homepage": "http://github.com/predis/predis",
  1824. "keywords": [
  1825. "nosql",
  1826. "predis",
  1827. "redis"
  1828. ],
  1829. "support": {
  1830. "issues": "https://github.com/predis/predis/issues",
  1831. "source": "https://github.com/predis/predis/tree/v1.1.6"
  1832. },
  1833. "funding": [
  1834. {
  1835. "url": "https://github.com/sponsors/tillkruss",
  1836. "type": "github"
  1837. }
  1838. ],
  1839. "time": "2020-09-11T19:18:05+00:00"
  1840. },
  1841. {
  1842. "name": "psr/container",
  1843. "version": "1.0.0",
  1844. "source": {
  1845. "type": "git",
  1846. "url": "https://github.com/php-fig/container.git",
  1847. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1848. },
  1849. "dist": {
  1850. "type": "zip",
  1851. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1852. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1853. "shasum": ""
  1854. },
  1855. "require": {
  1856. "php": ">=5.3.0"
  1857. },
  1858. "type": "library",
  1859. "extra": {
  1860. "branch-alias": {
  1861. "dev-master": "1.0.x-dev"
  1862. }
  1863. },
  1864. "autoload": {
  1865. "psr-4": {
  1866. "Psr\\Container\\": "src/"
  1867. }
  1868. },
  1869. "notification-url": "https://packagist.org/downloads/",
  1870. "license": [
  1871. "MIT"
  1872. ],
  1873. "authors": [
  1874. {
  1875. "name": "PHP-FIG",
  1876. "homepage": "http://www.php-fig.org/"
  1877. }
  1878. ],
  1879. "description": "Common Container Interface (PHP FIG PSR-11)",
  1880. "homepage": "https://github.com/php-fig/container",
  1881. "keywords": [
  1882. "PSR-11",
  1883. "container",
  1884. "container-interface",
  1885. "container-interop",
  1886. "psr"
  1887. ],
  1888. "support": {
  1889. "issues": "https://github.com/php-fig/container/issues",
  1890. "source": "https://github.com/php-fig/container/tree/master"
  1891. },
  1892. "time": "2017-02-14T16:28:37+00:00"
  1893. },
  1894. {
  1895. "name": "psr/event-dispatcher",
  1896. "version": "1.0.0",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/php-fig/event-dispatcher.git",
  1900. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1905. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "php": ">=7.2.0"
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "1.0.x-dev"
  1915. }
  1916. },
  1917. "autoload": {
  1918. "psr-4": {
  1919. "Psr\\EventDispatcher\\": "src/"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "PHP-FIG",
  1929. "homepage": "http://www.php-fig.org/"
  1930. }
  1931. ],
  1932. "description": "Standard interfaces for event handling.",
  1933. "keywords": [
  1934. "events",
  1935. "psr",
  1936. "psr-14"
  1937. ],
  1938. "support": {
  1939. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1940. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1941. },
  1942. "time": "2019-01-08T18:20:26+00:00"
  1943. },
  1944. {
  1945. "name": "psr/http-client",
  1946. "version": "1.0.1",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/php-fig/http-client.git",
  1950. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1955. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": "^7.0 || ^8.0",
  1960. "psr/http-message": "^1.0"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "1.0.x-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Psr\\Http\\Client\\": "src/"
  1971. }
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "MIT"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "PHP-FIG",
  1980. "homepage": "http://www.php-fig.org/"
  1981. }
  1982. ],
  1983. "description": "Common interface for HTTP clients",
  1984. "homepage": "https://github.com/php-fig/http-client",
  1985. "keywords": [
  1986. "http",
  1987. "http-client",
  1988. "psr",
  1989. "psr-18"
  1990. ],
  1991. "support": {
  1992. "source": "https://github.com/php-fig/http-client/tree/master"
  1993. },
  1994. "time": "2020-06-29T06:28:15+00:00"
  1995. },
  1996. {
  1997. "name": "psr/http-message",
  1998. "version": "1.0.1",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/php-fig/http-message.git",
  2002. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2007. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": ">=5.3.0"
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.0.x-dev"
  2017. }
  2018. },
  2019. "autoload": {
  2020. "psr-4": {
  2021. "Psr\\Http\\Message\\": "src/"
  2022. }
  2023. },
  2024. "notification-url": "https://packagist.org/downloads/",
  2025. "license": [
  2026. "MIT"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "PHP-FIG",
  2031. "homepage": "http://www.php-fig.org/"
  2032. }
  2033. ],
  2034. "description": "Common interface for HTTP messages",
  2035. "homepage": "https://github.com/php-fig/http-message",
  2036. "keywords": [
  2037. "http",
  2038. "http-message",
  2039. "psr",
  2040. "psr-7",
  2041. "request",
  2042. "response"
  2043. ],
  2044. "support": {
  2045. "source": "https://github.com/php-fig/http-message/tree/master"
  2046. },
  2047. "time": "2016-08-06T14:39:51+00:00"
  2048. },
  2049. {
  2050. "name": "psr/log",
  2051. "version": "1.1.3",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/php-fig/log.git",
  2055. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2060. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "php": ">=5.3.0"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "1.1.x-dev"
  2070. }
  2071. },
  2072. "autoload": {
  2073. "psr-4": {
  2074. "Psr\\Log\\": "Psr/Log/"
  2075. }
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "MIT"
  2080. ],
  2081. "authors": [
  2082. {
  2083. "name": "PHP-FIG",
  2084. "homepage": "http://www.php-fig.org/"
  2085. }
  2086. ],
  2087. "description": "Common interface for logging libraries",
  2088. "homepage": "https://github.com/php-fig/log",
  2089. "keywords": [
  2090. "log",
  2091. "psr",
  2092. "psr-3"
  2093. ],
  2094. "support": {
  2095. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2096. },
  2097. "time": "2020-03-23T09:12:05+00:00"
  2098. },
  2099. {
  2100. "name": "psr/simple-cache",
  2101. "version": "1.0.1",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/php-fig/simple-cache.git",
  2105. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2110. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "php": ">=5.3.0"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "1.0.x-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "Psr\\SimpleCache\\": "src/"
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "PHP-FIG",
  2134. "homepage": "http://www.php-fig.org/"
  2135. }
  2136. ],
  2137. "description": "Common interfaces for simple caching",
  2138. "keywords": [
  2139. "cache",
  2140. "caching",
  2141. "psr",
  2142. "psr-16",
  2143. "simple-cache"
  2144. ],
  2145. "support": {
  2146. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2147. },
  2148. "time": "2017-10-23T01:57:42+00:00"
  2149. },
  2150. {
  2151. "name": "psy/psysh",
  2152. "version": "v0.10.6",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/bobthecow/psysh.git",
  2156. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  2161. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "dnoegel/php-xdg-base-dir": "0.1.*",
  2166. "ext-json": "*",
  2167. "ext-tokenizer": "*",
  2168. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  2169. "php": "^8.0 || ^7.0 || ^5.5.9",
  2170. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  2171. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  2172. },
  2173. "require-dev": {
  2174. "bamarni/composer-bin-plugin": "^1.2",
  2175. "hoa/console": "3.17.*"
  2176. },
  2177. "suggest": {
  2178. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2179. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2180. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2181. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2182. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2183. },
  2184. "bin": [
  2185. "bin/psysh"
  2186. ],
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-main": "0.10.x-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "files": [
  2195. "src/functions.php"
  2196. ],
  2197. "psr-4": {
  2198. "Psy\\": "src/"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Justin Hileman",
  2208. "email": "justin@justinhileman.info",
  2209. "homepage": "http://justinhileman.com"
  2210. }
  2211. ],
  2212. "description": "An interactive shell for modern PHP.",
  2213. "homepage": "http://psysh.org",
  2214. "keywords": [
  2215. "REPL",
  2216. "console",
  2217. "interactive",
  2218. "shell"
  2219. ],
  2220. "support": {
  2221. "issues": "https://github.com/bobthecow/psysh/issues",
  2222. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  2223. },
  2224. "time": "2021-01-18T15:53:43+00:00"
  2225. },
  2226. {
  2227. "name": "ralouphie/getallheaders",
  2228. "version": "3.0.3",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/ralouphie/getallheaders.git",
  2232. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2237. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "php": ">=5.6"
  2242. },
  2243. "require-dev": {
  2244. "php-coveralls/php-coveralls": "^2.1",
  2245. "phpunit/phpunit": "^5 || ^6.5"
  2246. },
  2247. "type": "library",
  2248. "autoload": {
  2249. "files": [
  2250. "src/getallheaders.php"
  2251. ]
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Ralph Khattar",
  2260. "email": "ralph.khattar@gmail.com"
  2261. }
  2262. ],
  2263. "description": "A polyfill for getallheaders.",
  2264. "support": {
  2265. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2266. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2267. },
  2268. "time": "2019-03-08T08:55:37+00:00"
  2269. },
  2270. {
  2271. "name": "ramsey/collection",
  2272. "version": "1.1.3",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/ramsey/collection.git",
  2276. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  2281. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "php": "^7.2 || ^8"
  2286. },
  2287. "require-dev": {
  2288. "captainhook/captainhook": "^5.3",
  2289. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2290. "ergebnis/composer-normalize": "^2.6",
  2291. "fakerphp/faker": "^1.5",
  2292. "hamcrest/hamcrest-php": "^2",
  2293. "jangregor/phpstan-prophecy": "^0.8",
  2294. "mockery/mockery": "^1.3",
  2295. "phpstan/extension-installer": "^1",
  2296. "phpstan/phpstan": "^0.12.32",
  2297. "phpstan/phpstan-mockery": "^0.12.5",
  2298. "phpstan/phpstan-phpunit": "^0.12.11",
  2299. "phpunit/phpunit": "^8.5 || ^9",
  2300. "psy/psysh": "^0.10.4",
  2301. "slevomat/coding-standard": "^6.3",
  2302. "squizlabs/php_codesniffer": "^3.5",
  2303. "vimeo/psalm": "^4.4"
  2304. },
  2305. "type": "library",
  2306. "autoload": {
  2307. "psr-4": {
  2308. "Ramsey\\Collection\\": "src/"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "Ben Ramsey",
  2318. "email": "ben@benramsey.com",
  2319. "homepage": "https://benramsey.com"
  2320. }
  2321. ],
  2322. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2323. "keywords": [
  2324. "array",
  2325. "collection",
  2326. "hash",
  2327. "map",
  2328. "queue",
  2329. "set"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/ramsey/collection/issues",
  2333. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://github.com/ramsey",
  2338. "type": "github"
  2339. },
  2340. {
  2341. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2342. "type": "tidelift"
  2343. }
  2344. ],
  2345. "time": "2021-01-21T17:40:04+00:00"
  2346. },
  2347. {
  2348. "name": "ramsey/uuid",
  2349. "version": "4.1.1",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/ramsey/uuid.git",
  2353. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  2358. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "brick/math": "^0.8 || ^0.9",
  2363. "ext-json": "*",
  2364. "php": "^7.2 || ^8",
  2365. "ramsey/collection": "^1.0",
  2366. "symfony/polyfill-ctype": "^1.8"
  2367. },
  2368. "replace": {
  2369. "rhumsaa/uuid": "self.version"
  2370. },
  2371. "require-dev": {
  2372. "codeception/aspect-mock": "^3",
  2373. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  2374. "doctrine/annotations": "^1.8",
  2375. "goaop/framework": "^2",
  2376. "mockery/mockery": "^1.3",
  2377. "moontoast/math": "^1.1",
  2378. "paragonie/random-lib": "^2",
  2379. "php-mock/php-mock-mockery": "^1.3",
  2380. "php-mock/php-mock-phpunit": "^2.5",
  2381. "php-parallel-lint/php-parallel-lint": "^1.1",
  2382. "phpbench/phpbench": "^0.17.1",
  2383. "phpstan/extension-installer": "^1.0",
  2384. "phpstan/phpstan": "^0.12",
  2385. "phpstan/phpstan-mockery": "^0.12",
  2386. "phpstan/phpstan-phpunit": "^0.12",
  2387. "phpunit/phpunit": "^8.5",
  2388. "psy/psysh": "^0.10.0",
  2389. "slevomat/coding-standard": "^6.0",
  2390. "squizlabs/php_codesniffer": "^3.5",
  2391. "vimeo/psalm": "3.9.4"
  2392. },
  2393. "suggest": {
  2394. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2395. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2396. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2397. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2398. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2399. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2400. },
  2401. "type": "library",
  2402. "extra": {
  2403. "branch-alias": {
  2404. "dev-master": "4.x-dev"
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "Ramsey\\Uuid\\": "src/"
  2410. },
  2411. "files": [
  2412. "src/functions.php"
  2413. ]
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2420. "homepage": "https://github.com/ramsey/uuid",
  2421. "keywords": [
  2422. "guid",
  2423. "identifier",
  2424. "uuid"
  2425. ],
  2426. "support": {
  2427. "issues": "https://github.com/ramsey/uuid/issues",
  2428. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2429. "source": "https://github.com/ramsey/uuid"
  2430. },
  2431. "funding": [
  2432. {
  2433. "url": "https://github.com/ramsey",
  2434. "type": "github"
  2435. }
  2436. ],
  2437. "time": "2020-08-18T17:17:46+00:00"
  2438. },
  2439. {
  2440. "name": "swiftmailer/swiftmailer",
  2441. "version": "v6.2.5",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2445. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  2450. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  2451. "shasum": ""
  2452. },
  2453. "require": {
  2454. "egulias/email-validator": "^2.0",
  2455. "php": ">=7.0.0",
  2456. "symfony/polyfill-iconv": "^1.0",
  2457. "symfony/polyfill-intl-idn": "^1.10",
  2458. "symfony/polyfill-mbstring": "^1.0"
  2459. },
  2460. "require-dev": {
  2461. "mockery/mockery": "^1.0",
  2462. "symfony/phpunit-bridge": "^4.4|^5.0"
  2463. },
  2464. "suggest": {
  2465. "ext-intl": "Needed to support internationalized email addresses"
  2466. },
  2467. "type": "library",
  2468. "extra": {
  2469. "branch-alias": {
  2470. "dev-master": "6.2-dev"
  2471. }
  2472. },
  2473. "autoload": {
  2474. "files": [
  2475. "lib/swift_required.php"
  2476. ]
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Chris Corbyn"
  2485. },
  2486. {
  2487. "name": "Fabien Potencier",
  2488. "email": "fabien@symfony.com"
  2489. }
  2490. ],
  2491. "description": "Swiftmailer, free feature-rich PHP mailer",
  2492. "homepage": "https://swiftmailer.symfony.com",
  2493. "keywords": [
  2494. "email",
  2495. "mail",
  2496. "mailer"
  2497. ],
  2498. "support": {
  2499. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2500. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  2501. },
  2502. "funding": [
  2503. {
  2504. "url": "https://github.com/fabpot",
  2505. "type": "github"
  2506. },
  2507. {
  2508. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2509. "type": "tidelift"
  2510. }
  2511. ],
  2512. "time": "2021-01-12T09:35:59+00:00"
  2513. },
  2514. {
  2515. "name": "symfony/console",
  2516. "version": "v5.2.3",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/symfony/console.git",
  2520. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  2525. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": ">=7.2.5",
  2530. "symfony/polyfill-mbstring": "~1.0",
  2531. "symfony/polyfill-php73": "^1.8",
  2532. "symfony/polyfill-php80": "^1.15",
  2533. "symfony/service-contracts": "^1.1|^2",
  2534. "symfony/string": "^5.1"
  2535. },
  2536. "conflict": {
  2537. "symfony/dependency-injection": "<4.4",
  2538. "symfony/dotenv": "<5.1",
  2539. "symfony/event-dispatcher": "<4.4",
  2540. "symfony/lock": "<4.4",
  2541. "symfony/process": "<4.4"
  2542. },
  2543. "provide": {
  2544. "psr/log-implementation": "1.0"
  2545. },
  2546. "require-dev": {
  2547. "psr/log": "~1.0",
  2548. "symfony/config": "^4.4|^5.0",
  2549. "symfony/dependency-injection": "^4.4|^5.0",
  2550. "symfony/event-dispatcher": "^4.4|^5.0",
  2551. "symfony/lock": "^4.4|^5.0",
  2552. "symfony/process": "^4.4|^5.0",
  2553. "symfony/var-dumper": "^4.4|^5.0"
  2554. },
  2555. "suggest": {
  2556. "psr/log": "For using the console logger",
  2557. "symfony/event-dispatcher": "",
  2558. "symfony/lock": "",
  2559. "symfony/process": ""
  2560. },
  2561. "type": "library",
  2562. "autoload": {
  2563. "psr-4": {
  2564. "Symfony\\Component\\Console\\": ""
  2565. },
  2566. "exclude-from-classmap": [
  2567. "/Tests/"
  2568. ]
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "MIT"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Fabien Potencier",
  2577. "email": "fabien@symfony.com"
  2578. },
  2579. {
  2580. "name": "Symfony Community",
  2581. "homepage": "https://symfony.com/contributors"
  2582. }
  2583. ],
  2584. "description": "Eases the creation of beautiful and testable command line interfaces",
  2585. "homepage": "https://symfony.com",
  2586. "keywords": [
  2587. "cli",
  2588. "command line",
  2589. "console",
  2590. "terminal"
  2591. ],
  2592. "support": {
  2593. "source": "https://github.com/symfony/console/tree/v5.2.3"
  2594. },
  2595. "funding": [
  2596. {
  2597. "url": "https://symfony.com/sponsor",
  2598. "type": "custom"
  2599. },
  2600. {
  2601. "url": "https://github.com/fabpot",
  2602. "type": "github"
  2603. },
  2604. {
  2605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2606. "type": "tidelift"
  2607. }
  2608. ],
  2609. "time": "2021-01-28T22:06:19+00:00"
  2610. },
  2611. {
  2612. "name": "symfony/css-selector",
  2613. "version": "v5.2.3",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/symfony/css-selector.git",
  2617. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  2622. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "php": ">=7.2.5"
  2627. },
  2628. "type": "library",
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Symfony\\Component\\CssSelector\\": ""
  2632. },
  2633. "exclude-from-classmap": [
  2634. "/Tests/"
  2635. ]
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Fabien Potencier",
  2644. "email": "fabien@symfony.com"
  2645. },
  2646. {
  2647. "name": "Jean-François Simon",
  2648. "email": "jeanfrancois.simon@sensiolabs.com"
  2649. },
  2650. {
  2651. "name": "Symfony Community",
  2652. "homepage": "https://symfony.com/contributors"
  2653. }
  2654. ],
  2655. "description": "Converts CSS selectors to XPath expressions",
  2656. "homepage": "https://symfony.com",
  2657. "support": {
  2658. "source": "https://github.com/symfony/css-selector/tree/v5.2.3"
  2659. },
  2660. "funding": [
  2661. {
  2662. "url": "https://symfony.com/sponsor",
  2663. "type": "custom"
  2664. },
  2665. {
  2666. "url": "https://github.com/fabpot",
  2667. "type": "github"
  2668. },
  2669. {
  2670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2671. "type": "tidelift"
  2672. }
  2673. ],
  2674. "time": "2021-01-27T10:01:46+00:00"
  2675. },
  2676. {
  2677. "name": "symfony/deprecation-contracts",
  2678. "version": "v2.2.0",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/symfony/deprecation-contracts.git",
  2682. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2687. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": ">=7.1"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-master": "2.2-dev"
  2697. },
  2698. "thanks": {
  2699. "name": "symfony/contracts",
  2700. "url": "https://github.com/symfony/contracts"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "files": [
  2705. "function.php"
  2706. ]
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Nicolas Grekas",
  2715. "email": "p@tchwork.com"
  2716. },
  2717. {
  2718. "name": "Symfony Community",
  2719. "homepage": "https://symfony.com/contributors"
  2720. }
  2721. ],
  2722. "description": "A generic function and convention to trigger deprecation notices",
  2723. "homepage": "https://symfony.com",
  2724. "support": {
  2725. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  2726. },
  2727. "funding": [
  2728. {
  2729. "url": "https://symfony.com/sponsor",
  2730. "type": "custom"
  2731. },
  2732. {
  2733. "url": "https://github.com/fabpot",
  2734. "type": "github"
  2735. },
  2736. {
  2737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2738. "type": "tidelift"
  2739. }
  2740. ],
  2741. "time": "2020-09-07T11:33:47+00:00"
  2742. },
  2743. {
  2744. "name": "symfony/error-handler",
  2745. "version": "v5.2.3",
  2746. "source": {
  2747. "type": "git",
  2748. "url": "https://github.com/symfony/error-handler.git",
  2749. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d"
  2750. },
  2751. "dist": {
  2752. "type": "zip",
  2753. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48f18b3609e120ea66d59142c23dc53e9562c26d",
  2754. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d",
  2755. "shasum": ""
  2756. },
  2757. "require": {
  2758. "php": ">=7.2.5",
  2759. "psr/log": "^1.0",
  2760. "symfony/polyfill-php80": "^1.15",
  2761. "symfony/var-dumper": "^4.4|^5.0"
  2762. },
  2763. "require-dev": {
  2764. "symfony/deprecation-contracts": "^2.1",
  2765. "symfony/http-kernel": "^4.4|^5.0",
  2766. "symfony/serializer": "^4.4|^5.0"
  2767. },
  2768. "type": "library",
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Symfony\\Component\\ErrorHandler\\": ""
  2772. },
  2773. "exclude-from-classmap": [
  2774. "/Tests/"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Fabien Potencier",
  2784. "email": "fabien@symfony.com"
  2785. },
  2786. {
  2787. "name": "Symfony Community",
  2788. "homepage": "https://symfony.com/contributors"
  2789. }
  2790. ],
  2791. "description": "Provides tools to manage errors and ease debugging PHP code",
  2792. "homepage": "https://symfony.com",
  2793. "support": {
  2794. "source": "https://github.com/symfony/error-handler/tree/v5.2.3"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://symfony.com/sponsor",
  2799. "type": "custom"
  2800. },
  2801. {
  2802. "url": "https://github.com/fabpot",
  2803. "type": "github"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2021-01-28T22:06:19+00:00"
  2811. },
  2812. {
  2813. "name": "symfony/event-dispatcher",
  2814. "version": "v5.2.3",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/symfony/event-dispatcher.git",
  2818. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4f9760f8074978ad82e2ce854dff79a71fe45367",
  2823. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": ">=7.2.5",
  2828. "symfony/deprecation-contracts": "^2.1",
  2829. "symfony/event-dispatcher-contracts": "^2",
  2830. "symfony/polyfill-php80": "^1.15"
  2831. },
  2832. "conflict": {
  2833. "symfony/dependency-injection": "<4.4"
  2834. },
  2835. "provide": {
  2836. "psr/event-dispatcher-implementation": "1.0",
  2837. "symfony/event-dispatcher-implementation": "2.0"
  2838. },
  2839. "require-dev": {
  2840. "psr/log": "~1.0",
  2841. "symfony/config": "^4.4|^5.0",
  2842. "symfony/dependency-injection": "^4.4|^5.0",
  2843. "symfony/error-handler": "^4.4|^5.0",
  2844. "symfony/expression-language": "^4.4|^5.0",
  2845. "symfony/http-foundation": "^4.4|^5.0",
  2846. "symfony/service-contracts": "^1.1|^2",
  2847. "symfony/stopwatch": "^4.4|^5.0"
  2848. },
  2849. "suggest": {
  2850. "symfony/dependency-injection": "",
  2851. "symfony/http-kernel": ""
  2852. },
  2853. "type": "library",
  2854. "autoload": {
  2855. "psr-4": {
  2856. "Symfony\\Component\\EventDispatcher\\": ""
  2857. },
  2858. "exclude-from-classmap": [
  2859. "/Tests/"
  2860. ]
  2861. },
  2862. "notification-url": "https://packagist.org/downloads/",
  2863. "license": [
  2864. "MIT"
  2865. ],
  2866. "authors": [
  2867. {
  2868. "name": "Fabien Potencier",
  2869. "email": "fabien@symfony.com"
  2870. },
  2871. {
  2872. "name": "Symfony Community",
  2873. "homepage": "https://symfony.com/contributors"
  2874. }
  2875. ],
  2876. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2877. "homepage": "https://symfony.com",
  2878. "support": {
  2879. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.3"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://symfony.com/sponsor",
  2884. "type": "custom"
  2885. },
  2886. {
  2887. "url": "https://github.com/fabpot",
  2888. "type": "github"
  2889. },
  2890. {
  2891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2892. "type": "tidelift"
  2893. }
  2894. ],
  2895. "time": "2021-01-27T10:36:42+00:00"
  2896. },
  2897. {
  2898. "name": "symfony/event-dispatcher-contracts",
  2899. "version": "v2.2.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2903. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  2908. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": ">=7.2.5",
  2913. "psr/event-dispatcher": "^1"
  2914. },
  2915. "suggest": {
  2916. "symfony/event-dispatcher-implementation": ""
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-master": "2.2-dev"
  2922. },
  2923. "thanks": {
  2924. "name": "symfony/contracts",
  2925. "url": "https://github.com/symfony/contracts"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Contracts\\EventDispatcher\\": ""
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "Nicolas Grekas",
  2940. "email": "p@tchwork.com"
  2941. },
  2942. {
  2943. "name": "Symfony Community",
  2944. "homepage": "https://symfony.com/contributors"
  2945. }
  2946. ],
  2947. "description": "Generic abstractions related to dispatching event",
  2948. "homepage": "https://symfony.com",
  2949. "keywords": [
  2950. "abstractions",
  2951. "contracts",
  2952. "decoupling",
  2953. "interfaces",
  2954. "interoperability",
  2955. "standards"
  2956. ],
  2957. "support": {
  2958. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  2959. },
  2960. "funding": [
  2961. {
  2962. "url": "https://symfony.com/sponsor",
  2963. "type": "custom"
  2964. },
  2965. {
  2966. "url": "https://github.com/fabpot",
  2967. "type": "github"
  2968. },
  2969. {
  2970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2971. "type": "tidelift"
  2972. }
  2973. ],
  2974. "time": "2020-09-07T11:33:47+00:00"
  2975. },
  2976. {
  2977. "name": "symfony/finder",
  2978. "version": "v5.2.3",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/symfony/finder.git",
  2982. "reference": "4adc8d172d602008c204c2e16956f99257248e03"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/symfony/finder/zipball/4adc8d172d602008c204c2e16956f99257248e03",
  2987. "reference": "4adc8d172d602008c204c2e16956f99257248e03",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "php": ">=7.2.5"
  2992. },
  2993. "type": "library",
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Symfony\\Component\\Finder\\": ""
  2997. },
  2998. "exclude-from-classmap": [
  2999. "/Tests/"
  3000. ]
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "Fabien Potencier",
  3009. "email": "fabien@symfony.com"
  3010. },
  3011. {
  3012. "name": "Symfony Community",
  3013. "homepage": "https://symfony.com/contributors"
  3014. }
  3015. ],
  3016. "description": "Finds files and directories via an intuitive fluent interface",
  3017. "homepage": "https://symfony.com",
  3018. "support": {
  3019. "source": "https://github.com/symfony/finder/tree/v5.2.3"
  3020. },
  3021. "funding": [
  3022. {
  3023. "url": "https://symfony.com/sponsor",
  3024. "type": "custom"
  3025. },
  3026. {
  3027. "url": "https://github.com/fabpot",
  3028. "type": "github"
  3029. },
  3030. {
  3031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3032. "type": "tidelift"
  3033. }
  3034. ],
  3035. "time": "2021-01-28T22:06:19+00:00"
  3036. },
  3037. {
  3038. "name": "symfony/http-client-contracts",
  3039. "version": "v2.3.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/symfony/http-client-contracts.git",
  3043. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  3048. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": ">=7.2.5"
  3053. },
  3054. "suggest": {
  3055. "symfony/http-client-implementation": ""
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-version": "2.3",
  3060. "branch-alias": {
  3061. "dev-main": "2.3-dev"
  3062. },
  3063. "thanks": {
  3064. "name": "symfony/contracts",
  3065. "url": "https://github.com/symfony/contracts"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Symfony\\Contracts\\HttpClient\\": ""
  3071. }
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "MIT"
  3076. ],
  3077. "authors": [
  3078. {
  3079. "name": "Nicolas Grekas",
  3080. "email": "p@tchwork.com"
  3081. },
  3082. {
  3083. "name": "Symfony Community",
  3084. "homepage": "https://symfony.com/contributors"
  3085. }
  3086. ],
  3087. "description": "Generic abstractions related to HTTP clients",
  3088. "homepage": "https://symfony.com",
  3089. "keywords": [
  3090. "abstractions",
  3091. "contracts",
  3092. "decoupling",
  3093. "interfaces",
  3094. "interoperability",
  3095. "standards"
  3096. ],
  3097. "support": {
  3098. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://symfony.com/sponsor",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://github.com/fabpot",
  3107. "type": "github"
  3108. },
  3109. {
  3110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3111. "type": "tidelift"
  3112. }
  3113. ],
  3114. "time": "2020-10-14T17:08:19+00:00"
  3115. },
  3116. {
  3117. "name": "symfony/http-foundation",
  3118. "version": "v5.2.3",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/symfony/http-foundation.git",
  3122. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/20c554c0f03f7cde5ce230ed248470cccbc34c36",
  3127. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=7.2.5",
  3132. "symfony/deprecation-contracts": "^2.1",
  3133. "symfony/polyfill-mbstring": "~1.1",
  3134. "symfony/polyfill-php80": "^1.15"
  3135. },
  3136. "require-dev": {
  3137. "predis/predis": "~1.0",
  3138. "symfony/cache": "^4.4|^5.0",
  3139. "symfony/expression-language": "^4.4|^5.0",
  3140. "symfony/mime": "^4.4|^5.0"
  3141. },
  3142. "suggest": {
  3143. "symfony/mime": "To use the file extension guesser"
  3144. },
  3145. "type": "library",
  3146. "autoload": {
  3147. "psr-4": {
  3148. "Symfony\\Component\\HttpFoundation\\": ""
  3149. },
  3150. "exclude-from-classmap": [
  3151. "/Tests/"
  3152. ]
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Fabien Potencier",
  3161. "email": "fabien@symfony.com"
  3162. },
  3163. {
  3164. "name": "Symfony Community",
  3165. "homepage": "https://symfony.com/contributors"
  3166. }
  3167. ],
  3168. "description": "Defines an object-oriented layer for the HTTP specification",
  3169. "homepage": "https://symfony.com",
  3170. "support": {
  3171. "source": "https://github.com/symfony/http-foundation/tree/v5.2.3"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://symfony.com/sponsor",
  3176. "type": "custom"
  3177. },
  3178. {
  3179. "url": "https://github.com/fabpot",
  3180. "type": "github"
  3181. },
  3182. {
  3183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3184. "type": "tidelift"
  3185. }
  3186. ],
  3187. "time": "2021-02-03T04:42:09+00:00"
  3188. },
  3189. {
  3190. "name": "symfony/http-kernel",
  3191. "version": "v5.2.3",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/symfony/http-kernel.git",
  3195. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  3200. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "php": ">=7.2.5",
  3205. "psr/log": "~1.0",
  3206. "symfony/deprecation-contracts": "^2.1",
  3207. "symfony/error-handler": "^4.4|^5.0",
  3208. "symfony/event-dispatcher": "^5.0",
  3209. "symfony/http-client-contracts": "^1.1|^2",
  3210. "symfony/http-foundation": "^4.4|^5.0",
  3211. "symfony/polyfill-ctype": "^1.8",
  3212. "symfony/polyfill-php73": "^1.9",
  3213. "symfony/polyfill-php80": "^1.15"
  3214. },
  3215. "conflict": {
  3216. "symfony/browser-kit": "<4.4",
  3217. "symfony/cache": "<5.0",
  3218. "symfony/config": "<5.0",
  3219. "symfony/console": "<4.4",
  3220. "symfony/dependency-injection": "<5.1.8",
  3221. "symfony/doctrine-bridge": "<5.0",
  3222. "symfony/form": "<5.0",
  3223. "symfony/http-client": "<5.0",
  3224. "symfony/mailer": "<5.0",
  3225. "symfony/messenger": "<5.0",
  3226. "symfony/translation": "<5.0",
  3227. "symfony/twig-bridge": "<5.0",
  3228. "symfony/validator": "<5.0",
  3229. "twig/twig": "<2.13"
  3230. },
  3231. "provide": {
  3232. "psr/log-implementation": "1.0"
  3233. },
  3234. "require-dev": {
  3235. "psr/cache": "~1.0",
  3236. "symfony/browser-kit": "^4.4|^5.0",
  3237. "symfony/config": "^5.0",
  3238. "symfony/console": "^4.4|^5.0",
  3239. "symfony/css-selector": "^4.4|^5.0",
  3240. "symfony/dependency-injection": "^5.1.8",
  3241. "symfony/dom-crawler": "^4.4|^5.0",
  3242. "symfony/expression-language": "^4.4|^5.0",
  3243. "symfony/finder": "^4.4|^5.0",
  3244. "symfony/process": "^4.4|^5.0",
  3245. "symfony/routing": "^4.4|^5.0",
  3246. "symfony/stopwatch": "^4.4|^5.0",
  3247. "symfony/translation": "^4.4|^5.0",
  3248. "symfony/translation-contracts": "^1.1|^2",
  3249. "twig/twig": "^2.13|^3.0.4"
  3250. },
  3251. "suggest": {
  3252. "symfony/browser-kit": "",
  3253. "symfony/config": "",
  3254. "symfony/console": "",
  3255. "symfony/dependency-injection": ""
  3256. },
  3257. "type": "library",
  3258. "autoload": {
  3259. "psr-4": {
  3260. "Symfony\\Component\\HttpKernel\\": ""
  3261. },
  3262. "exclude-from-classmap": [
  3263. "/Tests/"
  3264. ]
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Fabien Potencier",
  3273. "email": "fabien@symfony.com"
  3274. },
  3275. {
  3276. "name": "Symfony Community",
  3277. "homepage": "https://symfony.com/contributors"
  3278. }
  3279. ],
  3280. "description": "Provides a structured process for converting a Request into a Response",
  3281. "homepage": "https://symfony.com",
  3282. "support": {
  3283. "source": "https://github.com/symfony/http-kernel/tree/v5.2.3"
  3284. },
  3285. "funding": [
  3286. {
  3287. "url": "https://symfony.com/sponsor",
  3288. "type": "custom"
  3289. },
  3290. {
  3291. "url": "https://github.com/fabpot",
  3292. "type": "github"
  3293. },
  3294. {
  3295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3296. "type": "tidelift"
  3297. }
  3298. ],
  3299. "time": "2021-02-03T04:51:58+00:00"
  3300. },
  3301. {
  3302. "name": "symfony/mime",
  3303. "version": "v5.2.3",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/symfony/mime.git",
  3307. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/symfony/mime/zipball/7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  3312. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  3313. "shasum": ""
  3314. },
  3315. "require": {
  3316. "php": ">=7.2.5",
  3317. "symfony/deprecation-contracts": "^2.1",
  3318. "symfony/polyfill-intl-idn": "^1.10",
  3319. "symfony/polyfill-mbstring": "^1.0",
  3320. "symfony/polyfill-php80": "^1.15"
  3321. },
  3322. "conflict": {
  3323. "phpdocumentor/reflection-docblock": "<3.2.2",
  3324. "phpdocumentor/type-resolver": "<1.4.0",
  3325. "symfony/mailer": "<4.4"
  3326. },
  3327. "require-dev": {
  3328. "egulias/email-validator": "^2.1.10",
  3329. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3330. "symfony/dependency-injection": "^4.4|^5.0",
  3331. "symfony/property-access": "^4.4|^5.1",
  3332. "symfony/property-info": "^4.4|^5.1",
  3333. "symfony/serializer": "^5.2"
  3334. },
  3335. "type": "library",
  3336. "autoload": {
  3337. "psr-4": {
  3338. "Symfony\\Component\\Mime\\": ""
  3339. },
  3340. "exclude-from-classmap": [
  3341. "/Tests/"
  3342. ]
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Fabien Potencier",
  3351. "email": "fabien@symfony.com"
  3352. },
  3353. {
  3354. "name": "Symfony Community",
  3355. "homepage": "https://symfony.com/contributors"
  3356. }
  3357. ],
  3358. "description": "Allows manipulating MIME messages",
  3359. "homepage": "https://symfony.com",
  3360. "keywords": [
  3361. "mime",
  3362. "mime-type"
  3363. ],
  3364. "support": {
  3365. "source": "https://github.com/symfony/mime/tree/v5.2.3"
  3366. },
  3367. "funding": [
  3368. {
  3369. "url": "https://symfony.com/sponsor",
  3370. "type": "custom"
  3371. },
  3372. {
  3373. "url": "https://github.com/fabpot",
  3374. "type": "github"
  3375. },
  3376. {
  3377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3378. "type": "tidelift"
  3379. }
  3380. ],
  3381. "time": "2021-02-02T06:10:15+00:00"
  3382. },
  3383. {
  3384. "name": "symfony/polyfill-ctype",
  3385. "version": "v1.22.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/symfony/polyfill-ctype.git",
  3389. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  3394. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "php": ">=7.1"
  3399. },
  3400. "suggest": {
  3401. "ext-ctype": "For best performance"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-main": "1.22-dev"
  3407. },
  3408. "thanks": {
  3409. "name": "symfony/polyfill",
  3410. "url": "https://github.com/symfony/polyfill"
  3411. }
  3412. },
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Symfony\\Polyfill\\Ctype\\": ""
  3416. },
  3417. "files": [
  3418. "bootstrap.php"
  3419. ]
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "Gert de Pagter",
  3428. "email": "BackEndTea@gmail.com"
  3429. },
  3430. {
  3431. "name": "Symfony Community",
  3432. "homepage": "https://symfony.com/contributors"
  3433. }
  3434. ],
  3435. "description": "Symfony polyfill for ctype functions",
  3436. "homepage": "https://symfony.com",
  3437. "keywords": [
  3438. "compatibility",
  3439. "ctype",
  3440. "polyfill",
  3441. "portable"
  3442. ],
  3443. "support": {
  3444. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  3445. },
  3446. "funding": [
  3447. {
  3448. "url": "https://symfony.com/sponsor",
  3449. "type": "custom"
  3450. },
  3451. {
  3452. "url": "https://github.com/fabpot",
  3453. "type": "github"
  3454. },
  3455. {
  3456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3457. "type": "tidelift"
  3458. }
  3459. ],
  3460. "time": "2021-01-07T16:49:33+00:00"
  3461. },
  3462. {
  3463. "name": "symfony/polyfill-iconv",
  3464. "version": "v1.22.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/symfony/polyfill-iconv.git",
  3468. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  3473. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  3474. "shasum": ""
  3475. },
  3476. "require": {
  3477. "php": ">=7.1"
  3478. },
  3479. "suggest": {
  3480. "ext-iconv": "For best performance"
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "branch-alias": {
  3485. "dev-main": "1.22-dev"
  3486. },
  3487. "thanks": {
  3488. "name": "symfony/polyfill",
  3489. "url": "https://github.com/symfony/polyfill"
  3490. }
  3491. },
  3492. "autoload": {
  3493. "psr-4": {
  3494. "Symfony\\Polyfill\\Iconv\\": ""
  3495. },
  3496. "files": [
  3497. "bootstrap.php"
  3498. ]
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Nicolas Grekas",
  3507. "email": "p@tchwork.com"
  3508. },
  3509. {
  3510. "name": "Symfony Community",
  3511. "homepage": "https://symfony.com/contributors"
  3512. }
  3513. ],
  3514. "description": "Symfony polyfill for the Iconv extension",
  3515. "homepage": "https://symfony.com",
  3516. "keywords": [
  3517. "compatibility",
  3518. "iconv",
  3519. "polyfill",
  3520. "portable",
  3521. "shim"
  3522. ],
  3523. "support": {
  3524. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  3525. },
  3526. "funding": [
  3527. {
  3528. "url": "https://symfony.com/sponsor",
  3529. "type": "custom"
  3530. },
  3531. {
  3532. "url": "https://github.com/fabpot",
  3533. "type": "github"
  3534. },
  3535. {
  3536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3537. "type": "tidelift"
  3538. }
  3539. ],
  3540. "time": "2021-01-07T16:49:33+00:00"
  3541. },
  3542. {
  3543. "name": "symfony/polyfill-intl-grapheme",
  3544. "version": "v1.22.0",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3548. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  3553. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  3554. "shasum": ""
  3555. },
  3556. "require": {
  3557. "php": ">=7.1"
  3558. },
  3559. "suggest": {
  3560. "ext-intl": "For best performance"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-main": "1.22-dev"
  3566. },
  3567. "thanks": {
  3568. "name": "symfony/polyfill",
  3569. "url": "https://github.com/symfony/polyfill"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3575. },
  3576. "files": [
  3577. "bootstrap.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Nicolas Grekas",
  3587. "email": "p@tchwork.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Symfony polyfill for intl's grapheme_* functions",
  3595. "homepage": "https://symfony.com",
  3596. "keywords": [
  3597. "compatibility",
  3598. "grapheme",
  3599. "intl",
  3600. "polyfill",
  3601. "portable",
  3602. "shim"
  3603. ],
  3604. "support": {
  3605. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  3606. },
  3607. "funding": [
  3608. {
  3609. "url": "https://symfony.com/sponsor",
  3610. "type": "custom"
  3611. },
  3612. {
  3613. "url": "https://github.com/fabpot",
  3614. "type": "github"
  3615. },
  3616. {
  3617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3618. "type": "tidelift"
  3619. }
  3620. ],
  3621. "time": "2021-01-07T16:49:33+00:00"
  3622. },
  3623. {
  3624. "name": "symfony/polyfill-intl-idn",
  3625. "version": "v1.22.0",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3629. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  3634. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "php": ">=7.1",
  3639. "symfony/polyfill-intl-normalizer": "^1.10",
  3640. "symfony/polyfill-php72": "^1.10"
  3641. },
  3642. "suggest": {
  3643. "ext-intl": "For best performance"
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-main": "1.22-dev"
  3649. },
  3650. "thanks": {
  3651. "name": "symfony/polyfill",
  3652. "url": "https://github.com/symfony/polyfill"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3658. },
  3659. "files": [
  3660. "bootstrap.php"
  3661. ]
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Laurent Bassin",
  3670. "email": "laurent@bassin.info"
  3671. },
  3672. {
  3673. "name": "Trevor Rowbotham",
  3674. "email": "trevor.rowbotham@pm.me"
  3675. },
  3676. {
  3677. "name": "Symfony Community",
  3678. "homepage": "https://symfony.com/contributors"
  3679. }
  3680. ],
  3681. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3682. "homepage": "https://symfony.com",
  3683. "keywords": [
  3684. "compatibility",
  3685. "idn",
  3686. "intl",
  3687. "polyfill",
  3688. "portable",
  3689. "shim"
  3690. ],
  3691. "support": {
  3692. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  3693. },
  3694. "funding": [
  3695. {
  3696. "url": "https://symfony.com/sponsor",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/fabpot",
  3701. "type": "github"
  3702. },
  3703. {
  3704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3705. "type": "tidelift"
  3706. }
  3707. ],
  3708. "time": "2021-01-07T16:49:33+00:00"
  3709. },
  3710. {
  3711. "name": "symfony/polyfill-intl-normalizer",
  3712. "version": "v1.22.0",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3716. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  3721. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=7.1"
  3726. },
  3727. "suggest": {
  3728. "ext-intl": "For best performance"
  3729. },
  3730. "type": "library",
  3731. "extra": {
  3732. "branch-alias": {
  3733. "dev-main": "1.22-dev"
  3734. },
  3735. "thanks": {
  3736. "name": "symfony/polyfill",
  3737. "url": "https://github.com/symfony/polyfill"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "psr-4": {
  3742. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3743. },
  3744. "files": [
  3745. "bootstrap.php"
  3746. ],
  3747. "classmap": [
  3748. "Resources/stubs"
  3749. ]
  3750. },
  3751. "notification-url": "https://packagist.org/downloads/",
  3752. "license": [
  3753. "MIT"
  3754. ],
  3755. "authors": [
  3756. {
  3757. "name": "Nicolas Grekas",
  3758. "email": "p@tchwork.com"
  3759. },
  3760. {
  3761. "name": "Symfony Community",
  3762. "homepage": "https://symfony.com/contributors"
  3763. }
  3764. ],
  3765. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3766. "homepage": "https://symfony.com",
  3767. "keywords": [
  3768. "compatibility",
  3769. "intl",
  3770. "normalizer",
  3771. "polyfill",
  3772. "portable",
  3773. "shim"
  3774. ],
  3775. "support": {
  3776. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://symfony.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://github.com/fabpot",
  3785. "type": "github"
  3786. },
  3787. {
  3788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3789. "type": "tidelift"
  3790. }
  3791. ],
  3792. "time": "2021-01-07T17:09:11+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/polyfill-mbstring",
  3796. "version": "v1.22.0",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3800. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3805. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=7.1"
  3810. },
  3811. "suggest": {
  3812. "ext-mbstring": "For best performance"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-main": "1.22-dev"
  3818. },
  3819. "thanks": {
  3820. "name": "symfony/polyfill",
  3821. "url": "https://github.com/symfony/polyfill"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Symfony\\Polyfill\\Mbstring\\": ""
  3827. },
  3828. "files": [
  3829. "bootstrap.php"
  3830. ]
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Nicolas Grekas",
  3839. "email": "p@tchwork.com"
  3840. },
  3841. {
  3842. "name": "Symfony Community",
  3843. "homepage": "https://symfony.com/contributors"
  3844. }
  3845. ],
  3846. "description": "Symfony polyfill for the Mbstring extension",
  3847. "homepage": "https://symfony.com",
  3848. "keywords": [
  3849. "compatibility",
  3850. "mbstring",
  3851. "polyfill",
  3852. "portable",
  3853. "shim"
  3854. ],
  3855. "support": {
  3856. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  3857. },
  3858. "funding": [
  3859. {
  3860. "url": "https://symfony.com/sponsor",
  3861. "type": "custom"
  3862. },
  3863. {
  3864. "url": "https://github.com/fabpot",
  3865. "type": "github"
  3866. },
  3867. {
  3868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3869. "type": "tidelift"
  3870. }
  3871. ],
  3872. "time": "2021-01-07T16:49:33+00:00"
  3873. },
  3874. {
  3875. "name": "symfony/polyfill-php72",
  3876. "version": "v1.22.0",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/symfony/polyfill-php72.git",
  3880. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3885. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3886. "shasum": ""
  3887. },
  3888. "require": {
  3889. "php": ">=7.1"
  3890. },
  3891. "type": "library",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-main": "1.22-dev"
  3895. },
  3896. "thanks": {
  3897. "name": "symfony/polyfill",
  3898. "url": "https://github.com/symfony/polyfill"
  3899. }
  3900. },
  3901. "autoload": {
  3902. "psr-4": {
  3903. "Symfony\\Polyfill\\Php72\\": ""
  3904. },
  3905. "files": [
  3906. "bootstrap.php"
  3907. ]
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "Nicolas Grekas",
  3916. "email": "p@tchwork.com"
  3917. },
  3918. {
  3919. "name": "Symfony Community",
  3920. "homepage": "https://symfony.com/contributors"
  3921. }
  3922. ],
  3923. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3924. "homepage": "https://symfony.com",
  3925. "keywords": [
  3926. "compatibility",
  3927. "polyfill",
  3928. "portable",
  3929. "shim"
  3930. ],
  3931. "support": {
  3932. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  3933. },
  3934. "funding": [
  3935. {
  3936. "url": "https://symfony.com/sponsor",
  3937. "type": "custom"
  3938. },
  3939. {
  3940. "url": "https://github.com/fabpot",
  3941. "type": "github"
  3942. },
  3943. {
  3944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3945. "type": "tidelift"
  3946. }
  3947. ],
  3948. "time": "2021-01-07T16:49:33+00:00"
  3949. },
  3950. {
  3951. "name": "symfony/polyfill-php73",
  3952. "version": "v1.22.0",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/symfony/polyfill-php73.git",
  3956. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3961. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3962. "shasum": ""
  3963. },
  3964. "require": {
  3965. "php": ">=7.1"
  3966. },
  3967. "type": "library",
  3968. "extra": {
  3969. "branch-alias": {
  3970. "dev-main": "1.22-dev"
  3971. },
  3972. "thanks": {
  3973. "name": "symfony/polyfill",
  3974. "url": "https://github.com/symfony/polyfill"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "psr-4": {
  3979. "Symfony\\Polyfill\\Php73\\": ""
  3980. },
  3981. "files": [
  3982. "bootstrap.php"
  3983. ],
  3984. "classmap": [
  3985. "Resources/stubs"
  3986. ]
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Nicolas Grekas",
  3995. "email": "p@tchwork.com"
  3996. },
  3997. {
  3998. "name": "Symfony Community",
  3999. "homepage": "https://symfony.com/contributors"
  4000. }
  4001. ],
  4002. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4003. "homepage": "https://symfony.com",
  4004. "keywords": [
  4005. "compatibility",
  4006. "polyfill",
  4007. "portable",
  4008. "shim"
  4009. ],
  4010. "support": {
  4011. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://symfony.com/sponsor",
  4016. "type": "custom"
  4017. },
  4018. {
  4019. "url": "https://github.com/fabpot",
  4020. "type": "github"
  4021. },
  4022. {
  4023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4024. "type": "tidelift"
  4025. }
  4026. ],
  4027. "time": "2021-01-07T16:49:33+00:00"
  4028. },
  4029. {
  4030. "name": "symfony/polyfill-php80",
  4031. "version": "v1.22.0",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/symfony/polyfill-php80.git",
  4035. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  4040. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": ">=7.1"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-main": "1.22-dev"
  4050. },
  4051. "thanks": {
  4052. "name": "symfony/polyfill",
  4053. "url": "https://github.com/symfony/polyfill"
  4054. }
  4055. },
  4056. "autoload": {
  4057. "psr-4": {
  4058. "Symfony\\Polyfill\\Php80\\": ""
  4059. },
  4060. "files": [
  4061. "bootstrap.php"
  4062. ],
  4063. "classmap": [
  4064. "Resources/stubs"
  4065. ]
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Ion Bazan",
  4074. "email": "ion.bazan@gmail.com"
  4075. },
  4076. {
  4077. "name": "Nicolas Grekas",
  4078. "email": "p@tchwork.com"
  4079. },
  4080. {
  4081. "name": "Symfony Community",
  4082. "homepage": "https://symfony.com/contributors"
  4083. }
  4084. ],
  4085. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4086. "homepage": "https://symfony.com",
  4087. "keywords": [
  4088. "compatibility",
  4089. "polyfill",
  4090. "portable",
  4091. "shim"
  4092. ],
  4093. "support": {
  4094. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://symfony.com/sponsor",
  4099. "type": "custom"
  4100. },
  4101. {
  4102. "url": "https://github.com/fabpot",
  4103. "type": "github"
  4104. },
  4105. {
  4106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4107. "type": "tidelift"
  4108. }
  4109. ],
  4110. "time": "2021-01-07T16:49:33+00:00"
  4111. },
  4112. {
  4113. "name": "symfony/process",
  4114. "version": "v5.2.3",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/symfony/process.git",
  4118. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  4123. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=7.2.5",
  4128. "symfony/polyfill-php80": "^1.15"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "psr-4": {
  4133. "Symfony\\Component\\Process\\": ""
  4134. },
  4135. "exclude-from-classmap": [
  4136. "/Tests/"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Fabien Potencier",
  4146. "email": "fabien@symfony.com"
  4147. },
  4148. {
  4149. "name": "Symfony Community",
  4150. "homepage": "https://symfony.com/contributors"
  4151. }
  4152. ],
  4153. "description": "Executes commands in sub-processes",
  4154. "homepage": "https://symfony.com",
  4155. "support": {
  4156. "source": "https://github.com/symfony/process/tree/v5.2.3"
  4157. },
  4158. "funding": [
  4159. {
  4160. "url": "https://symfony.com/sponsor",
  4161. "type": "custom"
  4162. },
  4163. {
  4164. "url": "https://github.com/fabpot",
  4165. "type": "github"
  4166. },
  4167. {
  4168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4169. "type": "tidelift"
  4170. }
  4171. ],
  4172. "time": "2021-01-27T10:15:41+00:00"
  4173. },
  4174. {
  4175. "name": "symfony/routing",
  4176. "version": "v5.2.3",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/symfony/routing.git",
  4180. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/symfony/routing/zipball/348b5917e56546c6d96adbf21d7f92c9ef563661",
  4185. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=7.2.5",
  4190. "symfony/deprecation-contracts": "^2.1",
  4191. "symfony/polyfill-php80": "^1.15"
  4192. },
  4193. "conflict": {
  4194. "symfony/config": "<5.0",
  4195. "symfony/dependency-injection": "<4.4",
  4196. "symfony/yaml": "<4.4"
  4197. },
  4198. "require-dev": {
  4199. "doctrine/annotations": "^1.10.4",
  4200. "psr/log": "~1.0",
  4201. "symfony/config": "^5.0",
  4202. "symfony/dependency-injection": "^4.4|^5.0",
  4203. "symfony/expression-language": "^4.4|^5.0",
  4204. "symfony/http-foundation": "^4.4|^5.0",
  4205. "symfony/yaml": "^4.4|^5.0"
  4206. },
  4207. "suggest": {
  4208. "doctrine/annotations": "For using the annotation loader",
  4209. "symfony/config": "For using the all-in-one router or any loader",
  4210. "symfony/expression-language": "For using expression matching",
  4211. "symfony/http-foundation": "For using a Symfony Request object",
  4212. "symfony/yaml": "For using the YAML loader"
  4213. },
  4214. "type": "library",
  4215. "autoload": {
  4216. "psr-4": {
  4217. "Symfony\\Component\\Routing\\": ""
  4218. },
  4219. "exclude-from-classmap": [
  4220. "/Tests/"
  4221. ]
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Fabien Potencier",
  4230. "email": "fabien@symfony.com"
  4231. },
  4232. {
  4233. "name": "Symfony Community",
  4234. "homepage": "https://symfony.com/contributors"
  4235. }
  4236. ],
  4237. "description": "Maps an HTTP request to a set of configuration variables",
  4238. "homepage": "https://symfony.com",
  4239. "keywords": [
  4240. "router",
  4241. "routing",
  4242. "uri",
  4243. "url"
  4244. ],
  4245. "support": {
  4246. "source": "https://github.com/symfony/routing/tree/v5.2.3"
  4247. },
  4248. "funding": [
  4249. {
  4250. "url": "https://symfony.com/sponsor",
  4251. "type": "custom"
  4252. },
  4253. {
  4254. "url": "https://github.com/fabpot",
  4255. "type": "github"
  4256. },
  4257. {
  4258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4259. "type": "tidelift"
  4260. }
  4261. ],
  4262. "time": "2021-01-27T10:15:41+00:00"
  4263. },
  4264. {
  4265. "name": "symfony/service-contracts",
  4266. "version": "v2.2.0",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/symfony/service-contracts.git",
  4270. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4275. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "php": ">=7.2.5",
  4280. "psr/container": "^1.0"
  4281. },
  4282. "suggest": {
  4283. "symfony/service-implementation": ""
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "2.2-dev"
  4289. },
  4290. "thanks": {
  4291. "name": "symfony/contracts",
  4292. "url": "https://github.com/symfony/contracts"
  4293. }
  4294. },
  4295. "autoload": {
  4296. "psr-4": {
  4297. "Symfony\\Contracts\\Service\\": ""
  4298. }
  4299. },
  4300. "notification-url": "https://packagist.org/downloads/",
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Nicolas Grekas",
  4307. "email": "p@tchwork.com"
  4308. },
  4309. {
  4310. "name": "Symfony Community",
  4311. "homepage": "https://symfony.com/contributors"
  4312. }
  4313. ],
  4314. "description": "Generic abstractions related to writing services",
  4315. "homepage": "https://symfony.com",
  4316. "keywords": [
  4317. "abstractions",
  4318. "contracts",
  4319. "decoupling",
  4320. "interfaces",
  4321. "interoperability",
  4322. "standards"
  4323. ],
  4324. "support": {
  4325. "source": "https://github.com/symfony/service-contracts/tree/master"
  4326. },
  4327. "funding": [
  4328. {
  4329. "url": "https://symfony.com/sponsor",
  4330. "type": "custom"
  4331. },
  4332. {
  4333. "url": "https://github.com/fabpot",
  4334. "type": "github"
  4335. },
  4336. {
  4337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4338. "type": "tidelift"
  4339. }
  4340. ],
  4341. "time": "2020-09-07T11:33:47+00:00"
  4342. },
  4343. {
  4344. "name": "symfony/string",
  4345. "version": "v5.2.3",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://github.com/symfony/string.git",
  4349. "reference": "c95468897f408dd0aca2ff582074423dd0455122"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122",
  4354. "reference": "c95468897f408dd0aca2ff582074423dd0455122",
  4355. "shasum": ""
  4356. },
  4357. "require": {
  4358. "php": ">=7.2.5",
  4359. "symfony/polyfill-ctype": "~1.8",
  4360. "symfony/polyfill-intl-grapheme": "~1.0",
  4361. "symfony/polyfill-intl-normalizer": "~1.0",
  4362. "symfony/polyfill-mbstring": "~1.0",
  4363. "symfony/polyfill-php80": "~1.15"
  4364. },
  4365. "require-dev": {
  4366. "symfony/error-handler": "^4.4|^5.0",
  4367. "symfony/http-client": "^4.4|^5.0",
  4368. "symfony/translation-contracts": "^1.1|^2",
  4369. "symfony/var-exporter": "^4.4|^5.0"
  4370. },
  4371. "type": "library",
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Symfony\\Component\\String\\": ""
  4375. },
  4376. "files": [
  4377. "Resources/functions.php"
  4378. ],
  4379. "exclude-from-classmap": [
  4380. "/Tests/"
  4381. ]
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "MIT"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "Nicolas Grekas",
  4390. "email": "p@tchwork.com"
  4391. },
  4392. {
  4393. "name": "Symfony Community",
  4394. "homepage": "https://symfony.com/contributors"
  4395. }
  4396. ],
  4397. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4398. "homepage": "https://symfony.com",
  4399. "keywords": [
  4400. "grapheme",
  4401. "i18n",
  4402. "string",
  4403. "unicode",
  4404. "utf-8",
  4405. "utf8"
  4406. ],
  4407. "support": {
  4408. "source": "https://github.com/symfony/string/tree/v5.2.3"
  4409. },
  4410. "funding": [
  4411. {
  4412. "url": "https://symfony.com/sponsor",
  4413. "type": "custom"
  4414. },
  4415. {
  4416. "url": "https://github.com/fabpot",
  4417. "type": "github"
  4418. },
  4419. {
  4420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4421. "type": "tidelift"
  4422. }
  4423. ],
  4424. "time": "2021-01-25T15:14:59+00:00"
  4425. },
  4426. {
  4427. "name": "symfony/translation",
  4428. "version": "v5.2.3",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://github.com/symfony/translation.git",
  4432. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://api.github.com/repos/symfony/translation/zipball/c021864d4354ee55160ddcfd31dc477a1bc77949",
  4437. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949",
  4438. "shasum": ""
  4439. },
  4440. "require": {
  4441. "php": ">=7.2.5",
  4442. "symfony/polyfill-mbstring": "~1.0",
  4443. "symfony/polyfill-php80": "^1.15",
  4444. "symfony/translation-contracts": "^2.3"
  4445. },
  4446. "conflict": {
  4447. "symfony/config": "<4.4",
  4448. "symfony/dependency-injection": "<5.0",
  4449. "symfony/http-kernel": "<5.0",
  4450. "symfony/twig-bundle": "<5.0",
  4451. "symfony/yaml": "<4.4"
  4452. },
  4453. "provide": {
  4454. "symfony/translation-implementation": "2.0"
  4455. },
  4456. "require-dev": {
  4457. "psr/log": "~1.0",
  4458. "symfony/config": "^4.4|^5.0",
  4459. "symfony/console": "^4.4|^5.0",
  4460. "symfony/dependency-injection": "^5.0",
  4461. "symfony/finder": "^4.4|^5.0",
  4462. "symfony/http-kernel": "^5.0",
  4463. "symfony/intl": "^4.4|^5.0",
  4464. "symfony/service-contracts": "^1.1.2|^2",
  4465. "symfony/yaml": "^4.4|^5.0"
  4466. },
  4467. "suggest": {
  4468. "psr/log-implementation": "To use logging capability in translator",
  4469. "symfony/config": "",
  4470. "symfony/yaml": ""
  4471. },
  4472. "type": "library",
  4473. "autoload": {
  4474. "files": [
  4475. "Resources/functions.php"
  4476. ],
  4477. "psr-4": {
  4478. "Symfony\\Component\\Translation\\": ""
  4479. },
  4480. "exclude-from-classmap": [
  4481. "/Tests/"
  4482. ]
  4483. },
  4484. "notification-url": "https://packagist.org/downloads/",
  4485. "license": [
  4486. "MIT"
  4487. ],
  4488. "authors": [
  4489. {
  4490. "name": "Fabien Potencier",
  4491. "email": "fabien@symfony.com"
  4492. },
  4493. {
  4494. "name": "Symfony Community",
  4495. "homepage": "https://symfony.com/contributors"
  4496. }
  4497. ],
  4498. "description": "Provides tools to internationalize your application",
  4499. "homepage": "https://symfony.com",
  4500. "support": {
  4501. "source": "https://github.com/symfony/translation/tree/v5.2.3"
  4502. },
  4503. "funding": [
  4504. {
  4505. "url": "https://symfony.com/sponsor",
  4506. "type": "custom"
  4507. },
  4508. {
  4509. "url": "https://github.com/fabpot",
  4510. "type": "github"
  4511. },
  4512. {
  4513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4514. "type": "tidelift"
  4515. }
  4516. ],
  4517. "time": "2021-01-27T10:15:41+00:00"
  4518. },
  4519. {
  4520. "name": "symfony/translation-contracts",
  4521. "version": "v2.3.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/symfony/translation-contracts.git",
  4525. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4530. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": ">=7.2.5"
  4535. },
  4536. "suggest": {
  4537. "symfony/translation-implementation": ""
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "2.3-dev"
  4543. },
  4544. "thanks": {
  4545. "name": "symfony/contracts",
  4546. "url": "https://github.com/symfony/contracts"
  4547. }
  4548. },
  4549. "autoload": {
  4550. "psr-4": {
  4551. "Symfony\\Contracts\\Translation\\": ""
  4552. }
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "MIT"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Nicolas Grekas",
  4561. "email": "p@tchwork.com"
  4562. },
  4563. {
  4564. "name": "Symfony Community",
  4565. "homepage": "https://symfony.com/contributors"
  4566. }
  4567. ],
  4568. "description": "Generic abstractions related to translation",
  4569. "homepage": "https://symfony.com",
  4570. "keywords": [
  4571. "abstractions",
  4572. "contracts",
  4573. "decoupling",
  4574. "interfaces",
  4575. "interoperability",
  4576. "standards"
  4577. ],
  4578. "support": {
  4579. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  4580. },
  4581. "funding": [
  4582. {
  4583. "url": "https://symfony.com/sponsor",
  4584. "type": "custom"
  4585. },
  4586. {
  4587. "url": "https://github.com/fabpot",
  4588. "type": "github"
  4589. },
  4590. {
  4591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4592. "type": "tidelift"
  4593. }
  4594. ],
  4595. "time": "2020-09-28T13:05:58+00:00"
  4596. },
  4597. {
  4598. "name": "symfony/var-dumper",
  4599. "version": "v5.2.3",
  4600. "source": {
  4601. "type": "git",
  4602. "url": "https://github.com/symfony/var-dumper.git",
  4603. "reference": "72ca213014a92223a5d18651ce79ef441c12b694"
  4604. },
  4605. "dist": {
  4606. "type": "zip",
  4607. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72ca213014a92223a5d18651ce79ef441c12b694",
  4608. "reference": "72ca213014a92223a5d18651ce79ef441c12b694",
  4609. "shasum": ""
  4610. },
  4611. "require": {
  4612. "php": ">=7.2.5",
  4613. "symfony/polyfill-mbstring": "~1.0",
  4614. "symfony/polyfill-php80": "^1.15"
  4615. },
  4616. "conflict": {
  4617. "phpunit/phpunit": "<5.4.3",
  4618. "symfony/console": "<4.4"
  4619. },
  4620. "require-dev": {
  4621. "ext-iconv": "*",
  4622. "symfony/console": "^4.4|^5.0",
  4623. "symfony/process": "^4.4|^5.0",
  4624. "twig/twig": "^2.13|^3.0.4"
  4625. },
  4626. "suggest": {
  4627. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4628. "ext-intl": "To show region name in time zone dump",
  4629. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4630. },
  4631. "bin": [
  4632. "Resources/bin/var-dump-server"
  4633. ],
  4634. "type": "library",
  4635. "autoload": {
  4636. "files": [
  4637. "Resources/functions/dump.php"
  4638. ],
  4639. "psr-4": {
  4640. "Symfony\\Component\\VarDumper\\": ""
  4641. },
  4642. "exclude-from-classmap": [
  4643. "/Tests/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Nicolas Grekas",
  4653. "email": "p@tchwork.com"
  4654. },
  4655. {
  4656. "name": "Symfony Community",
  4657. "homepage": "https://symfony.com/contributors"
  4658. }
  4659. ],
  4660. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4661. "homepage": "https://symfony.com",
  4662. "keywords": [
  4663. "debug",
  4664. "dump"
  4665. ],
  4666. "support": {
  4667. "source": "https://github.com/symfony/var-dumper/tree/v5.2.3"
  4668. },
  4669. "funding": [
  4670. {
  4671. "url": "https://symfony.com/sponsor",
  4672. "type": "custom"
  4673. },
  4674. {
  4675. "url": "https://github.com/fabpot",
  4676. "type": "github"
  4677. },
  4678. {
  4679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4680. "type": "tidelift"
  4681. }
  4682. ],
  4683. "time": "2021-01-27T10:15:41+00:00"
  4684. },
  4685. {
  4686. "name": "tijsverkoyen/css-to-inline-styles",
  4687. "version": "2.2.3",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4691. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4696. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4697. "shasum": ""
  4698. },
  4699. "require": {
  4700. "ext-dom": "*",
  4701. "ext-libxml": "*",
  4702. "php": "^5.5 || ^7.0 || ^8.0",
  4703. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4704. },
  4705. "require-dev": {
  4706. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  4707. },
  4708. "type": "library",
  4709. "extra": {
  4710. "branch-alias": {
  4711. "dev-master": "2.2.x-dev"
  4712. }
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "BSD-3-Clause"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Tijs Verkoyen",
  4726. "email": "css_to_inline_styles@verkoyen.eu",
  4727. "role": "Developer"
  4728. }
  4729. ],
  4730. "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.",
  4731. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4732. "support": {
  4733. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4734. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  4735. },
  4736. "time": "2020-07-13T06:12:54+00:00"
  4737. },
  4738. {
  4739. "name": "vlucas/phpdotenv",
  4740. "version": "v5.3.0",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/vlucas/phpdotenv.git",
  4744. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  4749. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  4750. "shasum": ""
  4751. },
  4752. "require": {
  4753. "ext-pcre": "*",
  4754. "graham-campbell/result-type": "^1.0.1",
  4755. "php": "^7.1.3 || ^8.0",
  4756. "phpoption/phpoption": "^1.7.4",
  4757. "symfony/polyfill-ctype": "^1.17",
  4758. "symfony/polyfill-mbstring": "^1.17",
  4759. "symfony/polyfill-php80": "^1.17"
  4760. },
  4761. "require-dev": {
  4762. "bamarni/composer-bin-plugin": "^1.4.1",
  4763. "ext-filter": "*",
  4764. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  4765. },
  4766. "suggest": {
  4767. "ext-filter": "Required to use the boolean validator."
  4768. },
  4769. "type": "library",
  4770. "extra": {
  4771. "branch-alias": {
  4772. "dev-master": "5.3-dev"
  4773. }
  4774. },
  4775. "autoload": {
  4776. "psr-4": {
  4777. "Dotenv\\": "src/"
  4778. }
  4779. },
  4780. "notification-url": "https://packagist.org/downloads/",
  4781. "license": [
  4782. "BSD-3-Clause"
  4783. ],
  4784. "authors": [
  4785. {
  4786. "name": "Graham Campbell",
  4787. "email": "graham@alt-three.com",
  4788. "homepage": "https://gjcampbell.co.uk/"
  4789. },
  4790. {
  4791. "name": "Vance Lucas",
  4792. "email": "vance@vancelucas.com",
  4793. "homepage": "https://vancelucas.com/"
  4794. }
  4795. ],
  4796. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4797. "keywords": [
  4798. "dotenv",
  4799. "env",
  4800. "environment"
  4801. ],
  4802. "support": {
  4803. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4804. "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://github.com/GrahamCampbell",
  4809. "type": "github"
  4810. },
  4811. {
  4812. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4813. "type": "tidelift"
  4814. }
  4815. ],
  4816. "time": "2021-01-20T15:23:13+00:00"
  4817. },
  4818. {
  4819. "name": "voku/portable-ascii",
  4820. "version": "1.5.6",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/voku/portable-ascii.git",
  4824. "reference": "80953678b19901e5165c56752d087fc11526017c"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  4829. "reference": "80953678b19901e5165c56752d087fc11526017c",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "php": ">=7.0.0"
  4834. },
  4835. "require-dev": {
  4836. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4837. },
  4838. "suggest": {
  4839. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4840. },
  4841. "type": "library",
  4842. "autoload": {
  4843. "psr-4": {
  4844. "voku\\": "src/voku/"
  4845. }
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Lars Moelleken",
  4854. "homepage": "http://www.moelleken.org/"
  4855. }
  4856. ],
  4857. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4858. "homepage": "https://github.com/voku/portable-ascii",
  4859. "keywords": [
  4860. "ascii",
  4861. "clean",
  4862. "php"
  4863. ],
  4864. "support": {
  4865. "issues": "https://github.com/voku/portable-ascii/issues",
  4866. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  4867. },
  4868. "funding": [
  4869. {
  4870. "url": "https://www.paypal.me/moelleken",
  4871. "type": "custom"
  4872. },
  4873. {
  4874. "url": "https://github.com/voku",
  4875. "type": "github"
  4876. },
  4877. {
  4878. "url": "https://opencollective.com/portable-ascii",
  4879. "type": "open_collective"
  4880. },
  4881. {
  4882. "url": "https://www.patreon.com/voku",
  4883. "type": "patreon"
  4884. },
  4885. {
  4886. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  4887. "type": "tidelift"
  4888. }
  4889. ],
  4890. "time": "2020-11-12T00:07:28+00:00"
  4891. },
  4892. {
  4893. "name": "webmozart/assert",
  4894. "version": "1.9.1",
  4895. "source": {
  4896. "type": "git",
  4897. "url": "https://github.com/webmozarts/assert.git",
  4898. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  4899. },
  4900. "dist": {
  4901. "type": "zip",
  4902. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4903. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4904. "shasum": ""
  4905. },
  4906. "require": {
  4907. "php": "^5.3.3 || ^7.0 || ^8.0",
  4908. "symfony/polyfill-ctype": "^1.8"
  4909. },
  4910. "conflict": {
  4911. "phpstan/phpstan": "<0.12.20",
  4912. "vimeo/psalm": "<3.9.1"
  4913. },
  4914. "require-dev": {
  4915. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  4916. },
  4917. "type": "library",
  4918. "autoload": {
  4919. "psr-4": {
  4920. "Webmozart\\Assert\\": "src/"
  4921. }
  4922. },
  4923. "notification-url": "https://packagist.org/downloads/",
  4924. "license": [
  4925. "MIT"
  4926. ],
  4927. "authors": [
  4928. {
  4929. "name": "Bernhard Schussek",
  4930. "email": "bschussek@gmail.com"
  4931. }
  4932. ],
  4933. "description": "Assertions to validate method input/output with nice error messages.",
  4934. "keywords": [
  4935. "assert",
  4936. "check",
  4937. "validate"
  4938. ],
  4939. "support": {
  4940. "issues": "https://github.com/webmozarts/assert/issues",
  4941. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  4942. },
  4943. "time": "2020-07-08T17:02:28+00:00"
  4944. }
  4945. ],
  4946. "packages-dev": [
  4947. {
  4948. "name": "doctrine/instantiator",
  4949. "version": "1.4.0",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/doctrine/instantiator.git",
  4953. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  4958. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "php": "^7.1 || ^8.0"
  4963. },
  4964. "require-dev": {
  4965. "doctrine/coding-standard": "^8.0",
  4966. "ext-pdo": "*",
  4967. "ext-phar": "*",
  4968. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  4969. "phpstan/phpstan": "^0.12",
  4970. "phpstan/phpstan-phpunit": "^0.12",
  4971. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4972. },
  4973. "type": "library",
  4974. "autoload": {
  4975. "psr-4": {
  4976. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4977. }
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "MIT"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Marco Pivetta",
  4986. "email": "ocramius@gmail.com",
  4987. "homepage": "https://ocramius.github.io/"
  4988. }
  4989. ],
  4990. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4991. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4992. "keywords": [
  4993. "constructor",
  4994. "instantiate"
  4995. ],
  4996. "support": {
  4997. "issues": "https://github.com/doctrine/instantiator/issues",
  4998. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  4999. },
  5000. "funding": [
  5001. {
  5002. "url": "https://www.doctrine-project.org/sponsorship.html",
  5003. "type": "custom"
  5004. },
  5005. {
  5006. "url": "https://www.patreon.com/phpdoctrine",
  5007. "type": "patreon"
  5008. },
  5009. {
  5010. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5011. "type": "tidelift"
  5012. }
  5013. ],
  5014. "time": "2020-11-10T18:47:58+00:00"
  5015. },
  5016. {
  5017. "name": "facade/flare-client-php",
  5018. "version": "1.3.7",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/facade/flare-client-php.git",
  5022. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5027. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5028. "shasum": ""
  5029. },
  5030. "require": {
  5031. "facade/ignition-contracts": "~1.0",
  5032. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5033. "php": "^7.1|^8.0",
  5034. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5035. "symfony/mime": "^3.4|^4.0|^5.1",
  5036. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5037. },
  5038. "require-dev": {
  5039. "friendsofphp/php-cs-fixer": "^2.14",
  5040. "phpunit/phpunit": "^7.5.16",
  5041. "spatie/phpunit-snapshot-assertions": "^2.0"
  5042. },
  5043. "type": "library",
  5044. "extra": {
  5045. "branch-alias": {
  5046. "dev-master": "1.0-dev"
  5047. }
  5048. },
  5049. "autoload": {
  5050. "psr-4": {
  5051. "Facade\\FlareClient\\": "src"
  5052. },
  5053. "files": [
  5054. "src/helpers.php"
  5055. ]
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "description": "Send PHP errors to Flare",
  5062. "homepage": "https://github.com/facade/flare-client-php",
  5063. "keywords": [
  5064. "exception",
  5065. "facade",
  5066. "flare",
  5067. "reporting"
  5068. ],
  5069. "support": {
  5070. "issues": "https://github.com/facade/flare-client-php/issues",
  5071. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  5072. },
  5073. "funding": [
  5074. {
  5075. "url": "https://github.com/spatie",
  5076. "type": "github"
  5077. }
  5078. ],
  5079. "time": "2020-10-21T16:02:39+00:00"
  5080. },
  5081. {
  5082. "name": "facade/ignition",
  5083. "version": "2.5.11",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/facade/ignition.git",
  5087. "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/facade/ignition/zipball/e91d67353054bf827c64687fcac5ea44e4dcec54",
  5092. "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54",
  5093. "shasum": ""
  5094. },
  5095. "require": {
  5096. "ext-json": "*",
  5097. "ext-mbstring": "*",
  5098. "facade/flare-client-php": "^1.3.7",
  5099. "facade/ignition-contracts": "^1.0.2",
  5100. "filp/whoops": "^2.4",
  5101. "illuminate/support": "^7.0|^8.0",
  5102. "monolog/monolog": "^2.0",
  5103. "php": "^7.2.5|^8.0",
  5104. "symfony/console": "^5.0",
  5105. "symfony/var-dumper": "^5.0"
  5106. },
  5107. "require-dev": {
  5108. "friendsofphp/php-cs-fixer": "^2.14",
  5109. "mockery/mockery": "^1.3",
  5110. "orchestra/testbench": "^5.0|^6.0",
  5111. "psalm/plugin-laravel": "^1.2"
  5112. },
  5113. "suggest": {
  5114. "laravel/telescope": "^3.1"
  5115. },
  5116. "type": "library",
  5117. "extra": {
  5118. "branch-alias": {
  5119. "dev-master": "2.x-dev"
  5120. },
  5121. "laravel": {
  5122. "providers": [
  5123. "Facade\\Ignition\\IgnitionServiceProvider"
  5124. ],
  5125. "aliases": {
  5126. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5127. }
  5128. }
  5129. },
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Facade\\Ignition\\": "src"
  5133. },
  5134. "files": [
  5135. "src/helpers.php"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "description": "A beautiful error page for Laravel applications.",
  5143. "homepage": "https://github.com/facade/ignition",
  5144. "keywords": [
  5145. "error",
  5146. "flare",
  5147. "laravel",
  5148. "page"
  5149. ],
  5150. "support": {
  5151. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5152. "forum": "https://twitter.com/flareappio",
  5153. "issues": "https://github.com/facade/ignition/issues",
  5154. "source": "https://github.com/facade/ignition"
  5155. },
  5156. "time": "2021-02-05T12:52:11+00:00"
  5157. },
  5158. {
  5159. "name": "facade/ignition-contracts",
  5160. "version": "1.0.2",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/facade/ignition-contracts.git",
  5164. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5169. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": "^7.3|^8.0"
  5174. },
  5175. "require-dev": {
  5176. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5177. "phpunit/phpunit": "^9.3.11",
  5178. "vimeo/psalm": "^3.17.1"
  5179. },
  5180. "type": "library",
  5181. "autoload": {
  5182. "psr-4": {
  5183. "Facade\\IgnitionContracts\\": "src"
  5184. }
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "Freek Van der Herten",
  5193. "email": "freek@spatie.be",
  5194. "homepage": "https://flareapp.io",
  5195. "role": "Developer"
  5196. }
  5197. ],
  5198. "description": "Solution contracts for Ignition",
  5199. "homepage": "https://github.com/facade/ignition-contracts",
  5200. "keywords": [
  5201. "contracts",
  5202. "flare",
  5203. "ignition"
  5204. ],
  5205. "support": {
  5206. "issues": "https://github.com/facade/ignition-contracts/issues",
  5207. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5208. },
  5209. "time": "2020-10-16T08:27:54+00:00"
  5210. },
  5211. {
  5212. "name": "fakerphp/faker",
  5213. "version": "v1.13.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/FakerPHP/Faker.git",
  5217. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  5222. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  5223. "shasum": ""
  5224. },
  5225. "require": {
  5226. "php": "^7.1 || ^8.0"
  5227. },
  5228. "conflict": {
  5229. "fzaninotto/faker": "*"
  5230. },
  5231. "require-dev": {
  5232. "bamarni/composer-bin-plugin": "^1.4.1",
  5233. "ext-intl": "*",
  5234. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  5235. },
  5236. "type": "library",
  5237. "autoload": {
  5238. "psr-4": {
  5239. "Faker\\": "src/Faker/"
  5240. }
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "François Zaninotto"
  5249. }
  5250. ],
  5251. "description": "Faker is a PHP library that generates fake data for you.",
  5252. "keywords": [
  5253. "data",
  5254. "faker",
  5255. "fixtures"
  5256. ],
  5257. "support": {
  5258. "issues": "https://github.com/FakerPHP/Faker/issues",
  5259. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  5260. },
  5261. "time": "2020-12-18T16:50:48+00:00"
  5262. },
  5263. {
  5264. "name": "filp/whoops",
  5265. "version": "2.9.2",
  5266. "source": {
  5267. "type": "git",
  5268. "url": "https://github.com/filp/whoops.git",
  5269. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  5270. },
  5271. "dist": {
  5272. "type": "zip",
  5273. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  5274. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  5275. "shasum": ""
  5276. },
  5277. "require": {
  5278. "php": "^5.5.9 || ^7.0 || ^8.0",
  5279. "psr/log": "^1.0.1"
  5280. },
  5281. "require-dev": {
  5282. "mockery/mockery": "^0.9 || ^1.0",
  5283. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5284. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5285. },
  5286. "suggest": {
  5287. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5288. "whoops/soap": "Formats errors as SOAP responses"
  5289. },
  5290. "type": "library",
  5291. "extra": {
  5292. "branch-alias": {
  5293. "dev-master": "2.7-dev"
  5294. }
  5295. },
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Whoops\\": "src/Whoops/"
  5299. }
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Filipe Dobreira",
  5308. "homepage": "https://github.com/filp",
  5309. "role": "Developer"
  5310. }
  5311. ],
  5312. "description": "php error handling for cool kids",
  5313. "homepage": "https://filp.github.io/whoops/",
  5314. "keywords": [
  5315. "error",
  5316. "exception",
  5317. "handling",
  5318. "library",
  5319. "throwable",
  5320. "whoops"
  5321. ],
  5322. "support": {
  5323. "issues": "https://github.com/filp/whoops/issues",
  5324. "source": "https://github.com/filp/whoops/tree/2.9.2"
  5325. },
  5326. "funding": [
  5327. {
  5328. "url": "https://github.com/denis-sokolov",
  5329. "type": "github"
  5330. }
  5331. ],
  5332. "time": "2021-01-24T12:00:00+00:00"
  5333. },
  5334. {
  5335. "name": "hamcrest/hamcrest-php",
  5336. "version": "v2.0.1",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5340. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5345. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5346. "shasum": ""
  5347. },
  5348. "require": {
  5349. "php": "^5.3|^7.0|^8.0"
  5350. },
  5351. "replace": {
  5352. "cordoval/hamcrest-php": "*",
  5353. "davedevelopment/hamcrest-php": "*",
  5354. "kodova/hamcrest-php": "*"
  5355. },
  5356. "require-dev": {
  5357. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5358. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-master": "2.1-dev"
  5364. }
  5365. },
  5366. "autoload": {
  5367. "classmap": [
  5368. "hamcrest"
  5369. ]
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "BSD-3-Clause"
  5374. ],
  5375. "description": "This is the PHP port of Hamcrest Matchers",
  5376. "keywords": [
  5377. "test"
  5378. ],
  5379. "support": {
  5380. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5381. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5382. },
  5383. "time": "2020-07-09T08:09:16+00:00"
  5384. },
  5385. {
  5386. "name": "laravel/sail",
  5387. "version": "v1.3.1",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/laravel/sail.git",
  5391. "reference": "a18519e96c32894ac3f8775fa8eb6de5750aca5a"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/laravel/sail/zipball/a18519e96c32894ac3f8775fa8eb6de5750aca5a",
  5396. "reference": "a18519e96c32894ac3f8775fa8eb6de5750aca5a",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "illuminate/contracts": "^8.0|^9.0",
  5401. "illuminate/support": "^8.0|^9.0",
  5402. "php": "^7.3|^8.0"
  5403. },
  5404. "bin": [
  5405. "bin/sail"
  5406. ],
  5407. "type": "library",
  5408. "extra": {
  5409. "branch-alias": {
  5410. "dev-master": "1.x-dev"
  5411. },
  5412. "laravel": {
  5413. "providers": [
  5414. "Laravel\\Sail\\SailServiceProvider"
  5415. ]
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "Laravel\\Sail\\": "src/"
  5421. }
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "MIT"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Taylor Otwell",
  5430. "email": "taylor@laravel.com"
  5431. }
  5432. ],
  5433. "description": "Docker files for running a basic Laravel application.",
  5434. "keywords": [
  5435. "docker",
  5436. "laravel"
  5437. ],
  5438. "support": {
  5439. "issues": "https://github.com/laravel/sail/issues",
  5440. "source": "https://github.com/laravel/sail"
  5441. },
  5442. "time": "2021-02-09T16:44:58+00:00"
  5443. },
  5444. {
  5445. "name": "mockery/mockery",
  5446. "version": "1.4.2",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/mockery/mockery.git",
  5450. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  5455. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "hamcrest/hamcrest-php": "^2.0.1",
  5460. "lib-pcre": ">=7.0",
  5461. "php": "^7.3 || ^8.0"
  5462. },
  5463. "conflict": {
  5464. "phpunit/phpunit": "<8.0"
  5465. },
  5466. "require-dev": {
  5467. "phpunit/phpunit": "^8.5 || ^9.3"
  5468. },
  5469. "type": "library",
  5470. "extra": {
  5471. "branch-alias": {
  5472. "dev-master": "1.4.x-dev"
  5473. }
  5474. },
  5475. "autoload": {
  5476. "psr-0": {
  5477. "Mockery": "library/"
  5478. }
  5479. },
  5480. "notification-url": "https://packagist.org/downloads/",
  5481. "license": [
  5482. "BSD-3-Clause"
  5483. ],
  5484. "authors": [
  5485. {
  5486. "name": "Pádraic Brady",
  5487. "email": "padraic.brady@gmail.com",
  5488. "homepage": "http://blog.astrumfutura.com"
  5489. },
  5490. {
  5491. "name": "Dave Marshall",
  5492. "email": "dave.marshall@atstsolutions.co.uk",
  5493. "homepage": "http://davedevelopment.co.uk"
  5494. }
  5495. ],
  5496. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5497. "homepage": "https://github.com/mockery/mockery",
  5498. "keywords": [
  5499. "BDD",
  5500. "TDD",
  5501. "library",
  5502. "mock",
  5503. "mock objects",
  5504. "mockery",
  5505. "stub",
  5506. "test",
  5507. "test double",
  5508. "testing"
  5509. ],
  5510. "support": {
  5511. "issues": "https://github.com/mockery/mockery/issues",
  5512. "source": "https://github.com/mockery/mockery/tree/master"
  5513. },
  5514. "time": "2020-08-11T18:10:13+00:00"
  5515. },
  5516. {
  5517. "name": "myclabs/deep-copy",
  5518. "version": "1.10.2",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/myclabs/DeepCopy.git",
  5522. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5527. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": "^7.1 || ^8.0"
  5532. },
  5533. "replace": {
  5534. "myclabs/deep-copy": "self.version"
  5535. },
  5536. "require-dev": {
  5537. "doctrine/collections": "^1.0",
  5538. "doctrine/common": "^2.6",
  5539. "phpunit/phpunit": "^7.1"
  5540. },
  5541. "type": "library",
  5542. "autoload": {
  5543. "psr-4": {
  5544. "DeepCopy\\": "src/DeepCopy/"
  5545. },
  5546. "files": [
  5547. "src/DeepCopy/deep_copy.php"
  5548. ]
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "description": "Create deep copies (clones) of your objects",
  5555. "keywords": [
  5556. "clone",
  5557. "copy",
  5558. "duplicate",
  5559. "object",
  5560. "object graph"
  5561. ],
  5562. "support": {
  5563. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5564. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  5565. },
  5566. "funding": [
  5567. {
  5568. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5569. "type": "tidelift"
  5570. }
  5571. ],
  5572. "time": "2020-11-13T09:40:50+00:00"
  5573. },
  5574. {
  5575. "name": "nunomaduro/collision",
  5576. "version": "v5.3.0",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://github.com/nunomaduro/collision.git",
  5580. "reference": "aca63581f380f63a492b1e3114604e411e39133a"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/aca63581f380f63a492b1e3114604e411e39133a",
  5585. "reference": "aca63581f380f63a492b1e3114604e411e39133a",
  5586. "shasum": ""
  5587. },
  5588. "require": {
  5589. "facade/ignition-contracts": "^1.0",
  5590. "filp/whoops": "^2.7.2",
  5591. "php": "^7.3 || ^8.0",
  5592. "symfony/console": "^5.0"
  5593. },
  5594. "require-dev": {
  5595. "brianium/paratest": "^6.1",
  5596. "fideloper/proxy": "^4.4.1",
  5597. "friendsofphp/php-cs-fixer": "^2.17.3",
  5598. "fruitcake/laravel-cors": "^2.0.3",
  5599. "laravel/framework": "^9.0",
  5600. "nunomaduro/larastan": "^0.6.2",
  5601. "nunomaduro/mock-final-classes": "^1.0",
  5602. "orchestra/testbench": "^7.0",
  5603. "phpstan/phpstan": "^0.12.64",
  5604. "phpunit/phpunit": "^9.5.0"
  5605. },
  5606. "type": "library",
  5607. "extra": {
  5608. "laravel": {
  5609. "providers": [
  5610. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5611. ]
  5612. }
  5613. },
  5614. "autoload": {
  5615. "psr-4": {
  5616. "NunoMaduro\\Collision\\": "src/"
  5617. }
  5618. },
  5619. "notification-url": "https://packagist.org/downloads/",
  5620. "license": [
  5621. "MIT"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "Nuno Maduro",
  5626. "email": "enunomaduro@gmail.com"
  5627. }
  5628. ],
  5629. "description": "Cli error handling for console/command-line PHP applications.",
  5630. "keywords": [
  5631. "artisan",
  5632. "cli",
  5633. "command-line",
  5634. "console",
  5635. "error",
  5636. "handling",
  5637. "laravel",
  5638. "laravel-zero",
  5639. "php",
  5640. "symfony"
  5641. ],
  5642. "support": {
  5643. "issues": "https://github.com/nunomaduro/collision/issues",
  5644. "source": "https://github.com/nunomaduro/collision"
  5645. },
  5646. "funding": [
  5647. {
  5648. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5649. "type": "custom"
  5650. },
  5651. {
  5652. "url": "https://github.com/nunomaduro",
  5653. "type": "github"
  5654. },
  5655. {
  5656. "url": "https://www.patreon.com/nunomaduro",
  5657. "type": "patreon"
  5658. }
  5659. ],
  5660. "time": "2021-01-25T15:34:13+00:00"
  5661. },
  5662. {
  5663. "name": "phar-io/manifest",
  5664. "version": "2.0.1",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/phar-io/manifest.git",
  5668. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5673. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "ext-dom": "*",
  5678. "ext-phar": "*",
  5679. "ext-xmlwriter": "*",
  5680. "phar-io/version": "^3.0.1",
  5681. "php": "^7.2 || ^8.0"
  5682. },
  5683. "type": "library",
  5684. "extra": {
  5685. "branch-alias": {
  5686. "dev-master": "2.0.x-dev"
  5687. }
  5688. },
  5689. "autoload": {
  5690. "classmap": [
  5691. "src/"
  5692. ]
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "BSD-3-Clause"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "Arne Blankerts",
  5701. "email": "arne@blankerts.de",
  5702. "role": "Developer"
  5703. },
  5704. {
  5705. "name": "Sebastian Heuer",
  5706. "email": "sebastian@phpeople.de",
  5707. "role": "Developer"
  5708. },
  5709. {
  5710. "name": "Sebastian Bergmann",
  5711. "email": "sebastian@phpunit.de",
  5712. "role": "Developer"
  5713. }
  5714. ],
  5715. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5716. "support": {
  5717. "issues": "https://github.com/phar-io/manifest/issues",
  5718. "source": "https://github.com/phar-io/manifest/tree/master"
  5719. },
  5720. "time": "2020-06-27T14:33:11+00:00"
  5721. },
  5722. {
  5723. "name": "phar-io/version",
  5724. "version": "3.0.4",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://github.com/phar-io/version.git",
  5728. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  5733. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  5734. "shasum": ""
  5735. },
  5736. "require": {
  5737. "php": "^7.2 || ^8.0"
  5738. },
  5739. "type": "library",
  5740. "autoload": {
  5741. "classmap": [
  5742. "src/"
  5743. ]
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "BSD-3-Clause"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Arne Blankerts",
  5752. "email": "arne@blankerts.de",
  5753. "role": "Developer"
  5754. },
  5755. {
  5756. "name": "Sebastian Heuer",
  5757. "email": "sebastian@phpeople.de",
  5758. "role": "Developer"
  5759. },
  5760. {
  5761. "name": "Sebastian Bergmann",
  5762. "email": "sebastian@phpunit.de",
  5763. "role": "Developer"
  5764. }
  5765. ],
  5766. "description": "Library for handling version information and constraints",
  5767. "support": {
  5768. "issues": "https://github.com/phar-io/version/issues",
  5769. "source": "https://github.com/phar-io/version/tree/3.0.4"
  5770. },
  5771. "time": "2020-12-13T23:18:30+00:00"
  5772. },
  5773. {
  5774. "name": "phpdocumentor/reflection-common",
  5775. "version": "2.2.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5779. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5784. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5785. "shasum": ""
  5786. },
  5787. "require": {
  5788. "php": "^7.2 || ^8.0"
  5789. },
  5790. "type": "library",
  5791. "extra": {
  5792. "branch-alias": {
  5793. "dev-2.x": "2.x-dev"
  5794. }
  5795. },
  5796. "autoload": {
  5797. "psr-4": {
  5798. "phpDocumentor\\Reflection\\": "src/"
  5799. }
  5800. },
  5801. "notification-url": "https://packagist.org/downloads/",
  5802. "license": [
  5803. "MIT"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Jaap van Otterdijk",
  5808. "email": "opensource@ijaap.nl"
  5809. }
  5810. ],
  5811. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5812. "homepage": "http://www.phpdoc.org",
  5813. "keywords": [
  5814. "FQSEN",
  5815. "phpDocumentor",
  5816. "phpdoc",
  5817. "reflection",
  5818. "static analysis"
  5819. ],
  5820. "support": {
  5821. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5822. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5823. },
  5824. "time": "2020-06-27T09:03:43+00:00"
  5825. },
  5826. {
  5827. "name": "phpdocumentor/reflection-docblock",
  5828. "version": "5.2.2",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5832. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  5837. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  5838. "shasum": ""
  5839. },
  5840. "require": {
  5841. "ext-filter": "*",
  5842. "php": "^7.2 || ^8.0",
  5843. "phpdocumentor/reflection-common": "^2.2",
  5844. "phpdocumentor/type-resolver": "^1.3",
  5845. "webmozart/assert": "^1.9.1"
  5846. },
  5847. "require-dev": {
  5848. "mockery/mockery": "~1.3.2"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-master": "5.x-dev"
  5854. }
  5855. },
  5856. "autoload": {
  5857. "psr-4": {
  5858. "phpDocumentor\\Reflection\\": "src"
  5859. }
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "MIT"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Mike van Riel",
  5868. "email": "me@mikevanriel.com"
  5869. },
  5870. {
  5871. "name": "Jaap van Otterdijk",
  5872. "email": "account@ijaap.nl"
  5873. }
  5874. ],
  5875. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5876. "support": {
  5877. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5878. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  5879. },
  5880. "time": "2020-09-03T19:13:55+00:00"
  5881. },
  5882. {
  5883. "name": "phpdocumentor/type-resolver",
  5884. "version": "1.4.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5888. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  5893. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": "^7.2 || ^8.0",
  5898. "phpdocumentor/reflection-common": "^2.0"
  5899. },
  5900. "require-dev": {
  5901. "ext-tokenizer": "*"
  5902. },
  5903. "type": "library",
  5904. "extra": {
  5905. "branch-alias": {
  5906. "dev-1.x": "1.x-dev"
  5907. }
  5908. },
  5909. "autoload": {
  5910. "psr-4": {
  5911. "phpDocumentor\\Reflection\\": "src"
  5912. }
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "Mike van Riel",
  5921. "email": "me@mikevanriel.com"
  5922. }
  5923. ],
  5924. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5925. "support": {
  5926. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5927. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  5928. },
  5929. "time": "2020-09-17T18:55:26+00:00"
  5930. },
  5931. {
  5932. "name": "phpspec/prophecy",
  5933. "version": "1.12.2",
  5934. "source": {
  5935. "type": "git",
  5936. "url": "https://github.com/phpspec/prophecy.git",
  5937. "reference": "245710e971a030f42e08f4912863805570f23d39"
  5938. },
  5939. "dist": {
  5940. "type": "zip",
  5941. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  5942. "reference": "245710e971a030f42e08f4912863805570f23d39",
  5943. "shasum": ""
  5944. },
  5945. "require": {
  5946. "doctrine/instantiator": "^1.2",
  5947. "php": "^7.2 || ~8.0, <8.1",
  5948. "phpdocumentor/reflection-docblock": "^5.2",
  5949. "sebastian/comparator": "^3.0 || ^4.0",
  5950. "sebastian/recursion-context": "^3.0 || ^4.0"
  5951. },
  5952. "require-dev": {
  5953. "phpspec/phpspec": "^6.0",
  5954. "phpunit/phpunit": "^8.0 || ^9.0"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "branch-alias": {
  5959. "dev-master": "1.11.x-dev"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "psr-4": {
  5964. "Prophecy\\": "src/Prophecy"
  5965. }
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Konstantin Kudryashov",
  5974. "email": "ever.zet@gmail.com",
  5975. "homepage": "http://everzet.com"
  5976. },
  5977. {
  5978. "name": "Marcello Duarte",
  5979. "email": "marcello.duarte@gmail.com"
  5980. }
  5981. ],
  5982. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5983. "homepage": "https://github.com/phpspec/prophecy",
  5984. "keywords": [
  5985. "Double",
  5986. "Dummy",
  5987. "fake",
  5988. "mock",
  5989. "spy",
  5990. "stub"
  5991. ],
  5992. "support": {
  5993. "issues": "https://github.com/phpspec/prophecy/issues",
  5994. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  5995. },
  5996. "time": "2020-12-19T10:15:11+00:00"
  5997. },
  5998. {
  5999. "name": "phpunit/php-code-coverage",
  6000. "version": "9.2.5",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6004. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6009. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6010. "shasum": ""
  6011. },
  6012. "require": {
  6013. "ext-dom": "*",
  6014. "ext-libxml": "*",
  6015. "ext-xmlwriter": "*",
  6016. "nikic/php-parser": "^4.10.2",
  6017. "php": ">=7.3",
  6018. "phpunit/php-file-iterator": "^3.0.3",
  6019. "phpunit/php-text-template": "^2.0.2",
  6020. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6021. "sebastian/complexity": "^2.0",
  6022. "sebastian/environment": "^5.1.2",
  6023. "sebastian/lines-of-code": "^1.0.3",
  6024. "sebastian/version": "^3.0.1",
  6025. "theseer/tokenizer": "^1.2.0"
  6026. },
  6027. "require-dev": {
  6028. "phpunit/phpunit": "^9.3"
  6029. },
  6030. "suggest": {
  6031. "ext-pcov": "*",
  6032. "ext-xdebug": "*"
  6033. },
  6034. "type": "library",
  6035. "extra": {
  6036. "branch-alias": {
  6037. "dev-master": "9.2-dev"
  6038. }
  6039. },
  6040. "autoload": {
  6041. "classmap": [
  6042. "src/"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "BSD-3-Clause"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Sebastian Bergmann",
  6052. "email": "sebastian@phpunit.de",
  6053. "role": "lead"
  6054. }
  6055. ],
  6056. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6057. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6058. "keywords": [
  6059. "coverage",
  6060. "testing",
  6061. "xunit"
  6062. ],
  6063. "support": {
  6064. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6065. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  6066. },
  6067. "funding": [
  6068. {
  6069. "url": "https://github.com/sebastianbergmann",
  6070. "type": "github"
  6071. }
  6072. ],
  6073. "time": "2020-11-28T06:44:49+00:00"
  6074. },
  6075. {
  6076. "name": "phpunit/php-file-iterator",
  6077. "version": "3.0.5",
  6078. "source": {
  6079. "type": "git",
  6080. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6081. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  6082. },
  6083. "dist": {
  6084. "type": "zip",
  6085. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  6086. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  6087. "shasum": ""
  6088. },
  6089. "require": {
  6090. "php": ">=7.3"
  6091. },
  6092. "require-dev": {
  6093. "phpunit/phpunit": "^9.3"
  6094. },
  6095. "type": "library",
  6096. "extra": {
  6097. "branch-alias": {
  6098. "dev-master": "3.0-dev"
  6099. }
  6100. },
  6101. "autoload": {
  6102. "classmap": [
  6103. "src/"
  6104. ]
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "BSD-3-Clause"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Sebastian Bergmann",
  6113. "email": "sebastian@phpunit.de",
  6114. "role": "lead"
  6115. }
  6116. ],
  6117. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6118. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6119. "keywords": [
  6120. "filesystem",
  6121. "iterator"
  6122. ],
  6123. "support": {
  6124. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6125. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  6126. },
  6127. "funding": [
  6128. {
  6129. "url": "https://github.com/sebastianbergmann",
  6130. "type": "github"
  6131. }
  6132. ],
  6133. "time": "2020-09-28T05:57:25+00:00"
  6134. },
  6135. {
  6136. "name": "phpunit/php-invoker",
  6137. "version": "3.1.1",
  6138. "source": {
  6139. "type": "git",
  6140. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6141. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6142. },
  6143. "dist": {
  6144. "type": "zip",
  6145. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6146. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6147. "shasum": ""
  6148. },
  6149. "require": {
  6150. "php": ">=7.3"
  6151. },
  6152. "require-dev": {
  6153. "ext-pcntl": "*",
  6154. "phpunit/phpunit": "^9.3"
  6155. },
  6156. "suggest": {
  6157. "ext-pcntl": "*"
  6158. },
  6159. "type": "library",
  6160. "extra": {
  6161. "branch-alias": {
  6162. "dev-master": "3.1-dev"
  6163. }
  6164. },
  6165. "autoload": {
  6166. "classmap": [
  6167. "src/"
  6168. ]
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "BSD-3-Clause"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Sebastian Bergmann",
  6177. "email": "sebastian@phpunit.de",
  6178. "role": "lead"
  6179. }
  6180. ],
  6181. "description": "Invoke callables with a timeout",
  6182. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6183. "keywords": [
  6184. "process"
  6185. ],
  6186. "support": {
  6187. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6188. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6189. },
  6190. "funding": [
  6191. {
  6192. "url": "https://github.com/sebastianbergmann",
  6193. "type": "github"
  6194. }
  6195. ],
  6196. "time": "2020-09-28T05:58:55+00:00"
  6197. },
  6198. {
  6199. "name": "phpunit/php-text-template",
  6200. "version": "2.0.4",
  6201. "source": {
  6202. "type": "git",
  6203. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6204. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6205. },
  6206. "dist": {
  6207. "type": "zip",
  6208. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6209. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6210. "shasum": ""
  6211. },
  6212. "require": {
  6213. "php": ">=7.3"
  6214. },
  6215. "require-dev": {
  6216. "phpunit/phpunit": "^9.3"
  6217. },
  6218. "type": "library",
  6219. "extra": {
  6220. "branch-alias": {
  6221. "dev-master": "2.0-dev"
  6222. }
  6223. },
  6224. "autoload": {
  6225. "classmap": [
  6226. "src/"
  6227. ]
  6228. },
  6229. "notification-url": "https://packagist.org/downloads/",
  6230. "license": [
  6231. "BSD-3-Clause"
  6232. ],
  6233. "authors": [
  6234. {
  6235. "name": "Sebastian Bergmann",
  6236. "email": "sebastian@phpunit.de",
  6237. "role": "lead"
  6238. }
  6239. ],
  6240. "description": "Simple template engine.",
  6241. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6242. "keywords": [
  6243. "template"
  6244. ],
  6245. "support": {
  6246. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6247. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6248. },
  6249. "funding": [
  6250. {
  6251. "url": "https://github.com/sebastianbergmann",
  6252. "type": "github"
  6253. }
  6254. ],
  6255. "time": "2020-10-26T05:33:50+00:00"
  6256. },
  6257. {
  6258. "name": "phpunit/php-timer",
  6259. "version": "5.0.3",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6263. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6268. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "php": ">=7.3"
  6273. },
  6274. "require-dev": {
  6275. "phpunit/phpunit": "^9.3"
  6276. },
  6277. "type": "library",
  6278. "extra": {
  6279. "branch-alias": {
  6280. "dev-master": "5.0-dev"
  6281. }
  6282. },
  6283. "autoload": {
  6284. "classmap": [
  6285. "src/"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "BSD-3-Clause"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Sebastian Bergmann",
  6295. "email": "sebastian@phpunit.de",
  6296. "role": "lead"
  6297. }
  6298. ],
  6299. "description": "Utility class for timing",
  6300. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6301. "keywords": [
  6302. "timer"
  6303. ],
  6304. "support": {
  6305. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6306. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6307. },
  6308. "funding": [
  6309. {
  6310. "url": "https://github.com/sebastianbergmann",
  6311. "type": "github"
  6312. }
  6313. ],
  6314. "time": "2020-10-26T13:16:10+00:00"
  6315. },
  6316. {
  6317. "name": "phpunit/phpunit",
  6318. "version": "9.5.2",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6322. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
  6327. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
  6328. "shasum": ""
  6329. },
  6330. "require": {
  6331. "doctrine/instantiator": "^1.3.1",
  6332. "ext-dom": "*",
  6333. "ext-json": "*",
  6334. "ext-libxml": "*",
  6335. "ext-mbstring": "*",
  6336. "ext-xml": "*",
  6337. "ext-xmlwriter": "*",
  6338. "myclabs/deep-copy": "^1.10.1",
  6339. "phar-io/manifest": "^2.0.1",
  6340. "phar-io/version": "^3.0.2",
  6341. "php": ">=7.3",
  6342. "phpspec/prophecy": "^1.12.1",
  6343. "phpunit/php-code-coverage": "^9.2.3",
  6344. "phpunit/php-file-iterator": "^3.0.5",
  6345. "phpunit/php-invoker": "^3.1.1",
  6346. "phpunit/php-text-template": "^2.0.3",
  6347. "phpunit/php-timer": "^5.0.2",
  6348. "sebastian/cli-parser": "^1.0.1",
  6349. "sebastian/code-unit": "^1.0.6",
  6350. "sebastian/comparator": "^4.0.5",
  6351. "sebastian/diff": "^4.0.3",
  6352. "sebastian/environment": "^5.1.3",
  6353. "sebastian/exporter": "^4.0.3",
  6354. "sebastian/global-state": "^5.0.1",
  6355. "sebastian/object-enumerator": "^4.0.3",
  6356. "sebastian/resource-operations": "^3.0.3",
  6357. "sebastian/type": "^2.3",
  6358. "sebastian/version": "^3.0.2"
  6359. },
  6360. "require-dev": {
  6361. "ext-pdo": "*",
  6362. "phpspec/prophecy-phpunit": "^2.0.1"
  6363. },
  6364. "suggest": {
  6365. "ext-soap": "*",
  6366. "ext-xdebug": "*"
  6367. },
  6368. "bin": [
  6369. "phpunit"
  6370. ],
  6371. "type": "library",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-master": "9.5-dev"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "classmap": [
  6379. "src/"
  6380. ],
  6381. "files": [
  6382. "src/Framework/Assert/Functions.php"
  6383. ]
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "BSD-3-Clause"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "Sebastian Bergmann",
  6392. "email": "sebastian@phpunit.de",
  6393. "role": "lead"
  6394. }
  6395. ],
  6396. "description": "The PHP Unit Testing framework.",
  6397. "homepage": "https://phpunit.de/",
  6398. "keywords": [
  6399. "phpunit",
  6400. "testing",
  6401. "xunit"
  6402. ],
  6403. "support": {
  6404. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6405. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://phpunit.de/donate.html",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/sebastianbergmann",
  6414. "type": "github"
  6415. }
  6416. ],
  6417. "time": "2021-02-02T14:45:58+00:00"
  6418. },
  6419. {
  6420. "name": "sebastian/cli-parser",
  6421. "version": "1.0.1",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6425. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6430. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "php": ">=7.3"
  6435. },
  6436. "require-dev": {
  6437. "phpunit/phpunit": "^9.3"
  6438. },
  6439. "type": "library",
  6440. "extra": {
  6441. "branch-alias": {
  6442. "dev-master": "1.0-dev"
  6443. }
  6444. },
  6445. "autoload": {
  6446. "classmap": [
  6447. "src/"
  6448. ]
  6449. },
  6450. "notification-url": "https://packagist.org/downloads/",
  6451. "license": [
  6452. "BSD-3-Clause"
  6453. ],
  6454. "authors": [
  6455. {
  6456. "name": "Sebastian Bergmann",
  6457. "email": "sebastian@phpunit.de",
  6458. "role": "lead"
  6459. }
  6460. ],
  6461. "description": "Library for parsing CLI options",
  6462. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6463. "support": {
  6464. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6465. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6466. },
  6467. "funding": [
  6468. {
  6469. "url": "https://github.com/sebastianbergmann",
  6470. "type": "github"
  6471. }
  6472. ],
  6473. "time": "2020-09-28T06:08:49+00:00"
  6474. },
  6475. {
  6476. "name": "sebastian/code-unit",
  6477. "version": "1.0.8",
  6478. "source": {
  6479. "type": "git",
  6480. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6481. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6482. },
  6483. "dist": {
  6484. "type": "zip",
  6485. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6486. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6487. "shasum": ""
  6488. },
  6489. "require": {
  6490. "php": ">=7.3"
  6491. },
  6492. "require-dev": {
  6493. "phpunit/phpunit": "^9.3"
  6494. },
  6495. "type": "library",
  6496. "extra": {
  6497. "branch-alias": {
  6498. "dev-master": "1.0-dev"
  6499. }
  6500. },
  6501. "autoload": {
  6502. "classmap": [
  6503. "src/"
  6504. ]
  6505. },
  6506. "notification-url": "https://packagist.org/downloads/",
  6507. "license": [
  6508. "BSD-3-Clause"
  6509. ],
  6510. "authors": [
  6511. {
  6512. "name": "Sebastian Bergmann",
  6513. "email": "sebastian@phpunit.de",
  6514. "role": "lead"
  6515. }
  6516. ],
  6517. "description": "Collection of value objects that represent the PHP code units",
  6518. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6519. "support": {
  6520. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6521. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6522. },
  6523. "funding": [
  6524. {
  6525. "url": "https://github.com/sebastianbergmann",
  6526. "type": "github"
  6527. }
  6528. ],
  6529. "time": "2020-10-26T13:08:54+00:00"
  6530. },
  6531. {
  6532. "name": "sebastian/code-unit-reverse-lookup",
  6533. "version": "2.0.3",
  6534. "source": {
  6535. "type": "git",
  6536. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6537. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6538. },
  6539. "dist": {
  6540. "type": "zip",
  6541. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6542. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6543. "shasum": ""
  6544. },
  6545. "require": {
  6546. "php": ">=7.3"
  6547. },
  6548. "require-dev": {
  6549. "phpunit/phpunit": "^9.3"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "branch-alias": {
  6554. "dev-master": "2.0-dev"
  6555. }
  6556. },
  6557. "autoload": {
  6558. "classmap": [
  6559. "src/"
  6560. ]
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "BSD-3-Clause"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Sebastian Bergmann",
  6569. "email": "sebastian@phpunit.de"
  6570. }
  6571. ],
  6572. "description": "Looks up which function or method a line of code belongs to",
  6573. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6574. "support": {
  6575. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6576. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6577. },
  6578. "funding": [
  6579. {
  6580. "url": "https://github.com/sebastianbergmann",
  6581. "type": "github"
  6582. }
  6583. ],
  6584. "time": "2020-09-28T05:30:19+00:00"
  6585. },
  6586. {
  6587. "name": "sebastian/comparator",
  6588. "version": "4.0.6",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://github.com/sebastianbergmann/comparator.git",
  6592. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  6597. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  6598. "shasum": ""
  6599. },
  6600. "require": {
  6601. "php": ">=7.3",
  6602. "sebastian/diff": "^4.0",
  6603. "sebastian/exporter": "^4.0"
  6604. },
  6605. "require-dev": {
  6606. "phpunit/phpunit": "^9.3"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "4.0-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "classmap": [
  6616. "src/"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "BSD-3-Clause"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Sebastian Bergmann",
  6626. "email": "sebastian@phpunit.de"
  6627. },
  6628. {
  6629. "name": "Jeff Welch",
  6630. "email": "whatthejeff@gmail.com"
  6631. },
  6632. {
  6633. "name": "Volker Dusch",
  6634. "email": "github@wallbash.com"
  6635. },
  6636. {
  6637. "name": "Bernhard Schussek",
  6638. "email": "bschussek@2bepublished.at"
  6639. }
  6640. ],
  6641. "description": "Provides the functionality to compare PHP values for equality",
  6642. "homepage": "https://github.com/sebastianbergmann/comparator",
  6643. "keywords": [
  6644. "comparator",
  6645. "compare",
  6646. "equality"
  6647. ],
  6648. "support": {
  6649. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6650. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  6651. },
  6652. "funding": [
  6653. {
  6654. "url": "https://github.com/sebastianbergmann",
  6655. "type": "github"
  6656. }
  6657. ],
  6658. "time": "2020-10-26T15:49:45+00:00"
  6659. },
  6660. {
  6661. "name": "sebastian/complexity",
  6662. "version": "2.0.2",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/sebastianbergmann/complexity.git",
  6666. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6671. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "nikic/php-parser": "^4.7",
  6676. "php": ">=7.3"
  6677. },
  6678. "require-dev": {
  6679. "phpunit/phpunit": "^9.3"
  6680. },
  6681. "type": "library",
  6682. "extra": {
  6683. "branch-alias": {
  6684. "dev-master": "2.0-dev"
  6685. }
  6686. },
  6687. "autoload": {
  6688. "classmap": [
  6689. "src/"
  6690. ]
  6691. },
  6692. "notification-url": "https://packagist.org/downloads/",
  6693. "license": [
  6694. "BSD-3-Clause"
  6695. ],
  6696. "authors": [
  6697. {
  6698. "name": "Sebastian Bergmann",
  6699. "email": "sebastian@phpunit.de",
  6700. "role": "lead"
  6701. }
  6702. ],
  6703. "description": "Library for calculating the complexity of PHP code units",
  6704. "homepage": "https://github.com/sebastianbergmann/complexity",
  6705. "support": {
  6706. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6707. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://github.com/sebastianbergmann",
  6712. "type": "github"
  6713. }
  6714. ],
  6715. "time": "2020-10-26T15:52:27+00:00"
  6716. },
  6717. {
  6718. "name": "sebastian/diff",
  6719. "version": "4.0.4",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/sebastianbergmann/diff.git",
  6723. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6728. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": ">=7.3"
  6733. },
  6734. "require-dev": {
  6735. "phpunit/phpunit": "^9.3",
  6736. "symfony/process": "^4.2 || ^5"
  6737. },
  6738. "type": "library",
  6739. "extra": {
  6740. "branch-alias": {
  6741. "dev-master": "4.0-dev"
  6742. }
  6743. },
  6744. "autoload": {
  6745. "classmap": [
  6746. "src/"
  6747. ]
  6748. },
  6749. "notification-url": "https://packagist.org/downloads/",
  6750. "license": [
  6751. "BSD-3-Clause"
  6752. ],
  6753. "authors": [
  6754. {
  6755. "name": "Sebastian Bergmann",
  6756. "email": "sebastian@phpunit.de"
  6757. },
  6758. {
  6759. "name": "Kore Nordmann",
  6760. "email": "mail@kore-nordmann.de"
  6761. }
  6762. ],
  6763. "description": "Diff implementation",
  6764. "homepage": "https://github.com/sebastianbergmann/diff",
  6765. "keywords": [
  6766. "diff",
  6767. "udiff",
  6768. "unidiff",
  6769. "unified diff"
  6770. ],
  6771. "support": {
  6772. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6773. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6774. },
  6775. "funding": [
  6776. {
  6777. "url": "https://github.com/sebastianbergmann",
  6778. "type": "github"
  6779. }
  6780. ],
  6781. "time": "2020-10-26T13:10:38+00:00"
  6782. },
  6783. {
  6784. "name": "sebastian/environment",
  6785. "version": "5.1.3",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/sebastianbergmann/environment.git",
  6789. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  6794. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "php": ">=7.3"
  6799. },
  6800. "require-dev": {
  6801. "phpunit/phpunit": "^9.3"
  6802. },
  6803. "suggest": {
  6804. "ext-posix": "*"
  6805. },
  6806. "type": "library",
  6807. "extra": {
  6808. "branch-alias": {
  6809. "dev-master": "5.1-dev"
  6810. }
  6811. },
  6812. "autoload": {
  6813. "classmap": [
  6814. "src/"
  6815. ]
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "BSD-3-Clause"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "Sebastian Bergmann",
  6824. "email": "sebastian@phpunit.de"
  6825. }
  6826. ],
  6827. "description": "Provides functionality to handle HHVM/PHP environments",
  6828. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6829. "keywords": [
  6830. "Xdebug",
  6831. "environment",
  6832. "hhvm"
  6833. ],
  6834. "support": {
  6835. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6836. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  6837. },
  6838. "funding": [
  6839. {
  6840. "url": "https://github.com/sebastianbergmann",
  6841. "type": "github"
  6842. }
  6843. ],
  6844. "time": "2020-09-28T05:52:38+00:00"
  6845. },
  6846. {
  6847. "name": "sebastian/exporter",
  6848. "version": "4.0.3",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/sebastianbergmann/exporter.git",
  6852. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  6857. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "php": ">=7.3",
  6862. "sebastian/recursion-context": "^4.0"
  6863. },
  6864. "require-dev": {
  6865. "ext-mbstring": "*",
  6866. "phpunit/phpunit": "^9.3"
  6867. },
  6868. "type": "library",
  6869. "extra": {
  6870. "branch-alias": {
  6871. "dev-master": "4.0-dev"
  6872. }
  6873. },
  6874. "autoload": {
  6875. "classmap": [
  6876. "src/"
  6877. ]
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "BSD-3-Clause"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Sebastian Bergmann",
  6886. "email": "sebastian@phpunit.de"
  6887. },
  6888. {
  6889. "name": "Jeff Welch",
  6890. "email": "whatthejeff@gmail.com"
  6891. },
  6892. {
  6893. "name": "Volker Dusch",
  6894. "email": "github@wallbash.com"
  6895. },
  6896. {
  6897. "name": "Adam Harvey",
  6898. "email": "aharvey@php.net"
  6899. },
  6900. {
  6901. "name": "Bernhard Schussek",
  6902. "email": "bschussek@gmail.com"
  6903. }
  6904. ],
  6905. "description": "Provides the functionality to export PHP variables for visualization",
  6906. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6907. "keywords": [
  6908. "export",
  6909. "exporter"
  6910. ],
  6911. "support": {
  6912. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  6913. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  6914. },
  6915. "funding": [
  6916. {
  6917. "url": "https://github.com/sebastianbergmann",
  6918. "type": "github"
  6919. }
  6920. ],
  6921. "time": "2020-09-28T05:24:23+00:00"
  6922. },
  6923. {
  6924. "name": "sebastian/global-state",
  6925. "version": "5.0.2",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/sebastianbergmann/global-state.git",
  6929. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  6934. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "php": ">=7.3",
  6939. "sebastian/object-reflector": "^2.0",
  6940. "sebastian/recursion-context": "^4.0"
  6941. },
  6942. "require-dev": {
  6943. "ext-dom": "*",
  6944. "phpunit/phpunit": "^9.3"
  6945. },
  6946. "suggest": {
  6947. "ext-uopz": "*"
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "branch-alias": {
  6952. "dev-master": "5.0-dev"
  6953. }
  6954. },
  6955. "autoload": {
  6956. "classmap": [
  6957. "src/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "BSD-3-Clause"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Sebastian Bergmann",
  6967. "email": "sebastian@phpunit.de"
  6968. }
  6969. ],
  6970. "description": "Snapshotting of global state",
  6971. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6972. "keywords": [
  6973. "global state"
  6974. ],
  6975. "support": {
  6976. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  6977. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  6978. },
  6979. "funding": [
  6980. {
  6981. "url": "https://github.com/sebastianbergmann",
  6982. "type": "github"
  6983. }
  6984. ],
  6985. "time": "2020-10-26T15:55:19+00:00"
  6986. },
  6987. {
  6988. "name": "sebastian/lines-of-code",
  6989. "version": "1.0.3",
  6990. "source": {
  6991. "type": "git",
  6992. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  6993. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  6994. },
  6995. "dist": {
  6996. "type": "zip",
  6997. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  6998. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  6999. "shasum": ""
  7000. },
  7001. "require": {
  7002. "nikic/php-parser": "^4.6",
  7003. "php": ">=7.3"
  7004. },
  7005. "require-dev": {
  7006. "phpunit/phpunit": "^9.3"
  7007. },
  7008. "type": "library",
  7009. "extra": {
  7010. "branch-alias": {
  7011. "dev-master": "1.0-dev"
  7012. }
  7013. },
  7014. "autoload": {
  7015. "classmap": [
  7016. "src/"
  7017. ]
  7018. },
  7019. "notification-url": "https://packagist.org/downloads/",
  7020. "license": [
  7021. "BSD-3-Clause"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Sebastian Bergmann",
  7026. "email": "sebastian@phpunit.de",
  7027. "role": "lead"
  7028. }
  7029. ],
  7030. "description": "Library for counting the lines of code in PHP source code",
  7031. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7032. "support": {
  7033. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7034. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7035. },
  7036. "funding": [
  7037. {
  7038. "url": "https://github.com/sebastianbergmann",
  7039. "type": "github"
  7040. }
  7041. ],
  7042. "time": "2020-11-28T06:42:11+00:00"
  7043. },
  7044. {
  7045. "name": "sebastian/object-enumerator",
  7046. "version": "4.0.4",
  7047. "source": {
  7048. "type": "git",
  7049. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7050. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7051. },
  7052. "dist": {
  7053. "type": "zip",
  7054. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7055. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7056. "shasum": ""
  7057. },
  7058. "require": {
  7059. "php": ">=7.3",
  7060. "sebastian/object-reflector": "^2.0",
  7061. "sebastian/recursion-context": "^4.0"
  7062. },
  7063. "require-dev": {
  7064. "phpunit/phpunit": "^9.3"
  7065. },
  7066. "type": "library",
  7067. "extra": {
  7068. "branch-alias": {
  7069. "dev-master": "4.0-dev"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "classmap": [
  7074. "src/"
  7075. ]
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "BSD-3-Clause"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Sebastian Bergmann",
  7084. "email": "sebastian@phpunit.de"
  7085. }
  7086. ],
  7087. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7088. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7089. "support": {
  7090. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7091. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7092. },
  7093. "funding": [
  7094. {
  7095. "url": "https://github.com/sebastianbergmann",
  7096. "type": "github"
  7097. }
  7098. ],
  7099. "time": "2020-10-26T13:12:34+00:00"
  7100. },
  7101. {
  7102. "name": "sebastian/object-reflector",
  7103. "version": "2.0.4",
  7104. "source": {
  7105. "type": "git",
  7106. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7107. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7108. },
  7109. "dist": {
  7110. "type": "zip",
  7111. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7112. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7113. "shasum": ""
  7114. },
  7115. "require": {
  7116. "php": ">=7.3"
  7117. },
  7118. "require-dev": {
  7119. "phpunit/phpunit": "^9.3"
  7120. },
  7121. "type": "library",
  7122. "extra": {
  7123. "branch-alias": {
  7124. "dev-master": "2.0-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "classmap": [
  7129. "src/"
  7130. ]
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "BSD-3-Clause"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Sebastian Bergmann",
  7139. "email": "sebastian@phpunit.de"
  7140. }
  7141. ],
  7142. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7143. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7144. "support": {
  7145. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7146. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://github.com/sebastianbergmann",
  7151. "type": "github"
  7152. }
  7153. ],
  7154. "time": "2020-10-26T13:14:26+00:00"
  7155. },
  7156. {
  7157. "name": "sebastian/recursion-context",
  7158. "version": "4.0.4",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7162. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7167. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.3"
  7172. },
  7173. "require-dev": {
  7174. "phpunit/phpunit": "^9.3"
  7175. },
  7176. "type": "library",
  7177. "extra": {
  7178. "branch-alias": {
  7179. "dev-master": "4.0-dev"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "classmap": [
  7184. "src/"
  7185. ]
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "BSD-3-Clause"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Sebastian Bergmann",
  7194. "email": "sebastian@phpunit.de"
  7195. },
  7196. {
  7197. "name": "Jeff Welch",
  7198. "email": "whatthejeff@gmail.com"
  7199. },
  7200. {
  7201. "name": "Adam Harvey",
  7202. "email": "aharvey@php.net"
  7203. }
  7204. ],
  7205. "description": "Provides functionality to recursively process PHP variables",
  7206. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7207. "support": {
  7208. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7209. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7210. },
  7211. "funding": [
  7212. {
  7213. "url": "https://github.com/sebastianbergmann",
  7214. "type": "github"
  7215. }
  7216. ],
  7217. "time": "2020-10-26T13:17:30+00:00"
  7218. },
  7219. {
  7220. "name": "sebastian/resource-operations",
  7221. "version": "3.0.3",
  7222. "source": {
  7223. "type": "git",
  7224. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7225. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7226. },
  7227. "dist": {
  7228. "type": "zip",
  7229. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7230. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7231. "shasum": ""
  7232. },
  7233. "require": {
  7234. "php": ">=7.3"
  7235. },
  7236. "require-dev": {
  7237. "phpunit/phpunit": "^9.0"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "branch-alias": {
  7242. "dev-master": "3.0-dev"
  7243. }
  7244. },
  7245. "autoload": {
  7246. "classmap": [
  7247. "src/"
  7248. ]
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "BSD-3-Clause"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Sebastian Bergmann",
  7257. "email": "sebastian@phpunit.de"
  7258. }
  7259. ],
  7260. "description": "Provides a list of PHP built-in functions that operate on resources",
  7261. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7262. "support": {
  7263. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7264. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://github.com/sebastianbergmann",
  7269. "type": "github"
  7270. }
  7271. ],
  7272. "time": "2020-09-28T06:45:17+00:00"
  7273. },
  7274. {
  7275. "name": "sebastian/type",
  7276. "version": "2.3.1",
  7277. "source": {
  7278. "type": "git",
  7279. "url": "https://github.com/sebastianbergmann/type.git",
  7280. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  7281. },
  7282. "dist": {
  7283. "type": "zip",
  7284. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7285. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7286. "shasum": ""
  7287. },
  7288. "require": {
  7289. "php": ">=7.3"
  7290. },
  7291. "require-dev": {
  7292. "phpunit/phpunit": "^9.3"
  7293. },
  7294. "type": "library",
  7295. "extra": {
  7296. "branch-alias": {
  7297. "dev-master": "2.3-dev"
  7298. }
  7299. },
  7300. "autoload": {
  7301. "classmap": [
  7302. "src/"
  7303. ]
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "BSD-3-Clause"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Sebastian Bergmann",
  7312. "email": "sebastian@phpunit.de",
  7313. "role": "lead"
  7314. }
  7315. ],
  7316. "description": "Collection of value objects that represent the types of the PHP type system",
  7317. "homepage": "https://github.com/sebastianbergmann/type",
  7318. "support": {
  7319. "issues": "https://github.com/sebastianbergmann/type/issues",
  7320. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://github.com/sebastianbergmann",
  7325. "type": "github"
  7326. }
  7327. ],
  7328. "time": "2020-10-26T13:18:59+00:00"
  7329. },
  7330. {
  7331. "name": "sebastian/version",
  7332. "version": "3.0.2",
  7333. "source": {
  7334. "type": "git",
  7335. "url": "https://github.com/sebastianbergmann/version.git",
  7336. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7337. },
  7338. "dist": {
  7339. "type": "zip",
  7340. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7341. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7342. "shasum": ""
  7343. },
  7344. "require": {
  7345. "php": ">=7.3"
  7346. },
  7347. "type": "library",
  7348. "extra": {
  7349. "branch-alias": {
  7350. "dev-master": "3.0-dev"
  7351. }
  7352. },
  7353. "autoload": {
  7354. "classmap": [
  7355. "src/"
  7356. ]
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "BSD-3-Clause"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Sebastian Bergmann",
  7365. "email": "sebastian@phpunit.de",
  7366. "role": "lead"
  7367. }
  7368. ],
  7369. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7370. "homepage": "https://github.com/sebastianbergmann/version",
  7371. "support": {
  7372. "issues": "https://github.com/sebastianbergmann/version/issues",
  7373. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7374. },
  7375. "funding": [
  7376. {
  7377. "url": "https://github.com/sebastianbergmann",
  7378. "type": "github"
  7379. }
  7380. ],
  7381. "time": "2020-09-28T06:39:44+00:00"
  7382. },
  7383. {
  7384. "name": "theseer/tokenizer",
  7385. "version": "1.2.0",
  7386. "source": {
  7387. "type": "git",
  7388. "url": "https://github.com/theseer/tokenizer.git",
  7389. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  7390. },
  7391. "dist": {
  7392. "type": "zip",
  7393. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  7394. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  7395. "shasum": ""
  7396. },
  7397. "require": {
  7398. "ext-dom": "*",
  7399. "ext-tokenizer": "*",
  7400. "ext-xmlwriter": "*",
  7401. "php": "^7.2 || ^8.0"
  7402. },
  7403. "type": "library",
  7404. "autoload": {
  7405. "classmap": [
  7406. "src/"
  7407. ]
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "BSD-3-Clause"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Arne Blankerts",
  7416. "email": "arne@blankerts.de",
  7417. "role": "Developer"
  7418. }
  7419. ],
  7420. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7421. "support": {
  7422. "issues": "https://github.com/theseer/tokenizer/issues",
  7423. "source": "https://github.com/theseer/tokenizer/tree/master"
  7424. },
  7425. "funding": [
  7426. {
  7427. "url": "https://github.com/theseer",
  7428. "type": "github"
  7429. }
  7430. ],
  7431. "time": "2020-07-12T23:59:07+00:00"
  7432. }
  7433. ],
  7434. "aliases": [],
  7435. "minimum-stability": "dev",
  7436. "stability-flags": [],
  7437. "prefer-stable": true,
  7438. "prefer-lowest": false,
  7439. "platform": {
  7440. "php": "^7.3|^8.0"
  7441. },
  7442. "platform-dev": [],
  7443. "plugin-api-version": "2.0.0"
  7444. }