composer.lock 371 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319
  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": "9fb48c117bc3478160f1b69ad28ec904",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  65. },
  66. "time": "2020-10-30T02:02:47+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.1.2",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "1d187c71587c97520c00491f626e0f255144953e"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/1d187c71587c97520c00491f626e0f255144953e",
  141. "reference": "1d187c71587c97520c00491f626e0f255144953e",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.0",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-04-07T01:06:46+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "1.11.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  259. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-05-25T09:01:55+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.1",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  364. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "8.2.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  387. "vimeo/psalm": "4.6.4"
  388. },
  389. "suggest": {
  390. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  391. },
  392. "bin": [
  393. "bin/doctrine-dbal"
  394. ],
  395. "type": "library",
  396. "autoload": {
  397. "psr-4": {
  398. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "authors": [
  406. {
  407. "name": "Guilherme Blanco",
  408. "email": "guilhermeblanco@gmail.com"
  409. },
  410. {
  411. "name": "Roman Borschel",
  412. "email": "roman@code-factory.org"
  413. },
  414. {
  415. "name": "Benjamin Eberlei",
  416. "email": "kontakt@beberlei.de"
  417. },
  418. {
  419. "name": "Jonathan Wage",
  420. "email": "jonwage@gmail.com"
  421. }
  422. ],
  423. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  424. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  425. "keywords": [
  426. "abstraction",
  427. "database",
  428. "db2",
  429. "dbal",
  430. "mariadb",
  431. "mssql",
  432. "mysql",
  433. "oci8",
  434. "oracle",
  435. "pdo",
  436. "pgsql",
  437. "postgresql",
  438. "queryobject",
  439. "sasql",
  440. "sql",
  441. "sqlanywhere",
  442. "sqlite",
  443. "sqlserver",
  444. "sqlsrv"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/dbal/issues",
  448. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2021-04-17T17:30:19+00:00"
  465. },
  466. {
  467. "name": "doctrine/deprecations",
  468. "version": "v0.5.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/deprecations.git",
  472. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  477. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.1|^8.0"
  488. },
  489. "require-dev": {
  490. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  491. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  492. "psr/log": "^1.0"
  493. },
  494. "suggest": {
  495. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  496. },
  497. "type": "library",
  498. "autoload": {
  499. "psr-4": {
  500. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  508. "homepage": "https://www.doctrine-project.org/",
  509. "support": {
  510. "issues": "https://github.com/doctrine/deprecations/issues",
  511. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  512. },
  513. "time": "2021-03-21T12:59:47+00:00"
  514. },
  515. {
  516. "name": "doctrine/event-manager",
  517. "version": "1.1.1",
  518. "source": {
  519. "type": "git",
  520. "url": "https://github.com/doctrine/event-manager.git",
  521. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  522. },
  523. "dist": {
  524. "type": "zip",
  525. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  526. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "shasum": "",
  528. "mirrors": [
  529. {
  530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  531. "preferred": true
  532. }
  533. ]
  534. },
  535. "require": {
  536. "php": "^7.1 || ^8.0"
  537. },
  538. "conflict": {
  539. "doctrine/common": "<2.9@dev"
  540. },
  541. "require-dev": {
  542. "doctrine/coding-standard": "^6.0",
  543. "phpunit/phpunit": "^7.0"
  544. },
  545. "type": "library",
  546. "extra": {
  547. "branch-alias": {
  548. "dev-master": "1.0.x-dev"
  549. }
  550. },
  551. "autoload": {
  552. "psr-4": {
  553. "Doctrine\\Common\\": "lib/Doctrine/Common"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Guilherme Blanco",
  563. "email": "guilhermeblanco@gmail.com"
  564. },
  565. {
  566. "name": "Roman Borschel",
  567. "email": "roman@code-factory.org"
  568. },
  569. {
  570. "name": "Benjamin Eberlei",
  571. "email": "kontakt@beberlei.de"
  572. },
  573. {
  574. "name": "Jonathan Wage",
  575. "email": "jonwage@gmail.com"
  576. },
  577. {
  578. "name": "Johannes Schmitt",
  579. "email": "schmittjoh@gmail.com"
  580. },
  581. {
  582. "name": "Marco Pivetta",
  583. "email": "ocramius@gmail.com"
  584. }
  585. ],
  586. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  587. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  588. "keywords": [
  589. "event",
  590. "event dispatcher",
  591. "event manager",
  592. "event system",
  593. "events"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/event-manager/issues",
  597. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2020-05-29T18:28:51+00:00"
  614. },
  615. {
  616. "name": "doctrine/inflector",
  617. "version": "2.0.3",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/inflector.git",
  621. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  626. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "shasum": "",
  628. "mirrors": [
  629. {
  630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  631. "preferred": true
  632. }
  633. ]
  634. },
  635. "require": {
  636. "php": "^7.2 || ^8.0"
  637. },
  638. "require-dev": {
  639. "doctrine/coding-standard": "^7.0",
  640. "phpstan/phpstan": "^0.11",
  641. "phpstan/phpstan-phpunit": "^0.11",
  642. "phpstan/phpstan-strict-rules": "^0.11",
  643. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "2.0.x-dev"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Guilherme Blanco",
  663. "email": "guilhermeblanco@gmail.com"
  664. },
  665. {
  666. "name": "Roman Borschel",
  667. "email": "roman@code-factory.org"
  668. },
  669. {
  670. "name": "Benjamin Eberlei",
  671. "email": "kontakt@beberlei.de"
  672. },
  673. {
  674. "name": "Jonathan Wage",
  675. "email": "jonwage@gmail.com"
  676. },
  677. {
  678. "name": "Johannes Schmitt",
  679. "email": "schmittjoh@gmail.com"
  680. }
  681. ],
  682. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  683. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  684. "keywords": [
  685. "inflection",
  686. "inflector",
  687. "lowercase",
  688. "manipulation",
  689. "php",
  690. "plural",
  691. "singular",
  692. "strings",
  693. "uppercase",
  694. "words"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/doctrine/inflector/issues",
  698. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  699. },
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2020-05-29T15:13:26+00:00"
  715. },
  716. {
  717. "name": "doctrine/lexer",
  718. "version": "1.2.1",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/doctrine/lexer.git",
  722. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  727. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "php": "^7.2 || ^8.0"
  738. },
  739. "require-dev": {
  740. "doctrine/coding-standard": "^6.0",
  741. "phpstan/phpstan": "^0.11.8",
  742. "phpunit/phpunit": "^8.2"
  743. },
  744. "type": "library",
  745. "extra": {
  746. "branch-alias": {
  747. "dev-master": "1.2.x-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Guilherme Blanco",
  762. "email": "guilhermeblanco@gmail.com"
  763. },
  764. {
  765. "name": "Roman Borschel",
  766. "email": "roman@code-factory.org"
  767. },
  768. {
  769. "name": "Johannes Schmitt",
  770. "email": "schmittjoh@gmail.com"
  771. }
  772. ],
  773. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  774. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  775. "keywords": [
  776. "annotations",
  777. "docblock",
  778. "lexer",
  779. "parser",
  780. "php"
  781. ],
  782. "support": {
  783. "issues": "https://github.com/doctrine/lexer/issues",
  784. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  785. },
  786. "funding": [
  787. {
  788. "url": "https://www.doctrine-project.org/sponsorship.html",
  789. "type": "custom"
  790. },
  791. {
  792. "url": "https://www.patreon.com/phpdoctrine",
  793. "type": "patreon"
  794. },
  795. {
  796. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  797. "type": "tidelift"
  798. }
  799. ],
  800. "time": "2020-05-25T17:44:05+00:00"
  801. },
  802. {
  803. "name": "dragonmantank/cron-expression",
  804. "version": "v2.3.1",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/dragonmantank/cron-expression.git",
  808. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  813. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "php": "^7.0|^8.0"
  824. },
  825. "require-dev": {
  826. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  827. },
  828. "type": "library",
  829. "extra": {
  830. "branch-alias": {
  831. "dev-master": "2.3-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Cron\\": "src/Cron/"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Michael Dowling",
  846. "email": "mtdowling@gmail.com",
  847. "homepage": "https://github.com/mtdowling"
  848. },
  849. {
  850. "name": "Chris Tankersley",
  851. "email": "chris@ctankersley.com",
  852. "homepage": "https://github.com/dragonmantank"
  853. }
  854. ],
  855. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  856. "keywords": [
  857. "cron",
  858. "schedule"
  859. ],
  860. "support": {
  861. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  862. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  863. },
  864. "funding": [
  865. {
  866. "url": "https://github.com/dragonmantank",
  867. "type": "github"
  868. }
  869. ],
  870. "time": "2020-10-13T00:52:37+00:00"
  871. },
  872. {
  873. "name": "egulias/email-validator",
  874. "version": "2.1.25",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/egulias/EmailValidator.git",
  878. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  883. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "shasum": "",
  885. "mirrors": [
  886. {
  887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  888. "preferred": true
  889. }
  890. ]
  891. },
  892. "require": {
  893. "doctrine/lexer": "^1.0.1",
  894. "php": ">=5.5",
  895. "symfony/polyfill-intl-idn": "^1.10"
  896. },
  897. "require-dev": {
  898. "dominicsayers/isemail": "^3.0.7",
  899. "phpunit/phpunit": "^4.8.36|^7.5.15",
  900. "satooshi/php-coveralls": "^1.0.1"
  901. },
  902. "suggest": {
  903. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "2.1.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Egulias\\EmailValidator\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Eduardo Gulias Davis"
  923. }
  924. ],
  925. "description": "A library for validating emails against several RFCs",
  926. "homepage": "https://github.com/egulias/EmailValidator",
  927. "keywords": [
  928. "email",
  929. "emailvalidation",
  930. "emailvalidator",
  931. "validation",
  932. "validator"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/egulias/EmailValidator/issues",
  936. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://github.com/egulias",
  941. "type": "github"
  942. }
  943. ],
  944. "time": "2020-12-29T14:50:06+00:00"
  945. },
  946. {
  947. "name": "endroid/qr-code",
  948. "version": "3.9.7",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/endroid/qr-code.git",
  952. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  957. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "shasum": "",
  959. "mirrors": [
  960. {
  961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  962. "preferred": true
  963. }
  964. ]
  965. },
  966. "require": {
  967. "bacon/bacon-qr-code": "^2.0",
  968. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  969. "myclabs/php-enum": "^1.5",
  970. "php": "^7.3||^8.0",
  971. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  972. "symfony/property-access": "^3.4||^4.4||^5.0"
  973. },
  974. "require-dev": {
  975. "endroid/quality": "^1.5.2",
  976. "setasign/fpdf": "^1.8"
  977. },
  978. "suggest": {
  979. "ext-gd": "Required for generating PNG images",
  980. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  981. "setasign/fpdf": "Required to use the FPDF writer.",
  982. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "branch-alias": {
  987. "dev-master": "3.x-dev"
  988. }
  989. },
  990. "autoload": {
  991. "psr-4": {
  992. "Endroid\\QrCode\\": "src/"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Jeroen van den Enden",
  1002. "email": "info@endroid.nl"
  1003. }
  1004. ],
  1005. "description": "Endroid QR Code",
  1006. "homepage": "https://github.com/endroid/qr-code",
  1007. "keywords": [
  1008. "bundle",
  1009. "code",
  1010. "endroid",
  1011. "php",
  1012. "qr",
  1013. "qrcode"
  1014. ],
  1015. "support": {
  1016. "issues": "https://github.com/endroid/qr-code/issues",
  1017. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1018. },
  1019. "funding": [
  1020. {
  1021. "url": "https://github.com/endroid",
  1022. "type": "github"
  1023. }
  1024. ],
  1025. "time": "2021-04-20T19:10:54+00:00"
  1026. },
  1027. {
  1028. "name": "ezyang/htmlpurifier",
  1029. "version": "v4.13.0",
  1030. "source": {
  1031. "type": "git",
  1032. "url": "https://github.com/ezyang/htmlpurifier.git",
  1033. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1034. },
  1035. "dist": {
  1036. "type": "zip",
  1037. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1038. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1039. "shasum": "",
  1040. "mirrors": [
  1041. {
  1042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1043. "preferred": true
  1044. }
  1045. ]
  1046. },
  1047. "require": {
  1048. "php": ">=5.2"
  1049. },
  1050. "require-dev": {
  1051. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1052. },
  1053. "type": "library",
  1054. "autoload": {
  1055. "psr-0": {
  1056. "HTMLPurifier": "library/"
  1057. },
  1058. "files": [
  1059. "library/HTMLPurifier.composer.php"
  1060. ],
  1061. "exclude-from-classmap": [
  1062. "/library/HTMLPurifier/Language/"
  1063. ]
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "LGPL-2.1-or-later"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Edward Z. Yang",
  1072. "email": "admin@htmlpurifier.org",
  1073. "homepage": "http://ezyang.com"
  1074. }
  1075. ],
  1076. "description": "Standards compliant HTML filter written in PHP",
  1077. "homepage": "http://htmlpurifier.org/",
  1078. "keywords": [
  1079. "html"
  1080. ],
  1081. "support": {
  1082. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1083. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1084. },
  1085. "time": "2020-06-29T00:56:53+00:00"
  1086. },
  1087. {
  1088. "name": "facade/flare-client-php",
  1089. "version": "1.8.0",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/facade/flare-client-php.git",
  1093. "reference": "69742118c037f34ee1ef86dc605be4a105d9e984"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/69742118c037f34ee1ef86dc605be4a105d9e984",
  1098. "reference": "69742118c037f34ee1ef86dc605be4a105d9e984",
  1099. "shasum": "",
  1100. "mirrors": [
  1101. {
  1102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1103. "preferred": true
  1104. }
  1105. ]
  1106. },
  1107. "require": {
  1108. "facade/ignition-contracts": "~1.0",
  1109. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1110. "php": "^7.1|^8.0",
  1111. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1112. "symfony/mime": "^3.4|^4.0|^5.1",
  1113. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1114. },
  1115. "require-dev": {
  1116. "friendsofphp/php-cs-fixer": "^2.14",
  1117. "phpunit/phpunit": "^7.5.16",
  1118. "spatie/phpunit-snapshot-assertions": "^2.0"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "1.0-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "Facade\\FlareClient\\": "src"
  1129. },
  1130. "files": [
  1131. "src/helpers.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "description": "Send PHP errors to Flare",
  1139. "homepage": "https://github.com/facade/flare-client-php",
  1140. "keywords": [
  1141. "exception",
  1142. "facade",
  1143. "flare",
  1144. "reporting"
  1145. ],
  1146. "support": {
  1147. "issues": "https://github.com/facade/flare-client-php/issues",
  1148. "source": "https://github.com/facade/flare-client-php/tree/1.8.0"
  1149. },
  1150. "funding": [
  1151. {
  1152. "url": "https://github.com/spatie",
  1153. "type": "github"
  1154. }
  1155. ],
  1156. "time": "2021-04-30T11:11:50+00:00"
  1157. },
  1158. {
  1159. "name": "facade/ignition",
  1160. "version": "2.9.0",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/facade/ignition.git",
  1164. "reference": "e7db3b601ce742568b92648818ef903904d20164"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/facade/ignition/zipball/e7db3b601ce742568b92648818ef903904d20164",
  1169. "reference": "e7db3b601ce742568b92648818ef903904d20164",
  1170. "shasum": "",
  1171. "mirrors": [
  1172. {
  1173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1174. "preferred": true
  1175. }
  1176. ]
  1177. },
  1178. "require": {
  1179. "ext-json": "*",
  1180. "ext-mbstring": "*",
  1181. "facade/flare-client-php": "^1.6",
  1182. "facade/ignition-contracts": "^1.0.2",
  1183. "filp/whoops": "^2.4",
  1184. "illuminate/support": "^7.0|^8.0",
  1185. "monolog/monolog": "^2.0",
  1186. "php": "^7.2.5|^8.0",
  1187. "symfony/console": "^5.0",
  1188. "symfony/var-dumper": "^5.0"
  1189. },
  1190. "require-dev": {
  1191. "friendsofphp/php-cs-fixer": "^2.14",
  1192. "mockery/mockery": "^1.3",
  1193. "orchestra/testbench": "^5.0|^6.0",
  1194. "psalm/plugin-laravel": "^1.2"
  1195. },
  1196. "suggest": {
  1197. "laravel/telescope": "^3.1"
  1198. },
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "2.x-dev"
  1203. },
  1204. "laravel": {
  1205. "providers": [
  1206. "Facade\\Ignition\\IgnitionServiceProvider"
  1207. ],
  1208. "aliases": {
  1209. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1210. }
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Facade\\Ignition\\": "src"
  1216. },
  1217. "files": [
  1218. "src/helpers.php"
  1219. ]
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "description": "A beautiful error page for Laravel applications.",
  1226. "homepage": "https://github.com/facade/ignition",
  1227. "keywords": [
  1228. "error",
  1229. "flare",
  1230. "laravel",
  1231. "page"
  1232. ],
  1233. "support": {
  1234. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1235. "forum": "https://twitter.com/flareappio",
  1236. "issues": "https://github.com/facade/ignition/issues",
  1237. "source": "https://github.com/facade/ignition"
  1238. },
  1239. "time": "2021-05-05T06:45:12+00:00"
  1240. },
  1241. {
  1242. "name": "facade/ignition-contracts",
  1243. "version": "1.0.2",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/facade/ignition-contracts.git",
  1247. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1252. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "shasum": "",
  1254. "mirrors": [
  1255. {
  1256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1257. "preferred": true
  1258. }
  1259. ]
  1260. },
  1261. "require": {
  1262. "php": "^7.3|^8.0"
  1263. },
  1264. "require-dev": {
  1265. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1266. "phpunit/phpunit": "^9.3.11",
  1267. "vimeo/psalm": "^3.17.1"
  1268. },
  1269. "type": "library",
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Facade\\IgnitionContracts\\": "src"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Freek Van der Herten",
  1282. "email": "freek@spatie.be",
  1283. "homepage": "https://flareapp.io",
  1284. "role": "Developer"
  1285. }
  1286. ],
  1287. "description": "Solution contracts for Ignition",
  1288. "homepage": "https://github.com/facade/ignition-contracts",
  1289. "keywords": [
  1290. "contracts",
  1291. "flare",
  1292. "ignition"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/facade/ignition-contracts/issues",
  1296. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1297. },
  1298. "time": "2020-10-16T08:27:54+00:00"
  1299. },
  1300. {
  1301. "name": "fideloper/proxy",
  1302. "version": "4.4.1",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/fideloper/TrustedProxy.git",
  1306. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1311. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "shasum": "",
  1313. "mirrors": [
  1314. {
  1315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1316. "preferred": true
  1317. }
  1318. ]
  1319. },
  1320. "require": {
  1321. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1322. "php": ">=5.4.0"
  1323. },
  1324. "require-dev": {
  1325. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1326. "mockery/mockery": "^1.0",
  1327. "phpunit/phpunit": "^6.0"
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "laravel": {
  1332. "providers": [
  1333. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1334. ]
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Fideloper\\Proxy\\": "src/"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Chris Fidao",
  1349. "email": "fideloper@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Set trusted proxies for Laravel",
  1353. "keywords": [
  1354. "load balancing",
  1355. "proxy",
  1356. "trusted proxy"
  1357. ],
  1358. "support": {
  1359. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1360. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1361. },
  1362. "time": "2020-10-22T13:48:01+00:00"
  1363. },
  1364. {
  1365. "name": "filp/whoops",
  1366. "version": "2.12.1",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/filp/whoops.git",
  1370. "reference": "c13c0be93cff50f88bbd70827d993026821914dd"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/filp/whoops/zipball/c13c0be93cff50f88bbd70827d993026821914dd",
  1375. "reference": "c13c0be93cff50f88bbd70827d993026821914dd",
  1376. "shasum": "",
  1377. "mirrors": [
  1378. {
  1379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1380. "preferred": true
  1381. }
  1382. ]
  1383. },
  1384. "require": {
  1385. "php": "^5.5.9 || ^7.0 || ^8.0",
  1386. "psr/log": "^1.0.1"
  1387. },
  1388. "require-dev": {
  1389. "mockery/mockery": "^0.9 || ^1.0",
  1390. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1391. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1392. },
  1393. "suggest": {
  1394. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1395. "whoops/soap": "Formats errors as SOAP responses"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "2.7-dev"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "psr-4": {
  1405. "Whoops\\": "src/Whoops/"
  1406. }
  1407. },
  1408. "notification-url": "https://packagist.org/downloads/",
  1409. "license": [
  1410. "MIT"
  1411. ],
  1412. "authors": [
  1413. {
  1414. "name": "Filipe Dobreira",
  1415. "homepage": "https://github.com/filp",
  1416. "role": "Developer"
  1417. }
  1418. ],
  1419. "description": "php error handling for cool kids",
  1420. "homepage": "https://filp.github.io/whoops/",
  1421. "keywords": [
  1422. "error",
  1423. "exception",
  1424. "handling",
  1425. "library",
  1426. "throwable",
  1427. "whoops"
  1428. ],
  1429. "support": {
  1430. "issues": "https://github.com/filp/whoops/issues",
  1431. "source": "https://github.com/filp/whoops/tree/2.12.1"
  1432. },
  1433. "funding": [
  1434. {
  1435. "url": "https://github.com/denis-sokolov",
  1436. "type": "github"
  1437. }
  1438. ],
  1439. "time": "2021-04-25T12:00:00+00:00"
  1440. },
  1441. {
  1442. "name": "firebase/php-jwt",
  1443. "version": "v5.2.1",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/firebase/php-jwt.git",
  1447. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1452. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1453. "shasum": "",
  1454. "mirrors": [
  1455. {
  1456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1457. "preferred": true
  1458. }
  1459. ]
  1460. },
  1461. "require": {
  1462. "php": ">=5.3.0"
  1463. },
  1464. "require-dev": {
  1465. "phpunit/phpunit": ">=4.8 <=9"
  1466. },
  1467. "type": "library",
  1468. "autoload": {
  1469. "psr-4": {
  1470. "Firebase\\JWT\\": "src"
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "BSD-3-Clause"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "Neuman Vong",
  1480. "email": "neuman+pear@twilio.com",
  1481. "role": "Developer"
  1482. },
  1483. {
  1484. "name": "Anant Narayanan",
  1485. "email": "anant@php.net",
  1486. "role": "Developer"
  1487. }
  1488. ],
  1489. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1490. "homepage": "https://github.com/firebase/php-jwt",
  1491. "keywords": [
  1492. "jwt",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "issues": "https://github.com/firebase/php-jwt/issues",
  1497. "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
  1498. },
  1499. "time": "2021-02-12T00:02:00+00:00"
  1500. },
  1501. {
  1502. "name": "guzzlehttp/guzzle",
  1503. "version": "6.5.5",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/guzzle/guzzle.git",
  1507. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1512. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1513. "shasum": "",
  1514. "mirrors": [
  1515. {
  1516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1517. "preferred": true
  1518. }
  1519. ]
  1520. },
  1521. "require": {
  1522. "ext-json": "*",
  1523. "guzzlehttp/promises": "^1.0",
  1524. "guzzlehttp/psr7": "^1.6.1",
  1525. "php": ">=5.5",
  1526. "symfony/polyfill-intl-idn": "^1.17.0"
  1527. },
  1528. "require-dev": {
  1529. "ext-curl": "*",
  1530. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1531. "psr/log": "^1.1"
  1532. },
  1533. "suggest": {
  1534. "psr/log": "Required for using the Log middleware"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-master": "6.5-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "GuzzleHttp\\": "src/"
  1545. },
  1546. "files": [
  1547. "src/functions_include.php"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "MIT"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Michael Dowling",
  1557. "email": "mtdowling@gmail.com",
  1558. "homepage": "https://github.com/mtdowling"
  1559. }
  1560. ],
  1561. "description": "Guzzle is a PHP HTTP client library",
  1562. "homepage": "http://guzzlephp.org/",
  1563. "keywords": [
  1564. "client",
  1565. "curl",
  1566. "framework",
  1567. "http",
  1568. "http client",
  1569. "rest",
  1570. "web service"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/guzzle/guzzle/issues",
  1574. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1575. },
  1576. "time": "2020-06-16T21:01:06+00:00"
  1577. },
  1578. {
  1579. "name": "guzzlehttp/promises",
  1580. "version": "1.4.1",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/guzzle/promises.git",
  1584. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1589. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "php": ">=5.5"
  1600. },
  1601. "require-dev": {
  1602. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.4-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "GuzzleHttp\\Promise\\": "src/"
  1613. },
  1614. "files": [
  1615. "src/functions_include.php"
  1616. ]
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Michael Dowling",
  1625. "email": "mtdowling@gmail.com",
  1626. "homepage": "https://github.com/mtdowling"
  1627. }
  1628. ],
  1629. "description": "Guzzle promises library",
  1630. "keywords": [
  1631. "promise"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/guzzle/promises/issues",
  1635. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1636. },
  1637. "time": "2021-03-07T09:25:29+00:00"
  1638. },
  1639. {
  1640. "name": "guzzlehttp/psr7",
  1641. "version": "1.8.2",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/guzzle/psr7.git",
  1645. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1650. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1651. "shasum": "",
  1652. "mirrors": [
  1653. {
  1654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1655. "preferred": true
  1656. }
  1657. ]
  1658. },
  1659. "require": {
  1660. "php": ">=5.4.0",
  1661. "psr/http-message": "~1.0",
  1662. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1663. },
  1664. "provide": {
  1665. "psr/http-message-implementation": "1.0"
  1666. },
  1667. "require-dev": {
  1668. "ext-zlib": "*",
  1669. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1670. },
  1671. "suggest": {
  1672. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "1.7-dev"
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "GuzzleHttp\\Psr7\\": "src/"
  1683. },
  1684. "files": [
  1685. "src/functions_include.php"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Michael Dowling",
  1695. "email": "mtdowling@gmail.com",
  1696. "homepage": "https://github.com/mtdowling"
  1697. },
  1698. {
  1699. "name": "Tobias Schultze",
  1700. "homepage": "https://github.com/Tobion"
  1701. }
  1702. ],
  1703. "description": "PSR-7 message implementation that also provides common utility methods",
  1704. "keywords": [
  1705. "http",
  1706. "message",
  1707. "psr-7",
  1708. "request",
  1709. "response",
  1710. "stream",
  1711. "uri",
  1712. "url"
  1713. ],
  1714. "support": {
  1715. "issues": "https://github.com/guzzle/psr7/issues",
  1716. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1717. },
  1718. "time": "2021-04-26T09:17:50+00:00"
  1719. },
  1720. {
  1721. "name": "intervention/image",
  1722. "version": "2.5.1",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/Intervention/image.git",
  1726. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1731. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1732. "shasum": "",
  1733. "mirrors": [
  1734. {
  1735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1736. "preferred": true
  1737. }
  1738. ]
  1739. },
  1740. "require": {
  1741. "ext-fileinfo": "*",
  1742. "guzzlehttp/psr7": "~1.1",
  1743. "php": ">=5.4.0"
  1744. },
  1745. "require-dev": {
  1746. "mockery/mockery": "~0.9.2",
  1747. "phpunit/phpunit": "^4.8 || ^5.7"
  1748. },
  1749. "suggest": {
  1750. "ext-gd": "to use GD library based image processing.",
  1751. "ext-imagick": "to use Imagick based image processing.",
  1752. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "2.4-dev"
  1758. },
  1759. "laravel": {
  1760. "providers": [
  1761. "Intervention\\Image\\ImageServiceProvider"
  1762. ],
  1763. "aliases": {
  1764. "Image": "Intervention\\Image\\Facades\\Image"
  1765. }
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Intervention\\Image\\": "src/Intervention/Image"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Oliver Vogel",
  1780. "email": "oliver@olivervogel.com",
  1781. "homepage": "http://olivervogel.com/"
  1782. }
  1783. ],
  1784. "description": "Image handling and manipulation library with support for Laravel integration",
  1785. "homepage": "http://image.intervention.io/",
  1786. "keywords": [
  1787. "gd",
  1788. "image",
  1789. "imagick",
  1790. "laravel",
  1791. "thumbnail",
  1792. "watermark"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/Intervention/image/issues",
  1796. "source": "https://github.com/Intervention/image/tree/master"
  1797. },
  1798. "time": "2019-11-02T09:15:47+00:00"
  1799. },
  1800. {
  1801. "name": "khanamiryan/qrcode-detector-decoder",
  1802. "version": "1.0.5.1",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1806. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1811. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1812. "shasum": "",
  1813. "mirrors": [
  1814. {
  1815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1816. "preferred": true
  1817. }
  1818. ]
  1819. },
  1820. "require": {
  1821. "php": ">=5.6"
  1822. },
  1823. "require-dev": {
  1824. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Zxing\\": "lib/"
  1830. },
  1831. "files": [
  1832. "lib/Common/customFunctions.php"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT",
  1838. "Apache-2.0"
  1839. ],
  1840. "authors": [
  1841. {
  1842. "name": "Ashot Khanamiryan",
  1843. "email": "a.khanamiryan@gmail.com",
  1844. "homepage": "https://github.com/khanamiryan",
  1845. "role": "Developer"
  1846. }
  1847. ],
  1848. "description": "QR code decoder / reader",
  1849. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1850. "keywords": [
  1851. "barcode",
  1852. "qr",
  1853. "zxing"
  1854. ],
  1855. "support": {
  1856. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1857. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1858. },
  1859. "time": "2021-04-21T08:02:08+00:00"
  1860. },
  1861. {
  1862. "name": "kitetail/zttp",
  1863. "version": "v0.6.0",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/kitetail/zttp.git",
  1867. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1872. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1873. "shasum": "",
  1874. "mirrors": [
  1875. {
  1876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1877. "preferred": true
  1878. }
  1879. ]
  1880. },
  1881. "require": {
  1882. "guzzlehttp/guzzle": "^6.0",
  1883. "php": ">=7.0",
  1884. "tightenco/collect": "^5.4"
  1885. },
  1886. "require-dev": {
  1887. "laravel/lumen-framework": "5.5.*",
  1888. "phpunit/phpunit": "^6.0"
  1889. },
  1890. "type": "library",
  1891. "autoload": {
  1892. "files": [
  1893. "src/Zttp.php"
  1894. ]
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Adam Wathan",
  1903. "email": "adam.wathan@gmail.com"
  1904. }
  1905. ],
  1906. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1907. "keywords": [
  1908. "Guzzle",
  1909. "http"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/kitetail/zttp/issues",
  1913. "source": "https://github.com/kitetail/zttp/tree/master"
  1914. },
  1915. "time": "2019-06-10T12:18:52+00:00"
  1916. },
  1917. {
  1918. "name": "laravel/framework",
  1919. "version": "v7.30.4",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/laravel/framework.git",
  1923. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1928. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "doctrine/inflector": "^1.4|^2.0",
  1939. "dragonmantank/cron-expression": "^2.3.1",
  1940. "egulias/email-validator": "^2.1.10",
  1941. "ext-json": "*",
  1942. "ext-mbstring": "*",
  1943. "ext-openssl": "*",
  1944. "league/commonmark": "^1.3",
  1945. "league/flysystem": "^1.1",
  1946. "monolog/monolog": "^2.0",
  1947. "nesbot/carbon": "^2.31",
  1948. "opis/closure": "^3.6",
  1949. "php": "^7.2.5|^8.0",
  1950. "psr/container": "^1.0",
  1951. "psr/simple-cache": "^1.0",
  1952. "ramsey/uuid": "^3.7|^4.0",
  1953. "swiftmailer/swiftmailer": "^6.0",
  1954. "symfony/console": "^5.0",
  1955. "symfony/error-handler": "^5.0",
  1956. "symfony/finder": "^5.0",
  1957. "symfony/http-foundation": "^5.0",
  1958. "symfony/http-kernel": "^5.0",
  1959. "symfony/mime": "^5.0",
  1960. "symfony/polyfill-php73": "^1.17",
  1961. "symfony/process": "^5.0",
  1962. "symfony/routing": "^5.0",
  1963. "symfony/var-dumper": "^5.0",
  1964. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1965. "vlucas/phpdotenv": "^4.0",
  1966. "voku/portable-ascii": "^1.4.8"
  1967. },
  1968. "conflict": {
  1969. "tightenco/collect": "<5.5.33"
  1970. },
  1971. "provide": {
  1972. "psr/container-implementation": "1.0"
  1973. },
  1974. "replace": {
  1975. "illuminate/auth": "self.version",
  1976. "illuminate/broadcasting": "self.version",
  1977. "illuminate/bus": "self.version",
  1978. "illuminate/cache": "self.version",
  1979. "illuminate/config": "self.version",
  1980. "illuminate/console": "self.version",
  1981. "illuminate/container": "self.version",
  1982. "illuminate/contracts": "self.version",
  1983. "illuminate/cookie": "self.version",
  1984. "illuminate/database": "self.version",
  1985. "illuminate/encryption": "self.version",
  1986. "illuminate/events": "self.version",
  1987. "illuminate/filesystem": "self.version",
  1988. "illuminate/hashing": "self.version",
  1989. "illuminate/http": "self.version",
  1990. "illuminate/log": "self.version",
  1991. "illuminate/mail": "self.version",
  1992. "illuminate/notifications": "self.version",
  1993. "illuminate/pagination": "self.version",
  1994. "illuminate/pipeline": "self.version",
  1995. "illuminate/queue": "self.version",
  1996. "illuminate/redis": "self.version",
  1997. "illuminate/routing": "self.version",
  1998. "illuminate/session": "self.version",
  1999. "illuminate/support": "self.version",
  2000. "illuminate/testing": "self.version",
  2001. "illuminate/translation": "self.version",
  2002. "illuminate/validation": "self.version",
  2003. "illuminate/view": "self.version"
  2004. },
  2005. "require-dev": {
  2006. "aws/aws-sdk-php": "^3.155",
  2007. "doctrine/dbal": "^2.6",
  2008. "filp/whoops": "^2.8",
  2009. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2010. "league/flysystem-cached-adapter": "^1.0",
  2011. "mockery/mockery": "~1.3.3|^1.4.2",
  2012. "moontoast/math": "^1.1",
  2013. "orchestra/testbench-core": "^5.8",
  2014. "pda/pheanstalk": "^4.0",
  2015. "phpunit/phpunit": "^8.4|^9.3.3",
  2016. "predis/predis": "^1.1.1",
  2017. "symfony/cache": "^5.0"
  2018. },
  2019. "suggest": {
  2020. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2021. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2022. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2023. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2024. "ext-memcached": "Required to use the memcache cache driver.",
  2025. "ext-pcntl": "Required to use all features of the queue worker.",
  2026. "ext-posix": "Required to use all features of the queue worker.",
  2027. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2028. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2029. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2030. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2031. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2032. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2033. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2034. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2035. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2036. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2037. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2038. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2039. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2040. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2041. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2042. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2043. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2044. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2045. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2046. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "7.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "files": [
  2056. "src/Illuminate/Foundation/helpers.php",
  2057. "src/Illuminate/Support/helpers.php"
  2058. ],
  2059. "psr-4": {
  2060. "Illuminate\\": "src/Illuminate/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Taylor Otwell",
  2070. "email": "taylor@laravel.com"
  2071. }
  2072. ],
  2073. "description": "The Laravel Framework.",
  2074. "homepage": "https://laravel.com",
  2075. "keywords": [
  2076. "framework",
  2077. "laravel"
  2078. ],
  2079. "support": {
  2080. "issues": "https://github.com/laravel/framework/issues",
  2081. "source": "https://github.com/laravel/framework"
  2082. },
  2083. "time": "2021-01-21T14:10:48+00:00"
  2084. },
  2085. {
  2086. "name": "laravel/horizon",
  2087. "version": "v4.3.5",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/laravel/horizon.git",
  2091. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2096. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2097. "shasum": "",
  2098. "mirrors": [
  2099. {
  2100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2101. "preferred": true
  2102. }
  2103. ]
  2104. },
  2105. "require": {
  2106. "cakephp/chronos": "^2.0",
  2107. "ext-json": "*",
  2108. "ext-pcntl": "*",
  2109. "ext-posix": "*",
  2110. "illuminate/contracts": "^7.0",
  2111. "illuminate/queue": "^7.0",
  2112. "illuminate/support": "^7.0",
  2113. "php": "^7.2",
  2114. "ramsey/uuid": "^3.5|^4.0",
  2115. "symfony/error-handler": "^5.0",
  2116. "symfony/process": "^5.0"
  2117. },
  2118. "require-dev": {
  2119. "mockery/mockery": "^1.0",
  2120. "orchestra/testbench": "^5.0",
  2121. "phpunit/phpunit": "^8.0",
  2122. "predis/predis": "^1.1"
  2123. },
  2124. "suggest": {
  2125. "ext-redis": "Required to use the Redis PHP driver.",
  2126. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "4.x-dev"
  2132. },
  2133. "laravel": {
  2134. "providers": [
  2135. "Laravel\\Horizon\\HorizonServiceProvider"
  2136. ],
  2137. "aliases": {
  2138. "Horizon": "Laravel\\Horizon\\Horizon"
  2139. }
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Laravel\\Horizon\\": "src/"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "authors": [
  2152. {
  2153. "name": "Taylor Otwell",
  2154. "email": "taylor@laravel.com"
  2155. }
  2156. ],
  2157. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2158. "keywords": [
  2159. "laravel",
  2160. "queue"
  2161. ],
  2162. "support": {
  2163. "issues": "https://github.com/laravel/horizon/issues",
  2164. "source": "https://github.com/laravel/horizon/tree/4.x"
  2165. },
  2166. "time": "2020-09-08T13:19:23+00:00"
  2167. },
  2168. {
  2169. "name": "laravel/tinker",
  2170. "version": "v2.6.1",
  2171. "source": {
  2172. "type": "git",
  2173. "url": "https://github.com/laravel/tinker.git",
  2174. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2175. },
  2176. "dist": {
  2177. "type": "zip",
  2178. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2179. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2180. "shasum": "",
  2181. "mirrors": [
  2182. {
  2183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2184. "preferred": true
  2185. }
  2186. ]
  2187. },
  2188. "require": {
  2189. "illuminate/console": "^6.0|^7.0|^8.0",
  2190. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2191. "illuminate/support": "^6.0|^7.0|^8.0",
  2192. "php": "^7.2.5|^8.0",
  2193. "psy/psysh": "^0.10.4",
  2194. "symfony/var-dumper": "^4.3.4|^5.0"
  2195. },
  2196. "require-dev": {
  2197. "mockery/mockery": "~1.3.3|^1.4.2",
  2198. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2199. },
  2200. "suggest": {
  2201. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "2.x-dev"
  2207. },
  2208. "laravel": {
  2209. "providers": [
  2210. "Laravel\\Tinker\\TinkerServiceProvider"
  2211. ]
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "Laravel\\Tinker\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Taylor Otwell",
  2226. "email": "taylor@laravel.com"
  2227. }
  2228. ],
  2229. "description": "Powerful REPL for the Laravel framework.",
  2230. "keywords": [
  2231. "REPL",
  2232. "Tinker",
  2233. "laravel",
  2234. "psysh"
  2235. ],
  2236. "support": {
  2237. "issues": "https://github.com/laravel/tinker/issues",
  2238. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2239. },
  2240. "time": "2021-03-02T16:53:12+00:00"
  2241. },
  2242. {
  2243. "name": "laravel/ui",
  2244. "version": "v2.5.0",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/laravel/ui.git",
  2248. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2253. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2254. "shasum": "",
  2255. "mirrors": [
  2256. {
  2257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2258. "preferred": true
  2259. }
  2260. ]
  2261. },
  2262. "require": {
  2263. "illuminate/console": "^7.0",
  2264. "illuminate/filesystem": "^7.0",
  2265. "illuminate/support": "^7.0",
  2266. "php": "^7.2.5|^8.0"
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "laravel": {
  2271. "providers": [
  2272. "Laravel\\Ui\\UiServiceProvider"
  2273. ]
  2274. }
  2275. },
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Laravel\\Ui\\": "src/",
  2279. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2280. }
  2281. },
  2282. "notification-url": "https://packagist.org/downloads/",
  2283. "license": [
  2284. "MIT"
  2285. ],
  2286. "authors": [
  2287. {
  2288. "name": "Taylor Otwell",
  2289. "email": "taylor@laravel.com"
  2290. }
  2291. ],
  2292. "description": "Laravel UI utilities and presets.",
  2293. "keywords": [
  2294. "laravel",
  2295. "ui"
  2296. ],
  2297. "support": {
  2298. "issues": "https://github.com/laravel/ui/issues",
  2299. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2300. },
  2301. "time": "2020-11-03T19:45:19+00:00"
  2302. },
  2303. {
  2304. "name": "league/commonmark",
  2305. "version": "1.6.2",
  2306. "source": {
  2307. "type": "git",
  2308. "url": "https://github.com/thephpleague/commonmark.git",
  2309. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb"
  2310. },
  2311. "dist": {
  2312. "type": "zip",
  2313. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb",
  2314. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb",
  2315. "shasum": "",
  2316. "mirrors": [
  2317. {
  2318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2319. "preferred": true
  2320. }
  2321. ]
  2322. },
  2323. "require": {
  2324. "ext-mbstring": "*",
  2325. "php": "^7.1 || ^8.0"
  2326. },
  2327. "conflict": {
  2328. "scrutinizer/ocular": "1.7.*"
  2329. },
  2330. "require-dev": {
  2331. "cebe/markdown": "~1.0",
  2332. "commonmark/commonmark.js": "0.29.2",
  2333. "erusev/parsedown": "~1.0",
  2334. "ext-json": "*",
  2335. "github/gfm": "0.29.0",
  2336. "michelf/php-markdown": "~1.4",
  2337. "mikehaertl/php-shellcommand": "^1.4",
  2338. "phpstan/phpstan": "^0.12",
  2339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2340. "scrutinizer/ocular": "^1.5",
  2341. "symfony/finder": "^4.2"
  2342. },
  2343. "bin": [
  2344. "bin/commonmark"
  2345. ],
  2346. "type": "library",
  2347. "autoload": {
  2348. "psr-4": {
  2349. "League\\CommonMark\\": "src"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "BSD-3-Clause"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Colin O'Dell",
  2359. "email": "colinodell@gmail.com",
  2360. "homepage": "https://www.colinodell.com",
  2361. "role": "Lead Developer"
  2362. }
  2363. ],
  2364. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2365. "homepage": "https://commonmark.thephpleague.com",
  2366. "keywords": [
  2367. "commonmark",
  2368. "flavored",
  2369. "gfm",
  2370. "github",
  2371. "github-flavored",
  2372. "markdown",
  2373. "md",
  2374. "parser"
  2375. ],
  2376. "support": {
  2377. "docs": "https://commonmark.thephpleague.com/",
  2378. "issues": "https://github.com/thephpleague/commonmark/issues",
  2379. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2380. "source": "https://github.com/thephpleague/commonmark"
  2381. },
  2382. "funding": [
  2383. {
  2384. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2385. "type": "custom"
  2386. },
  2387. {
  2388. "url": "https://www.colinodell.com/sponsor",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://www.paypal.me/colinpodell/10.00",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://github.com/colinodell",
  2397. "type": "github"
  2398. },
  2399. {
  2400. "url": "https://www.patreon.com/colinodell",
  2401. "type": "patreon"
  2402. },
  2403. {
  2404. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2405. "type": "tidelift"
  2406. }
  2407. ],
  2408. "time": "2021-05-12T11:39:41+00:00"
  2409. },
  2410. {
  2411. "name": "league/flysystem",
  2412. "version": "1.1.3",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/thephpleague/flysystem.git",
  2416. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2421. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2422. "shasum": "",
  2423. "mirrors": [
  2424. {
  2425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2426. "preferred": true
  2427. }
  2428. ]
  2429. },
  2430. "require": {
  2431. "ext-fileinfo": "*",
  2432. "league/mime-type-detection": "^1.3",
  2433. "php": "^7.2.5 || ^8.0"
  2434. },
  2435. "conflict": {
  2436. "league/flysystem-sftp": "<1.0.6"
  2437. },
  2438. "require-dev": {
  2439. "phpspec/prophecy": "^1.11.1",
  2440. "phpunit/phpunit": "^8.5.8"
  2441. },
  2442. "suggest": {
  2443. "ext-fileinfo": "Required for MimeType",
  2444. "ext-ftp": "Allows you to use FTP server storage",
  2445. "ext-openssl": "Allows you to use FTPS server storage",
  2446. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2447. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2448. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2449. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2450. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2451. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2452. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2453. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2454. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2455. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2456. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-master": "1.1-dev"
  2462. }
  2463. },
  2464. "autoload": {
  2465. "psr-4": {
  2466. "League\\Flysystem\\": "src/"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "authors": [
  2474. {
  2475. "name": "Frank de Jonge",
  2476. "email": "info@frenky.net"
  2477. }
  2478. ],
  2479. "description": "Filesystem abstraction: Many filesystems, one API.",
  2480. "keywords": [
  2481. "Cloud Files",
  2482. "WebDAV",
  2483. "abstraction",
  2484. "aws",
  2485. "cloud",
  2486. "copy.com",
  2487. "dropbox",
  2488. "file systems",
  2489. "files",
  2490. "filesystem",
  2491. "filesystems",
  2492. "ftp",
  2493. "rackspace",
  2494. "remote",
  2495. "s3",
  2496. "sftp",
  2497. "storage"
  2498. ],
  2499. "support": {
  2500. "issues": "https://github.com/thephpleague/flysystem/issues",
  2501. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2502. },
  2503. "funding": [
  2504. {
  2505. "url": "https://offset.earth/frankdejonge",
  2506. "type": "other"
  2507. }
  2508. ],
  2509. "time": "2020-08-23T07:39:11+00:00"
  2510. },
  2511. {
  2512. "name": "league/mime-type-detection",
  2513. "version": "1.7.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2517. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2522. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2523. "shasum": "",
  2524. "mirrors": [
  2525. {
  2526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2527. "preferred": true
  2528. }
  2529. ]
  2530. },
  2531. "require": {
  2532. "ext-fileinfo": "*",
  2533. "php": "^7.2 || ^8.0"
  2534. },
  2535. "require-dev": {
  2536. "friendsofphp/php-cs-fixer": "^2.18",
  2537. "phpstan/phpstan": "^0.12.68",
  2538. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2539. },
  2540. "type": "library",
  2541. "autoload": {
  2542. "psr-4": {
  2543. "League\\MimeTypeDetection\\": "src"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Frank de Jonge",
  2553. "email": "info@frankdejonge.nl"
  2554. }
  2555. ],
  2556. "description": "Mime-type detection for Flysystem",
  2557. "support": {
  2558. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2559. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2560. },
  2561. "funding": [
  2562. {
  2563. "url": "https://github.com/frankdejonge",
  2564. "type": "github"
  2565. },
  2566. {
  2567. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2568. "type": "tidelift"
  2569. }
  2570. ],
  2571. "time": "2021-01-18T20:58:21+00:00"
  2572. },
  2573. {
  2574. "name": "maatwebsite/excel",
  2575. "version": "3.1.30",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2579. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2584. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2585. "shasum": "",
  2586. "mirrors": [
  2587. {
  2588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2589. "preferred": true
  2590. }
  2591. ]
  2592. },
  2593. "require": {
  2594. "ext-json": "*",
  2595. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2596. "php": "^7.0|^8.0",
  2597. "phpoffice/phpspreadsheet": "1.16.*"
  2598. },
  2599. "require-dev": {
  2600. "orchestra/testbench": "^6.0",
  2601. "predis/predis": "^1.1"
  2602. },
  2603. "type": "library",
  2604. "extra": {
  2605. "laravel": {
  2606. "providers": [
  2607. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2608. ],
  2609. "aliases": {
  2610. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2611. }
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "Maatwebsite\\Excel\\": "src/"
  2617. }
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Patrick Brouwers",
  2626. "email": "patrick@maatwebsite.nl"
  2627. }
  2628. ],
  2629. "description": "Supercharged Excel exports and imports in Laravel",
  2630. "keywords": [
  2631. "PHPExcel",
  2632. "batch",
  2633. "csv",
  2634. "excel",
  2635. "export",
  2636. "import",
  2637. "laravel",
  2638. "php",
  2639. "phpspreadsheet"
  2640. ],
  2641. "support": {
  2642. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2643. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.30"
  2644. },
  2645. "funding": [
  2646. {
  2647. "url": "https://laravel-excel.com/commercial-support",
  2648. "type": "custom"
  2649. },
  2650. {
  2651. "url": "https://github.com/patrickbrouwers",
  2652. "type": "github"
  2653. }
  2654. ],
  2655. "time": "2021-04-06T17:17:02+00:00"
  2656. },
  2657. {
  2658. "name": "maennchen/zipstream-php",
  2659. "version": "2.1.0",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2663. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2668. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2669. "shasum": "",
  2670. "mirrors": [
  2671. {
  2672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2673. "preferred": true
  2674. }
  2675. ]
  2676. },
  2677. "require": {
  2678. "myclabs/php-enum": "^1.5",
  2679. "php": ">= 7.1",
  2680. "psr/http-message": "^1.0",
  2681. "symfony/polyfill-mbstring": "^1.0"
  2682. },
  2683. "require-dev": {
  2684. "ext-zip": "*",
  2685. "guzzlehttp/guzzle": ">= 6.3",
  2686. "mikey179/vfsstream": "^1.6",
  2687. "phpunit/phpunit": ">= 7.5"
  2688. },
  2689. "type": "library",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "ZipStream\\": "src/"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Paul Duncan",
  2702. "email": "pabs@pablotron.org"
  2703. },
  2704. {
  2705. "name": "Jonatan Männchen",
  2706. "email": "jonatan@maennchen.ch"
  2707. },
  2708. {
  2709. "name": "Jesse Donat",
  2710. "email": "donatj@gmail.com"
  2711. },
  2712. {
  2713. "name": "András Kolesár",
  2714. "email": "kolesar@kolesar.hu"
  2715. }
  2716. ],
  2717. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2718. "keywords": [
  2719. "stream",
  2720. "zip"
  2721. ],
  2722. "support": {
  2723. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2724. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2725. },
  2726. "funding": [
  2727. {
  2728. "url": "https://opencollective.com/zipstream",
  2729. "type": "open_collective"
  2730. }
  2731. ],
  2732. "time": "2020-05-30T13:11:16+00:00"
  2733. },
  2734. {
  2735. "name": "markbaker/complex",
  2736. "version": "2.0.2",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2740. "reference": "d18272926d58065140314c01e18ec3dd7ae854ea"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/d18272926d58065140314c01e18ec3dd7ae854ea",
  2745. "reference": "d18272926d58065140314c01e18ec3dd7ae854ea",
  2746. "shasum": "",
  2747. "mirrors": [
  2748. {
  2749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2750. "preferred": true
  2751. }
  2752. ]
  2753. },
  2754. "require": {
  2755. "php": "^7.2 || ^8.0"
  2756. },
  2757. "require-dev": {
  2758. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2759. "phpcompatibility/php-compatibility": "^9.0",
  2760. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2761. "squizlabs/php_codesniffer": "^3.4"
  2762. },
  2763. "type": "library",
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Complex\\": "classes/src/"
  2767. },
  2768. "files": [
  2769. "classes/src/functions/abs.php",
  2770. "classes/src/functions/acos.php",
  2771. "classes/src/functions/acosh.php",
  2772. "classes/src/functions/acot.php",
  2773. "classes/src/functions/acoth.php",
  2774. "classes/src/functions/acsc.php",
  2775. "classes/src/functions/acsch.php",
  2776. "classes/src/functions/argument.php",
  2777. "classes/src/functions/asec.php",
  2778. "classes/src/functions/asech.php",
  2779. "classes/src/functions/asin.php",
  2780. "classes/src/functions/asinh.php",
  2781. "classes/src/functions/atan.php",
  2782. "classes/src/functions/atanh.php",
  2783. "classes/src/functions/conjugate.php",
  2784. "classes/src/functions/cos.php",
  2785. "classes/src/functions/cosh.php",
  2786. "classes/src/functions/cot.php",
  2787. "classes/src/functions/coth.php",
  2788. "classes/src/functions/csc.php",
  2789. "classes/src/functions/csch.php",
  2790. "classes/src/functions/exp.php",
  2791. "classes/src/functions/inverse.php",
  2792. "classes/src/functions/ln.php",
  2793. "classes/src/functions/log2.php",
  2794. "classes/src/functions/log10.php",
  2795. "classes/src/functions/negative.php",
  2796. "classes/src/functions/pow.php",
  2797. "classes/src/functions/rho.php",
  2798. "classes/src/functions/sec.php",
  2799. "classes/src/functions/sech.php",
  2800. "classes/src/functions/sin.php",
  2801. "classes/src/functions/sinh.php",
  2802. "classes/src/functions/sqrt.php",
  2803. "classes/src/functions/tan.php",
  2804. "classes/src/functions/tanh.php",
  2805. "classes/src/functions/theta.php",
  2806. "classes/src/operations/add.php",
  2807. "classes/src/operations/subtract.php",
  2808. "classes/src/operations/multiply.php",
  2809. "classes/src/operations/divideby.php",
  2810. "classes/src/operations/divideinto.php"
  2811. ]
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "Mark Baker",
  2820. "email": "mark@lange.demon.co.uk"
  2821. }
  2822. ],
  2823. "description": "PHP Class for working with complex numbers",
  2824. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2825. "keywords": [
  2826. "complex",
  2827. "mathematics"
  2828. ],
  2829. "support": {
  2830. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2831. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.2"
  2832. },
  2833. "time": "2021-05-24T10:53:30+00:00"
  2834. },
  2835. {
  2836. "name": "markbaker/matrix",
  2837. "version": "2.1.3",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2841. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2846. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2847. "shasum": "",
  2848. "mirrors": [
  2849. {
  2850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2851. "preferred": true
  2852. }
  2853. ]
  2854. },
  2855. "require": {
  2856. "php": "^7.1 || ^8.0"
  2857. },
  2858. "require-dev": {
  2859. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2860. "phpcompatibility/php-compatibility": "^9.0",
  2861. "phpdocumentor/phpdocumentor": "2.*",
  2862. "phploc/phploc": "^4.0",
  2863. "phpmd/phpmd": "2.*",
  2864. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2865. "sebastian/phpcpd": "^4.0",
  2866. "squizlabs/php_codesniffer": "^3.4"
  2867. },
  2868. "type": "library",
  2869. "autoload": {
  2870. "psr-4": {
  2871. "Matrix\\": "classes/src/"
  2872. },
  2873. "files": [
  2874. "classes/src/Functions/adjoint.php",
  2875. "classes/src/Functions/antidiagonal.php",
  2876. "classes/src/Functions/cofactors.php",
  2877. "classes/src/Functions/determinant.php",
  2878. "classes/src/Functions/diagonal.php",
  2879. "classes/src/Functions/identity.php",
  2880. "classes/src/Functions/inverse.php",
  2881. "classes/src/Functions/minors.php",
  2882. "classes/src/Functions/trace.php",
  2883. "classes/src/Functions/transpose.php",
  2884. "classes/src/Operations/add.php",
  2885. "classes/src/Operations/directsum.php",
  2886. "classes/src/Operations/subtract.php",
  2887. "classes/src/Operations/multiply.php",
  2888. "classes/src/Operations/divideby.php",
  2889. "classes/src/Operations/divideinto.php"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Mark Baker",
  2899. "email": "mark@demon-angel.eu"
  2900. }
  2901. ],
  2902. "description": "PHP Class for working with matrices",
  2903. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2904. "keywords": [
  2905. "mathematics",
  2906. "matrix",
  2907. "vector"
  2908. ],
  2909. "support": {
  2910. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2911. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2912. },
  2913. "time": "2021-05-25T15:42:17+00:00"
  2914. },
  2915. {
  2916. "name": "monolog/monolog",
  2917. "version": "2.2.0",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/Seldaek/monolog.git",
  2921. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2926. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2927. "shasum": "",
  2928. "mirrors": [
  2929. {
  2930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2931. "preferred": true
  2932. }
  2933. ]
  2934. },
  2935. "require": {
  2936. "php": ">=7.2",
  2937. "psr/log": "^1.0.1"
  2938. },
  2939. "provide": {
  2940. "psr/log-implementation": "1.0.0"
  2941. },
  2942. "require-dev": {
  2943. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2944. "doctrine/couchdb": "~1.0@dev",
  2945. "elasticsearch/elasticsearch": "^7",
  2946. "graylog2/gelf-php": "^1.4.2",
  2947. "mongodb/mongodb": "^1.8",
  2948. "php-amqplib/php-amqplib": "~2.4",
  2949. "php-console/php-console": "^3.1.3",
  2950. "phpspec/prophecy": "^1.6.1",
  2951. "phpstan/phpstan": "^0.12.59",
  2952. "phpunit/phpunit": "^8.5",
  2953. "predis/predis": "^1.1",
  2954. "rollbar/rollbar": "^1.3",
  2955. "ruflin/elastica": ">=0.90 <7.0.1",
  2956. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2957. },
  2958. "suggest": {
  2959. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2960. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2961. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2962. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2963. "ext-mbstring": "Allow to work properly with unicode symbols",
  2964. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2965. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2966. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2967. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2968. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2969. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2970. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-main": "2.x-dev"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Monolog\\": "src/Monolog"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Jordi Boggiano",
  2990. "email": "j.boggiano@seld.be",
  2991. "homepage": "https://seld.be"
  2992. }
  2993. ],
  2994. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2995. "homepage": "https://github.com/Seldaek/monolog",
  2996. "keywords": [
  2997. "log",
  2998. "logging",
  2999. "psr-3"
  3000. ],
  3001. "support": {
  3002. "issues": "https://github.com/Seldaek/monolog/issues",
  3003. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3004. },
  3005. "funding": [
  3006. {
  3007. "url": "https://github.com/Seldaek",
  3008. "type": "github"
  3009. },
  3010. {
  3011. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3012. "type": "tidelift"
  3013. }
  3014. ],
  3015. "time": "2020-12-14T13:15:25+00:00"
  3016. },
  3017. {
  3018. "name": "myclabs/php-enum",
  3019. "version": "1.8.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/myclabs/php-enum.git",
  3023. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3028. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3029. "shasum": "",
  3030. "mirrors": [
  3031. {
  3032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3033. "preferred": true
  3034. }
  3035. ]
  3036. },
  3037. "require": {
  3038. "ext-json": "*",
  3039. "php": "^7.3 || ^8.0"
  3040. },
  3041. "require-dev": {
  3042. "phpunit/phpunit": "^9.5",
  3043. "squizlabs/php_codesniffer": "1.*",
  3044. "vimeo/psalm": "^4.5.1"
  3045. },
  3046. "type": "library",
  3047. "autoload": {
  3048. "psr-4": {
  3049. "MyCLabs\\Enum\\": "src/"
  3050. }
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "PHP Enum contributors",
  3059. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3060. }
  3061. ],
  3062. "description": "PHP Enum implementation",
  3063. "homepage": "http://github.com/myclabs/php-enum",
  3064. "keywords": [
  3065. "enum"
  3066. ],
  3067. "support": {
  3068. "issues": "https://github.com/myclabs/php-enum/issues",
  3069. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3070. },
  3071. "funding": [
  3072. {
  3073. "url": "https://github.com/mnapoli",
  3074. "type": "github"
  3075. },
  3076. {
  3077. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3078. "type": "tidelift"
  3079. }
  3080. ],
  3081. "time": "2021-02-15T16:11:48+00:00"
  3082. },
  3083. {
  3084. "name": "nesbot/carbon",
  3085. "version": "2.48.1",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/briannesbitt/Carbon.git",
  3089. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3094. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3095. "shasum": "",
  3096. "mirrors": [
  3097. {
  3098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3099. "preferred": true
  3100. }
  3101. ]
  3102. },
  3103. "require": {
  3104. "ext-json": "*",
  3105. "php": "^7.1.8 || ^8.0",
  3106. "symfony/polyfill-mbstring": "^1.0",
  3107. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3108. },
  3109. "require-dev": {
  3110. "doctrine/orm": "^2.7",
  3111. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3112. "kylekatarnls/multi-tester": "^2.0",
  3113. "phpmd/phpmd": "^2.9",
  3114. "phpstan/extension-installer": "^1.0",
  3115. "phpstan/phpstan": "^0.12.54",
  3116. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3117. "squizlabs/php_codesniffer": "^3.4"
  3118. },
  3119. "bin": [
  3120. "bin/carbon"
  3121. ],
  3122. "type": "library",
  3123. "extra": {
  3124. "branch-alias": {
  3125. "dev-master": "2.x-dev",
  3126. "dev-3.x": "3.x-dev"
  3127. },
  3128. "laravel": {
  3129. "providers": [
  3130. "Carbon\\Laravel\\ServiceProvider"
  3131. ]
  3132. },
  3133. "phpstan": {
  3134. "includes": [
  3135. "extension.neon"
  3136. ]
  3137. }
  3138. },
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Carbon\\": "src/Carbon/"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Brian Nesbitt",
  3151. "email": "brian@nesbot.com",
  3152. "homepage": "http://nesbot.com"
  3153. },
  3154. {
  3155. "name": "kylekatarnls",
  3156. "homepage": "http://github.com/kylekatarnls"
  3157. }
  3158. ],
  3159. "description": "An API extension for DateTime that supports 281 different languages.",
  3160. "homepage": "http://carbon.nesbot.com",
  3161. "keywords": [
  3162. "date",
  3163. "datetime",
  3164. "time"
  3165. ],
  3166. "support": {
  3167. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3168. "source": "https://github.com/briannesbitt/Carbon"
  3169. },
  3170. "funding": [
  3171. {
  3172. "url": "https://opencollective.com/Carbon",
  3173. "type": "open_collective"
  3174. },
  3175. {
  3176. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3177. "type": "tidelift"
  3178. }
  3179. ],
  3180. "time": "2021-05-26T22:08:38+00:00"
  3181. },
  3182. {
  3183. "name": "nikic/php-parser",
  3184. "version": "v4.10.5",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/nikic/PHP-Parser.git",
  3188. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3193. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "ext-tokenizer": "*",
  3204. "php": ">=7.0"
  3205. },
  3206. "require-dev": {
  3207. "ircmaxell/php-yacc": "^0.0.7",
  3208. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3209. },
  3210. "bin": [
  3211. "bin/php-parse"
  3212. ],
  3213. "type": "library",
  3214. "extra": {
  3215. "branch-alias": {
  3216. "dev-master": "4.9-dev"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "PhpParser\\": "lib/PhpParser"
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "BSD-3-Clause"
  3227. ],
  3228. "authors": [
  3229. {
  3230. "name": "Nikita Popov"
  3231. }
  3232. ],
  3233. "description": "A PHP parser written in PHP",
  3234. "keywords": [
  3235. "parser",
  3236. "php"
  3237. ],
  3238. "support": {
  3239. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3240. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3241. },
  3242. "time": "2021-05-03T19:11:20+00:00"
  3243. },
  3244. {
  3245. "name": "opis/closure",
  3246. "version": "3.6.2",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/opis/closure.git",
  3250. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3255. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3256. "shasum": "",
  3257. "mirrors": [
  3258. {
  3259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3260. "preferred": true
  3261. }
  3262. ]
  3263. },
  3264. "require": {
  3265. "php": "^5.4 || ^7.0 || ^8.0"
  3266. },
  3267. "require-dev": {
  3268. "jeremeamia/superclosure": "^2.0",
  3269. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "3.6.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Opis\\Closure\\": "src/"
  3280. },
  3281. "files": [
  3282. "functions.php"
  3283. ]
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Marius Sarca",
  3292. "email": "marius.sarca@gmail.com"
  3293. },
  3294. {
  3295. "name": "Sorin Sarca",
  3296. "email": "sarca_sorin@hotmail.com"
  3297. }
  3298. ],
  3299. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3300. "homepage": "https://opis.io/closure",
  3301. "keywords": [
  3302. "anonymous functions",
  3303. "closure",
  3304. "function",
  3305. "serializable",
  3306. "serialization",
  3307. "serialize"
  3308. ],
  3309. "support": {
  3310. "issues": "https://github.com/opis/closure/issues",
  3311. "source": "https://github.com/opis/closure/tree/3.6.2"
  3312. },
  3313. "time": "2021-04-09T13:42:10+00:00"
  3314. },
  3315. {
  3316. "name": "oursdreams/export",
  3317. "version": "0.0.7",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://github.com/oursdreams/export.git",
  3321. "reference": "507ed53371d4ecc4f4350a9066422621ac2fae1c"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://api.github.com/repos/oursdreams/export/zipball/507ed53371d4ecc4f4350a9066422621ac2fae1c",
  3326. "reference": "507ed53371d4ecc4f4350a9066422621ac2fae1c",
  3327. "shasum": "",
  3328. "mirrors": [
  3329. {
  3330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3331. "preferred": true
  3332. }
  3333. ]
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "laravel": {
  3338. "providers": [
  3339. "Oursdreams\\Export\\ExportServiceProvider"
  3340. ]
  3341. }
  3342. },
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Oursdreams\\Export\\": "./src"
  3346. }
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "MIT"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "oursdreams",
  3355. "email": "z1792524653@163.com"
  3356. }
  3357. ],
  3358. "description": "A simple export plug-in",
  3359. "support": {
  3360. "issues": "https://github.com/oursdreams/export/issues",
  3361. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3362. },
  3363. "time": "2021-05-28T02:57:41+00:00"
  3364. },
  3365. {
  3366. "name": "overtrue/laravel-pinyin",
  3367. "version": "4.0.0",
  3368. "source": {
  3369. "type": "git",
  3370. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3371. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3372. },
  3373. "dist": {
  3374. "type": "zip",
  3375. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3376. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3377. "shasum": "",
  3378. "mirrors": [
  3379. {
  3380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3381. "preferred": true
  3382. }
  3383. ]
  3384. },
  3385. "require": {
  3386. "overtrue/pinyin": "~4.0"
  3387. },
  3388. "type": "library",
  3389. "extra": {
  3390. "laravel": {
  3391. "providers": [
  3392. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3393. ],
  3394. "aliases": {
  3395. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3396. }
  3397. }
  3398. },
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Overtrue\\LaravelPinyin\\": "src/"
  3402. },
  3403. "files": [
  3404. "src/helpers.php"
  3405. ]
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "overtrue",
  3414. "email": "anzhengchao@gmail.com"
  3415. }
  3416. ],
  3417. "description": "Chinese to Pinyin translator.",
  3418. "keywords": [
  3419. "Chinese",
  3420. "Pinyin",
  3421. "laravel",
  3422. "overtrue"
  3423. ],
  3424. "support": {
  3425. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3426. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3427. },
  3428. "time": "2018-10-10T09:02:46+00:00"
  3429. },
  3430. {
  3431. "name": "overtrue/pinyin",
  3432. "version": "4.0.7",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/overtrue/pinyin.git",
  3436. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3441. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3442. "shasum": "",
  3443. "mirrors": [
  3444. {
  3445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3446. "preferred": true
  3447. }
  3448. ]
  3449. },
  3450. "require": {
  3451. "php": ">=7.1"
  3452. },
  3453. "require-dev": {
  3454. "brainmaestro/composer-git-hooks": "^2.7",
  3455. "friendsofphp/php-cs-fixer": "^2.16",
  3456. "phpunit/phpunit": "~8.0"
  3457. },
  3458. "type": "library",
  3459. "extra": {
  3460. "hooks": {
  3461. "pre-commit": [
  3462. "composer test",
  3463. "composer fix-style"
  3464. ],
  3465. "pre-push": [
  3466. "composer test",
  3467. "composer check-style"
  3468. ]
  3469. }
  3470. },
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Overtrue\\Pinyin\\": "src/"
  3474. },
  3475. "files": [
  3476. "src/const.php"
  3477. ]
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "overtrue",
  3486. "email": "anzhengchao@gmail.com",
  3487. "homepage": "http://github.com/overtrue"
  3488. }
  3489. ],
  3490. "description": "Chinese to pinyin translator.",
  3491. "homepage": "https://github.com/overtrue/pinyin",
  3492. "keywords": [
  3493. "Chinese",
  3494. "Pinyin",
  3495. "cn2pinyin"
  3496. ],
  3497. "support": {
  3498. "issues": "https://github.com/overtrue/pinyin/issues",
  3499. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://www.patreon.com/overtrue",
  3504. "type": "patreon"
  3505. }
  3506. ],
  3507. "time": "2021-04-16T11:13:48+00:00"
  3508. },
  3509. {
  3510. "name": "paragonie/random_compat",
  3511. "version": "v9.99.100",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/paragonie/random_compat.git",
  3515. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3520. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3521. "shasum": "",
  3522. "mirrors": [
  3523. {
  3524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3525. "preferred": true
  3526. }
  3527. ]
  3528. },
  3529. "require": {
  3530. "php": ">= 7"
  3531. },
  3532. "require-dev": {
  3533. "phpunit/phpunit": "4.*|5.*",
  3534. "vimeo/psalm": "^1"
  3535. },
  3536. "suggest": {
  3537. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3538. },
  3539. "type": "library",
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "Paragon Initiative Enterprises",
  3547. "email": "security@paragonie.com",
  3548. "homepage": "https://paragonie.com"
  3549. }
  3550. ],
  3551. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3552. "keywords": [
  3553. "csprng",
  3554. "polyfill",
  3555. "pseudorandom",
  3556. "random"
  3557. ],
  3558. "support": {
  3559. "email": "info@paragonie.com",
  3560. "issues": "https://github.com/paragonie/random_compat/issues",
  3561. "source": "https://github.com/paragonie/random_compat"
  3562. },
  3563. "time": "2020-10-15T08:29:30+00:00"
  3564. },
  3565. {
  3566. "name": "paragonie/sodium_compat",
  3567. "version": "v1.16.1",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/paragonie/sodium_compat.git",
  3571. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3576. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3577. "shasum": "",
  3578. "mirrors": [
  3579. {
  3580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3581. "preferred": true
  3582. }
  3583. ]
  3584. },
  3585. "require": {
  3586. "paragonie/random_compat": ">=1",
  3587. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3588. },
  3589. "require-dev": {
  3590. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3591. },
  3592. "suggest": {
  3593. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3594. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3595. },
  3596. "type": "library",
  3597. "autoload": {
  3598. "files": [
  3599. "autoload.php"
  3600. ]
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "ISC"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Paragon Initiative Enterprises",
  3609. "email": "security@paragonie.com"
  3610. },
  3611. {
  3612. "name": "Frank Denis",
  3613. "email": "jedisct1@pureftpd.org"
  3614. }
  3615. ],
  3616. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3617. "keywords": [
  3618. "Authentication",
  3619. "BLAKE2b",
  3620. "ChaCha20",
  3621. "ChaCha20-Poly1305",
  3622. "Chapoly",
  3623. "Curve25519",
  3624. "Ed25519",
  3625. "EdDSA",
  3626. "Edwards-curve Digital Signature Algorithm",
  3627. "Elliptic Curve Diffie-Hellman",
  3628. "Poly1305",
  3629. "Pure-PHP cryptography",
  3630. "RFC 7748",
  3631. "RFC 8032",
  3632. "Salpoly",
  3633. "Salsa20",
  3634. "X25519",
  3635. "XChaCha20-Poly1305",
  3636. "XSalsa20-Poly1305",
  3637. "Xchacha20",
  3638. "Xsalsa20",
  3639. "aead",
  3640. "cryptography",
  3641. "ecdh",
  3642. "elliptic curve",
  3643. "elliptic curve cryptography",
  3644. "encryption",
  3645. "libsodium",
  3646. "php",
  3647. "public-key cryptography",
  3648. "secret-key cryptography",
  3649. "side-channel resistant"
  3650. ],
  3651. "support": {
  3652. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3653. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3654. },
  3655. "time": "2021-05-25T12:58:14+00:00"
  3656. },
  3657. {
  3658. "name": "phpoffice/phpspreadsheet",
  3659. "version": "1.16.0",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3663. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3668. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3669. "shasum": "",
  3670. "mirrors": [
  3671. {
  3672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3673. "preferred": true
  3674. }
  3675. ]
  3676. },
  3677. "require": {
  3678. "ext-ctype": "*",
  3679. "ext-dom": "*",
  3680. "ext-fileinfo": "*",
  3681. "ext-gd": "*",
  3682. "ext-iconv": "*",
  3683. "ext-libxml": "*",
  3684. "ext-mbstring": "*",
  3685. "ext-simplexml": "*",
  3686. "ext-xml": "*",
  3687. "ext-xmlreader": "*",
  3688. "ext-xmlwriter": "*",
  3689. "ext-zip": "*",
  3690. "ext-zlib": "*",
  3691. "ezyang/htmlpurifier": "^4.13",
  3692. "maennchen/zipstream-php": "^2.1",
  3693. "markbaker/complex": "^1.5||^2.0",
  3694. "markbaker/matrix": "^1.2||^2.0",
  3695. "php": "^7.2||^8.0",
  3696. "psr/http-client": "^1.0",
  3697. "psr/http-factory": "^1.0",
  3698. "psr/simple-cache": "^1.0"
  3699. },
  3700. "require-dev": {
  3701. "dompdf/dompdf": "^0.8.5",
  3702. "friendsofphp/php-cs-fixer": "^2.16",
  3703. "jpgraph/jpgraph": "^4.0",
  3704. "mpdf/mpdf": "^8.0",
  3705. "phpcompatibility/php-compatibility": "^9.3",
  3706. "phpunit/phpunit": "^8.5||^9.3",
  3707. "squizlabs/php_codesniffer": "^3.5",
  3708. "tecnickcom/tcpdf": "^6.3"
  3709. },
  3710. "suggest": {
  3711. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3712. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3713. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3714. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3715. },
  3716. "type": "library",
  3717. "autoload": {
  3718. "psr-4": {
  3719. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3720. }
  3721. },
  3722. "notification-url": "https://packagist.org/downloads/",
  3723. "license": [
  3724. "MIT"
  3725. ],
  3726. "authors": [
  3727. {
  3728. "name": "Maarten Balliauw",
  3729. "homepage": "https://blog.maartenballiauw.be"
  3730. },
  3731. {
  3732. "name": "Mark Baker",
  3733. "homepage": "https://markbakeruk.net"
  3734. },
  3735. {
  3736. "name": "Franck Lefevre",
  3737. "homepage": "https://rootslabs.net"
  3738. },
  3739. {
  3740. "name": "Erik Tilt"
  3741. },
  3742. {
  3743. "name": "Adrien Crivelli"
  3744. }
  3745. ],
  3746. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3747. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3748. "keywords": [
  3749. "OpenXML",
  3750. "excel",
  3751. "gnumeric",
  3752. "ods",
  3753. "php",
  3754. "spreadsheet",
  3755. "xls",
  3756. "xlsx"
  3757. ],
  3758. "support": {
  3759. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3760. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3761. },
  3762. "time": "2020-12-31T18:03:49+00:00"
  3763. },
  3764. {
  3765. "name": "phpoption/phpoption",
  3766. "version": "1.7.5",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/schmittjoh/php-option.git",
  3770. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3775. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3776. "shasum": "",
  3777. "mirrors": [
  3778. {
  3779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3780. "preferred": true
  3781. }
  3782. ]
  3783. },
  3784. "require": {
  3785. "php": "^5.5.9 || ^7.0 || ^8.0"
  3786. },
  3787. "require-dev": {
  3788. "bamarni/composer-bin-plugin": "^1.4.1",
  3789. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-master": "1.7-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "PhpOption\\": "src/PhpOption/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "Apache-2.0"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Johannes M. Schmitt",
  3809. "email": "schmittjoh@gmail.com"
  3810. },
  3811. {
  3812. "name": "Graham Campbell",
  3813. "email": "graham@alt-three.com"
  3814. }
  3815. ],
  3816. "description": "Option Type for PHP",
  3817. "keywords": [
  3818. "language",
  3819. "option",
  3820. "php",
  3821. "type"
  3822. ],
  3823. "support": {
  3824. "issues": "https://github.com/schmittjoh/php-option/issues",
  3825. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://github.com/GrahamCampbell",
  3830. "type": "github"
  3831. },
  3832. {
  3833. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3834. "type": "tidelift"
  3835. }
  3836. ],
  3837. "time": "2020-07-20T17:29:33+00:00"
  3838. },
  3839. {
  3840. "name": "predis/predis",
  3841. "version": "v1.1.7",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/predis/predis.git",
  3845. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3850. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3851. "shasum": "",
  3852. "mirrors": [
  3853. {
  3854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3855. "preferred": true
  3856. }
  3857. ]
  3858. },
  3859. "require": {
  3860. "php": ">=5.3.9"
  3861. },
  3862. "require-dev": {
  3863. "phpunit/phpunit": "~4.8"
  3864. },
  3865. "suggest": {
  3866. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3867. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3868. },
  3869. "type": "library",
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Predis\\": "src/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Daniele Alessandri",
  3882. "email": "suppakilla@gmail.com",
  3883. "homepage": "http://clorophilla.net",
  3884. "role": "Creator & Maintainer"
  3885. },
  3886. {
  3887. "name": "Till Krüss",
  3888. "homepage": "https://till.im",
  3889. "role": "Maintainer"
  3890. }
  3891. ],
  3892. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3893. "homepage": "http://github.com/predis/predis",
  3894. "keywords": [
  3895. "nosql",
  3896. "predis",
  3897. "redis"
  3898. ],
  3899. "support": {
  3900. "issues": "https://github.com/predis/predis/issues",
  3901. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3902. },
  3903. "funding": [
  3904. {
  3905. "url": "https://github.com/sponsors/tillkruss",
  3906. "type": "github"
  3907. }
  3908. ],
  3909. "time": "2021-04-04T19:34:46+00:00"
  3910. },
  3911. {
  3912. "name": "psr/container",
  3913. "version": "1.1.1",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/php-fig/container.git",
  3917. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3922. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3923. "shasum": "",
  3924. "mirrors": [
  3925. {
  3926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3927. "preferred": true
  3928. }
  3929. ]
  3930. },
  3931. "require": {
  3932. "php": ">=7.2.0"
  3933. },
  3934. "type": "library",
  3935. "autoload": {
  3936. "psr-4": {
  3937. "Psr\\Container\\": "src/"
  3938. }
  3939. },
  3940. "notification-url": "https://packagist.org/downloads/",
  3941. "license": [
  3942. "MIT"
  3943. ],
  3944. "authors": [
  3945. {
  3946. "name": "PHP-FIG",
  3947. "homepage": "https://www.php-fig.org/"
  3948. }
  3949. ],
  3950. "description": "Common Container Interface (PHP FIG PSR-11)",
  3951. "homepage": "https://github.com/php-fig/container",
  3952. "keywords": [
  3953. "PSR-11",
  3954. "container",
  3955. "container-interface",
  3956. "container-interop",
  3957. "psr"
  3958. ],
  3959. "support": {
  3960. "issues": "https://github.com/php-fig/container/issues",
  3961. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3962. },
  3963. "time": "2021-03-05T17:36:06+00:00"
  3964. },
  3965. {
  3966. "name": "psr/event-dispatcher",
  3967. "version": "1.0.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/php-fig/event-dispatcher.git",
  3971. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3976. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3977. "shasum": "",
  3978. "mirrors": [
  3979. {
  3980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3981. "preferred": true
  3982. }
  3983. ]
  3984. },
  3985. "require": {
  3986. "php": ">=7.2.0"
  3987. },
  3988. "type": "library",
  3989. "extra": {
  3990. "branch-alias": {
  3991. "dev-master": "1.0.x-dev"
  3992. }
  3993. },
  3994. "autoload": {
  3995. "psr-4": {
  3996. "Psr\\EventDispatcher\\": "src/"
  3997. }
  3998. },
  3999. "notification-url": "https://packagist.org/downloads/",
  4000. "license": [
  4001. "MIT"
  4002. ],
  4003. "authors": [
  4004. {
  4005. "name": "PHP-FIG",
  4006. "homepage": "http://www.php-fig.org/"
  4007. }
  4008. ],
  4009. "description": "Standard interfaces for event handling.",
  4010. "keywords": [
  4011. "events",
  4012. "psr",
  4013. "psr-14"
  4014. ],
  4015. "support": {
  4016. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4017. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4018. },
  4019. "time": "2019-01-08T18:20:26+00:00"
  4020. },
  4021. {
  4022. "name": "psr/http-client",
  4023. "version": "1.0.1",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/php-fig/http-client.git",
  4027. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4032. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4033. "shasum": "",
  4034. "mirrors": [
  4035. {
  4036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4037. "preferred": true
  4038. }
  4039. ]
  4040. },
  4041. "require": {
  4042. "php": "^7.0 || ^8.0",
  4043. "psr/http-message": "^1.0"
  4044. },
  4045. "type": "library",
  4046. "extra": {
  4047. "branch-alias": {
  4048. "dev-master": "1.0.x-dev"
  4049. }
  4050. },
  4051. "autoload": {
  4052. "psr-4": {
  4053. "Psr\\Http\\Client\\": "src/"
  4054. }
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "PHP-FIG",
  4063. "homepage": "http://www.php-fig.org/"
  4064. }
  4065. ],
  4066. "description": "Common interface for HTTP clients",
  4067. "homepage": "https://github.com/php-fig/http-client",
  4068. "keywords": [
  4069. "http",
  4070. "http-client",
  4071. "psr",
  4072. "psr-18"
  4073. ],
  4074. "support": {
  4075. "source": "https://github.com/php-fig/http-client/tree/master"
  4076. },
  4077. "time": "2020-06-29T06:28:15+00:00"
  4078. },
  4079. {
  4080. "name": "psr/http-factory",
  4081. "version": "1.0.1",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://github.com/php-fig/http-factory.git",
  4085. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4090. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4091. "shasum": "",
  4092. "mirrors": [
  4093. {
  4094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4095. "preferred": true
  4096. }
  4097. ]
  4098. },
  4099. "require": {
  4100. "php": ">=7.0.0",
  4101. "psr/http-message": "^1.0"
  4102. },
  4103. "type": "library",
  4104. "extra": {
  4105. "branch-alias": {
  4106. "dev-master": "1.0.x-dev"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "psr-4": {
  4111. "Psr\\Http\\Message\\": "src/"
  4112. }
  4113. },
  4114. "notification-url": "https://packagist.org/downloads/",
  4115. "license": [
  4116. "MIT"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "PHP-FIG",
  4121. "homepage": "http://www.php-fig.org/"
  4122. }
  4123. ],
  4124. "description": "Common interfaces for PSR-7 HTTP message factories",
  4125. "keywords": [
  4126. "factory",
  4127. "http",
  4128. "message",
  4129. "psr",
  4130. "psr-17",
  4131. "psr-7",
  4132. "request",
  4133. "response"
  4134. ],
  4135. "support": {
  4136. "source": "https://github.com/php-fig/http-factory/tree/master"
  4137. },
  4138. "time": "2019-04-30T12:38:16+00:00"
  4139. },
  4140. {
  4141. "name": "psr/http-message",
  4142. "version": "1.0.1",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://github.com/php-fig/http-message.git",
  4146. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4151. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4152. "shasum": "",
  4153. "mirrors": [
  4154. {
  4155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4156. "preferred": true
  4157. }
  4158. ]
  4159. },
  4160. "require": {
  4161. "php": ">=5.3.0"
  4162. },
  4163. "type": "library",
  4164. "extra": {
  4165. "branch-alias": {
  4166. "dev-master": "1.0.x-dev"
  4167. }
  4168. },
  4169. "autoload": {
  4170. "psr-4": {
  4171. "Psr\\Http\\Message\\": "src/"
  4172. }
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "PHP-FIG",
  4181. "homepage": "http://www.php-fig.org/"
  4182. }
  4183. ],
  4184. "description": "Common interface for HTTP messages",
  4185. "homepage": "https://github.com/php-fig/http-message",
  4186. "keywords": [
  4187. "http",
  4188. "http-message",
  4189. "psr",
  4190. "psr-7",
  4191. "request",
  4192. "response"
  4193. ],
  4194. "support": {
  4195. "source": "https://github.com/php-fig/http-message/tree/master"
  4196. },
  4197. "time": "2016-08-06T14:39:51+00:00"
  4198. },
  4199. {
  4200. "name": "psr/log",
  4201. "version": "1.1.4",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/php-fig/log.git",
  4205. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4210. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4211. "shasum": "",
  4212. "mirrors": [
  4213. {
  4214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4215. "preferred": true
  4216. }
  4217. ]
  4218. },
  4219. "require": {
  4220. "php": ">=5.3.0"
  4221. },
  4222. "type": "library",
  4223. "extra": {
  4224. "branch-alias": {
  4225. "dev-master": "1.1.x-dev"
  4226. }
  4227. },
  4228. "autoload": {
  4229. "psr-4": {
  4230. "Psr\\Log\\": "Psr/Log/"
  4231. }
  4232. },
  4233. "notification-url": "https://packagist.org/downloads/",
  4234. "license": [
  4235. "MIT"
  4236. ],
  4237. "authors": [
  4238. {
  4239. "name": "PHP-FIG",
  4240. "homepage": "https://www.php-fig.org/"
  4241. }
  4242. ],
  4243. "description": "Common interface for logging libraries",
  4244. "homepage": "https://github.com/php-fig/log",
  4245. "keywords": [
  4246. "log",
  4247. "psr",
  4248. "psr-3"
  4249. ],
  4250. "support": {
  4251. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4252. },
  4253. "time": "2021-05-03T11:20:27+00:00"
  4254. },
  4255. {
  4256. "name": "psr/simple-cache",
  4257. "version": "1.0.1",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/php-fig/simple-cache.git",
  4261. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4266. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4267. "shasum": "",
  4268. "mirrors": [
  4269. {
  4270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4271. "preferred": true
  4272. }
  4273. ]
  4274. },
  4275. "require": {
  4276. "php": ">=5.3.0"
  4277. },
  4278. "type": "library",
  4279. "extra": {
  4280. "branch-alias": {
  4281. "dev-master": "1.0.x-dev"
  4282. }
  4283. },
  4284. "autoload": {
  4285. "psr-4": {
  4286. "Psr\\SimpleCache\\": "src/"
  4287. }
  4288. },
  4289. "notification-url": "https://packagist.org/downloads/",
  4290. "license": [
  4291. "MIT"
  4292. ],
  4293. "authors": [
  4294. {
  4295. "name": "PHP-FIG",
  4296. "homepage": "http://www.php-fig.org/"
  4297. }
  4298. ],
  4299. "description": "Common interfaces for simple caching",
  4300. "keywords": [
  4301. "cache",
  4302. "caching",
  4303. "psr",
  4304. "psr-16",
  4305. "simple-cache"
  4306. ],
  4307. "support": {
  4308. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4309. },
  4310. "time": "2017-10-23T01:57:42+00:00"
  4311. },
  4312. {
  4313. "name": "psy/psysh",
  4314. "version": "v0.10.8",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://github.com/bobthecow/psysh.git",
  4318. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4323. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4324. "shasum": "",
  4325. "mirrors": [
  4326. {
  4327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4328. "preferred": true
  4329. }
  4330. ]
  4331. },
  4332. "require": {
  4333. "ext-json": "*",
  4334. "ext-tokenizer": "*",
  4335. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4336. "php": "^8.0 || ^7.0 || ^5.5.9",
  4337. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4338. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4339. },
  4340. "require-dev": {
  4341. "bamarni/composer-bin-plugin": "^1.2",
  4342. "hoa/console": "3.17.*"
  4343. },
  4344. "suggest": {
  4345. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4346. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4347. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4348. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4349. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4350. },
  4351. "bin": [
  4352. "bin/psysh"
  4353. ],
  4354. "type": "library",
  4355. "extra": {
  4356. "branch-alias": {
  4357. "dev-main": "0.10.x-dev"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "files": [
  4362. "src/functions.php"
  4363. ],
  4364. "psr-4": {
  4365. "Psy\\": "src/"
  4366. }
  4367. },
  4368. "notification-url": "https://packagist.org/downloads/",
  4369. "license": [
  4370. "MIT"
  4371. ],
  4372. "authors": [
  4373. {
  4374. "name": "Justin Hileman",
  4375. "email": "justin@justinhileman.info",
  4376. "homepage": "http://justinhileman.com"
  4377. }
  4378. ],
  4379. "description": "An interactive shell for modern PHP.",
  4380. "homepage": "http://psysh.org",
  4381. "keywords": [
  4382. "REPL",
  4383. "console",
  4384. "interactive",
  4385. "shell"
  4386. ],
  4387. "support": {
  4388. "issues": "https://github.com/bobthecow/psysh/issues",
  4389. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4390. },
  4391. "time": "2021-04-10T16:23:39+00:00"
  4392. },
  4393. {
  4394. "name": "pusher/pusher-php-server",
  4395. "version": "v4.1.5",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/pusher/pusher-http-php.git",
  4399. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4404. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4405. "shasum": "",
  4406. "mirrors": [
  4407. {
  4408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4409. "preferred": true
  4410. }
  4411. ]
  4412. },
  4413. "require": {
  4414. "ext-curl": "*",
  4415. "paragonie/sodium_compat": "^1.6",
  4416. "php": "^7.1|^8.0",
  4417. "psr/log": "^1.0"
  4418. },
  4419. "require-dev": {
  4420. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4421. },
  4422. "type": "library",
  4423. "extra": {
  4424. "branch-alias": {
  4425. "dev-master": "3.4-dev"
  4426. }
  4427. },
  4428. "autoload": {
  4429. "psr-4": {
  4430. "Pusher\\": "src/"
  4431. }
  4432. },
  4433. "notification-url": "https://packagist.org/downloads/",
  4434. "license": [
  4435. "MIT"
  4436. ],
  4437. "description": "Library for interacting with the Pusher REST API",
  4438. "keywords": [
  4439. "events",
  4440. "messaging",
  4441. "php-pusher-server",
  4442. "publish",
  4443. "push",
  4444. "pusher",
  4445. "real time",
  4446. "real-time",
  4447. "realtime",
  4448. "rest",
  4449. "trigger"
  4450. ],
  4451. "support": {
  4452. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4453. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4454. },
  4455. "time": "2020-12-09T09:38:19+00:00"
  4456. },
  4457. {
  4458. "name": "ralouphie/getallheaders",
  4459. "version": "3.0.3",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/ralouphie/getallheaders.git",
  4463. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4468. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4469. "shasum": "",
  4470. "mirrors": [
  4471. {
  4472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4473. "preferred": true
  4474. }
  4475. ]
  4476. },
  4477. "require": {
  4478. "php": ">=5.6"
  4479. },
  4480. "require-dev": {
  4481. "php-coveralls/php-coveralls": "^2.1",
  4482. "phpunit/phpunit": "^5 || ^6.5"
  4483. },
  4484. "type": "library",
  4485. "autoload": {
  4486. "files": [
  4487. "src/getallheaders.php"
  4488. ]
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Ralph Khattar",
  4497. "email": "ralph.khattar@gmail.com"
  4498. }
  4499. ],
  4500. "description": "A polyfill for getallheaders.",
  4501. "support": {
  4502. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4503. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4504. },
  4505. "time": "2019-03-08T08:55:37+00:00"
  4506. },
  4507. {
  4508. "name": "ramsey/collection",
  4509. "version": "1.1.3",
  4510. "source": {
  4511. "type": "git",
  4512. "url": "https://github.com/ramsey/collection.git",
  4513. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4514. },
  4515. "dist": {
  4516. "type": "zip",
  4517. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4518. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4519. "shasum": "",
  4520. "mirrors": [
  4521. {
  4522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4523. "preferred": true
  4524. }
  4525. ]
  4526. },
  4527. "require": {
  4528. "php": "^7.2 || ^8"
  4529. },
  4530. "require-dev": {
  4531. "captainhook/captainhook": "^5.3",
  4532. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4533. "ergebnis/composer-normalize": "^2.6",
  4534. "fakerphp/faker": "^1.5",
  4535. "hamcrest/hamcrest-php": "^2",
  4536. "jangregor/phpstan-prophecy": "^0.8",
  4537. "mockery/mockery": "^1.3",
  4538. "phpstan/extension-installer": "^1",
  4539. "phpstan/phpstan": "^0.12.32",
  4540. "phpstan/phpstan-mockery": "^0.12.5",
  4541. "phpstan/phpstan-phpunit": "^0.12.11",
  4542. "phpunit/phpunit": "^8.5 || ^9",
  4543. "psy/psysh": "^0.10.4",
  4544. "slevomat/coding-standard": "^6.3",
  4545. "squizlabs/php_codesniffer": "^3.5",
  4546. "vimeo/psalm": "^4.4"
  4547. },
  4548. "type": "library",
  4549. "autoload": {
  4550. "psr-4": {
  4551. "Ramsey\\Collection\\": "src/"
  4552. }
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "MIT"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Ben Ramsey",
  4561. "email": "ben@benramsey.com",
  4562. "homepage": "https://benramsey.com"
  4563. }
  4564. ],
  4565. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4566. "keywords": [
  4567. "array",
  4568. "collection",
  4569. "hash",
  4570. "map",
  4571. "queue",
  4572. "set"
  4573. ],
  4574. "support": {
  4575. "issues": "https://github.com/ramsey/collection/issues",
  4576. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4577. },
  4578. "funding": [
  4579. {
  4580. "url": "https://github.com/ramsey",
  4581. "type": "github"
  4582. },
  4583. {
  4584. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4585. "type": "tidelift"
  4586. }
  4587. ],
  4588. "time": "2021-01-21T17:40:04+00:00"
  4589. },
  4590. {
  4591. "name": "ramsey/uuid",
  4592. "version": "4.1.1",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/ramsey/uuid.git",
  4596. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4601. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4602. "shasum": "",
  4603. "mirrors": [
  4604. {
  4605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4606. "preferred": true
  4607. }
  4608. ]
  4609. },
  4610. "require": {
  4611. "brick/math": "^0.8 || ^0.9",
  4612. "ext-json": "*",
  4613. "php": "^7.2 || ^8",
  4614. "ramsey/collection": "^1.0",
  4615. "symfony/polyfill-ctype": "^1.8"
  4616. },
  4617. "replace": {
  4618. "rhumsaa/uuid": "self.version"
  4619. },
  4620. "require-dev": {
  4621. "codeception/aspect-mock": "^3",
  4622. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4623. "doctrine/annotations": "^1.8",
  4624. "goaop/framework": "^2",
  4625. "mockery/mockery": "^1.3",
  4626. "moontoast/math": "^1.1",
  4627. "paragonie/random-lib": "^2",
  4628. "php-mock/php-mock-mockery": "^1.3",
  4629. "php-mock/php-mock-phpunit": "^2.5",
  4630. "php-parallel-lint/php-parallel-lint": "^1.1",
  4631. "phpbench/phpbench": "^0.17.1",
  4632. "phpstan/extension-installer": "^1.0",
  4633. "phpstan/phpstan": "^0.12",
  4634. "phpstan/phpstan-mockery": "^0.12",
  4635. "phpstan/phpstan-phpunit": "^0.12",
  4636. "phpunit/phpunit": "^8.5",
  4637. "psy/psysh": "^0.10.0",
  4638. "slevomat/coding-standard": "^6.0",
  4639. "squizlabs/php_codesniffer": "^3.5",
  4640. "vimeo/psalm": "3.9.4"
  4641. },
  4642. "suggest": {
  4643. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4644. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4645. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4646. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4647. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4648. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4649. },
  4650. "type": "library",
  4651. "extra": {
  4652. "branch-alias": {
  4653. "dev-master": "4.x-dev"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "Ramsey\\Uuid\\": "src/"
  4659. },
  4660. "files": [
  4661. "src/functions.php"
  4662. ]
  4663. },
  4664. "notification-url": "https://packagist.org/downloads/",
  4665. "license": [
  4666. "MIT"
  4667. ],
  4668. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4669. "homepage": "https://github.com/ramsey/uuid",
  4670. "keywords": [
  4671. "guid",
  4672. "identifier",
  4673. "uuid"
  4674. ],
  4675. "support": {
  4676. "issues": "https://github.com/ramsey/uuid/issues",
  4677. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4678. "source": "https://github.com/ramsey/uuid"
  4679. },
  4680. "funding": [
  4681. {
  4682. "url": "https://github.com/ramsey",
  4683. "type": "github"
  4684. }
  4685. ],
  4686. "time": "2020-08-18T17:17:46+00:00"
  4687. },
  4688. {
  4689. "name": "swiftmailer/swiftmailer",
  4690. "version": "v6.2.7",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4694. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4699. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4700. "shasum": "",
  4701. "mirrors": [
  4702. {
  4703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4704. "preferred": true
  4705. }
  4706. ]
  4707. },
  4708. "require": {
  4709. "egulias/email-validator": "^2.0|^3.1",
  4710. "php": ">=7.0.0",
  4711. "symfony/polyfill-iconv": "^1.0",
  4712. "symfony/polyfill-intl-idn": "^1.10",
  4713. "symfony/polyfill-mbstring": "^1.0"
  4714. },
  4715. "require-dev": {
  4716. "mockery/mockery": "^1.0",
  4717. "symfony/phpunit-bridge": "^4.4|^5.0"
  4718. },
  4719. "suggest": {
  4720. "ext-intl": "Needed to support internationalized email addresses"
  4721. },
  4722. "type": "library",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-master": "6.2-dev"
  4726. }
  4727. },
  4728. "autoload": {
  4729. "files": [
  4730. "lib/swift_required.php"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "MIT"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "Chris Corbyn"
  4740. },
  4741. {
  4742. "name": "Fabien Potencier",
  4743. "email": "fabien@symfony.com"
  4744. }
  4745. ],
  4746. "description": "Swiftmailer, free feature-rich PHP mailer",
  4747. "homepage": "https://swiftmailer.symfony.com",
  4748. "keywords": [
  4749. "email",
  4750. "mail",
  4751. "mailer"
  4752. ],
  4753. "support": {
  4754. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4755. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4756. },
  4757. "funding": [
  4758. {
  4759. "url": "https://github.com/fabpot",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4764. "type": "tidelift"
  4765. }
  4766. ],
  4767. "time": "2021-03-09T12:30:35+00:00"
  4768. },
  4769. {
  4770. "name": "symfony/console",
  4771. "version": "v5.2.8",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/symfony/console.git",
  4775. "reference": "864568fdc0208b3eba3638b6000b69d2386e6768"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/symfony/console/zipball/864568fdc0208b3eba3638b6000b69d2386e6768",
  4780. "reference": "864568fdc0208b3eba3638b6000b69d2386e6768",
  4781. "shasum": "",
  4782. "mirrors": [
  4783. {
  4784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4785. "preferred": true
  4786. }
  4787. ]
  4788. },
  4789. "require": {
  4790. "php": ">=7.2.5",
  4791. "symfony/polyfill-mbstring": "~1.0",
  4792. "symfony/polyfill-php73": "^1.8",
  4793. "symfony/polyfill-php80": "^1.15",
  4794. "symfony/service-contracts": "^1.1|^2",
  4795. "symfony/string": "^5.1"
  4796. },
  4797. "conflict": {
  4798. "symfony/dependency-injection": "<4.4",
  4799. "symfony/dotenv": "<5.1",
  4800. "symfony/event-dispatcher": "<4.4",
  4801. "symfony/lock": "<4.4",
  4802. "symfony/process": "<4.4"
  4803. },
  4804. "provide": {
  4805. "psr/log-implementation": "1.0"
  4806. },
  4807. "require-dev": {
  4808. "psr/log": "~1.0",
  4809. "symfony/config": "^4.4|^5.0",
  4810. "symfony/dependency-injection": "^4.4|^5.0",
  4811. "symfony/event-dispatcher": "^4.4|^5.0",
  4812. "symfony/lock": "^4.4|^5.0",
  4813. "symfony/process": "^4.4|^5.0",
  4814. "symfony/var-dumper": "^4.4|^5.0"
  4815. },
  4816. "suggest": {
  4817. "psr/log": "For using the console logger",
  4818. "symfony/event-dispatcher": "",
  4819. "symfony/lock": "",
  4820. "symfony/process": ""
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Symfony\\Component\\Console\\": ""
  4826. },
  4827. "exclude-from-classmap": [
  4828. "/Tests/"
  4829. ]
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Fabien Potencier",
  4838. "email": "fabien@symfony.com"
  4839. },
  4840. {
  4841. "name": "Symfony Community",
  4842. "homepage": "https://symfony.com/contributors"
  4843. }
  4844. ],
  4845. "description": "Eases the creation of beautiful and testable command line interfaces",
  4846. "homepage": "https://symfony.com",
  4847. "keywords": [
  4848. "cli",
  4849. "command line",
  4850. "console",
  4851. "terminal"
  4852. ],
  4853. "support": {
  4854. "source": "https://github.com/symfony/console/tree/v5.2.8"
  4855. },
  4856. "funding": [
  4857. {
  4858. "url": "https://symfony.com/sponsor",
  4859. "type": "custom"
  4860. },
  4861. {
  4862. "url": "https://github.com/fabpot",
  4863. "type": "github"
  4864. },
  4865. {
  4866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4867. "type": "tidelift"
  4868. }
  4869. ],
  4870. "time": "2021-05-11T15:45:21+00:00"
  4871. },
  4872. {
  4873. "name": "symfony/css-selector",
  4874. "version": "v5.2.9",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/symfony/css-selector.git",
  4878. "reference": "5d5f97809015102116208b976eb2edb44b689560"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5d5f97809015102116208b976eb2edb44b689560",
  4883. "reference": "5d5f97809015102116208b976eb2edb44b689560",
  4884. "shasum": "",
  4885. "mirrors": [
  4886. {
  4887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4888. "preferred": true
  4889. }
  4890. ]
  4891. },
  4892. "require": {
  4893. "php": ">=7.2.5"
  4894. },
  4895. "type": "library",
  4896. "autoload": {
  4897. "psr-4": {
  4898. "Symfony\\Component\\CssSelector\\": ""
  4899. },
  4900. "exclude-from-classmap": [
  4901. "/Tests/"
  4902. ]
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "authors": [
  4909. {
  4910. "name": "Fabien Potencier",
  4911. "email": "fabien@symfony.com"
  4912. },
  4913. {
  4914. "name": "Jean-François Simon",
  4915. "email": "jeanfrancois.simon@sensiolabs.com"
  4916. },
  4917. {
  4918. "name": "Symfony Community",
  4919. "homepage": "https://symfony.com/contributors"
  4920. }
  4921. ],
  4922. "description": "Converts CSS selectors to XPath expressions",
  4923. "homepage": "https://symfony.com",
  4924. "support": {
  4925. "source": "https://github.com/symfony/css-selector/tree/v5.2.9"
  4926. },
  4927. "funding": [
  4928. {
  4929. "url": "https://symfony.com/sponsor",
  4930. "type": "custom"
  4931. },
  4932. {
  4933. "url": "https://github.com/fabpot",
  4934. "type": "github"
  4935. },
  4936. {
  4937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4938. "type": "tidelift"
  4939. }
  4940. ],
  4941. "time": "2021-05-16T13:07:46+00:00"
  4942. },
  4943. {
  4944. "name": "symfony/deprecation-contracts",
  4945. "version": "v2.4.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://github.com/symfony/deprecation-contracts.git",
  4949. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4954. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4955. "shasum": "",
  4956. "mirrors": [
  4957. {
  4958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4959. "preferred": true
  4960. }
  4961. ]
  4962. },
  4963. "require": {
  4964. "php": ">=7.1"
  4965. },
  4966. "type": "library",
  4967. "extra": {
  4968. "branch-alias": {
  4969. "dev-main": "2.4-dev"
  4970. },
  4971. "thanks": {
  4972. "name": "symfony/contracts",
  4973. "url": "https://github.com/symfony/contracts"
  4974. }
  4975. },
  4976. "autoload": {
  4977. "files": [
  4978. "function.php"
  4979. ]
  4980. },
  4981. "notification-url": "https://packagist.org/downloads/",
  4982. "license": [
  4983. "MIT"
  4984. ],
  4985. "authors": [
  4986. {
  4987. "name": "Nicolas Grekas",
  4988. "email": "p@tchwork.com"
  4989. },
  4990. {
  4991. "name": "Symfony Community",
  4992. "homepage": "https://symfony.com/contributors"
  4993. }
  4994. ],
  4995. "description": "A generic function and convention to trigger deprecation notices",
  4996. "homepage": "https://symfony.com",
  4997. "support": {
  4998. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  4999. },
  5000. "funding": [
  5001. {
  5002. "url": "https://symfony.com/sponsor",
  5003. "type": "custom"
  5004. },
  5005. {
  5006. "url": "https://github.com/fabpot",
  5007. "type": "github"
  5008. },
  5009. {
  5010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5011. "type": "tidelift"
  5012. }
  5013. ],
  5014. "time": "2021-03-23T23:28:01+00:00"
  5015. },
  5016. {
  5017. "name": "symfony/error-handler",
  5018. "version": "v5.2.8",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/symfony/error-handler.git",
  5022. "reference": "1416bc16317a8188aabde251afef7618bf4687ac"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1416bc16317a8188aabde251afef7618bf4687ac",
  5027. "reference": "1416bc16317a8188aabde251afef7618bf4687ac",
  5028. "shasum": "",
  5029. "mirrors": [
  5030. {
  5031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5032. "preferred": true
  5033. }
  5034. ]
  5035. },
  5036. "require": {
  5037. "php": ">=7.2.5",
  5038. "psr/log": "^1.0",
  5039. "symfony/polyfill-php80": "^1.15",
  5040. "symfony/var-dumper": "^4.4|^5.0"
  5041. },
  5042. "require-dev": {
  5043. "symfony/deprecation-contracts": "^2.1",
  5044. "symfony/http-kernel": "^4.4|^5.0",
  5045. "symfony/serializer": "^4.4|^5.0"
  5046. },
  5047. "type": "library",
  5048. "autoload": {
  5049. "psr-4": {
  5050. "Symfony\\Component\\ErrorHandler\\": ""
  5051. },
  5052. "exclude-from-classmap": [
  5053. "/Tests/"
  5054. ]
  5055. },
  5056. "notification-url": "https://packagist.org/downloads/",
  5057. "license": [
  5058. "MIT"
  5059. ],
  5060. "authors": [
  5061. {
  5062. "name": "Fabien Potencier",
  5063. "email": "fabien@symfony.com"
  5064. },
  5065. {
  5066. "name": "Symfony Community",
  5067. "homepage": "https://symfony.com/contributors"
  5068. }
  5069. ],
  5070. "description": "Provides tools to manage errors and ease debugging PHP code",
  5071. "homepage": "https://symfony.com",
  5072. "support": {
  5073. "source": "https://github.com/symfony/error-handler/tree/v5.2.8"
  5074. },
  5075. "funding": [
  5076. {
  5077. "url": "https://symfony.com/sponsor",
  5078. "type": "custom"
  5079. },
  5080. {
  5081. "url": "https://github.com/fabpot",
  5082. "type": "github"
  5083. },
  5084. {
  5085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5086. "type": "tidelift"
  5087. }
  5088. ],
  5089. "time": "2021-05-07T13:42:21+00:00"
  5090. },
  5091. {
  5092. "name": "symfony/event-dispatcher",
  5093. "version": "v5.2.4",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://github.com/symfony/event-dispatcher.git",
  5097. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  5102. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  5103. "shasum": "",
  5104. "mirrors": [
  5105. {
  5106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5107. "preferred": true
  5108. }
  5109. ]
  5110. },
  5111. "require": {
  5112. "php": ">=7.2.5",
  5113. "symfony/deprecation-contracts": "^2.1",
  5114. "symfony/event-dispatcher-contracts": "^2",
  5115. "symfony/polyfill-php80": "^1.15"
  5116. },
  5117. "conflict": {
  5118. "symfony/dependency-injection": "<4.4"
  5119. },
  5120. "provide": {
  5121. "psr/event-dispatcher-implementation": "1.0",
  5122. "symfony/event-dispatcher-implementation": "2.0"
  5123. },
  5124. "require-dev": {
  5125. "psr/log": "~1.0",
  5126. "symfony/config": "^4.4|^5.0",
  5127. "symfony/dependency-injection": "^4.4|^5.0",
  5128. "symfony/error-handler": "^4.4|^5.0",
  5129. "symfony/expression-language": "^4.4|^5.0",
  5130. "symfony/http-foundation": "^4.4|^5.0",
  5131. "symfony/service-contracts": "^1.1|^2",
  5132. "symfony/stopwatch": "^4.4|^5.0"
  5133. },
  5134. "suggest": {
  5135. "symfony/dependency-injection": "",
  5136. "symfony/http-kernel": ""
  5137. },
  5138. "type": "library",
  5139. "autoload": {
  5140. "psr-4": {
  5141. "Symfony\\Component\\EventDispatcher\\": ""
  5142. },
  5143. "exclude-from-classmap": [
  5144. "/Tests/"
  5145. ]
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "MIT"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "Fabien Potencier",
  5154. "email": "fabien@symfony.com"
  5155. },
  5156. {
  5157. "name": "Symfony Community",
  5158. "homepage": "https://symfony.com/contributors"
  5159. }
  5160. ],
  5161. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5162. "homepage": "https://symfony.com",
  5163. "support": {
  5164. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  5165. },
  5166. "funding": [
  5167. {
  5168. "url": "https://symfony.com/sponsor",
  5169. "type": "custom"
  5170. },
  5171. {
  5172. "url": "https://github.com/fabpot",
  5173. "type": "github"
  5174. },
  5175. {
  5176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5177. "type": "tidelift"
  5178. }
  5179. ],
  5180. "time": "2021-02-18T17:12:37+00:00"
  5181. },
  5182. {
  5183. "name": "symfony/event-dispatcher-contracts",
  5184. "version": "v2.4.0",
  5185. "source": {
  5186. "type": "git",
  5187. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5188. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5189. },
  5190. "dist": {
  5191. "type": "zip",
  5192. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5193. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5194. "shasum": "",
  5195. "mirrors": [
  5196. {
  5197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5198. "preferred": true
  5199. }
  5200. ]
  5201. },
  5202. "require": {
  5203. "php": ">=7.2.5",
  5204. "psr/event-dispatcher": "^1"
  5205. },
  5206. "suggest": {
  5207. "symfony/event-dispatcher-implementation": ""
  5208. },
  5209. "type": "library",
  5210. "extra": {
  5211. "branch-alias": {
  5212. "dev-main": "2.4-dev"
  5213. },
  5214. "thanks": {
  5215. "name": "symfony/contracts",
  5216. "url": "https://github.com/symfony/contracts"
  5217. }
  5218. },
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Contracts\\EventDispatcher\\": ""
  5222. }
  5223. },
  5224. "notification-url": "https://packagist.org/downloads/",
  5225. "license": [
  5226. "MIT"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "Nicolas Grekas",
  5231. "email": "p@tchwork.com"
  5232. },
  5233. {
  5234. "name": "Symfony Community",
  5235. "homepage": "https://symfony.com/contributors"
  5236. }
  5237. ],
  5238. "description": "Generic abstractions related to dispatching event",
  5239. "homepage": "https://symfony.com",
  5240. "keywords": [
  5241. "abstractions",
  5242. "contracts",
  5243. "decoupling",
  5244. "interfaces",
  5245. "interoperability",
  5246. "standards"
  5247. ],
  5248. "support": {
  5249. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5250. },
  5251. "funding": [
  5252. {
  5253. "url": "https://symfony.com/sponsor",
  5254. "type": "custom"
  5255. },
  5256. {
  5257. "url": "https://github.com/fabpot",
  5258. "type": "github"
  5259. },
  5260. {
  5261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5262. "type": "tidelift"
  5263. }
  5264. ],
  5265. "time": "2021-03-23T23:28:01+00:00"
  5266. },
  5267. {
  5268. "name": "symfony/finder",
  5269. "version": "v5.2.9",
  5270. "source": {
  5271. "type": "git",
  5272. "url": "https://github.com/symfony/finder.git",
  5273. "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d"
  5274. },
  5275. "dist": {
  5276. "type": "zip",
  5277. "url": "https://api.github.com/repos/symfony/finder/zipball/ccccb9d48ca42757dd12f2ca4bf857a4e217d90d",
  5278. "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d",
  5279. "shasum": "",
  5280. "mirrors": [
  5281. {
  5282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5283. "preferred": true
  5284. }
  5285. ]
  5286. },
  5287. "require": {
  5288. "php": ">=7.2.5"
  5289. },
  5290. "type": "library",
  5291. "autoload": {
  5292. "psr-4": {
  5293. "Symfony\\Component\\Finder\\": ""
  5294. },
  5295. "exclude-from-classmap": [
  5296. "/Tests/"
  5297. ]
  5298. },
  5299. "notification-url": "https://packagist.org/downloads/",
  5300. "license": [
  5301. "MIT"
  5302. ],
  5303. "authors": [
  5304. {
  5305. "name": "Fabien Potencier",
  5306. "email": "fabien@symfony.com"
  5307. },
  5308. {
  5309. "name": "Symfony Community",
  5310. "homepage": "https://symfony.com/contributors"
  5311. }
  5312. ],
  5313. "description": "Finds files and directories via an intuitive fluent interface",
  5314. "homepage": "https://symfony.com",
  5315. "support": {
  5316. "source": "https://github.com/symfony/finder/tree/v5.2.9"
  5317. },
  5318. "funding": [
  5319. {
  5320. "url": "https://symfony.com/sponsor",
  5321. "type": "custom"
  5322. },
  5323. {
  5324. "url": "https://github.com/fabpot",
  5325. "type": "github"
  5326. },
  5327. {
  5328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5329. "type": "tidelift"
  5330. }
  5331. ],
  5332. "time": "2021-05-16T13:07:46+00:00"
  5333. },
  5334. {
  5335. "name": "symfony/http-client-contracts",
  5336. "version": "v2.4.0",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/symfony/http-client-contracts.git",
  5340. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5345. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5346. "shasum": "",
  5347. "mirrors": [
  5348. {
  5349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5350. "preferred": true
  5351. }
  5352. ]
  5353. },
  5354. "require": {
  5355. "php": ">=7.2.5"
  5356. },
  5357. "suggest": {
  5358. "symfony/http-client-implementation": ""
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-main": "2.4-dev"
  5364. },
  5365. "thanks": {
  5366. "name": "symfony/contracts",
  5367. "url": "https://github.com/symfony/contracts"
  5368. }
  5369. },
  5370. "autoload": {
  5371. "psr-4": {
  5372. "Symfony\\Contracts\\HttpClient\\": ""
  5373. }
  5374. },
  5375. "notification-url": "https://packagist.org/downloads/",
  5376. "license": [
  5377. "MIT"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Nicolas Grekas",
  5382. "email": "p@tchwork.com"
  5383. },
  5384. {
  5385. "name": "Symfony Community",
  5386. "homepage": "https://symfony.com/contributors"
  5387. }
  5388. ],
  5389. "description": "Generic abstractions related to HTTP clients",
  5390. "homepage": "https://symfony.com",
  5391. "keywords": [
  5392. "abstractions",
  5393. "contracts",
  5394. "decoupling",
  5395. "interfaces",
  5396. "interoperability",
  5397. "standards"
  5398. ],
  5399. "support": {
  5400. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5401. },
  5402. "funding": [
  5403. {
  5404. "url": "https://symfony.com/sponsor",
  5405. "type": "custom"
  5406. },
  5407. {
  5408. "url": "https://github.com/fabpot",
  5409. "type": "github"
  5410. },
  5411. {
  5412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5413. "type": "tidelift"
  5414. }
  5415. ],
  5416. "time": "2021-04-11T23:07:08+00:00"
  5417. },
  5418. {
  5419. "name": "symfony/http-foundation",
  5420. "version": "v5.2.8",
  5421. "source": {
  5422. "type": "git",
  5423. "url": "https://github.com/symfony/http-foundation.git",
  5424. "reference": "e8fbbab7c4a71592985019477532629cb2e142dc"
  5425. },
  5426. "dist": {
  5427. "type": "zip",
  5428. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e8fbbab7c4a71592985019477532629cb2e142dc",
  5429. "reference": "e8fbbab7c4a71592985019477532629cb2e142dc",
  5430. "shasum": "",
  5431. "mirrors": [
  5432. {
  5433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5434. "preferred": true
  5435. }
  5436. ]
  5437. },
  5438. "require": {
  5439. "php": ">=7.2.5",
  5440. "symfony/deprecation-contracts": "^2.1",
  5441. "symfony/polyfill-mbstring": "~1.1",
  5442. "symfony/polyfill-php80": "^1.15"
  5443. },
  5444. "require-dev": {
  5445. "predis/predis": "~1.0",
  5446. "symfony/cache": "^4.4|^5.0",
  5447. "symfony/expression-language": "^4.4|^5.0",
  5448. "symfony/mime": "^4.4|^5.0"
  5449. },
  5450. "suggest": {
  5451. "symfony/mime": "To use the file extension guesser"
  5452. },
  5453. "type": "library",
  5454. "autoload": {
  5455. "psr-4": {
  5456. "Symfony\\Component\\HttpFoundation\\": ""
  5457. },
  5458. "exclude-from-classmap": [
  5459. "/Tests/"
  5460. ]
  5461. },
  5462. "notification-url": "https://packagist.org/downloads/",
  5463. "license": [
  5464. "MIT"
  5465. ],
  5466. "authors": [
  5467. {
  5468. "name": "Fabien Potencier",
  5469. "email": "fabien@symfony.com"
  5470. },
  5471. {
  5472. "name": "Symfony Community",
  5473. "homepage": "https://symfony.com/contributors"
  5474. }
  5475. ],
  5476. "description": "Defines an object-oriented layer for the HTTP specification",
  5477. "homepage": "https://symfony.com",
  5478. "support": {
  5479. "source": "https://github.com/symfony/http-foundation/tree/v5.2.8"
  5480. },
  5481. "funding": [
  5482. {
  5483. "url": "https://symfony.com/sponsor",
  5484. "type": "custom"
  5485. },
  5486. {
  5487. "url": "https://github.com/fabpot",
  5488. "type": "github"
  5489. },
  5490. {
  5491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5492. "type": "tidelift"
  5493. }
  5494. ],
  5495. "time": "2021-05-07T13:41:16+00:00"
  5496. },
  5497. {
  5498. "name": "symfony/http-kernel",
  5499. "version": "v5.2.9",
  5500. "source": {
  5501. "type": "git",
  5502. "url": "https://github.com/symfony/http-kernel.git",
  5503. "reference": "eb540ef6870dbf33c92e372cfb869ebf9649e6cb"
  5504. },
  5505. "dist": {
  5506. "type": "zip",
  5507. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/eb540ef6870dbf33c92e372cfb869ebf9649e6cb",
  5508. "reference": "eb540ef6870dbf33c92e372cfb869ebf9649e6cb",
  5509. "shasum": "",
  5510. "mirrors": [
  5511. {
  5512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5513. "preferred": true
  5514. }
  5515. ]
  5516. },
  5517. "require": {
  5518. "php": ">=7.2.5",
  5519. "psr/log": "~1.0",
  5520. "symfony/deprecation-contracts": "^2.1",
  5521. "symfony/error-handler": "^4.4|^5.0",
  5522. "symfony/event-dispatcher": "^5.0",
  5523. "symfony/http-client-contracts": "^1.1|^2",
  5524. "symfony/http-foundation": "^4.4|^5.0",
  5525. "symfony/polyfill-ctype": "^1.8",
  5526. "symfony/polyfill-php73": "^1.9",
  5527. "symfony/polyfill-php80": "^1.15"
  5528. },
  5529. "conflict": {
  5530. "symfony/browser-kit": "<4.4",
  5531. "symfony/cache": "<5.0",
  5532. "symfony/config": "<5.0",
  5533. "symfony/console": "<4.4",
  5534. "symfony/dependency-injection": "<5.1.8",
  5535. "symfony/doctrine-bridge": "<5.0",
  5536. "symfony/form": "<5.0",
  5537. "symfony/http-client": "<5.0",
  5538. "symfony/mailer": "<5.0",
  5539. "symfony/messenger": "<5.0",
  5540. "symfony/translation": "<5.0",
  5541. "symfony/twig-bridge": "<5.0",
  5542. "symfony/validator": "<5.0",
  5543. "twig/twig": "<2.13"
  5544. },
  5545. "provide": {
  5546. "psr/log-implementation": "1.0"
  5547. },
  5548. "require-dev": {
  5549. "psr/cache": "^1.0|^2.0|^3.0",
  5550. "symfony/browser-kit": "^4.4|^5.0",
  5551. "symfony/config": "^5.0",
  5552. "symfony/console": "^4.4|^5.0",
  5553. "symfony/css-selector": "^4.4|^5.0",
  5554. "symfony/dependency-injection": "^5.1.8",
  5555. "symfony/dom-crawler": "^4.4|^5.0",
  5556. "symfony/expression-language": "^4.4|^5.0",
  5557. "symfony/finder": "^4.4|^5.0",
  5558. "symfony/process": "^4.4|^5.0",
  5559. "symfony/routing": "^4.4|^5.0",
  5560. "symfony/stopwatch": "^4.4|^5.0",
  5561. "symfony/translation": "^4.4|^5.0",
  5562. "symfony/translation-contracts": "^1.1|^2",
  5563. "twig/twig": "^2.13|^3.0.4"
  5564. },
  5565. "suggest": {
  5566. "symfony/browser-kit": "",
  5567. "symfony/config": "",
  5568. "symfony/console": "",
  5569. "symfony/dependency-injection": ""
  5570. },
  5571. "type": "library",
  5572. "autoload": {
  5573. "psr-4": {
  5574. "Symfony\\Component\\HttpKernel\\": ""
  5575. },
  5576. "exclude-from-classmap": [
  5577. "/Tests/"
  5578. ]
  5579. },
  5580. "notification-url": "https://packagist.org/downloads/",
  5581. "license": [
  5582. "MIT"
  5583. ],
  5584. "authors": [
  5585. {
  5586. "name": "Fabien Potencier",
  5587. "email": "fabien@symfony.com"
  5588. },
  5589. {
  5590. "name": "Symfony Community",
  5591. "homepage": "https://symfony.com/contributors"
  5592. }
  5593. ],
  5594. "description": "Provides a structured process for converting a Request into a Response",
  5595. "homepage": "https://symfony.com",
  5596. "support": {
  5597. "source": "https://github.com/symfony/http-kernel/tree/v5.2.9"
  5598. },
  5599. "funding": [
  5600. {
  5601. "url": "https://symfony.com/sponsor",
  5602. "type": "custom"
  5603. },
  5604. {
  5605. "url": "https://github.com/fabpot",
  5606. "type": "github"
  5607. },
  5608. {
  5609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5610. "type": "tidelift"
  5611. }
  5612. ],
  5613. "time": "2021-05-19T12:23:45+00:00"
  5614. },
  5615. {
  5616. "name": "symfony/mime",
  5617. "version": "v5.2.9",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/symfony/mime.git",
  5621. "reference": "64258e870f8cc75c3dae986201ea2df58c210b52"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/symfony/mime/zipball/64258e870f8cc75c3dae986201ea2df58c210b52",
  5626. "reference": "64258e870f8cc75c3dae986201ea2df58c210b52",
  5627. "shasum": "",
  5628. "mirrors": [
  5629. {
  5630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5631. "preferred": true
  5632. }
  5633. ]
  5634. },
  5635. "require": {
  5636. "php": ">=7.2.5",
  5637. "symfony/deprecation-contracts": "^2.1",
  5638. "symfony/polyfill-intl-idn": "^1.10",
  5639. "symfony/polyfill-mbstring": "^1.0",
  5640. "symfony/polyfill-php80": "^1.15"
  5641. },
  5642. "conflict": {
  5643. "egulias/email-validator": "~3.0.0",
  5644. "phpdocumentor/reflection-docblock": "<3.2.2",
  5645. "phpdocumentor/type-resolver": "<1.4.0",
  5646. "symfony/mailer": "<4.4"
  5647. },
  5648. "require-dev": {
  5649. "egulias/email-validator": "^2.1.10|^3.1",
  5650. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5651. "symfony/dependency-injection": "^4.4|^5.0",
  5652. "symfony/property-access": "^4.4|^5.1",
  5653. "symfony/property-info": "^4.4|^5.1",
  5654. "symfony/serializer": "^5.2"
  5655. },
  5656. "type": "library",
  5657. "autoload": {
  5658. "psr-4": {
  5659. "Symfony\\Component\\Mime\\": ""
  5660. },
  5661. "exclude-from-classmap": [
  5662. "/Tests/"
  5663. ]
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "MIT"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Fabien Potencier",
  5672. "email": "fabien@symfony.com"
  5673. },
  5674. {
  5675. "name": "Symfony Community",
  5676. "homepage": "https://symfony.com/contributors"
  5677. }
  5678. ],
  5679. "description": "Allows manipulating MIME messages",
  5680. "homepage": "https://symfony.com",
  5681. "keywords": [
  5682. "mime",
  5683. "mime-type"
  5684. ],
  5685. "support": {
  5686. "source": "https://github.com/symfony/mime/tree/v5.2.9"
  5687. },
  5688. "funding": [
  5689. {
  5690. "url": "https://symfony.com/sponsor",
  5691. "type": "custom"
  5692. },
  5693. {
  5694. "url": "https://github.com/fabpot",
  5695. "type": "github"
  5696. },
  5697. {
  5698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5699. "type": "tidelift"
  5700. }
  5701. ],
  5702. "time": "2021-05-16T13:07:46+00:00"
  5703. },
  5704. {
  5705. "name": "symfony/options-resolver",
  5706. "version": "v5.2.4",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/symfony/options-resolver.git",
  5710. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5715. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5716. "shasum": "",
  5717. "mirrors": [
  5718. {
  5719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5720. "preferred": true
  5721. }
  5722. ]
  5723. },
  5724. "require": {
  5725. "php": ">=7.2.5",
  5726. "symfony/deprecation-contracts": "^2.1",
  5727. "symfony/polyfill-php73": "~1.0",
  5728. "symfony/polyfill-php80": "^1.15"
  5729. },
  5730. "type": "library",
  5731. "autoload": {
  5732. "psr-4": {
  5733. "Symfony\\Component\\OptionsResolver\\": ""
  5734. },
  5735. "exclude-from-classmap": [
  5736. "/Tests/"
  5737. ]
  5738. },
  5739. "notification-url": "https://packagist.org/downloads/",
  5740. "license": [
  5741. "MIT"
  5742. ],
  5743. "authors": [
  5744. {
  5745. "name": "Fabien Potencier",
  5746. "email": "fabien@symfony.com"
  5747. },
  5748. {
  5749. "name": "Symfony Community",
  5750. "homepage": "https://symfony.com/contributors"
  5751. }
  5752. ],
  5753. "description": "Provides an improved replacement for the array_replace PHP function",
  5754. "homepage": "https://symfony.com",
  5755. "keywords": [
  5756. "config",
  5757. "configuration",
  5758. "options"
  5759. ],
  5760. "support": {
  5761. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://symfony.com/sponsor",
  5766. "type": "custom"
  5767. },
  5768. {
  5769. "url": "https://github.com/fabpot",
  5770. "type": "github"
  5771. },
  5772. {
  5773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5774. "type": "tidelift"
  5775. }
  5776. ],
  5777. "time": "2021-01-27T12:56:27+00:00"
  5778. },
  5779. {
  5780. "name": "symfony/polyfill-ctype",
  5781. "version": "v1.23.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/symfony/polyfill-ctype.git",
  5785. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5790. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5791. "shasum": "",
  5792. "mirrors": [
  5793. {
  5794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5795. "preferred": true
  5796. }
  5797. ]
  5798. },
  5799. "require": {
  5800. "php": ">=7.1"
  5801. },
  5802. "suggest": {
  5803. "ext-ctype": "For best performance"
  5804. },
  5805. "type": "library",
  5806. "extra": {
  5807. "branch-alias": {
  5808. "dev-main": "1.23-dev"
  5809. },
  5810. "thanks": {
  5811. "name": "symfony/polyfill",
  5812. "url": "https://github.com/symfony/polyfill"
  5813. }
  5814. },
  5815. "autoload": {
  5816. "psr-4": {
  5817. "Symfony\\Polyfill\\Ctype\\": ""
  5818. },
  5819. "files": [
  5820. "bootstrap.php"
  5821. ]
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "MIT"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "Gert de Pagter",
  5830. "email": "BackEndTea@gmail.com"
  5831. },
  5832. {
  5833. "name": "Symfony Community",
  5834. "homepage": "https://symfony.com/contributors"
  5835. }
  5836. ],
  5837. "description": "Symfony polyfill for ctype functions",
  5838. "homepage": "https://symfony.com",
  5839. "keywords": [
  5840. "compatibility",
  5841. "ctype",
  5842. "polyfill",
  5843. "portable"
  5844. ],
  5845. "support": {
  5846. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5847. },
  5848. "funding": [
  5849. {
  5850. "url": "https://symfony.com/sponsor",
  5851. "type": "custom"
  5852. },
  5853. {
  5854. "url": "https://github.com/fabpot",
  5855. "type": "github"
  5856. },
  5857. {
  5858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5859. "type": "tidelift"
  5860. }
  5861. ],
  5862. "time": "2021-02-19T12:13:01+00:00"
  5863. },
  5864. {
  5865. "name": "symfony/polyfill-iconv",
  5866. "version": "v1.23.0",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://github.com/symfony/polyfill-iconv.git",
  5870. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5875. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5876. "shasum": "",
  5877. "mirrors": [
  5878. {
  5879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5880. "preferred": true
  5881. }
  5882. ]
  5883. },
  5884. "require": {
  5885. "php": ">=7.1"
  5886. },
  5887. "suggest": {
  5888. "ext-iconv": "For best performance"
  5889. },
  5890. "type": "library",
  5891. "extra": {
  5892. "branch-alias": {
  5893. "dev-main": "1.23-dev"
  5894. },
  5895. "thanks": {
  5896. "name": "symfony/polyfill",
  5897. "url": "https://github.com/symfony/polyfill"
  5898. }
  5899. },
  5900. "autoload": {
  5901. "psr-4": {
  5902. "Symfony\\Polyfill\\Iconv\\": ""
  5903. },
  5904. "files": [
  5905. "bootstrap.php"
  5906. ]
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Nicolas Grekas",
  5915. "email": "p@tchwork.com"
  5916. },
  5917. {
  5918. "name": "Symfony Community",
  5919. "homepage": "https://symfony.com/contributors"
  5920. }
  5921. ],
  5922. "description": "Symfony polyfill for the Iconv extension",
  5923. "homepage": "https://symfony.com",
  5924. "keywords": [
  5925. "compatibility",
  5926. "iconv",
  5927. "polyfill",
  5928. "portable",
  5929. "shim"
  5930. ],
  5931. "support": {
  5932. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5933. },
  5934. "funding": [
  5935. {
  5936. "url": "https://symfony.com/sponsor",
  5937. "type": "custom"
  5938. },
  5939. {
  5940. "url": "https://github.com/fabpot",
  5941. "type": "github"
  5942. },
  5943. {
  5944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5945. "type": "tidelift"
  5946. }
  5947. ],
  5948. "time": "2021-05-27T09:27:20+00:00"
  5949. },
  5950. {
  5951. "name": "symfony/polyfill-intl-grapheme",
  5952. "version": "v1.23.0",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5956. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5961. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5962. "shasum": "",
  5963. "mirrors": [
  5964. {
  5965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5966. "preferred": true
  5967. }
  5968. ]
  5969. },
  5970. "require": {
  5971. "php": ">=7.1"
  5972. },
  5973. "suggest": {
  5974. "ext-intl": "For best performance"
  5975. },
  5976. "type": "library",
  5977. "extra": {
  5978. "branch-alias": {
  5979. "dev-main": "1.23-dev"
  5980. },
  5981. "thanks": {
  5982. "name": "symfony/polyfill",
  5983. "url": "https://github.com/symfony/polyfill"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5989. },
  5990. "files": [
  5991. "bootstrap.php"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Nicolas Grekas",
  6001. "email": "p@tchwork.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Symfony polyfill for intl's grapheme_* functions",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "compatibility",
  6012. "grapheme",
  6013. "intl",
  6014. "polyfill",
  6015. "portable",
  6016. "shim"
  6017. ],
  6018. "support": {
  6019. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://symfony.com/sponsor",
  6024. "type": "custom"
  6025. },
  6026. {
  6027. "url": "https://github.com/fabpot",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2021-05-27T09:17:38+00:00"
  6036. },
  6037. {
  6038. "name": "symfony/polyfill-intl-idn",
  6039. "version": "v1.23.0",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6043. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6048. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6049. "shasum": "",
  6050. "mirrors": [
  6051. {
  6052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6053. "preferred": true
  6054. }
  6055. ]
  6056. },
  6057. "require": {
  6058. "php": ">=7.1",
  6059. "symfony/polyfill-intl-normalizer": "^1.10",
  6060. "symfony/polyfill-php72": "^1.10"
  6061. },
  6062. "suggest": {
  6063. "ext-intl": "For best performance"
  6064. },
  6065. "type": "library",
  6066. "extra": {
  6067. "branch-alias": {
  6068. "dev-main": "1.23-dev"
  6069. },
  6070. "thanks": {
  6071. "name": "symfony/polyfill",
  6072. "url": "https://github.com/symfony/polyfill"
  6073. }
  6074. },
  6075. "autoload": {
  6076. "psr-4": {
  6077. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6078. },
  6079. "files": [
  6080. "bootstrap.php"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Laurent Bassin",
  6090. "email": "laurent@bassin.info"
  6091. },
  6092. {
  6093. "name": "Trevor Rowbotham",
  6094. "email": "trevor.rowbotham@pm.me"
  6095. },
  6096. {
  6097. "name": "Symfony Community",
  6098. "homepage": "https://symfony.com/contributors"
  6099. }
  6100. ],
  6101. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6102. "homepage": "https://symfony.com",
  6103. "keywords": [
  6104. "compatibility",
  6105. "idn",
  6106. "intl",
  6107. "polyfill",
  6108. "portable",
  6109. "shim"
  6110. ],
  6111. "support": {
  6112. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6113. },
  6114. "funding": [
  6115. {
  6116. "url": "https://symfony.com/sponsor",
  6117. "type": "custom"
  6118. },
  6119. {
  6120. "url": "https://github.com/fabpot",
  6121. "type": "github"
  6122. },
  6123. {
  6124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6125. "type": "tidelift"
  6126. }
  6127. ],
  6128. "time": "2021-05-27T09:27:20+00:00"
  6129. },
  6130. {
  6131. "name": "symfony/polyfill-intl-normalizer",
  6132. "version": "v1.23.0",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6136. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6141. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6142. "shasum": "",
  6143. "mirrors": [
  6144. {
  6145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6146. "preferred": true
  6147. }
  6148. ]
  6149. },
  6150. "require": {
  6151. "php": ">=7.1"
  6152. },
  6153. "suggest": {
  6154. "ext-intl": "For best performance"
  6155. },
  6156. "type": "library",
  6157. "extra": {
  6158. "branch-alias": {
  6159. "dev-main": "1.23-dev"
  6160. },
  6161. "thanks": {
  6162. "name": "symfony/polyfill",
  6163. "url": "https://github.com/symfony/polyfill"
  6164. }
  6165. },
  6166. "autoload": {
  6167. "psr-4": {
  6168. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6169. },
  6170. "files": [
  6171. "bootstrap.php"
  6172. ],
  6173. "classmap": [
  6174. "Resources/stubs"
  6175. ]
  6176. },
  6177. "notification-url": "https://packagist.org/downloads/",
  6178. "license": [
  6179. "MIT"
  6180. ],
  6181. "authors": [
  6182. {
  6183. "name": "Nicolas Grekas",
  6184. "email": "p@tchwork.com"
  6185. },
  6186. {
  6187. "name": "Symfony Community",
  6188. "homepage": "https://symfony.com/contributors"
  6189. }
  6190. ],
  6191. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6192. "homepage": "https://symfony.com",
  6193. "keywords": [
  6194. "compatibility",
  6195. "intl",
  6196. "normalizer",
  6197. "polyfill",
  6198. "portable",
  6199. "shim"
  6200. ],
  6201. "support": {
  6202. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6203. },
  6204. "funding": [
  6205. {
  6206. "url": "https://symfony.com/sponsor",
  6207. "type": "custom"
  6208. },
  6209. {
  6210. "url": "https://github.com/fabpot",
  6211. "type": "github"
  6212. },
  6213. {
  6214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6215. "type": "tidelift"
  6216. }
  6217. ],
  6218. "time": "2021-02-19T12:13:01+00:00"
  6219. },
  6220. {
  6221. "name": "symfony/polyfill-mbstring",
  6222. "version": "v1.23.0",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6226. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6231. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6232. "shasum": "",
  6233. "mirrors": [
  6234. {
  6235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6236. "preferred": true
  6237. }
  6238. ]
  6239. },
  6240. "require": {
  6241. "php": ">=7.1"
  6242. },
  6243. "suggest": {
  6244. "ext-mbstring": "For best performance"
  6245. },
  6246. "type": "library",
  6247. "extra": {
  6248. "branch-alias": {
  6249. "dev-main": "1.23-dev"
  6250. },
  6251. "thanks": {
  6252. "name": "symfony/polyfill",
  6253. "url": "https://github.com/symfony/polyfill"
  6254. }
  6255. },
  6256. "autoload": {
  6257. "psr-4": {
  6258. "Symfony\\Polyfill\\Mbstring\\": ""
  6259. },
  6260. "files": [
  6261. "bootstrap.php"
  6262. ]
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "MIT"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "Nicolas Grekas",
  6271. "email": "p@tchwork.com"
  6272. },
  6273. {
  6274. "name": "Symfony Community",
  6275. "homepage": "https://symfony.com/contributors"
  6276. }
  6277. ],
  6278. "description": "Symfony polyfill for the Mbstring extension",
  6279. "homepage": "https://symfony.com",
  6280. "keywords": [
  6281. "compatibility",
  6282. "mbstring",
  6283. "polyfill",
  6284. "portable",
  6285. "shim"
  6286. ],
  6287. "support": {
  6288. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6289. },
  6290. "funding": [
  6291. {
  6292. "url": "https://symfony.com/sponsor",
  6293. "type": "custom"
  6294. },
  6295. {
  6296. "url": "https://github.com/fabpot",
  6297. "type": "github"
  6298. },
  6299. {
  6300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6301. "type": "tidelift"
  6302. }
  6303. ],
  6304. "time": "2021-05-27T09:27:20+00:00"
  6305. },
  6306. {
  6307. "name": "symfony/polyfill-php72",
  6308. "version": "v1.23.0",
  6309. "source": {
  6310. "type": "git",
  6311. "url": "https://github.com/symfony/polyfill-php72.git",
  6312. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6313. },
  6314. "dist": {
  6315. "type": "zip",
  6316. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6317. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6318. "shasum": "",
  6319. "mirrors": [
  6320. {
  6321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6322. "preferred": true
  6323. }
  6324. ]
  6325. },
  6326. "require": {
  6327. "php": ">=7.1"
  6328. },
  6329. "type": "library",
  6330. "extra": {
  6331. "branch-alias": {
  6332. "dev-main": "1.23-dev"
  6333. },
  6334. "thanks": {
  6335. "name": "symfony/polyfill",
  6336. "url": "https://github.com/symfony/polyfill"
  6337. }
  6338. },
  6339. "autoload": {
  6340. "psr-4": {
  6341. "Symfony\\Polyfill\\Php72\\": ""
  6342. },
  6343. "files": [
  6344. "bootstrap.php"
  6345. ]
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "MIT"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Nicolas Grekas",
  6354. "email": "p@tchwork.com"
  6355. },
  6356. {
  6357. "name": "Symfony Community",
  6358. "homepage": "https://symfony.com/contributors"
  6359. }
  6360. ],
  6361. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6362. "homepage": "https://symfony.com",
  6363. "keywords": [
  6364. "compatibility",
  6365. "polyfill",
  6366. "portable",
  6367. "shim"
  6368. ],
  6369. "support": {
  6370. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6371. },
  6372. "funding": [
  6373. {
  6374. "url": "https://symfony.com/sponsor",
  6375. "type": "custom"
  6376. },
  6377. {
  6378. "url": "https://github.com/fabpot",
  6379. "type": "github"
  6380. },
  6381. {
  6382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6383. "type": "tidelift"
  6384. }
  6385. ],
  6386. "time": "2021-05-27T09:17:38+00:00"
  6387. },
  6388. {
  6389. "name": "symfony/polyfill-php73",
  6390. "version": "v1.23.0",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/symfony/polyfill-php73.git",
  6394. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6399. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6400. "shasum": "",
  6401. "mirrors": [
  6402. {
  6403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6404. "preferred": true
  6405. }
  6406. ]
  6407. },
  6408. "require": {
  6409. "php": ">=7.1"
  6410. },
  6411. "type": "library",
  6412. "extra": {
  6413. "branch-alias": {
  6414. "dev-main": "1.23-dev"
  6415. },
  6416. "thanks": {
  6417. "name": "symfony/polyfill",
  6418. "url": "https://github.com/symfony/polyfill"
  6419. }
  6420. },
  6421. "autoload": {
  6422. "psr-4": {
  6423. "Symfony\\Polyfill\\Php73\\": ""
  6424. },
  6425. "files": [
  6426. "bootstrap.php"
  6427. ],
  6428. "classmap": [
  6429. "Resources/stubs"
  6430. ]
  6431. },
  6432. "notification-url": "https://packagist.org/downloads/",
  6433. "license": [
  6434. "MIT"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Nicolas Grekas",
  6439. "email": "p@tchwork.com"
  6440. },
  6441. {
  6442. "name": "Symfony Community",
  6443. "homepage": "https://symfony.com/contributors"
  6444. }
  6445. ],
  6446. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6447. "homepage": "https://symfony.com",
  6448. "keywords": [
  6449. "compatibility",
  6450. "polyfill",
  6451. "portable",
  6452. "shim"
  6453. ],
  6454. "support": {
  6455. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6456. },
  6457. "funding": [
  6458. {
  6459. "url": "https://symfony.com/sponsor",
  6460. "type": "custom"
  6461. },
  6462. {
  6463. "url": "https://github.com/fabpot",
  6464. "type": "github"
  6465. },
  6466. {
  6467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6468. "type": "tidelift"
  6469. }
  6470. ],
  6471. "time": "2021-02-19T12:13:01+00:00"
  6472. },
  6473. {
  6474. "name": "symfony/polyfill-php80",
  6475. "version": "v1.23.0",
  6476. "source": {
  6477. "type": "git",
  6478. "url": "https://github.com/symfony/polyfill-php80.git",
  6479. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6480. },
  6481. "dist": {
  6482. "type": "zip",
  6483. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6484. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6485. "shasum": "",
  6486. "mirrors": [
  6487. {
  6488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6489. "preferred": true
  6490. }
  6491. ]
  6492. },
  6493. "require": {
  6494. "php": ">=7.1"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-main": "1.23-dev"
  6500. },
  6501. "thanks": {
  6502. "name": "symfony/polyfill",
  6503. "url": "https://github.com/symfony/polyfill"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "psr-4": {
  6508. "Symfony\\Polyfill\\Php80\\": ""
  6509. },
  6510. "files": [
  6511. "bootstrap.php"
  6512. ],
  6513. "classmap": [
  6514. "Resources/stubs"
  6515. ]
  6516. },
  6517. "notification-url": "https://packagist.org/downloads/",
  6518. "license": [
  6519. "MIT"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "Ion Bazan",
  6524. "email": "ion.bazan@gmail.com"
  6525. },
  6526. {
  6527. "name": "Nicolas Grekas",
  6528. "email": "p@tchwork.com"
  6529. },
  6530. {
  6531. "name": "Symfony Community",
  6532. "homepage": "https://symfony.com/contributors"
  6533. }
  6534. ],
  6535. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6536. "homepage": "https://symfony.com",
  6537. "keywords": [
  6538. "compatibility",
  6539. "polyfill",
  6540. "portable",
  6541. "shim"
  6542. ],
  6543. "support": {
  6544. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2021-02-19T12:13:01+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/process",
  6564. "version": "v5.2.7",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/process.git",
  6568. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/process/zipball/98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6573. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6574. "shasum": "",
  6575. "mirrors": [
  6576. {
  6577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6578. "preferred": true
  6579. }
  6580. ]
  6581. },
  6582. "require": {
  6583. "php": ">=7.2.5",
  6584. "symfony/polyfill-php80": "^1.15"
  6585. },
  6586. "type": "library",
  6587. "autoload": {
  6588. "psr-4": {
  6589. "Symfony\\Component\\Process\\": ""
  6590. },
  6591. "exclude-from-classmap": [
  6592. "/Tests/"
  6593. ]
  6594. },
  6595. "notification-url": "https://packagist.org/downloads/",
  6596. "license": [
  6597. "MIT"
  6598. ],
  6599. "authors": [
  6600. {
  6601. "name": "Fabien Potencier",
  6602. "email": "fabien@symfony.com"
  6603. },
  6604. {
  6605. "name": "Symfony Community",
  6606. "homepage": "https://symfony.com/contributors"
  6607. }
  6608. ],
  6609. "description": "Executes commands in sub-processes",
  6610. "homepage": "https://symfony.com",
  6611. "support": {
  6612. "source": "https://github.com/symfony/process/tree/v5.3.0-BETA1"
  6613. },
  6614. "funding": [
  6615. {
  6616. "url": "https://symfony.com/sponsor",
  6617. "type": "custom"
  6618. },
  6619. {
  6620. "url": "https://github.com/fabpot",
  6621. "type": "github"
  6622. },
  6623. {
  6624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6625. "type": "tidelift"
  6626. }
  6627. ],
  6628. "time": "2021-04-08T10:27:02+00:00"
  6629. },
  6630. {
  6631. "name": "symfony/property-access",
  6632. "version": "v5.2.4",
  6633. "source": {
  6634. "type": "git",
  6635. "url": "https://github.com/symfony/property-access.git",
  6636. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6637. },
  6638. "dist": {
  6639. "type": "zip",
  6640. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6641. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6642. "shasum": "",
  6643. "mirrors": [
  6644. {
  6645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6646. "preferred": true
  6647. }
  6648. ]
  6649. },
  6650. "require": {
  6651. "php": ">=7.2.5",
  6652. "symfony/deprecation-contracts": "^2.1",
  6653. "symfony/polyfill-php80": "^1.15",
  6654. "symfony/property-info": "^5.2"
  6655. },
  6656. "require-dev": {
  6657. "symfony/cache": "^4.4|^5.0"
  6658. },
  6659. "suggest": {
  6660. "psr/cache-implementation": "To cache access methods."
  6661. },
  6662. "type": "library",
  6663. "autoload": {
  6664. "psr-4": {
  6665. "Symfony\\Component\\PropertyAccess\\": ""
  6666. },
  6667. "exclude-from-classmap": [
  6668. "/Tests/"
  6669. ]
  6670. },
  6671. "notification-url": "https://packagist.org/downloads/",
  6672. "license": [
  6673. "MIT"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "Fabien Potencier",
  6678. "email": "fabien@symfony.com"
  6679. },
  6680. {
  6681. "name": "Symfony Community",
  6682. "homepage": "https://symfony.com/contributors"
  6683. }
  6684. ],
  6685. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6686. "homepage": "https://symfony.com",
  6687. "keywords": [
  6688. "access",
  6689. "array",
  6690. "extraction",
  6691. "index",
  6692. "injection",
  6693. "object",
  6694. "property",
  6695. "property path",
  6696. "reflection"
  6697. ],
  6698. "support": {
  6699. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6700. },
  6701. "funding": [
  6702. {
  6703. "url": "https://symfony.com/sponsor",
  6704. "type": "custom"
  6705. },
  6706. {
  6707. "url": "https://github.com/fabpot",
  6708. "type": "github"
  6709. },
  6710. {
  6711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6712. "type": "tidelift"
  6713. }
  6714. ],
  6715. "time": "2021-01-27T10:15:41+00:00"
  6716. },
  6717. {
  6718. "name": "symfony/property-info",
  6719. "version": "v5.2.8",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/symfony/property-info.git",
  6723. "reference": "cc8121baf91039648d5f8feb894dc4a9d4935cc0"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/symfony/property-info/zipball/cc8121baf91039648d5f8feb894dc4a9d4935cc0",
  6728. "reference": "cc8121baf91039648d5f8feb894dc4a9d4935cc0",
  6729. "shasum": "",
  6730. "mirrors": [
  6731. {
  6732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6733. "preferred": true
  6734. }
  6735. ]
  6736. },
  6737. "require": {
  6738. "php": ">=7.2.5",
  6739. "symfony/deprecation-contracts": "^2.1",
  6740. "symfony/polyfill-php80": "^1.15",
  6741. "symfony/string": "^5.1"
  6742. },
  6743. "conflict": {
  6744. "phpdocumentor/reflection-docblock": "<3.2.2",
  6745. "phpdocumentor/type-resolver": "<1.4.0",
  6746. "symfony/dependency-injection": "<4.4"
  6747. },
  6748. "require-dev": {
  6749. "doctrine/annotations": "^1.10.4",
  6750. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6751. "symfony/cache": "^4.4|^5.0",
  6752. "symfony/dependency-injection": "^4.4|^5.0",
  6753. "symfony/serializer": "^4.4|^5.0"
  6754. },
  6755. "suggest": {
  6756. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6757. "psr/cache-implementation": "To cache results",
  6758. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6759. "symfony/serializer": "To use Serializer metadata"
  6760. },
  6761. "type": "library",
  6762. "autoload": {
  6763. "psr-4": {
  6764. "Symfony\\Component\\PropertyInfo\\": ""
  6765. },
  6766. "exclude-from-classmap": [
  6767. "/Tests/"
  6768. ]
  6769. },
  6770. "notification-url": "https://packagist.org/downloads/",
  6771. "license": [
  6772. "MIT"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "Kévin Dunglas",
  6777. "email": "dunglas@gmail.com"
  6778. },
  6779. {
  6780. "name": "Symfony Community",
  6781. "homepage": "https://symfony.com/contributors"
  6782. }
  6783. ],
  6784. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6785. "homepage": "https://symfony.com",
  6786. "keywords": [
  6787. "doctrine",
  6788. "phpdoc",
  6789. "property",
  6790. "symfony",
  6791. "type",
  6792. "validator"
  6793. ],
  6794. "support": {
  6795. "source": "https://github.com/symfony/property-info/tree/v5.2.8"
  6796. },
  6797. "funding": [
  6798. {
  6799. "url": "https://symfony.com/sponsor",
  6800. "type": "custom"
  6801. },
  6802. {
  6803. "url": "https://github.com/fabpot",
  6804. "type": "github"
  6805. },
  6806. {
  6807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6808. "type": "tidelift"
  6809. }
  6810. ],
  6811. "time": "2021-05-07T14:04:56+00:00"
  6812. },
  6813. {
  6814. "name": "symfony/routing",
  6815. "version": "v5.2.9",
  6816. "source": {
  6817. "type": "git",
  6818. "url": "https://github.com/symfony/routing.git",
  6819. "reference": "4a7b2bf5e1221be1902b6853743a9bb317f6925e"
  6820. },
  6821. "dist": {
  6822. "type": "zip",
  6823. "url": "https://api.github.com/repos/symfony/routing/zipball/4a7b2bf5e1221be1902b6853743a9bb317f6925e",
  6824. "reference": "4a7b2bf5e1221be1902b6853743a9bb317f6925e",
  6825. "shasum": "",
  6826. "mirrors": [
  6827. {
  6828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6829. "preferred": true
  6830. }
  6831. ]
  6832. },
  6833. "require": {
  6834. "php": ">=7.2.5",
  6835. "symfony/deprecation-contracts": "^2.1",
  6836. "symfony/polyfill-php80": "^1.15"
  6837. },
  6838. "conflict": {
  6839. "symfony/config": "<5.0",
  6840. "symfony/dependency-injection": "<4.4",
  6841. "symfony/yaml": "<4.4"
  6842. },
  6843. "require-dev": {
  6844. "doctrine/annotations": "^1.10.4",
  6845. "psr/log": "~1.0",
  6846. "symfony/config": "^5.0",
  6847. "symfony/dependency-injection": "^4.4|^5.0",
  6848. "symfony/expression-language": "^4.4|^5.0",
  6849. "symfony/http-foundation": "^4.4|^5.0",
  6850. "symfony/yaml": "^4.4|^5.0"
  6851. },
  6852. "suggest": {
  6853. "symfony/config": "For using the all-in-one router or any loader",
  6854. "symfony/expression-language": "For using expression matching",
  6855. "symfony/http-foundation": "For using a Symfony Request object",
  6856. "symfony/yaml": "For using the YAML loader"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Symfony\\Component\\Routing\\": ""
  6862. },
  6863. "exclude-from-classmap": [
  6864. "/Tests/"
  6865. ]
  6866. },
  6867. "notification-url": "https://packagist.org/downloads/",
  6868. "license": [
  6869. "MIT"
  6870. ],
  6871. "authors": [
  6872. {
  6873. "name": "Fabien Potencier",
  6874. "email": "fabien@symfony.com"
  6875. },
  6876. {
  6877. "name": "Symfony Community",
  6878. "homepage": "https://symfony.com/contributors"
  6879. }
  6880. ],
  6881. "description": "Maps an HTTP request to a set of configuration variables",
  6882. "homepage": "https://symfony.com",
  6883. "keywords": [
  6884. "router",
  6885. "routing",
  6886. "uri",
  6887. "url"
  6888. ],
  6889. "support": {
  6890. "source": "https://github.com/symfony/routing/tree/v5.2.9"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://symfony.com/sponsor",
  6895. "type": "custom"
  6896. },
  6897. {
  6898. "url": "https://github.com/fabpot",
  6899. "type": "github"
  6900. },
  6901. {
  6902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6903. "type": "tidelift"
  6904. }
  6905. ],
  6906. "time": "2021-05-16T13:07:46+00:00"
  6907. },
  6908. {
  6909. "name": "symfony/service-contracts",
  6910. "version": "v2.4.0",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/symfony/service-contracts.git",
  6914. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6919. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6920. "shasum": "",
  6921. "mirrors": [
  6922. {
  6923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6924. "preferred": true
  6925. }
  6926. ]
  6927. },
  6928. "require": {
  6929. "php": ">=7.2.5",
  6930. "psr/container": "^1.1"
  6931. },
  6932. "suggest": {
  6933. "symfony/service-implementation": ""
  6934. },
  6935. "type": "library",
  6936. "extra": {
  6937. "branch-alias": {
  6938. "dev-main": "2.4-dev"
  6939. },
  6940. "thanks": {
  6941. "name": "symfony/contracts",
  6942. "url": "https://github.com/symfony/contracts"
  6943. }
  6944. },
  6945. "autoload": {
  6946. "psr-4": {
  6947. "Symfony\\Contracts\\Service\\": ""
  6948. }
  6949. },
  6950. "notification-url": "https://packagist.org/downloads/",
  6951. "license": [
  6952. "MIT"
  6953. ],
  6954. "authors": [
  6955. {
  6956. "name": "Nicolas Grekas",
  6957. "email": "p@tchwork.com"
  6958. },
  6959. {
  6960. "name": "Symfony Community",
  6961. "homepage": "https://symfony.com/contributors"
  6962. }
  6963. ],
  6964. "description": "Generic abstractions related to writing services",
  6965. "homepage": "https://symfony.com",
  6966. "keywords": [
  6967. "abstractions",
  6968. "contracts",
  6969. "decoupling",
  6970. "interfaces",
  6971. "interoperability",
  6972. "standards"
  6973. ],
  6974. "support": {
  6975. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6976. },
  6977. "funding": [
  6978. {
  6979. "url": "https://symfony.com/sponsor",
  6980. "type": "custom"
  6981. },
  6982. {
  6983. "url": "https://github.com/fabpot",
  6984. "type": "github"
  6985. },
  6986. {
  6987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6988. "type": "tidelift"
  6989. }
  6990. ],
  6991. "time": "2021-04-01T10:43:52+00:00"
  6992. },
  6993. {
  6994. "name": "symfony/string",
  6995. "version": "v5.2.8",
  6996. "source": {
  6997. "type": "git",
  6998. "url": "https://github.com/symfony/string.git",
  6999. "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db"
  7000. },
  7001. "dist": {
  7002. "type": "zip",
  7003. "url": "https://api.github.com/repos/symfony/string/zipball/01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db",
  7004. "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db",
  7005. "shasum": "",
  7006. "mirrors": [
  7007. {
  7008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7009. "preferred": true
  7010. }
  7011. ]
  7012. },
  7013. "require": {
  7014. "php": ">=7.2.5",
  7015. "symfony/polyfill-ctype": "~1.8",
  7016. "symfony/polyfill-intl-grapheme": "~1.0",
  7017. "symfony/polyfill-intl-normalizer": "~1.0",
  7018. "symfony/polyfill-mbstring": "~1.0",
  7019. "symfony/polyfill-php80": "~1.15"
  7020. },
  7021. "require-dev": {
  7022. "symfony/error-handler": "^4.4|^5.0",
  7023. "symfony/http-client": "^4.4|^5.0",
  7024. "symfony/translation-contracts": "^1.1|^2",
  7025. "symfony/var-exporter": "^4.4|^5.0"
  7026. },
  7027. "type": "library",
  7028. "autoload": {
  7029. "psr-4": {
  7030. "Symfony\\Component\\String\\": ""
  7031. },
  7032. "files": [
  7033. "Resources/functions.php"
  7034. ],
  7035. "exclude-from-classmap": [
  7036. "/Tests/"
  7037. ]
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Nicolas Grekas",
  7046. "email": "p@tchwork.com"
  7047. },
  7048. {
  7049. "name": "Symfony Community",
  7050. "homepage": "https://symfony.com/contributors"
  7051. }
  7052. ],
  7053. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7054. "homepage": "https://symfony.com",
  7055. "keywords": [
  7056. "grapheme",
  7057. "i18n",
  7058. "string",
  7059. "unicode",
  7060. "utf-8",
  7061. "utf8"
  7062. ],
  7063. "support": {
  7064. "source": "https://github.com/symfony/string/tree/v5.2.8"
  7065. },
  7066. "funding": [
  7067. {
  7068. "url": "https://symfony.com/sponsor",
  7069. "type": "custom"
  7070. },
  7071. {
  7072. "url": "https://github.com/fabpot",
  7073. "type": "github"
  7074. },
  7075. {
  7076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7077. "type": "tidelift"
  7078. }
  7079. ],
  7080. "time": "2021-05-10T14:56:10+00:00"
  7081. },
  7082. {
  7083. "name": "symfony/translation",
  7084. "version": "v5.2.9",
  7085. "source": {
  7086. "type": "git",
  7087. "url": "https://github.com/symfony/translation.git",
  7088. "reference": "61af68dba333e2d376a325a29c2a3f2a605b4876"
  7089. },
  7090. "dist": {
  7091. "type": "zip",
  7092. "url": "https://api.github.com/repos/symfony/translation/zipball/61af68dba333e2d376a325a29c2a3f2a605b4876",
  7093. "reference": "61af68dba333e2d376a325a29c2a3f2a605b4876",
  7094. "shasum": "",
  7095. "mirrors": [
  7096. {
  7097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7098. "preferred": true
  7099. }
  7100. ]
  7101. },
  7102. "require": {
  7103. "php": ">=7.2.5",
  7104. "symfony/polyfill-mbstring": "~1.0",
  7105. "symfony/polyfill-php80": "^1.15",
  7106. "symfony/translation-contracts": "^2.3"
  7107. },
  7108. "conflict": {
  7109. "symfony/config": "<4.4",
  7110. "symfony/dependency-injection": "<5.0",
  7111. "symfony/http-kernel": "<5.0",
  7112. "symfony/twig-bundle": "<5.0",
  7113. "symfony/yaml": "<4.4"
  7114. },
  7115. "provide": {
  7116. "symfony/translation-implementation": "2.3"
  7117. },
  7118. "require-dev": {
  7119. "psr/log": "~1.0",
  7120. "symfony/config": "^4.4|^5.0",
  7121. "symfony/console": "^4.4|^5.0",
  7122. "symfony/dependency-injection": "^5.0",
  7123. "symfony/finder": "^4.4|^5.0",
  7124. "symfony/http-kernel": "^5.0",
  7125. "symfony/intl": "^4.4|^5.0",
  7126. "symfony/service-contracts": "^1.1.2|^2",
  7127. "symfony/yaml": "^4.4|^5.0"
  7128. },
  7129. "suggest": {
  7130. "psr/log-implementation": "To use logging capability in translator",
  7131. "symfony/config": "",
  7132. "symfony/yaml": ""
  7133. },
  7134. "type": "library",
  7135. "autoload": {
  7136. "files": [
  7137. "Resources/functions.php"
  7138. ],
  7139. "psr-4": {
  7140. "Symfony\\Component\\Translation\\": ""
  7141. },
  7142. "exclude-from-classmap": [
  7143. "/Tests/"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Fabien Potencier",
  7153. "email": "fabien@symfony.com"
  7154. },
  7155. {
  7156. "name": "Symfony Community",
  7157. "homepage": "https://symfony.com/contributors"
  7158. }
  7159. ],
  7160. "description": "Provides tools to internationalize your application",
  7161. "homepage": "https://symfony.com",
  7162. "support": {
  7163. "source": "https://github.com/symfony/translation/tree/v5.2.9"
  7164. },
  7165. "funding": [
  7166. {
  7167. "url": "https://symfony.com/sponsor",
  7168. "type": "custom"
  7169. },
  7170. {
  7171. "url": "https://github.com/fabpot",
  7172. "type": "github"
  7173. },
  7174. {
  7175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7176. "type": "tidelift"
  7177. }
  7178. ],
  7179. "time": "2021-05-16T13:07:46+00:00"
  7180. },
  7181. {
  7182. "name": "symfony/translation-contracts",
  7183. "version": "v2.4.0",
  7184. "source": {
  7185. "type": "git",
  7186. "url": "https://github.com/symfony/translation-contracts.git",
  7187. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7188. },
  7189. "dist": {
  7190. "type": "zip",
  7191. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7192. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7193. "shasum": "",
  7194. "mirrors": [
  7195. {
  7196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7197. "preferred": true
  7198. }
  7199. ]
  7200. },
  7201. "require": {
  7202. "php": ">=7.2.5"
  7203. },
  7204. "suggest": {
  7205. "symfony/translation-implementation": ""
  7206. },
  7207. "type": "library",
  7208. "extra": {
  7209. "branch-alias": {
  7210. "dev-main": "2.4-dev"
  7211. },
  7212. "thanks": {
  7213. "name": "symfony/contracts",
  7214. "url": "https://github.com/symfony/contracts"
  7215. }
  7216. },
  7217. "autoload": {
  7218. "psr-4": {
  7219. "Symfony\\Contracts\\Translation\\": ""
  7220. }
  7221. },
  7222. "notification-url": "https://packagist.org/downloads/",
  7223. "license": [
  7224. "MIT"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Nicolas Grekas",
  7229. "email": "p@tchwork.com"
  7230. },
  7231. {
  7232. "name": "Symfony Community",
  7233. "homepage": "https://symfony.com/contributors"
  7234. }
  7235. ],
  7236. "description": "Generic abstractions related to translation",
  7237. "homepage": "https://symfony.com",
  7238. "keywords": [
  7239. "abstractions",
  7240. "contracts",
  7241. "decoupling",
  7242. "interfaces",
  7243. "interoperability",
  7244. "standards"
  7245. ],
  7246. "support": {
  7247. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7248. },
  7249. "funding": [
  7250. {
  7251. "url": "https://symfony.com/sponsor",
  7252. "type": "custom"
  7253. },
  7254. {
  7255. "url": "https://github.com/fabpot",
  7256. "type": "github"
  7257. },
  7258. {
  7259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7260. "type": "tidelift"
  7261. }
  7262. ],
  7263. "time": "2021-03-23T23:28:01+00:00"
  7264. },
  7265. {
  7266. "name": "symfony/var-dumper",
  7267. "version": "v5.2.8",
  7268. "source": {
  7269. "type": "git",
  7270. "url": "https://github.com/symfony/var-dumper.git",
  7271. "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba"
  7272. },
  7273. "dist": {
  7274. "type": "zip",
  7275. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d693200a73fae179d27f8f1b16b4faf3e8569eba",
  7276. "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba",
  7277. "shasum": "",
  7278. "mirrors": [
  7279. {
  7280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7281. "preferred": true
  7282. }
  7283. ]
  7284. },
  7285. "require": {
  7286. "php": ">=7.2.5",
  7287. "symfony/polyfill-mbstring": "~1.0",
  7288. "symfony/polyfill-php80": "^1.15"
  7289. },
  7290. "conflict": {
  7291. "phpunit/phpunit": "<5.4.3",
  7292. "symfony/console": "<4.4"
  7293. },
  7294. "require-dev": {
  7295. "ext-iconv": "*",
  7296. "symfony/console": "^4.4|^5.0",
  7297. "symfony/process": "^4.4|^5.0",
  7298. "twig/twig": "^2.13|^3.0.4"
  7299. },
  7300. "suggest": {
  7301. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7302. "ext-intl": "To show region name in time zone dump",
  7303. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7304. },
  7305. "bin": [
  7306. "Resources/bin/var-dump-server"
  7307. ],
  7308. "type": "library",
  7309. "autoload": {
  7310. "files": [
  7311. "Resources/functions/dump.php"
  7312. ],
  7313. "psr-4": {
  7314. "Symfony\\Component\\VarDumper\\": ""
  7315. },
  7316. "exclude-from-classmap": [
  7317. "/Tests/"
  7318. ]
  7319. },
  7320. "notification-url": "https://packagist.org/downloads/",
  7321. "license": [
  7322. "MIT"
  7323. ],
  7324. "authors": [
  7325. {
  7326. "name": "Nicolas Grekas",
  7327. "email": "p@tchwork.com"
  7328. },
  7329. {
  7330. "name": "Symfony Community",
  7331. "homepage": "https://symfony.com/contributors"
  7332. }
  7333. ],
  7334. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7335. "homepage": "https://symfony.com",
  7336. "keywords": [
  7337. "debug",
  7338. "dump"
  7339. ],
  7340. "support": {
  7341. "source": "https://github.com/symfony/var-dumper/tree/v5.2.8"
  7342. },
  7343. "funding": [
  7344. {
  7345. "url": "https://symfony.com/sponsor",
  7346. "type": "custom"
  7347. },
  7348. {
  7349. "url": "https://github.com/fabpot",
  7350. "type": "github"
  7351. },
  7352. {
  7353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7354. "type": "tidelift"
  7355. }
  7356. ],
  7357. "time": "2021-05-07T13:42:21+00:00"
  7358. },
  7359. {
  7360. "name": "te7a-houdini/laravel-trix",
  7361. "version": "2.0.4",
  7362. "source": {
  7363. "type": "git",
  7364. "url": "https://github.com/amaelftah/laravel-trix.git",
  7365. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7366. },
  7367. "dist": {
  7368. "type": "zip",
  7369. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7370. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7371. "shasum": "",
  7372. "mirrors": [
  7373. {
  7374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7375. "preferred": true
  7376. }
  7377. ]
  7378. },
  7379. "require": {
  7380. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7381. "php": "^7.1"
  7382. },
  7383. "require-dev": {
  7384. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7385. },
  7386. "type": "library",
  7387. "extra": {
  7388. "laravel": {
  7389. "providers": [
  7390. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7391. ]
  7392. }
  7393. },
  7394. "autoload": {
  7395. "psr-4": {
  7396. "Te7aHoudini\\LaravelTrix\\": "src"
  7397. }
  7398. },
  7399. "notification-url": "https://packagist.org/downloads/",
  7400. "license": [
  7401. "MIT"
  7402. ],
  7403. "authors": [
  7404. {
  7405. "name": "Ahmed Abd El Ftah",
  7406. "email": "ahmedabdelftah95165@gmail.com",
  7407. "role": "Developer"
  7408. }
  7409. ],
  7410. "description": "trix editor for laravel inspired by ActionText for rails",
  7411. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7412. "keywords": [
  7413. "laravel-trix",
  7414. "te7a-houdini"
  7415. ],
  7416. "support": {
  7417. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7418. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7419. },
  7420. "time": "2020-11-12T10:48:06+00:00"
  7421. },
  7422. {
  7423. "name": "tightenco/collect",
  7424. "version": "v5.6.33",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/tighten/collect.git",
  7428. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7433. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7434. "shasum": "",
  7435. "mirrors": [
  7436. {
  7437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7438. "preferred": true
  7439. }
  7440. ]
  7441. },
  7442. "require": {
  7443. "php": ">=7.1.3",
  7444. "symfony/var-dumper": ">=3.1.10"
  7445. },
  7446. "require-dev": {
  7447. "mockery/mockery": "~1.0",
  7448. "nesbot/carbon": "~1.20",
  7449. "phpunit/phpunit": "~7.0"
  7450. },
  7451. "type": "library",
  7452. "autoload": {
  7453. "files": [
  7454. "src/Collect/Support/helpers.php",
  7455. "src/Collect/Support/alias.php"
  7456. ],
  7457. "psr-4": {
  7458. "Tightenco\\Collect\\": "src/Collect"
  7459. }
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "MIT"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Taylor Otwell",
  7468. "email": "taylorotwell@gmail.com"
  7469. }
  7470. ],
  7471. "description": "Collect - Illuminate Collections as a separate package.",
  7472. "keywords": [
  7473. "collection",
  7474. "laravel"
  7475. ],
  7476. "support": {
  7477. "issues": "https://github.com/tighten/collect/issues",
  7478. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7479. },
  7480. "time": "2018-08-09T16:56:26+00:00"
  7481. },
  7482. {
  7483. "name": "tijsverkoyen/css-to-inline-styles",
  7484. "version": "2.2.3",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7488. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7493. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7494. "shasum": "",
  7495. "mirrors": [
  7496. {
  7497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7498. "preferred": true
  7499. }
  7500. ]
  7501. },
  7502. "require": {
  7503. "ext-dom": "*",
  7504. "ext-libxml": "*",
  7505. "php": "^5.5 || ^7.0 || ^8.0",
  7506. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7507. },
  7508. "require-dev": {
  7509. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7510. },
  7511. "type": "library",
  7512. "extra": {
  7513. "branch-alias": {
  7514. "dev-master": "2.2.x-dev"
  7515. }
  7516. },
  7517. "autoload": {
  7518. "psr-4": {
  7519. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7520. }
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "BSD-3-Clause"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Tijs Verkoyen",
  7529. "email": "css_to_inline_styles@verkoyen.eu",
  7530. "role": "Developer"
  7531. }
  7532. ],
  7533. "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.",
  7534. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7535. "support": {
  7536. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7537. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7538. },
  7539. "time": "2020-07-13T06:12:54+00:00"
  7540. },
  7541. {
  7542. "name": "vlucas/phpdotenv",
  7543. "version": "v4.2.0",
  7544. "source": {
  7545. "type": "git",
  7546. "url": "https://github.com/vlucas/phpdotenv.git",
  7547. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7548. },
  7549. "dist": {
  7550. "type": "zip",
  7551. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7552. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7553. "shasum": "",
  7554. "mirrors": [
  7555. {
  7556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7557. "preferred": true
  7558. }
  7559. ]
  7560. },
  7561. "require": {
  7562. "php": "^5.5.9 || ^7.0 || ^8.0",
  7563. "phpoption/phpoption": "^1.7.3",
  7564. "symfony/polyfill-ctype": "^1.17"
  7565. },
  7566. "require-dev": {
  7567. "bamarni/composer-bin-plugin": "^1.4.1",
  7568. "ext-filter": "*",
  7569. "ext-pcre": "*",
  7570. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7571. },
  7572. "suggest": {
  7573. "ext-filter": "Required to use the boolean validator.",
  7574. "ext-pcre": "Required to use most of the library."
  7575. },
  7576. "type": "library",
  7577. "extra": {
  7578. "branch-alias": {
  7579. "dev-master": "4.1-dev"
  7580. }
  7581. },
  7582. "autoload": {
  7583. "psr-4": {
  7584. "Dotenv\\": "src/"
  7585. }
  7586. },
  7587. "notification-url": "https://packagist.org/downloads/",
  7588. "license": [
  7589. "BSD-3-Clause"
  7590. ],
  7591. "authors": [
  7592. {
  7593. "name": "Graham Campbell",
  7594. "email": "graham@alt-three.com",
  7595. "homepage": "https://gjcampbell.co.uk/"
  7596. },
  7597. {
  7598. "name": "Vance Lucas",
  7599. "email": "vance@vancelucas.com",
  7600. "homepage": "https://vancelucas.com/"
  7601. }
  7602. ],
  7603. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7604. "keywords": [
  7605. "dotenv",
  7606. "env",
  7607. "environment"
  7608. ],
  7609. "support": {
  7610. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7611. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7612. },
  7613. "funding": [
  7614. {
  7615. "url": "https://github.com/GrahamCampbell",
  7616. "type": "github"
  7617. },
  7618. {
  7619. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7620. "type": "tidelift"
  7621. }
  7622. ],
  7623. "time": "2021-01-20T15:11:48+00:00"
  7624. },
  7625. {
  7626. "name": "voku/portable-ascii",
  7627. "version": "1.5.6",
  7628. "source": {
  7629. "type": "git",
  7630. "url": "https://github.com/voku/portable-ascii.git",
  7631. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7632. },
  7633. "dist": {
  7634. "type": "zip",
  7635. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7636. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7637. "shasum": "",
  7638. "mirrors": [
  7639. {
  7640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7641. "preferred": true
  7642. }
  7643. ]
  7644. },
  7645. "require": {
  7646. "php": ">=7.0.0"
  7647. },
  7648. "require-dev": {
  7649. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7650. },
  7651. "suggest": {
  7652. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7653. },
  7654. "type": "library",
  7655. "autoload": {
  7656. "psr-4": {
  7657. "voku\\": "src/voku/"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Lars Moelleken",
  7667. "homepage": "http://www.moelleken.org/"
  7668. }
  7669. ],
  7670. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7671. "homepage": "https://github.com/voku/portable-ascii",
  7672. "keywords": [
  7673. "ascii",
  7674. "clean",
  7675. "php"
  7676. ],
  7677. "support": {
  7678. "issues": "https://github.com/voku/portable-ascii/issues",
  7679. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7680. },
  7681. "funding": [
  7682. {
  7683. "url": "https://www.paypal.me/moelleken",
  7684. "type": "custom"
  7685. },
  7686. {
  7687. "url": "https://github.com/voku",
  7688. "type": "github"
  7689. },
  7690. {
  7691. "url": "https://opencollective.com/portable-ascii",
  7692. "type": "open_collective"
  7693. },
  7694. {
  7695. "url": "https://www.patreon.com/voku",
  7696. "type": "patreon"
  7697. },
  7698. {
  7699. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7700. "type": "tidelift"
  7701. }
  7702. ],
  7703. "time": "2020-11-12T00:07:28+00:00"
  7704. },
  7705. {
  7706. "name": "yajra/laravel-oci8",
  7707. "version": "v7.0.0",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/yajra/laravel-oci8.git",
  7711. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7716. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7717. "shasum": "",
  7718. "mirrors": [
  7719. {
  7720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7721. "preferred": true
  7722. }
  7723. ]
  7724. },
  7725. "require": {
  7726. "ext-oci8": ">=2.0.0",
  7727. "ext-pdo": "*",
  7728. "illuminate/database": "^7",
  7729. "illuminate/support": "^7",
  7730. "php": "^7.2.5",
  7731. "yajra/laravel-pdo-via-oci8": "^2"
  7732. },
  7733. "require-dev": {
  7734. "mockery/mockery": "^1.3.1",
  7735. "phpunit/phpunit": "^8.4|^9.0",
  7736. "scrutinizer/ocular": "~1.1"
  7737. },
  7738. "type": "library",
  7739. "extra": {
  7740. "branch-alias": {
  7741. "dev-master": "7.x-dev"
  7742. },
  7743. "laravel": {
  7744. "providers": [
  7745. "Yajra\\Oci8\\Oci8ServiceProvider"
  7746. ]
  7747. }
  7748. },
  7749. "autoload": {
  7750. "files": [
  7751. "src/helper.php"
  7752. ],
  7753. "psr-4": {
  7754. "Yajra\\": "src/"
  7755. }
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "MIT"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "Arjay Angeles",
  7764. "email": "aqangeles@gmail.com"
  7765. }
  7766. ],
  7767. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7768. "keywords": [
  7769. "laravel",
  7770. "oci8",
  7771. "oracle",
  7772. "pdo_oci"
  7773. ],
  7774. "support": {
  7775. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7776. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://www.paypal.me/yajra",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://www.patreon.com/yajra",
  7785. "type": "patreon"
  7786. }
  7787. ],
  7788. "time": "2020-03-04T02:15:19+00:00"
  7789. },
  7790. {
  7791. "name": "yajra/laravel-pdo-via-oci8",
  7792. "version": "v2.2.0",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7796. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7801. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7802. "shasum": "",
  7803. "mirrors": [
  7804. {
  7805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7806. "preferred": true
  7807. }
  7808. ]
  7809. },
  7810. "require-dev": {
  7811. "phpunit/phpunit": "^6.4"
  7812. },
  7813. "type": "library",
  7814. "extra": {
  7815. "branch-alias": {
  7816. "dev-master": "2.0-dev"
  7817. }
  7818. },
  7819. "autoload": {
  7820. "psr-4": {
  7821. "Yajra\\": "src/"
  7822. }
  7823. },
  7824. "notification-url": "https://packagist.org/downloads/",
  7825. "license": [
  7826. "MIT"
  7827. ],
  7828. "authors": [
  7829. {
  7830. "name": "Arjay Angeles",
  7831. "email": "aqangeles@gmail.com"
  7832. }
  7833. ],
  7834. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7835. "support": {
  7836. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7837. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7838. },
  7839. "time": "2020-12-11T12:29:18+00:00"
  7840. }
  7841. ],
  7842. "packages-dev": [
  7843. {
  7844. "name": "barryvdh/laravel-debugbar",
  7845. "version": "v3.5.7",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7849. "reference": "88fd9cfa144b06b2549e9d487fdaec68265e791e"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/88fd9cfa144b06b2549e9d487fdaec68265e791e",
  7854. "reference": "88fd9cfa144b06b2549e9d487fdaec68265e791e",
  7855. "shasum": "",
  7856. "mirrors": [
  7857. {
  7858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7859. "preferred": true
  7860. }
  7861. ]
  7862. },
  7863. "require": {
  7864. "illuminate/routing": "^6|^7|^8",
  7865. "illuminate/session": "^6|^7|^8",
  7866. "illuminate/support": "^6|^7|^8",
  7867. "maximebf/debugbar": "^1.16.3",
  7868. "php": ">=7.2",
  7869. "symfony/debug": "^4.3|^5",
  7870. "symfony/finder": "^4.3|^5"
  7871. },
  7872. "require-dev": {
  7873. "mockery/mockery": "^1.3.3",
  7874. "orchestra/testbench-dusk": "^4|^5|^6",
  7875. "phpunit/phpunit": "^8.5|^9.0",
  7876. "squizlabs/php_codesniffer": "^3.5"
  7877. },
  7878. "type": "library",
  7879. "extra": {
  7880. "branch-alias": {
  7881. "dev-master": "3.5-dev"
  7882. },
  7883. "laravel": {
  7884. "providers": [
  7885. "Barryvdh\\Debugbar\\ServiceProvider"
  7886. ],
  7887. "aliases": {
  7888. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7889. }
  7890. }
  7891. },
  7892. "autoload": {
  7893. "psr-4": {
  7894. "Barryvdh\\Debugbar\\": "src/"
  7895. },
  7896. "files": [
  7897. "src/helpers.php"
  7898. ]
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "MIT"
  7903. ],
  7904. "authors": [
  7905. {
  7906. "name": "Barry vd. Heuvel",
  7907. "email": "barryvdh@gmail.com"
  7908. }
  7909. ],
  7910. "description": "PHP Debugbar integration for Laravel",
  7911. "keywords": [
  7912. "debug",
  7913. "debugbar",
  7914. "laravel",
  7915. "profiler",
  7916. "webprofiler"
  7917. ],
  7918. "support": {
  7919. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7920. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.7"
  7921. },
  7922. "funding": [
  7923. {
  7924. "url": "https://github.com/barryvdh",
  7925. "type": "github"
  7926. }
  7927. ],
  7928. "time": "2021-05-13T20:18:35+00:00"
  7929. },
  7930. {
  7931. "name": "beyondcode/laravel-dump-server",
  7932. "version": "1.7.0",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7936. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7941. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7942. "shasum": "",
  7943. "mirrors": [
  7944. {
  7945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7946. "preferred": true
  7947. }
  7948. ]
  7949. },
  7950. "require": {
  7951. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7952. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7953. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7954. "php": ">=7.2.5",
  7955. "symfony/var-dumper": "^5.0"
  7956. },
  7957. "require-dev": {
  7958. "larapack/dd": "^1.0",
  7959. "phpunit/phpunit": "^7.0|^9.3"
  7960. },
  7961. "type": "library",
  7962. "extra": {
  7963. "laravel": {
  7964. "providers": [
  7965. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7966. ]
  7967. }
  7968. },
  7969. "autoload": {
  7970. "psr-4": {
  7971. "BeyondCode\\DumpServer\\": "src"
  7972. },
  7973. "files": [
  7974. "helpers.php"
  7975. ]
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "Marcel Pociot",
  7984. "email": "marcel@beyondco.de",
  7985. "homepage": "https://beyondco.de",
  7986. "role": "Developer"
  7987. }
  7988. ],
  7989. "description": "Symfony Var-Dump Server for Laravel",
  7990. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  7991. "keywords": [
  7992. "beyondcode",
  7993. "laravel-dump-server"
  7994. ],
  7995. "support": {
  7996. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  7997. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  7998. },
  7999. "time": "2020-12-15T10:57:43+00:00"
  8000. },
  8001. {
  8002. "name": "doctrine/instantiator",
  8003. "version": "1.4.0",
  8004. "source": {
  8005. "type": "git",
  8006. "url": "https://github.com/doctrine/instantiator.git",
  8007. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8008. },
  8009. "dist": {
  8010. "type": "zip",
  8011. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8012. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8013. "shasum": "",
  8014. "mirrors": [
  8015. {
  8016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8017. "preferred": true
  8018. }
  8019. ]
  8020. },
  8021. "require": {
  8022. "php": "^7.1 || ^8.0"
  8023. },
  8024. "require-dev": {
  8025. "doctrine/coding-standard": "^8.0",
  8026. "ext-pdo": "*",
  8027. "ext-phar": "*",
  8028. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8029. "phpstan/phpstan": "^0.12",
  8030. "phpstan/phpstan-phpunit": "^0.12",
  8031. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8032. },
  8033. "type": "library",
  8034. "autoload": {
  8035. "psr-4": {
  8036. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8037. }
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "MIT"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Marco Pivetta",
  8046. "email": "ocramius@gmail.com",
  8047. "homepage": "https://ocramius.github.io/"
  8048. }
  8049. ],
  8050. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8051. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8052. "keywords": [
  8053. "constructor",
  8054. "instantiate"
  8055. ],
  8056. "support": {
  8057. "issues": "https://github.com/doctrine/instantiator/issues",
  8058. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8059. },
  8060. "funding": [
  8061. {
  8062. "url": "https://www.doctrine-project.org/sponsorship.html",
  8063. "type": "custom"
  8064. },
  8065. {
  8066. "url": "https://www.patreon.com/phpdoctrine",
  8067. "type": "patreon"
  8068. },
  8069. {
  8070. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8071. "type": "tidelift"
  8072. }
  8073. ],
  8074. "time": "2020-11-10T18:47:58+00:00"
  8075. },
  8076. {
  8077. "name": "fzaninotto/faker",
  8078. "version": "v1.9.2",
  8079. "source": {
  8080. "type": "git",
  8081. "url": "https://github.com/fzaninotto/Faker.git",
  8082. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8083. },
  8084. "dist": {
  8085. "type": "zip",
  8086. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8087. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8088. "shasum": "",
  8089. "mirrors": [
  8090. {
  8091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8092. "preferred": true
  8093. }
  8094. ]
  8095. },
  8096. "require": {
  8097. "php": "^5.3.3 || ^7.0"
  8098. },
  8099. "require-dev": {
  8100. "ext-intl": "*",
  8101. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8102. "squizlabs/php_codesniffer": "^2.9.2"
  8103. },
  8104. "type": "library",
  8105. "extra": {
  8106. "branch-alias": {
  8107. "dev-master": "1.9-dev"
  8108. }
  8109. },
  8110. "autoload": {
  8111. "psr-4": {
  8112. "Faker\\": "src/Faker/"
  8113. }
  8114. },
  8115. "notification-url": "https://packagist.org/downloads/",
  8116. "license": [
  8117. "MIT"
  8118. ],
  8119. "authors": [
  8120. {
  8121. "name": "François Zaninotto"
  8122. }
  8123. ],
  8124. "description": "Faker is a PHP library that generates fake data for you.",
  8125. "keywords": [
  8126. "data",
  8127. "faker",
  8128. "fixtures"
  8129. ],
  8130. "support": {
  8131. "issues": "https://github.com/fzaninotto/Faker/issues",
  8132. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8133. },
  8134. "abandoned": true,
  8135. "time": "2020-12-11T09:56:16+00:00"
  8136. },
  8137. {
  8138. "name": "hamcrest/hamcrest-php",
  8139. "version": "v2.0.1",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8143. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8148. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8149. "shasum": "",
  8150. "mirrors": [
  8151. {
  8152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8153. "preferred": true
  8154. }
  8155. ]
  8156. },
  8157. "require": {
  8158. "php": "^5.3|^7.0|^8.0"
  8159. },
  8160. "replace": {
  8161. "cordoval/hamcrest-php": "*",
  8162. "davedevelopment/hamcrest-php": "*",
  8163. "kodova/hamcrest-php": "*"
  8164. },
  8165. "require-dev": {
  8166. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8167. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8168. },
  8169. "type": "library",
  8170. "extra": {
  8171. "branch-alias": {
  8172. "dev-master": "2.1-dev"
  8173. }
  8174. },
  8175. "autoload": {
  8176. "classmap": [
  8177. "hamcrest"
  8178. ]
  8179. },
  8180. "notification-url": "https://packagist.org/downloads/",
  8181. "license": [
  8182. "BSD-3-Clause"
  8183. ],
  8184. "description": "This is the PHP port of Hamcrest Matchers",
  8185. "keywords": [
  8186. "test"
  8187. ],
  8188. "support": {
  8189. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8190. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8191. },
  8192. "time": "2020-07-09T08:09:16+00:00"
  8193. },
  8194. {
  8195. "name": "maximebf/debugbar",
  8196. "version": "v1.16.5",
  8197. "source": {
  8198. "type": "git",
  8199. "url": "https://github.com/maximebf/php-debugbar.git",
  8200. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8201. },
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8205. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8206. "shasum": "",
  8207. "mirrors": [
  8208. {
  8209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8210. "preferred": true
  8211. }
  8212. ]
  8213. },
  8214. "require": {
  8215. "php": "^7.1|^8",
  8216. "psr/log": "^1.0",
  8217. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8218. },
  8219. "require-dev": {
  8220. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8221. },
  8222. "suggest": {
  8223. "kriswallsmith/assetic": "The best way to manage assets",
  8224. "monolog/monolog": "Log using Monolog",
  8225. "predis/predis": "Redis storage"
  8226. },
  8227. "type": "library",
  8228. "extra": {
  8229. "branch-alias": {
  8230. "dev-master": "1.16-dev"
  8231. }
  8232. },
  8233. "autoload": {
  8234. "psr-4": {
  8235. "DebugBar\\": "src/DebugBar/"
  8236. }
  8237. },
  8238. "notification-url": "https://packagist.org/downloads/",
  8239. "license": [
  8240. "MIT"
  8241. ],
  8242. "authors": [
  8243. {
  8244. "name": "Maxime Bouroumeau-Fuseau",
  8245. "email": "maxime.bouroumeau@gmail.com",
  8246. "homepage": "http://maximebf.com"
  8247. },
  8248. {
  8249. "name": "Barry vd. Heuvel",
  8250. "email": "barryvdh@gmail.com"
  8251. }
  8252. ],
  8253. "description": "Debug bar in the browser for php application",
  8254. "homepage": "https://github.com/maximebf/php-debugbar",
  8255. "keywords": [
  8256. "debug",
  8257. "debugbar"
  8258. ],
  8259. "support": {
  8260. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8261. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8262. },
  8263. "time": "2020-12-07T11:07:24+00:00"
  8264. },
  8265. {
  8266. "name": "mockery/mockery",
  8267. "version": "1.4.3",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://github.com/mockery/mockery.git",
  8271. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8276. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8277. "shasum": "",
  8278. "mirrors": [
  8279. {
  8280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8281. "preferred": true
  8282. }
  8283. ]
  8284. },
  8285. "require": {
  8286. "hamcrest/hamcrest-php": "^2.0.1",
  8287. "lib-pcre": ">=7.0",
  8288. "php": "^7.3 || ^8.0"
  8289. },
  8290. "conflict": {
  8291. "phpunit/phpunit": "<8.0"
  8292. },
  8293. "require-dev": {
  8294. "phpunit/phpunit": "^8.5 || ^9.3"
  8295. },
  8296. "type": "library",
  8297. "extra": {
  8298. "branch-alias": {
  8299. "dev-master": "1.4.x-dev"
  8300. }
  8301. },
  8302. "autoload": {
  8303. "psr-0": {
  8304. "Mockery": "library/"
  8305. }
  8306. },
  8307. "notification-url": "https://packagist.org/downloads/",
  8308. "license": [
  8309. "BSD-3-Clause"
  8310. ],
  8311. "authors": [
  8312. {
  8313. "name": "Pádraic Brady",
  8314. "email": "padraic.brady@gmail.com",
  8315. "homepage": "http://blog.astrumfutura.com"
  8316. },
  8317. {
  8318. "name": "Dave Marshall",
  8319. "email": "dave.marshall@atstsolutions.co.uk",
  8320. "homepage": "http://davedevelopment.co.uk"
  8321. }
  8322. ],
  8323. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8324. "homepage": "https://github.com/mockery/mockery",
  8325. "keywords": [
  8326. "BDD",
  8327. "TDD",
  8328. "library",
  8329. "mock",
  8330. "mock objects",
  8331. "mockery",
  8332. "stub",
  8333. "test",
  8334. "test double",
  8335. "testing"
  8336. ],
  8337. "support": {
  8338. "issues": "https://github.com/mockery/mockery/issues",
  8339. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8340. },
  8341. "time": "2021-02-24T09:51:49+00:00"
  8342. },
  8343. {
  8344. "name": "myclabs/deep-copy",
  8345. "version": "1.10.2",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/myclabs/DeepCopy.git",
  8349. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8354. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8355. "shasum": "",
  8356. "mirrors": [
  8357. {
  8358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8359. "preferred": true
  8360. }
  8361. ]
  8362. },
  8363. "require": {
  8364. "php": "^7.1 || ^8.0"
  8365. },
  8366. "replace": {
  8367. "myclabs/deep-copy": "self.version"
  8368. },
  8369. "require-dev": {
  8370. "doctrine/collections": "^1.0",
  8371. "doctrine/common": "^2.6",
  8372. "phpunit/phpunit": "^7.1"
  8373. },
  8374. "type": "library",
  8375. "autoload": {
  8376. "psr-4": {
  8377. "DeepCopy\\": "src/DeepCopy/"
  8378. },
  8379. "files": [
  8380. "src/DeepCopy/deep_copy.php"
  8381. ]
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "MIT"
  8386. ],
  8387. "description": "Create deep copies (clones) of your objects",
  8388. "keywords": [
  8389. "clone",
  8390. "copy",
  8391. "duplicate",
  8392. "object",
  8393. "object graph"
  8394. ],
  8395. "support": {
  8396. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8397. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8398. },
  8399. "funding": [
  8400. {
  8401. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8402. "type": "tidelift"
  8403. }
  8404. ],
  8405. "time": "2020-11-13T09:40:50+00:00"
  8406. },
  8407. {
  8408. "name": "nunomaduro/collision",
  8409. "version": "v4.3.0",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/nunomaduro/collision.git",
  8413. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8418. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8419. "shasum": "",
  8420. "mirrors": [
  8421. {
  8422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8423. "preferred": true
  8424. }
  8425. ]
  8426. },
  8427. "require": {
  8428. "facade/ignition-contracts": "^1.0",
  8429. "filp/whoops": "^2.4",
  8430. "php": "^7.2.5 || ^8.0",
  8431. "symfony/console": "^5.0"
  8432. },
  8433. "require-dev": {
  8434. "facade/ignition": "^2.0",
  8435. "fideloper/proxy": "^4.2",
  8436. "friendsofphp/php-cs-fixer": "^2.16",
  8437. "fruitcake/laravel-cors": "^1.0",
  8438. "laravel/framework": "^7.0",
  8439. "laravel/tinker": "^2.0",
  8440. "nunomaduro/larastan": "^0.6",
  8441. "orchestra/testbench": "^5.0",
  8442. "phpstan/phpstan": "^0.12.3",
  8443. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8444. },
  8445. "type": "library",
  8446. "extra": {
  8447. "laravel": {
  8448. "providers": [
  8449. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8450. ]
  8451. }
  8452. },
  8453. "autoload": {
  8454. "psr-4": {
  8455. "NunoMaduro\\Collision\\": "src/"
  8456. }
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "authors": [
  8463. {
  8464. "name": "Nuno Maduro",
  8465. "email": "enunomaduro@gmail.com"
  8466. }
  8467. ],
  8468. "description": "Cli error handling for console/command-line PHP applications.",
  8469. "keywords": [
  8470. "artisan",
  8471. "cli",
  8472. "command-line",
  8473. "console",
  8474. "error",
  8475. "handling",
  8476. "laravel",
  8477. "laravel-zero",
  8478. "php",
  8479. "symfony"
  8480. ],
  8481. "support": {
  8482. "issues": "https://github.com/nunomaduro/collision/issues",
  8483. "source": "https://github.com/nunomaduro/collision"
  8484. },
  8485. "funding": [
  8486. {
  8487. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8488. "type": "custom"
  8489. },
  8490. {
  8491. "url": "https://github.com/nunomaduro",
  8492. "type": "github"
  8493. },
  8494. {
  8495. "url": "https://www.patreon.com/nunomaduro",
  8496. "type": "patreon"
  8497. }
  8498. ],
  8499. "time": "2020-10-29T15:12:23+00:00"
  8500. },
  8501. {
  8502. "name": "phar-io/manifest",
  8503. "version": "2.0.1",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/phar-io/manifest.git",
  8507. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8512. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8513. "shasum": "",
  8514. "mirrors": [
  8515. {
  8516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8517. "preferred": true
  8518. }
  8519. ]
  8520. },
  8521. "require": {
  8522. "ext-dom": "*",
  8523. "ext-phar": "*",
  8524. "ext-xmlwriter": "*",
  8525. "phar-io/version": "^3.0.1",
  8526. "php": "^7.2 || ^8.0"
  8527. },
  8528. "type": "library",
  8529. "extra": {
  8530. "branch-alias": {
  8531. "dev-master": "2.0.x-dev"
  8532. }
  8533. },
  8534. "autoload": {
  8535. "classmap": [
  8536. "src/"
  8537. ]
  8538. },
  8539. "notification-url": "https://packagist.org/downloads/",
  8540. "license": [
  8541. "BSD-3-Clause"
  8542. ],
  8543. "authors": [
  8544. {
  8545. "name": "Arne Blankerts",
  8546. "email": "arne@blankerts.de",
  8547. "role": "Developer"
  8548. },
  8549. {
  8550. "name": "Sebastian Heuer",
  8551. "email": "sebastian@phpeople.de",
  8552. "role": "Developer"
  8553. },
  8554. {
  8555. "name": "Sebastian Bergmann",
  8556. "email": "sebastian@phpunit.de",
  8557. "role": "Developer"
  8558. }
  8559. ],
  8560. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8561. "support": {
  8562. "issues": "https://github.com/phar-io/manifest/issues",
  8563. "source": "https://github.com/phar-io/manifest/tree/master"
  8564. },
  8565. "time": "2020-06-27T14:33:11+00:00"
  8566. },
  8567. {
  8568. "name": "phar-io/version",
  8569. "version": "3.1.0",
  8570. "source": {
  8571. "type": "git",
  8572. "url": "https://github.com/phar-io/version.git",
  8573. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8574. },
  8575. "dist": {
  8576. "type": "zip",
  8577. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8578. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8579. "shasum": "",
  8580. "mirrors": [
  8581. {
  8582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8583. "preferred": true
  8584. }
  8585. ]
  8586. },
  8587. "require": {
  8588. "php": "^7.2 || ^8.0"
  8589. },
  8590. "type": "library",
  8591. "autoload": {
  8592. "classmap": [
  8593. "src/"
  8594. ]
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "BSD-3-Clause"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Arne Blankerts",
  8603. "email": "arne@blankerts.de",
  8604. "role": "Developer"
  8605. },
  8606. {
  8607. "name": "Sebastian Heuer",
  8608. "email": "sebastian@phpeople.de",
  8609. "role": "Developer"
  8610. },
  8611. {
  8612. "name": "Sebastian Bergmann",
  8613. "email": "sebastian@phpunit.de",
  8614. "role": "Developer"
  8615. }
  8616. ],
  8617. "description": "Library for handling version information and constraints",
  8618. "support": {
  8619. "issues": "https://github.com/phar-io/version/issues",
  8620. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8621. },
  8622. "time": "2021-02-23T14:00:09+00:00"
  8623. },
  8624. {
  8625. "name": "phpdocumentor/reflection-common",
  8626. "version": "2.2.0",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8630. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8635. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8636. "shasum": "",
  8637. "mirrors": [
  8638. {
  8639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8640. "preferred": true
  8641. }
  8642. ]
  8643. },
  8644. "require": {
  8645. "php": "^7.2 || ^8.0"
  8646. },
  8647. "type": "library",
  8648. "extra": {
  8649. "branch-alias": {
  8650. "dev-2.x": "2.x-dev"
  8651. }
  8652. },
  8653. "autoload": {
  8654. "psr-4": {
  8655. "phpDocumentor\\Reflection\\": "src/"
  8656. }
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "MIT"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Jaap van Otterdijk",
  8665. "email": "opensource@ijaap.nl"
  8666. }
  8667. ],
  8668. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8669. "homepage": "http://www.phpdoc.org",
  8670. "keywords": [
  8671. "FQSEN",
  8672. "phpDocumentor",
  8673. "phpdoc",
  8674. "reflection",
  8675. "static analysis"
  8676. ],
  8677. "support": {
  8678. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8679. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8680. },
  8681. "time": "2020-06-27T09:03:43+00:00"
  8682. },
  8683. {
  8684. "name": "phpdocumentor/reflection-docblock",
  8685. "version": "5.2.2",
  8686. "source": {
  8687. "type": "git",
  8688. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8689. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8690. },
  8691. "dist": {
  8692. "type": "zip",
  8693. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8694. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8695. "shasum": "",
  8696. "mirrors": [
  8697. {
  8698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8699. "preferred": true
  8700. }
  8701. ]
  8702. },
  8703. "require": {
  8704. "ext-filter": "*",
  8705. "php": "^7.2 || ^8.0",
  8706. "phpdocumentor/reflection-common": "^2.2",
  8707. "phpdocumentor/type-resolver": "^1.3",
  8708. "webmozart/assert": "^1.9.1"
  8709. },
  8710. "require-dev": {
  8711. "mockery/mockery": "~1.3.2"
  8712. },
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-master": "5.x-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "psr-4": {
  8721. "phpDocumentor\\Reflection\\": "src"
  8722. }
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "MIT"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Mike van Riel",
  8731. "email": "me@mikevanriel.com"
  8732. },
  8733. {
  8734. "name": "Jaap van Otterdijk",
  8735. "email": "account@ijaap.nl"
  8736. }
  8737. ],
  8738. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8739. "support": {
  8740. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8741. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8742. },
  8743. "time": "2020-09-03T19:13:55+00:00"
  8744. },
  8745. {
  8746. "name": "phpdocumentor/type-resolver",
  8747. "version": "1.4.0",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8751. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8756. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8757. "shasum": "",
  8758. "mirrors": [
  8759. {
  8760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8761. "preferred": true
  8762. }
  8763. ]
  8764. },
  8765. "require": {
  8766. "php": "^7.2 || ^8.0",
  8767. "phpdocumentor/reflection-common": "^2.0"
  8768. },
  8769. "require-dev": {
  8770. "ext-tokenizer": "*"
  8771. },
  8772. "type": "library",
  8773. "extra": {
  8774. "branch-alias": {
  8775. "dev-1.x": "1.x-dev"
  8776. }
  8777. },
  8778. "autoload": {
  8779. "psr-4": {
  8780. "phpDocumentor\\Reflection\\": "src"
  8781. }
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "MIT"
  8786. ],
  8787. "authors": [
  8788. {
  8789. "name": "Mike van Riel",
  8790. "email": "me@mikevanriel.com"
  8791. }
  8792. ],
  8793. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8794. "support": {
  8795. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8796. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8797. },
  8798. "time": "2020-09-17T18:55:26+00:00"
  8799. },
  8800. {
  8801. "name": "phpspec/prophecy",
  8802. "version": "1.13.0",
  8803. "source": {
  8804. "type": "git",
  8805. "url": "https://github.com/phpspec/prophecy.git",
  8806. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8807. },
  8808. "dist": {
  8809. "type": "zip",
  8810. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8811. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8812. "shasum": "",
  8813. "mirrors": [
  8814. {
  8815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8816. "preferred": true
  8817. }
  8818. ]
  8819. },
  8820. "require": {
  8821. "doctrine/instantiator": "^1.2",
  8822. "php": "^7.2 || ~8.0, <8.1",
  8823. "phpdocumentor/reflection-docblock": "^5.2",
  8824. "sebastian/comparator": "^3.0 || ^4.0",
  8825. "sebastian/recursion-context": "^3.0 || ^4.0"
  8826. },
  8827. "require-dev": {
  8828. "phpspec/phpspec": "^6.0",
  8829. "phpunit/phpunit": "^8.0 || ^9.0"
  8830. },
  8831. "type": "library",
  8832. "extra": {
  8833. "branch-alias": {
  8834. "dev-master": "1.11.x-dev"
  8835. }
  8836. },
  8837. "autoload": {
  8838. "psr-4": {
  8839. "Prophecy\\": "src/Prophecy"
  8840. }
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "MIT"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Konstantin Kudryashov",
  8849. "email": "ever.zet@gmail.com",
  8850. "homepage": "http://everzet.com"
  8851. },
  8852. {
  8853. "name": "Marcello Duarte",
  8854. "email": "marcello.duarte@gmail.com"
  8855. }
  8856. ],
  8857. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8858. "homepage": "https://github.com/phpspec/prophecy",
  8859. "keywords": [
  8860. "Double",
  8861. "Dummy",
  8862. "fake",
  8863. "mock",
  8864. "spy",
  8865. "stub"
  8866. ],
  8867. "support": {
  8868. "issues": "https://github.com/phpspec/prophecy/issues",
  8869. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8870. },
  8871. "time": "2021-03-17T13:42:18+00:00"
  8872. },
  8873. {
  8874. "name": "phpunit/php-code-coverage",
  8875. "version": "7.0.14",
  8876. "source": {
  8877. "type": "git",
  8878. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8879. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8880. },
  8881. "dist": {
  8882. "type": "zip",
  8883. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8884. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8885. "shasum": "",
  8886. "mirrors": [
  8887. {
  8888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8889. "preferred": true
  8890. }
  8891. ]
  8892. },
  8893. "require": {
  8894. "ext-dom": "*",
  8895. "ext-xmlwriter": "*",
  8896. "php": ">=7.2",
  8897. "phpunit/php-file-iterator": "^2.0.2",
  8898. "phpunit/php-text-template": "^1.2.1",
  8899. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8900. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8901. "sebastian/environment": "^4.2.2",
  8902. "sebastian/version": "^2.0.1",
  8903. "theseer/tokenizer": "^1.1.3"
  8904. },
  8905. "require-dev": {
  8906. "phpunit/phpunit": "^8.2.2"
  8907. },
  8908. "suggest": {
  8909. "ext-xdebug": "^2.7.2"
  8910. },
  8911. "type": "library",
  8912. "extra": {
  8913. "branch-alias": {
  8914. "dev-master": "7.0-dev"
  8915. }
  8916. },
  8917. "autoload": {
  8918. "classmap": [
  8919. "src/"
  8920. ]
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "BSD-3-Clause"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Sebastian Bergmann",
  8929. "email": "sebastian@phpunit.de",
  8930. "role": "lead"
  8931. }
  8932. ],
  8933. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8934. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8935. "keywords": [
  8936. "coverage",
  8937. "testing",
  8938. "xunit"
  8939. ],
  8940. "support": {
  8941. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8942. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://github.com/sebastianbergmann",
  8947. "type": "github"
  8948. }
  8949. ],
  8950. "time": "2020-12-02T13:39:03+00:00"
  8951. },
  8952. {
  8953. "name": "phpunit/php-file-iterator",
  8954. "version": "2.0.3",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8958. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8963. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8964. "shasum": "",
  8965. "mirrors": [
  8966. {
  8967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8968. "preferred": true
  8969. }
  8970. ]
  8971. },
  8972. "require": {
  8973. "php": ">=7.1"
  8974. },
  8975. "require-dev": {
  8976. "phpunit/phpunit": "^8.5"
  8977. },
  8978. "type": "library",
  8979. "extra": {
  8980. "branch-alias": {
  8981. "dev-master": "2.0.x-dev"
  8982. }
  8983. },
  8984. "autoload": {
  8985. "classmap": [
  8986. "src/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "BSD-3-Clause"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Sebastian Bergmann",
  8996. "email": "sebastian@phpunit.de",
  8997. "role": "lead"
  8998. }
  8999. ],
  9000. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9001. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9002. "keywords": [
  9003. "filesystem",
  9004. "iterator"
  9005. ],
  9006. "support": {
  9007. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9008. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9009. },
  9010. "funding": [
  9011. {
  9012. "url": "https://github.com/sebastianbergmann",
  9013. "type": "github"
  9014. }
  9015. ],
  9016. "time": "2020-11-30T08:25:21+00:00"
  9017. },
  9018. {
  9019. "name": "phpunit/php-text-template",
  9020. "version": "1.2.1",
  9021. "source": {
  9022. "type": "git",
  9023. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9024. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9025. },
  9026. "dist": {
  9027. "type": "zip",
  9028. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9029. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9030. "shasum": "",
  9031. "mirrors": [
  9032. {
  9033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9034. "preferred": true
  9035. }
  9036. ]
  9037. },
  9038. "require": {
  9039. "php": ">=5.3.3"
  9040. },
  9041. "type": "library",
  9042. "autoload": {
  9043. "classmap": [
  9044. "src/"
  9045. ]
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "BSD-3-Clause"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "Sebastian Bergmann",
  9054. "email": "sebastian@phpunit.de",
  9055. "role": "lead"
  9056. }
  9057. ],
  9058. "description": "Simple template engine.",
  9059. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9060. "keywords": [
  9061. "template"
  9062. ],
  9063. "support": {
  9064. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9065. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9066. },
  9067. "time": "2015-06-21T13:50:34+00:00"
  9068. },
  9069. {
  9070. "name": "phpunit/php-timer",
  9071. "version": "2.1.3",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9075. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9080. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9081. "shasum": "",
  9082. "mirrors": [
  9083. {
  9084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9085. "preferred": true
  9086. }
  9087. ]
  9088. },
  9089. "require": {
  9090. "php": ">=7.1"
  9091. },
  9092. "require-dev": {
  9093. "phpunit/phpunit": "^8.5"
  9094. },
  9095. "type": "library",
  9096. "extra": {
  9097. "branch-alias": {
  9098. "dev-master": "2.1-dev"
  9099. }
  9100. },
  9101. "autoload": {
  9102. "classmap": [
  9103. "src/"
  9104. ]
  9105. },
  9106. "notification-url": "https://packagist.org/downloads/",
  9107. "license": [
  9108. "BSD-3-Clause"
  9109. ],
  9110. "authors": [
  9111. {
  9112. "name": "Sebastian Bergmann",
  9113. "email": "sebastian@phpunit.de",
  9114. "role": "lead"
  9115. }
  9116. ],
  9117. "description": "Utility class for timing",
  9118. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9119. "keywords": [
  9120. "timer"
  9121. ],
  9122. "support": {
  9123. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9124. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9125. },
  9126. "funding": [
  9127. {
  9128. "url": "https://github.com/sebastianbergmann",
  9129. "type": "github"
  9130. }
  9131. ],
  9132. "time": "2020-11-30T08:20:02+00:00"
  9133. },
  9134. {
  9135. "name": "phpunit/php-token-stream",
  9136. "version": "4.0.4",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9140. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9145. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9146. "shasum": "",
  9147. "mirrors": [
  9148. {
  9149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9150. "preferred": true
  9151. }
  9152. ]
  9153. },
  9154. "require": {
  9155. "ext-tokenizer": "*",
  9156. "php": "^7.3 || ^8.0"
  9157. },
  9158. "require-dev": {
  9159. "phpunit/phpunit": "^9.0"
  9160. },
  9161. "type": "library",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-master": "4.0-dev"
  9165. }
  9166. },
  9167. "autoload": {
  9168. "classmap": [
  9169. "src/"
  9170. ]
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "BSD-3-Clause"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Sebastian Bergmann",
  9179. "email": "sebastian@phpunit.de"
  9180. }
  9181. ],
  9182. "description": "Wrapper around PHP's tokenizer extension.",
  9183. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9184. "keywords": [
  9185. "tokenizer"
  9186. ],
  9187. "support": {
  9188. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9189. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://github.com/sebastianbergmann",
  9194. "type": "github"
  9195. }
  9196. ],
  9197. "abandoned": true,
  9198. "time": "2020-08-04T08:28:15+00:00"
  9199. },
  9200. {
  9201. "name": "phpunit/phpunit",
  9202. "version": "8.5.15",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9206. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9211. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9212. "shasum": "",
  9213. "mirrors": [
  9214. {
  9215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9216. "preferred": true
  9217. }
  9218. ]
  9219. },
  9220. "require": {
  9221. "doctrine/instantiator": "^1.3.1",
  9222. "ext-dom": "*",
  9223. "ext-json": "*",
  9224. "ext-libxml": "*",
  9225. "ext-mbstring": "*",
  9226. "ext-xml": "*",
  9227. "ext-xmlwriter": "*",
  9228. "myclabs/deep-copy": "^1.10.0",
  9229. "phar-io/manifest": "^2.0.1",
  9230. "phar-io/version": "^3.0.2",
  9231. "php": ">=7.2",
  9232. "phpspec/prophecy": "^1.10.3",
  9233. "phpunit/php-code-coverage": "^7.0.12",
  9234. "phpunit/php-file-iterator": "^2.0.2",
  9235. "phpunit/php-text-template": "^1.2.1",
  9236. "phpunit/php-timer": "^2.1.2",
  9237. "sebastian/comparator": "^3.0.2",
  9238. "sebastian/diff": "^3.0.2",
  9239. "sebastian/environment": "^4.2.3",
  9240. "sebastian/exporter": "^3.1.2",
  9241. "sebastian/global-state": "^3.0.0",
  9242. "sebastian/object-enumerator": "^3.0.3",
  9243. "sebastian/resource-operations": "^2.0.1",
  9244. "sebastian/type": "^1.1.3",
  9245. "sebastian/version": "^2.0.1"
  9246. },
  9247. "require-dev": {
  9248. "ext-pdo": "*"
  9249. },
  9250. "suggest": {
  9251. "ext-soap": "*",
  9252. "ext-xdebug": "*",
  9253. "phpunit/php-invoker": "^2.0.0"
  9254. },
  9255. "bin": [
  9256. "phpunit"
  9257. ],
  9258. "type": "library",
  9259. "extra": {
  9260. "branch-alias": {
  9261. "dev-master": "8.5-dev"
  9262. }
  9263. },
  9264. "autoload": {
  9265. "classmap": [
  9266. "src/"
  9267. ]
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "BSD-3-Clause"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Sebastian Bergmann",
  9276. "email": "sebastian@phpunit.de",
  9277. "role": "lead"
  9278. }
  9279. ],
  9280. "description": "The PHP Unit Testing framework.",
  9281. "homepage": "https://phpunit.de/",
  9282. "keywords": [
  9283. "phpunit",
  9284. "testing",
  9285. "xunit"
  9286. ],
  9287. "support": {
  9288. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9289. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.15"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://phpunit.de/donate.html",
  9294. "type": "custom"
  9295. },
  9296. {
  9297. "url": "https://github.com/sebastianbergmann",
  9298. "type": "github"
  9299. }
  9300. ],
  9301. "time": "2021-03-17T07:27:54+00:00"
  9302. },
  9303. {
  9304. "name": "sebastian/code-unit-reverse-lookup",
  9305. "version": "1.0.2",
  9306. "source": {
  9307. "type": "git",
  9308. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9309. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9310. },
  9311. "dist": {
  9312. "type": "zip",
  9313. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9314. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9315. "shasum": "",
  9316. "mirrors": [
  9317. {
  9318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9319. "preferred": true
  9320. }
  9321. ]
  9322. },
  9323. "require": {
  9324. "php": ">=5.6"
  9325. },
  9326. "require-dev": {
  9327. "phpunit/phpunit": "^8.5"
  9328. },
  9329. "type": "library",
  9330. "extra": {
  9331. "branch-alias": {
  9332. "dev-master": "1.0.x-dev"
  9333. }
  9334. },
  9335. "autoload": {
  9336. "classmap": [
  9337. "src/"
  9338. ]
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "BSD-3-Clause"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Sebastian Bergmann",
  9347. "email": "sebastian@phpunit.de"
  9348. }
  9349. ],
  9350. "description": "Looks up which function or method a line of code belongs to",
  9351. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9352. "support": {
  9353. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9354. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9355. },
  9356. "funding": [
  9357. {
  9358. "url": "https://github.com/sebastianbergmann",
  9359. "type": "github"
  9360. }
  9361. ],
  9362. "time": "2020-11-30T08:15:22+00:00"
  9363. },
  9364. {
  9365. "name": "sebastian/comparator",
  9366. "version": "3.0.3",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/sebastianbergmann/comparator.git",
  9370. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9375. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9376. "shasum": "",
  9377. "mirrors": [
  9378. {
  9379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9380. "preferred": true
  9381. }
  9382. ]
  9383. },
  9384. "require": {
  9385. "php": ">=7.1",
  9386. "sebastian/diff": "^3.0",
  9387. "sebastian/exporter": "^3.1"
  9388. },
  9389. "require-dev": {
  9390. "phpunit/phpunit": "^8.5"
  9391. },
  9392. "type": "library",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "3.0-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "classmap": [
  9400. "src/"
  9401. ]
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "BSD-3-Clause"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Sebastian Bergmann",
  9410. "email": "sebastian@phpunit.de"
  9411. },
  9412. {
  9413. "name": "Jeff Welch",
  9414. "email": "whatthejeff@gmail.com"
  9415. },
  9416. {
  9417. "name": "Volker Dusch",
  9418. "email": "github@wallbash.com"
  9419. },
  9420. {
  9421. "name": "Bernhard Schussek",
  9422. "email": "bschussek@2bepublished.at"
  9423. }
  9424. ],
  9425. "description": "Provides the functionality to compare PHP values for equality",
  9426. "homepage": "https://github.com/sebastianbergmann/comparator",
  9427. "keywords": [
  9428. "comparator",
  9429. "compare",
  9430. "equality"
  9431. ],
  9432. "support": {
  9433. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9434. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9435. },
  9436. "funding": [
  9437. {
  9438. "url": "https://github.com/sebastianbergmann",
  9439. "type": "github"
  9440. }
  9441. ],
  9442. "time": "2020-11-30T08:04:30+00:00"
  9443. },
  9444. {
  9445. "name": "sebastian/diff",
  9446. "version": "3.0.3",
  9447. "source": {
  9448. "type": "git",
  9449. "url": "https://github.com/sebastianbergmann/diff.git",
  9450. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9451. },
  9452. "dist": {
  9453. "type": "zip",
  9454. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9455. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9456. "shasum": "",
  9457. "mirrors": [
  9458. {
  9459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9460. "preferred": true
  9461. }
  9462. ]
  9463. },
  9464. "require": {
  9465. "php": ">=7.1"
  9466. },
  9467. "require-dev": {
  9468. "phpunit/phpunit": "^7.5 || ^8.0",
  9469. "symfony/process": "^2 || ^3.3 || ^4"
  9470. },
  9471. "type": "library",
  9472. "extra": {
  9473. "branch-alias": {
  9474. "dev-master": "3.0-dev"
  9475. }
  9476. },
  9477. "autoload": {
  9478. "classmap": [
  9479. "src/"
  9480. ]
  9481. },
  9482. "notification-url": "https://packagist.org/downloads/",
  9483. "license": [
  9484. "BSD-3-Clause"
  9485. ],
  9486. "authors": [
  9487. {
  9488. "name": "Sebastian Bergmann",
  9489. "email": "sebastian@phpunit.de"
  9490. },
  9491. {
  9492. "name": "Kore Nordmann",
  9493. "email": "mail@kore-nordmann.de"
  9494. }
  9495. ],
  9496. "description": "Diff implementation",
  9497. "homepage": "https://github.com/sebastianbergmann/diff",
  9498. "keywords": [
  9499. "diff",
  9500. "udiff",
  9501. "unidiff",
  9502. "unified diff"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9506. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2020-11-30T07:59:04+00:00"
  9515. },
  9516. {
  9517. "name": "sebastian/environment",
  9518. "version": "4.2.4",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/environment.git",
  9522. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9527. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9528. "shasum": "",
  9529. "mirrors": [
  9530. {
  9531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9532. "preferred": true
  9533. }
  9534. ]
  9535. },
  9536. "require": {
  9537. "php": ">=7.1"
  9538. },
  9539. "require-dev": {
  9540. "phpunit/phpunit": "^7.5"
  9541. },
  9542. "suggest": {
  9543. "ext-posix": "*"
  9544. },
  9545. "type": "library",
  9546. "extra": {
  9547. "branch-alias": {
  9548. "dev-master": "4.2-dev"
  9549. }
  9550. },
  9551. "autoload": {
  9552. "classmap": [
  9553. "src/"
  9554. ]
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "BSD-3-Clause"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "Sebastian Bergmann",
  9563. "email": "sebastian@phpunit.de"
  9564. }
  9565. ],
  9566. "description": "Provides functionality to handle HHVM/PHP environments",
  9567. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9568. "keywords": [
  9569. "Xdebug",
  9570. "environment",
  9571. "hhvm"
  9572. ],
  9573. "support": {
  9574. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9575. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9576. },
  9577. "funding": [
  9578. {
  9579. "url": "https://github.com/sebastianbergmann",
  9580. "type": "github"
  9581. }
  9582. ],
  9583. "time": "2020-11-30T07:53:42+00:00"
  9584. },
  9585. {
  9586. "name": "sebastian/exporter",
  9587. "version": "3.1.3",
  9588. "source": {
  9589. "type": "git",
  9590. "url": "https://github.com/sebastianbergmann/exporter.git",
  9591. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9592. },
  9593. "dist": {
  9594. "type": "zip",
  9595. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9596. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9597. "shasum": "",
  9598. "mirrors": [
  9599. {
  9600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9601. "preferred": true
  9602. }
  9603. ]
  9604. },
  9605. "require": {
  9606. "php": ">=7.0",
  9607. "sebastian/recursion-context": "^3.0"
  9608. },
  9609. "require-dev": {
  9610. "ext-mbstring": "*",
  9611. "phpunit/phpunit": "^6.0"
  9612. },
  9613. "type": "library",
  9614. "extra": {
  9615. "branch-alias": {
  9616. "dev-master": "3.1.x-dev"
  9617. }
  9618. },
  9619. "autoload": {
  9620. "classmap": [
  9621. "src/"
  9622. ]
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "BSD-3-Clause"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Sebastian Bergmann",
  9631. "email": "sebastian@phpunit.de"
  9632. },
  9633. {
  9634. "name": "Jeff Welch",
  9635. "email": "whatthejeff@gmail.com"
  9636. },
  9637. {
  9638. "name": "Volker Dusch",
  9639. "email": "github@wallbash.com"
  9640. },
  9641. {
  9642. "name": "Adam Harvey",
  9643. "email": "aharvey@php.net"
  9644. },
  9645. {
  9646. "name": "Bernhard Schussek",
  9647. "email": "bschussek@gmail.com"
  9648. }
  9649. ],
  9650. "description": "Provides the functionality to export PHP variables for visualization",
  9651. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9652. "keywords": [
  9653. "export",
  9654. "exporter"
  9655. ],
  9656. "support": {
  9657. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9658. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2020-11-30T07:47:53+00:00"
  9667. },
  9668. {
  9669. "name": "sebastian/global-state",
  9670. "version": "3.0.1",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/global-state.git",
  9674. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9679. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9680. "shasum": "",
  9681. "mirrors": [
  9682. {
  9683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9684. "preferred": true
  9685. }
  9686. ]
  9687. },
  9688. "require": {
  9689. "php": ">=7.2",
  9690. "sebastian/object-reflector": "^1.1.1",
  9691. "sebastian/recursion-context": "^3.0"
  9692. },
  9693. "require-dev": {
  9694. "ext-dom": "*",
  9695. "phpunit/phpunit": "^8.0"
  9696. },
  9697. "suggest": {
  9698. "ext-uopz": "*"
  9699. },
  9700. "type": "library",
  9701. "extra": {
  9702. "branch-alias": {
  9703. "dev-master": "3.0-dev"
  9704. }
  9705. },
  9706. "autoload": {
  9707. "classmap": [
  9708. "src/"
  9709. ]
  9710. },
  9711. "notification-url": "https://packagist.org/downloads/",
  9712. "license": [
  9713. "BSD-3-Clause"
  9714. ],
  9715. "authors": [
  9716. {
  9717. "name": "Sebastian Bergmann",
  9718. "email": "sebastian@phpunit.de"
  9719. }
  9720. ],
  9721. "description": "Snapshotting of global state",
  9722. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9723. "keywords": [
  9724. "global state"
  9725. ],
  9726. "support": {
  9727. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9728. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9729. },
  9730. "funding": [
  9731. {
  9732. "url": "https://github.com/sebastianbergmann",
  9733. "type": "github"
  9734. }
  9735. ],
  9736. "time": "2020-11-30T07:43:24+00:00"
  9737. },
  9738. {
  9739. "name": "sebastian/object-enumerator",
  9740. "version": "3.0.4",
  9741. "source": {
  9742. "type": "git",
  9743. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9744. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9745. },
  9746. "dist": {
  9747. "type": "zip",
  9748. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9749. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9750. "shasum": "",
  9751. "mirrors": [
  9752. {
  9753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9754. "preferred": true
  9755. }
  9756. ]
  9757. },
  9758. "require": {
  9759. "php": ">=7.0",
  9760. "sebastian/object-reflector": "^1.1.1",
  9761. "sebastian/recursion-context": "^3.0"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^6.0"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-master": "3.0.x-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "classmap": [
  9774. "src/"
  9775. ]
  9776. },
  9777. "notification-url": "https://packagist.org/downloads/",
  9778. "license": [
  9779. "BSD-3-Clause"
  9780. ],
  9781. "authors": [
  9782. {
  9783. "name": "Sebastian Bergmann",
  9784. "email": "sebastian@phpunit.de"
  9785. }
  9786. ],
  9787. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9788. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9789. "support": {
  9790. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9791. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9792. },
  9793. "funding": [
  9794. {
  9795. "url": "https://github.com/sebastianbergmann",
  9796. "type": "github"
  9797. }
  9798. ],
  9799. "time": "2020-11-30T07:40:27+00:00"
  9800. },
  9801. {
  9802. "name": "sebastian/object-reflector",
  9803. "version": "1.1.2",
  9804. "source": {
  9805. "type": "git",
  9806. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9807. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9808. },
  9809. "dist": {
  9810. "type": "zip",
  9811. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9812. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9813. "shasum": "",
  9814. "mirrors": [
  9815. {
  9816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9817. "preferred": true
  9818. }
  9819. ]
  9820. },
  9821. "require": {
  9822. "php": ">=7.0"
  9823. },
  9824. "require-dev": {
  9825. "phpunit/phpunit": "^6.0"
  9826. },
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-master": "1.1-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "classmap": [
  9835. "src/"
  9836. ]
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "BSD-3-Clause"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Sebastian Bergmann",
  9845. "email": "sebastian@phpunit.de"
  9846. }
  9847. ],
  9848. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9849. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9850. "support": {
  9851. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9852. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9853. },
  9854. "funding": [
  9855. {
  9856. "url": "https://github.com/sebastianbergmann",
  9857. "type": "github"
  9858. }
  9859. ],
  9860. "time": "2020-11-30T07:37:18+00:00"
  9861. },
  9862. {
  9863. "name": "sebastian/recursion-context",
  9864. "version": "3.0.1",
  9865. "source": {
  9866. "type": "git",
  9867. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9868. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9869. },
  9870. "dist": {
  9871. "type": "zip",
  9872. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9873. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9874. "shasum": "",
  9875. "mirrors": [
  9876. {
  9877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9878. "preferred": true
  9879. }
  9880. ]
  9881. },
  9882. "require": {
  9883. "php": ">=7.0"
  9884. },
  9885. "require-dev": {
  9886. "phpunit/phpunit": "^6.0"
  9887. },
  9888. "type": "library",
  9889. "extra": {
  9890. "branch-alias": {
  9891. "dev-master": "3.0.x-dev"
  9892. }
  9893. },
  9894. "autoload": {
  9895. "classmap": [
  9896. "src/"
  9897. ]
  9898. },
  9899. "notification-url": "https://packagist.org/downloads/",
  9900. "license": [
  9901. "BSD-3-Clause"
  9902. ],
  9903. "authors": [
  9904. {
  9905. "name": "Sebastian Bergmann",
  9906. "email": "sebastian@phpunit.de"
  9907. },
  9908. {
  9909. "name": "Jeff Welch",
  9910. "email": "whatthejeff@gmail.com"
  9911. },
  9912. {
  9913. "name": "Adam Harvey",
  9914. "email": "aharvey@php.net"
  9915. }
  9916. ],
  9917. "description": "Provides functionality to recursively process PHP variables",
  9918. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9919. "support": {
  9920. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9921. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  9922. },
  9923. "funding": [
  9924. {
  9925. "url": "https://github.com/sebastianbergmann",
  9926. "type": "github"
  9927. }
  9928. ],
  9929. "time": "2020-11-30T07:34:24+00:00"
  9930. },
  9931. {
  9932. "name": "sebastian/resource-operations",
  9933. "version": "2.0.2",
  9934. "source": {
  9935. "type": "git",
  9936. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9937. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9938. },
  9939. "dist": {
  9940. "type": "zip",
  9941. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9942. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9943. "shasum": "",
  9944. "mirrors": [
  9945. {
  9946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9947. "preferred": true
  9948. }
  9949. ]
  9950. },
  9951. "require": {
  9952. "php": ">=7.1"
  9953. },
  9954. "type": "library",
  9955. "extra": {
  9956. "branch-alias": {
  9957. "dev-master": "2.0-dev"
  9958. }
  9959. },
  9960. "autoload": {
  9961. "classmap": [
  9962. "src/"
  9963. ]
  9964. },
  9965. "notification-url": "https://packagist.org/downloads/",
  9966. "license": [
  9967. "BSD-3-Clause"
  9968. ],
  9969. "authors": [
  9970. {
  9971. "name": "Sebastian Bergmann",
  9972. "email": "sebastian@phpunit.de"
  9973. }
  9974. ],
  9975. "description": "Provides a list of PHP built-in functions that operate on resources",
  9976. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9977. "support": {
  9978. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9979. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  9980. },
  9981. "funding": [
  9982. {
  9983. "url": "https://github.com/sebastianbergmann",
  9984. "type": "github"
  9985. }
  9986. ],
  9987. "time": "2020-11-30T07:30:19+00:00"
  9988. },
  9989. {
  9990. "name": "sebastian/type",
  9991. "version": "1.1.4",
  9992. "source": {
  9993. "type": "git",
  9994. "url": "https://github.com/sebastianbergmann/type.git",
  9995. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9996. },
  9997. "dist": {
  9998. "type": "zip",
  9999. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10000. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10001. "shasum": "",
  10002. "mirrors": [
  10003. {
  10004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10005. "preferred": true
  10006. }
  10007. ]
  10008. },
  10009. "require": {
  10010. "php": ">=7.2"
  10011. },
  10012. "require-dev": {
  10013. "phpunit/phpunit": "^8.2"
  10014. },
  10015. "type": "library",
  10016. "extra": {
  10017. "branch-alias": {
  10018. "dev-master": "1.1-dev"
  10019. }
  10020. },
  10021. "autoload": {
  10022. "classmap": [
  10023. "src/"
  10024. ]
  10025. },
  10026. "notification-url": "https://packagist.org/downloads/",
  10027. "license": [
  10028. "BSD-3-Clause"
  10029. ],
  10030. "authors": [
  10031. {
  10032. "name": "Sebastian Bergmann",
  10033. "email": "sebastian@phpunit.de",
  10034. "role": "lead"
  10035. }
  10036. ],
  10037. "description": "Collection of value objects that represent the types of the PHP type system",
  10038. "homepage": "https://github.com/sebastianbergmann/type",
  10039. "support": {
  10040. "issues": "https://github.com/sebastianbergmann/type/issues",
  10041. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10042. },
  10043. "funding": [
  10044. {
  10045. "url": "https://github.com/sebastianbergmann",
  10046. "type": "github"
  10047. }
  10048. ],
  10049. "time": "2020-11-30T07:25:11+00:00"
  10050. },
  10051. {
  10052. "name": "sebastian/version",
  10053. "version": "2.0.1",
  10054. "source": {
  10055. "type": "git",
  10056. "url": "https://github.com/sebastianbergmann/version.git",
  10057. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10058. },
  10059. "dist": {
  10060. "type": "zip",
  10061. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10062. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10063. "shasum": "",
  10064. "mirrors": [
  10065. {
  10066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10067. "preferred": true
  10068. }
  10069. ]
  10070. },
  10071. "require": {
  10072. "php": ">=5.6"
  10073. },
  10074. "type": "library",
  10075. "extra": {
  10076. "branch-alias": {
  10077. "dev-master": "2.0.x-dev"
  10078. }
  10079. },
  10080. "autoload": {
  10081. "classmap": [
  10082. "src/"
  10083. ]
  10084. },
  10085. "notification-url": "https://packagist.org/downloads/",
  10086. "license": [
  10087. "BSD-3-Clause"
  10088. ],
  10089. "authors": [
  10090. {
  10091. "name": "Sebastian Bergmann",
  10092. "email": "sebastian@phpunit.de",
  10093. "role": "lead"
  10094. }
  10095. ],
  10096. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10097. "homepage": "https://github.com/sebastianbergmann/version",
  10098. "support": {
  10099. "issues": "https://github.com/sebastianbergmann/version/issues",
  10100. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10101. },
  10102. "time": "2016-10-03T07:35:21+00:00"
  10103. },
  10104. {
  10105. "name": "symfony/debug",
  10106. "version": "v4.4.22",
  10107. "source": {
  10108. "type": "git",
  10109. "url": "https://github.com/symfony/debug.git",
  10110. "reference": "45b2136377cca5f10af858968d6079a482bca473"
  10111. },
  10112. "dist": {
  10113. "type": "zip",
  10114. "url": "https://api.github.com/repos/symfony/debug/zipball/45b2136377cca5f10af858968d6079a482bca473",
  10115. "reference": "45b2136377cca5f10af858968d6079a482bca473",
  10116. "shasum": "",
  10117. "mirrors": [
  10118. {
  10119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10120. "preferred": true
  10121. }
  10122. ]
  10123. },
  10124. "require": {
  10125. "php": ">=7.1.3",
  10126. "psr/log": "~1.0",
  10127. "symfony/polyfill-php80": "^1.15"
  10128. },
  10129. "conflict": {
  10130. "symfony/http-kernel": "<3.4"
  10131. },
  10132. "require-dev": {
  10133. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10134. },
  10135. "type": "library",
  10136. "autoload": {
  10137. "psr-4": {
  10138. "Symfony\\Component\\Debug\\": ""
  10139. },
  10140. "exclude-from-classmap": [
  10141. "/Tests/"
  10142. ]
  10143. },
  10144. "notification-url": "https://packagist.org/downloads/",
  10145. "license": [
  10146. "MIT"
  10147. ],
  10148. "authors": [
  10149. {
  10150. "name": "Fabien Potencier",
  10151. "email": "fabien@symfony.com"
  10152. },
  10153. {
  10154. "name": "Symfony Community",
  10155. "homepage": "https://symfony.com/contributors"
  10156. }
  10157. ],
  10158. "description": "Provides tools to ease debugging PHP code",
  10159. "homepage": "https://symfony.com",
  10160. "support": {
  10161. "source": "https://github.com/symfony/debug/tree/v4.4.22"
  10162. },
  10163. "funding": [
  10164. {
  10165. "url": "https://symfony.com/sponsor",
  10166. "type": "custom"
  10167. },
  10168. {
  10169. "url": "https://github.com/fabpot",
  10170. "type": "github"
  10171. },
  10172. {
  10173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10174. "type": "tidelift"
  10175. }
  10176. ],
  10177. "time": "2021-04-02T07:50:12+00:00"
  10178. },
  10179. {
  10180. "name": "theseer/tokenizer",
  10181. "version": "1.2.0",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/theseer/tokenizer.git",
  10185. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10190. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10191. "shasum": "",
  10192. "mirrors": [
  10193. {
  10194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10195. "preferred": true
  10196. }
  10197. ]
  10198. },
  10199. "require": {
  10200. "ext-dom": "*",
  10201. "ext-tokenizer": "*",
  10202. "ext-xmlwriter": "*",
  10203. "php": "^7.2 || ^8.0"
  10204. },
  10205. "type": "library",
  10206. "autoload": {
  10207. "classmap": [
  10208. "src/"
  10209. ]
  10210. },
  10211. "notification-url": "https://packagist.org/downloads/",
  10212. "license": [
  10213. "BSD-3-Clause"
  10214. ],
  10215. "authors": [
  10216. {
  10217. "name": "Arne Blankerts",
  10218. "email": "arne@blankerts.de",
  10219. "role": "Developer"
  10220. }
  10221. ],
  10222. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10223. "support": {
  10224. "issues": "https://github.com/theseer/tokenizer/issues",
  10225. "source": "https://github.com/theseer/tokenizer/tree/master"
  10226. },
  10227. "funding": [
  10228. {
  10229. "url": "https://github.com/theseer",
  10230. "type": "github"
  10231. }
  10232. ],
  10233. "time": "2020-07-12T23:59:07+00:00"
  10234. },
  10235. {
  10236. "name": "webmozart/assert",
  10237. "version": "1.10.0",
  10238. "source": {
  10239. "type": "git",
  10240. "url": "https://github.com/webmozarts/assert.git",
  10241. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10242. },
  10243. "dist": {
  10244. "type": "zip",
  10245. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10246. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10247. "shasum": "",
  10248. "mirrors": [
  10249. {
  10250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10251. "preferred": true
  10252. }
  10253. ]
  10254. },
  10255. "require": {
  10256. "php": "^7.2 || ^8.0",
  10257. "symfony/polyfill-ctype": "^1.8"
  10258. },
  10259. "conflict": {
  10260. "phpstan/phpstan": "<0.12.20",
  10261. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10262. },
  10263. "require-dev": {
  10264. "phpunit/phpunit": "^8.5.13"
  10265. },
  10266. "type": "library",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-master": "1.10-dev"
  10270. }
  10271. },
  10272. "autoload": {
  10273. "psr-4": {
  10274. "Webmozart\\Assert\\": "src/"
  10275. }
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "MIT"
  10280. ],
  10281. "authors": [
  10282. {
  10283. "name": "Bernhard Schussek",
  10284. "email": "bschussek@gmail.com"
  10285. }
  10286. ],
  10287. "description": "Assertions to validate method input/output with nice error messages.",
  10288. "keywords": [
  10289. "assert",
  10290. "check",
  10291. "validate"
  10292. ],
  10293. "support": {
  10294. "issues": "https://github.com/webmozarts/assert/issues",
  10295. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10296. },
  10297. "time": "2021-03-09T10:59:23+00:00"
  10298. }
  10299. ],
  10300. "aliases": [],
  10301. "minimum-stability": "dev",
  10302. "stability-flags": [],
  10303. "prefer-stable": true,
  10304. "prefer-lowest": false,
  10305. "platform": {
  10306. "php": "^7.2.14",
  10307. "ext-bcmath": "*",
  10308. "ext-json": "*",
  10309. "ext-mbstring": "*",
  10310. "ext-openssl": "*",
  10311. "ext-pdo": "*"
  10312. },
  10313. "platform-dev": [],
  10314. "platform-overrides": {
  10315. "ext-pcntl": "7.2",
  10316. "ext-posix": "7.2"
  10317. },
  10318. "plugin-api-version": "2.0.0"
  10319. }