composer.lock 243 KB

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