composer.lock 243 KB

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