composer.lock 374 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397
  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.0",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/a9c1b59eba5a08ca2770a76eddb88922f504e8e0",
  259. "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0",
  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.0"
  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-04-13T14:46:17+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.6",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/endroid/qr-code.git",
  952. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  957. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  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.2",
  969. "myclabs/php-enum": "^1.5",
  970. "php": ">=7.2",
  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.3.7",
  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.6"
  1018. },
  1019. "funding": [
  1020. {
  1021. "url": "https://github.com/endroid",
  1022. "type": "github"
  1023. }
  1024. ],
  1025. "time": "2020-11-27T14:30:38+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.4.2",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/facade/ignition.git",
  1164. "reference": "2179568bdfddfa56c90c845a0be1a0b52adbf52a"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/facade/ignition/zipball/2179568bdfddfa56c90c845a0be1a0b52adbf52a",
  1169. "reference": "2179568bdfddfa56c90c845a0be1a0b52adbf52a",
  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.0",
  1182. "facade/ignition-contracts": "^1.0",
  1183. "filp/whoops": "^2.4",
  1184. "illuminate/support": "^7.0|^8.0",
  1185. "monolog/monolog": "^2.0",
  1186. "php": "^7.2.5",
  1187. "scrivo/highlight.php": "^9.15",
  1188. "symfony/console": "^5.0",
  1189. "symfony/var-dumper": "^5.0"
  1190. },
  1191. "require-dev": {
  1192. "friendsofphp/php-cs-fixer": "^2.14",
  1193. "mockery/mockery": "^1.3",
  1194. "orchestra/testbench": "^5.0|^6.0",
  1195. "psalm/plugin-laravel": "^1.2"
  1196. },
  1197. "suggest": {
  1198. "laravel/telescope": "^3.1"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "2.x-dev"
  1204. },
  1205. "laravel": {
  1206. "providers": [
  1207. "Facade\\Ignition\\IgnitionServiceProvider"
  1208. ],
  1209. "aliases": {
  1210. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1211. }
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Facade\\Ignition\\": "src"
  1217. },
  1218. "files": [
  1219. "src/helpers.php"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "A beautiful error page for Laravel applications.",
  1227. "homepage": "https://github.com/facade/ignition",
  1228. "keywords": [
  1229. "error",
  1230. "flare",
  1231. "laravel",
  1232. "page"
  1233. ],
  1234. "support": {
  1235. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1236. "forum": "https://twitter.com/flareappio",
  1237. "issues": "https://github.com/facade/ignition/issues",
  1238. "source": "https://github.com/facade/ignition"
  1239. },
  1240. "time": "2021-03-08T13:56:01+00:00"
  1241. },
  1242. {
  1243. "name": "facade/ignition-contracts",
  1244. "version": "1.0.1",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/facade/ignition-contracts.git",
  1248. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  1253. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  1254. "shasum": "",
  1255. "mirrors": [
  1256. {
  1257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1258. "preferred": true
  1259. }
  1260. ]
  1261. },
  1262. "require": {
  1263. "php": "^7.1"
  1264. },
  1265. "require-dev": {
  1266. "friendsofphp/php-cs-fixer": "^2.14",
  1267. "phpunit/phpunit": "^7.5|^8.0",
  1268. "vimeo/psalm": "^3.12"
  1269. },
  1270. "type": "library",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Facade\\IgnitionContracts\\": "src"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Freek Van der Herten",
  1283. "email": "freek@spatie.be",
  1284. "homepage": "https://flareapp.io",
  1285. "role": "Developer"
  1286. }
  1287. ],
  1288. "description": "Solution contracts for Ignition",
  1289. "homepage": "https://github.com/facade/ignition-contracts",
  1290. "keywords": [
  1291. "contracts",
  1292. "flare",
  1293. "ignition"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/facade/ignition-contracts/issues",
  1297. "source": "https://github.com/facade/ignition-contracts/tree/1.0.1"
  1298. },
  1299. "time": "2020-07-14T10:10:28+00:00"
  1300. },
  1301. {
  1302. "name": "fideloper/proxy",
  1303. "version": "4.4.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/fideloper/TrustedProxy.git",
  1307. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1323. "php": ">=5.4.0"
  1324. },
  1325. "require-dev": {
  1326. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "mockery/mockery": "^1.0",
  1328. "phpunit/phpunit": "^6.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "laravel": {
  1333. "providers": [
  1334. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1335. ]
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Fideloper\\Proxy\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Chris Fidao",
  1350. "email": "fideloper@gmail.com"
  1351. }
  1352. ],
  1353. "description": "Set trusted proxies for Laravel",
  1354. "keywords": [
  1355. "load balancing",
  1356. "proxy",
  1357. "trusted proxy"
  1358. ],
  1359. "support": {
  1360. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1361. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1362. },
  1363. "time": "2020-10-22T13:48:01+00:00"
  1364. },
  1365. {
  1366. "name": "filp/whoops",
  1367. "version": "2.12.1",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/filp/whoops.git",
  1371. "reference": "c13c0be93cff50f88bbd70827d993026821914dd"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/filp/whoops/zipball/c13c0be93cff50f88bbd70827d993026821914dd",
  1376. "reference": "c13c0be93cff50f88bbd70827d993026821914dd",
  1377. "shasum": "",
  1378. "mirrors": [
  1379. {
  1380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1381. "preferred": true
  1382. }
  1383. ]
  1384. },
  1385. "require": {
  1386. "php": "^5.5.9 || ^7.0 || ^8.0",
  1387. "psr/log": "^1.0.1"
  1388. },
  1389. "require-dev": {
  1390. "mockery/mockery": "^0.9 || ^1.0",
  1391. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1392. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1393. },
  1394. "suggest": {
  1395. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1396. "whoops/soap": "Formats errors as SOAP responses"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "2.7-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Whoops\\": "src/Whoops/"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Filipe Dobreira",
  1416. "homepage": "https://github.com/filp",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "php error handling for cool kids",
  1421. "homepage": "https://filp.github.io/whoops/",
  1422. "keywords": [
  1423. "error",
  1424. "exception",
  1425. "handling",
  1426. "library",
  1427. "throwable",
  1428. "whoops"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/filp/whoops/issues",
  1432. "source": "https://github.com/filp/whoops/tree/2.12.1"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/denis-sokolov",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2021-04-25T12:00:00+00:00"
  1441. },
  1442. {
  1443. "name": "firebase/php-jwt",
  1444. "version": "v5.2.1",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/firebase/php-jwt.git",
  1448. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1453. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=5.3.0"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": ">=4.8 <=9"
  1467. },
  1468. "type": "library",
  1469. "autoload": {
  1470. "psr-4": {
  1471. "Firebase\\JWT\\": "src"
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "BSD-3-Clause"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Neuman Vong",
  1481. "email": "neuman+pear@twilio.com",
  1482. "role": "Developer"
  1483. },
  1484. {
  1485. "name": "Anant Narayanan",
  1486. "email": "anant@php.net",
  1487. "role": "Developer"
  1488. }
  1489. ],
  1490. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1491. "homepage": "https://github.com/firebase/php-jwt",
  1492. "keywords": [
  1493. "jwt",
  1494. "php"
  1495. ],
  1496. "support": {
  1497. "issues": "https://github.com/firebase/php-jwt/issues",
  1498. "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
  1499. },
  1500. "time": "2021-02-12T00:02:00+00:00"
  1501. },
  1502. {
  1503. "name": "guzzlehttp/guzzle",
  1504. "version": "6.5.5",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/guzzle/guzzle.git",
  1508. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1513. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1514. "shasum": "",
  1515. "mirrors": [
  1516. {
  1517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1518. "preferred": true
  1519. }
  1520. ]
  1521. },
  1522. "require": {
  1523. "ext-json": "*",
  1524. "guzzlehttp/promises": "^1.0",
  1525. "guzzlehttp/psr7": "^1.6.1",
  1526. "php": ">=5.5",
  1527. "symfony/polyfill-intl-idn": "^1.17.0"
  1528. },
  1529. "require-dev": {
  1530. "ext-curl": "*",
  1531. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1532. "psr/log": "^1.1"
  1533. },
  1534. "suggest": {
  1535. "psr/log": "Required for using the Log middleware"
  1536. },
  1537. "type": "library",
  1538. "extra": {
  1539. "branch-alias": {
  1540. "dev-master": "6.5-dev"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "GuzzleHttp\\": "src/"
  1546. },
  1547. "files": [
  1548. "src/functions_include.php"
  1549. ]
  1550. },
  1551. "notification-url": "https://packagist.org/downloads/",
  1552. "license": [
  1553. "MIT"
  1554. ],
  1555. "authors": [
  1556. {
  1557. "name": "Michael Dowling",
  1558. "email": "mtdowling@gmail.com",
  1559. "homepage": "https://github.com/mtdowling"
  1560. }
  1561. ],
  1562. "description": "Guzzle is a PHP HTTP client library",
  1563. "homepage": "http://guzzlephp.org/",
  1564. "keywords": [
  1565. "client",
  1566. "curl",
  1567. "framework",
  1568. "http",
  1569. "http client",
  1570. "rest",
  1571. "web service"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/guzzle/guzzle/issues",
  1575. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1576. },
  1577. "time": "2020-06-16T21:01:06+00:00"
  1578. },
  1579. {
  1580. "name": "guzzlehttp/promises",
  1581. "version": "1.4.1",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/guzzle/promises.git",
  1585. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1590. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1591. "shasum": "",
  1592. "mirrors": [
  1593. {
  1594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1595. "preferred": true
  1596. }
  1597. ]
  1598. },
  1599. "require": {
  1600. "php": ">=5.5"
  1601. },
  1602. "require-dev": {
  1603. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-master": "1.4-dev"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "GuzzleHttp\\Promise\\": "src/"
  1614. },
  1615. "files": [
  1616. "src/functions_include.php"
  1617. ]
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Michael Dowling",
  1626. "email": "mtdowling@gmail.com",
  1627. "homepage": "https://github.com/mtdowling"
  1628. }
  1629. ],
  1630. "description": "Guzzle promises library",
  1631. "keywords": [
  1632. "promise"
  1633. ],
  1634. "support": {
  1635. "issues": "https://github.com/guzzle/promises/issues",
  1636. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1637. },
  1638. "time": "2021-03-07T09:25:29+00:00"
  1639. },
  1640. {
  1641. "name": "guzzlehttp/psr7",
  1642. "version": "1.8.2",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/guzzle/psr7.git",
  1646. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1651. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1652. "shasum": "",
  1653. "mirrors": [
  1654. {
  1655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1656. "preferred": true
  1657. }
  1658. ]
  1659. },
  1660. "require": {
  1661. "php": ">=5.4.0",
  1662. "psr/http-message": "~1.0",
  1663. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1664. },
  1665. "provide": {
  1666. "psr/http-message-implementation": "1.0"
  1667. },
  1668. "require-dev": {
  1669. "ext-zlib": "*",
  1670. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1671. },
  1672. "suggest": {
  1673. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "branch-alias": {
  1678. "dev-master": "1.7-dev"
  1679. }
  1680. },
  1681. "autoload": {
  1682. "psr-4": {
  1683. "GuzzleHttp\\Psr7\\": "src/"
  1684. },
  1685. "files": [
  1686. "src/functions_include.php"
  1687. ]
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Michael Dowling",
  1696. "email": "mtdowling@gmail.com",
  1697. "homepage": "https://github.com/mtdowling"
  1698. },
  1699. {
  1700. "name": "Tobias Schultze",
  1701. "homepage": "https://github.com/Tobion"
  1702. }
  1703. ],
  1704. "description": "PSR-7 message implementation that also provides common utility methods",
  1705. "keywords": [
  1706. "http",
  1707. "message",
  1708. "psr-7",
  1709. "request",
  1710. "response",
  1711. "stream",
  1712. "uri",
  1713. "url"
  1714. ],
  1715. "support": {
  1716. "issues": "https://github.com/guzzle/psr7/issues",
  1717. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1718. },
  1719. "time": "2021-04-26T09:17:50+00:00"
  1720. },
  1721. {
  1722. "name": "intervention/image",
  1723. "version": "2.5.1",
  1724. "source": {
  1725. "type": "git",
  1726. "url": "https://github.com/Intervention/image.git",
  1727. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1728. },
  1729. "dist": {
  1730. "type": "zip",
  1731. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1732. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1733. "shasum": "",
  1734. "mirrors": [
  1735. {
  1736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1737. "preferred": true
  1738. }
  1739. ]
  1740. },
  1741. "require": {
  1742. "ext-fileinfo": "*",
  1743. "guzzlehttp/psr7": "~1.1",
  1744. "php": ">=5.4.0"
  1745. },
  1746. "require-dev": {
  1747. "mockery/mockery": "~0.9.2",
  1748. "phpunit/phpunit": "^4.8 || ^5.7"
  1749. },
  1750. "suggest": {
  1751. "ext-gd": "to use GD library based image processing.",
  1752. "ext-imagick": "to use Imagick based image processing.",
  1753. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "2.4-dev"
  1759. },
  1760. "laravel": {
  1761. "providers": [
  1762. "Intervention\\Image\\ImageServiceProvider"
  1763. ],
  1764. "aliases": {
  1765. "Image": "Intervention\\Image\\Facades\\Image"
  1766. }
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-4": {
  1771. "Intervention\\Image\\": "src/Intervention/Image"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Oliver Vogel",
  1781. "email": "oliver@olivervogel.com",
  1782. "homepage": "http://olivervogel.com/"
  1783. }
  1784. ],
  1785. "description": "Image handling and manipulation library with support for Laravel integration",
  1786. "homepage": "http://image.intervention.io/",
  1787. "keywords": [
  1788. "gd",
  1789. "image",
  1790. "imagick",
  1791. "laravel",
  1792. "thumbnail",
  1793. "watermark"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/Intervention/image/issues",
  1797. "source": "https://github.com/Intervention/image/tree/master"
  1798. },
  1799. "time": "2019-11-02T09:15:47+00:00"
  1800. },
  1801. {
  1802. "name": "khanamiryan/qrcode-detector-decoder",
  1803. "version": "1.0.5.1",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1807. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1812. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1813. "shasum": "",
  1814. "mirrors": [
  1815. {
  1816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1817. "preferred": true
  1818. }
  1819. ]
  1820. },
  1821. "require": {
  1822. "php": ">=5.6"
  1823. },
  1824. "require-dev": {
  1825. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1826. },
  1827. "type": "library",
  1828. "autoload": {
  1829. "psr-4": {
  1830. "Zxing\\": "lib/"
  1831. },
  1832. "files": [
  1833. "lib/Common/customFunctions.php"
  1834. ]
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT",
  1839. "Apache-2.0"
  1840. ],
  1841. "authors": [
  1842. {
  1843. "name": "Ashot Khanamiryan",
  1844. "email": "a.khanamiryan@gmail.com",
  1845. "homepage": "https://github.com/khanamiryan",
  1846. "role": "Developer"
  1847. }
  1848. ],
  1849. "description": "QR code decoder / reader",
  1850. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1851. "keywords": [
  1852. "barcode",
  1853. "qr",
  1854. "zxing"
  1855. ],
  1856. "support": {
  1857. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1858. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1859. },
  1860. "time": "2021-04-21T08:02:08+00:00"
  1861. },
  1862. {
  1863. "name": "kitetail/zttp",
  1864. "version": "v0.6.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://github.com/kitetail/zttp.git",
  1868. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1873. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1874. "shasum": "",
  1875. "mirrors": [
  1876. {
  1877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1878. "preferred": true
  1879. }
  1880. ]
  1881. },
  1882. "require": {
  1883. "guzzlehttp/guzzle": "^6.0",
  1884. "php": ">=7.0",
  1885. "tightenco/collect": "^5.4"
  1886. },
  1887. "require-dev": {
  1888. "laravel/lumen-framework": "5.5.*",
  1889. "phpunit/phpunit": "^6.0"
  1890. },
  1891. "type": "library",
  1892. "autoload": {
  1893. "files": [
  1894. "src/Zttp.php"
  1895. ]
  1896. },
  1897. "notification-url": "https://packagist.org/downloads/",
  1898. "license": [
  1899. "MIT"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Adam Wathan",
  1904. "email": "adam.wathan@gmail.com"
  1905. }
  1906. ],
  1907. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1908. "keywords": [
  1909. "Guzzle",
  1910. "http"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/kitetail/zttp/issues",
  1914. "source": "https://github.com/kitetail/zttp/tree/master"
  1915. },
  1916. "time": "2019-06-10T12:18:52+00:00"
  1917. },
  1918. {
  1919. "name": "laravel/framework",
  1920. "version": "v7.30.4",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/laravel/framework.git",
  1924. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1929. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1930. "shasum": "",
  1931. "mirrors": [
  1932. {
  1933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1934. "preferred": true
  1935. }
  1936. ]
  1937. },
  1938. "require": {
  1939. "doctrine/inflector": "^1.4|^2.0",
  1940. "dragonmantank/cron-expression": "^2.3.1",
  1941. "egulias/email-validator": "^2.1.10",
  1942. "ext-json": "*",
  1943. "ext-mbstring": "*",
  1944. "ext-openssl": "*",
  1945. "league/commonmark": "^1.3",
  1946. "league/flysystem": "^1.1",
  1947. "monolog/monolog": "^2.0",
  1948. "nesbot/carbon": "^2.31",
  1949. "opis/closure": "^3.6",
  1950. "php": "^7.2.5|^8.0",
  1951. "psr/container": "^1.0",
  1952. "psr/simple-cache": "^1.0",
  1953. "ramsey/uuid": "^3.7|^4.0",
  1954. "swiftmailer/swiftmailer": "^6.0",
  1955. "symfony/console": "^5.0",
  1956. "symfony/error-handler": "^5.0",
  1957. "symfony/finder": "^5.0",
  1958. "symfony/http-foundation": "^5.0",
  1959. "symfony/http-kernel": "^5.0",
  1960. "symfony/mime": "^5.0",
  1961. "symfony/polyfill-php73": "^1.17",
  1962. "symfony/process": "^5.0",
  1963. "symfony/routing": "^5.0",
  1964. "symfony/var-dumper": "^5.0",
  1965. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1966. "vlucas/phpdotenv": "^4.0",
  1967. "voku/portable-ascii": "^1.4.8"
  1968. },
  1969. "conflict": {
  1970. "tightenco/collect": "<5.5.33"
  1971. },
  1972. "provide": {
  1973. "psr/container-implementation": "1.0"
  1974. },
  1975. "replace": {
  1976. "illuminate/auth": "self.version",
  1977. "illuminate/broadcasting": "self.version",
  1978. "illuminate/bus": "self.version",
  1979. "illuminate/cache": "self.version",
  1980. "illuminate/config": "self.version",
  1981. "illuminate/console": "self.version",
  1982. "illuminate/container": "self.version",
  1983. "illuminate/contracts": "self.version",
  1984. "illuminate/cookie": "self.version",
  1985. "illuminate/database": "self.version",
  1986. "illuminate/encryption": "self.version",
  1987. "illuminate/events": "self.version",
  1988. "illuminate/filesystem": "self.version",
  1989. "illuminate/hashing": "self.version",
  1990. "illuminate/http": "self.version",
  1991. "illuminate/log": "self.version",
  1992. "illuminate/mail": "self.version",
  1993. "illuminate/notifications": "self.version",
  1994. "illuminate/pagination": "self.version",
  1995. "illuminate/pipeline": "self.version",
  1996. "illuminate/queue": "self.version",
  1997. "illuminate/redis": "self.version",
  1998. "illuminate/routing": "self.version",
  1999. "illuminate/session": "self.version",
  2000. "illuminate/support": "self.version",
  2001. "illuminate/testing": "self.version",
  2002. "illuminate/translation": "self.version",
  2003. "illuminate/validation": "self.version",
  2004. "illuminate/view": "self.version"
  2005. },
  2006. "require-dev": {
  2007. "aws/aws-sdk-php": "^3.155",
  2008. "doctrine/dbal": "^2.6",
  2009. "filp/whoops": "^2.8",
  2010. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2011. "league/flysystem-cached-adapter": "^1.0",
  2012. "mockery/mockery": "~1.3.3|^1.4.2",
  2013. "moontoast/math": "^1.1",
  2014. "orchestra/testbench-core": "^5.8",
  2015. "pda/pheanstalk": "^4.0",
  2016. "phpunit/phpunit": "^8.4|^9.3.3",
  2017. "predis/predis": "^1.1.1",
  2018. "symfony/cache": "^5.0"
  2019. },
  2020. "suggest": {
  2021. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2022. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2023. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2024. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2025. "ext-memcached": "Required to use the memcache cache driver.",
  2026. "ext-pcntl": "Required to use all features of the queue worker.",
  2027. "ext-posix": "Required to use all features of the queue worker.",
  2028. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2029. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2030. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2031. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2032. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2033. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2034. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2035. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2036. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2037. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2038. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2039. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2040. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2041. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2042. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2043. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2044. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2045. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2046. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2047. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "branch-alias": {
  2052. "dev-master": "7.x-dev"
  2053. }
  2054. },
  2055. "autoload": {
  2056. "files": [
  2057. "src/Illuminate/Foundation/helpers.php",
  2058. "src/Illuminate/Support/helpers.php"
  2059. ],
  2060. "psr-4": {
  2061. "Illuminate\\": "src/Illuminate/"
  2062. }
  2063. },
  2064. "notification-url": "https://packagist.org/downloads/",
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "Taylor Otwell",
  2071. "email": "taylor@laravel.com"
  2072. }
  2073. ],
  2074. "description": "The Laravel Framework.",
  2075. "homepage": "https://laravel.com",
  2076. "keywords": [
  2077. "framework",
  2078. "laravel"
  2079. ],
  2080. "support": {
  2081. "issues": "https://github.com/laravel/framework/issues",
  2082. "source": "https://github.com/laravel/framework"
  2083. },
  2084. "time": "2021-01-21T14:10:48+00:00"
  2085. },
  2086. {
  2087. "name": "laravel/horizon",
  2088. "version": "v4.3.5",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/laravel/horizon.git",
  2092. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2097. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2098. "shasum": "",
  2099. "mirrors": [
  2100. {
  2101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2102. "preferred": true
  2103. }
  2104. ]
  2105. },
  2106. "require": {
  2107. "cakephp/chronos": "^2.0",
  2108. "ext-json": "*",
  2109. "ext-pcntl": "*",
  2110. "ext-posix": "*",
  2111. "illuminate/contracts": "^7.0",
  2112. "illuminate/queue": "^7.0",
  2113. "illuminate/support": "^7.0",
  2114. "php": "^7.2",
  2115. "ramsey/uuid": "^3.5|^4.0",
  2116. "symfony/error-handler": "^5.0",
  2117. "symfony/process": "^5.0"
  2118. },
  2119. "require-dev": {
  2120. "mockery/mockery": "^1.0",
  2121. "orchestra/testbench": "^5.0",
  2122. "phpunit/phpunit": "^8.0",
  2123. "predis/predis": "^1.1"
  2124. },
  2125. "suggest": {
  2126. "ext-redis": "Required to use the Redis PHP driver.",
  2127. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2128. },
  2129. "type": "library",
  2130. "extra": {
  2131. "branch-alias": {
  2132. "dev-master": "4.x-dev"
  2133. },
  2134. "laravel": {
  2135. "providers": [
  2136. "Laravel\\Horizon\\HorizonServiceProvider"
  2137. ],
  2138. "aliases": {
  2139. "Horizon": "Laravel\\Horizon\\Horizon"
  2140. }
  2141. }
  2142. },
  2143. "autoload": {
  2144. "psr-4": {
  2145. "Laravel\\Horizon\\": "src/"
  2146. }
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "MIT"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "Taylor Otwell",
  2155. "email": "taylor@laravel.com"
  2156. }
  2157. ],
  2158. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2159. "keywords": [
  2160. "laravel",
  2161. "queue"
  2162. ],
  2163. "support": {
  2164. "issues": "https://github.com/laravel/horizon/issues",
  2165. "source": "https://github.com/laravel/horizon/tree/4.x"
  2166. },
  2167. "time": "2020-09-08T13:19:23+00:00"
  2168. },
  2169. {
  2170. "name": "laravel/tinker",
  2171. "version": "v2.6.1",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/laravel/tinker.git",
  2175. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2180. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2181. "shasum": "",
  2182. "mirrors": [
  2183. {
  2184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2185. "preferred": true
  2186. }
  2187. ]
  2188. },
  2189. "require": {
  2190. "illuminate/console": "^6.0|^7.0|^8.0",
  2191. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2192. "illuminate/support": "^6.0|^7.0|^8.0",
  2193. "php": "^7.2.5|^8.0",
  2194. "psy/psysh": "^0.10.4",
  2195. "symfony/var-dumper": "^4.3.4|^5.0"
  2196. },
  2197. "require-dev": {
  2198. "mockery/mockery": "~1.3.3|^1.4.2",
  2199. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2200. },
  2201. "suggest": {
  2202. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "2.x-dev"
  2208. },
  2209. "laravel": {
  2210. "providers": [
  2211. "Laravel\\Tinker\\TinkerServiceProvider"
  2212. ]
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Laravel\\Tinker\\": "src/"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Taylor Otwell",
  2227. "email": "taylor@laravel.com"
  2228. }
  2229. ],
  2230. "description": "Powerful REPL for the Laravel framework.",
  2231. "keywords": [
  2232. "REPL",
  2233. "Tinker",
  2234. "laravel",
  2235. "psysh"
  2236. ],
  2237. "support": {
  2238. "issues": "https://github.com/laravel/tinker/issues",
  2239. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2240. },
  2241. "time": "2021-03-02T16:53:12+00:00"
  2242. },
  2243. {
  2244. "name": "laravel/ui",
  2245. "version": "v2.5.0",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/laravel/ui.git",
  2249. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2254. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2255. "shasum": "",
  2256. "mirrors": [
  2257. {
  2258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2259. "preferred": true
  2260. }
  2261. ]
  2262. },
  2263. "require": {
  2264. "illuminate/console": "^7.0",
  2265. "illuminate/filesystem": "^7.0",
  2266. "illuminate/support": "^7.0",
  2267. "php": "^7.2.5|^8.0"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "laravel": {
  2272. "providers": [
  2273. "Laravel\\Ui\\UiServiceProvider"
  2274. ]
  2275. }
  2276. },
  2277. "autoload": {
  2278. "psr-4": {
  2279. "Laravel\\Ui\\": "src/",
  2280. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2281. }
  2282. },
  2283. "notification-url": "https://packagist.org/downloads/",
  2284. "license": [
  2285. "MIT"
  2286. ],
  2287. "authors": [
  2288. {
  2289. "name": "Taylor Otwell",
  2290. "email": "taylor@laravel.com"
  2291. }
  2292. ],
  2293. "description": "Laravel UI utilities and presets.",
  2294. "keywords": [
  2295. "laravel",
  2296. "ui"
  2297. ],
  2298. "support": {
  2299. "issues": "https://github.com/laravel/ui/issues",
  2300. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2301. },
  2302. "time": "2020-11-03T19:45:19+00:00"
  2303. },
  2304. {
  2305. "name": "league/commonmark",
  2306. "version": "1.6.0",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/thephpleague/commonmark.git",
  2310. "reference": "19a9673b833cc37770439097b381d86cd125bfe8"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/19a9673b833cc37770439097b381d86cd125bfe8",
  2315. "reference": "19a9673b833cc37770439097b381d86cd125bfe8",
  2316. "shasum": "",
  2317. "mirrors": [
  2318. {
  2319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2320. "preferred": true
  2321. }
  2322. ]
  2323. },
  2324. "require": {
  2325. "ext-mbstring": "*",
  2326. "php": "^7.1 || ^8.0"
  2327. },
  2328. "conflict": {
  2329. "scrutinizer/ocular": "1.7.*"
  2330. },
  2331. "require-dev": {
  2332. "cebe/markdown": "~1.0",
  2333. "commonmark/commonmark.js": "0.29.2",
  2334. "erusev/parsedown": "~1.0",
  2335. "ext-json": "*",
  2336. "github/gfm": "0.29.0",
  2337. "michelf/php-markdown": "~1.4",
  2338. "mikehaertl/php-shellcommand": "^1.4",
  2339. "phpstan/phpstan": "^0.12",
  2340. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2341. "scrutinizer/ocular": "^1.5",
  2342. "symfony/finder": "^4.2"
  2343. },
  2344. "bin": [
  2345. "bin/commonmark"
  2346. ],
  2347. "type": "library",
  2348. "autoload": {
  2349. "psr-4": {
  2350. "League\\CommonMark\\": "src"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "BSD-3-Clause"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Colin O'Dell",
  2360. "email": "colinodell@gmail.com",
  2361. "homepage": "https://www.colinodell.com",
  2362. "role": "Lead Developer"
  2363. }
  2364. ],
  2365. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2366. "homepage": "https://commonmark.thephpleague.com",
  2367. "keywords": [
  2368. "commonmark",
  2369. "flavored",
  2370. "gfm",
  2371. "github",
  2372. "github-flavored",
  2373. "markdown",
  2374. "md",
  2375. "parser"
  2376. ],
  2377. "support": {
  2378. "docs": "https://commonmark.thephpleague.com/",
  2379. "issues": "https://github.com/thephpleague/commonmark/issues",
  2380. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2381. "source": "https://github.com/thephpleague/commonmark"
  2382. },
  2383. "funding": [
  2384. {
  2385. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2386. "type": "custom"
  2387. },
  2388. {
  2389. "url": "https://www.colinodell.com/sponsor",
  2390. "type": "custom"
  2391. },
  2392. {
  2393. "url": "https://www.paypal.me/colinpodell/10.00",
  2394. "type": "custom"
  2395. },
  2396. {
  2397. "url": "https://github.com/colinodell",
  2398. "type": "github"
  2399. },
  2400. {
  2401. "url": "https://www.patreon.com/colinodell",
  2402. "type": "patreon"
  2403. },
  2404. {
  2405. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2406. "type": "tidelift"
  2407. }
  2408. ],
  2409. "time": "2021-05-01T19:00:49+00:00"
  2410. },
  2411. {
  2412. "name": "league/flysystem",
  2413. "version": "1.1.3",
  2414. "source": {
  2415. "type": "git",
  2416. "url": "https://github.com/thephpleague/flysystem.git",
  2417. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2418. },
  2419. "dist": {
  2420. "type": "zip",
  2421. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2422. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2423. "shasum": "",
  2424. "mirrors": [
  2425. {
  2426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2427. "preferred": true
  2428. }
  2429. ]
  2430. },
  2431. "require": {
  2432. "ext-fileinfo": "*",
  2433. "league/mime-type-detection": "^1.3",
  2434. "php": "^7.2.5 || ^8.0"
  2435. },
  2436. "conflict": {
  2437. "league/flysystem-sftp": "<1.0.6"
  2438. },
  2439. "require-dev": {
  2440. "phpspec/prophecy": "^1.11.1",
  2441. "phpunit/phpunit": "^8.5.8"
  2442. },
  2443. "suggest": {
  2444. "ext-fileinfo": "Required for MimeType",
  2445. "ext-ftp": "Allows you to use FTP server storage",
  2446. "ext-openssl": "Allows you to use FTPS server storage",
  2447. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2448. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2449. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2450. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2451. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2452. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2453. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2454. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2455. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2456. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2457. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2458. },
  2459. "type": "library",
  2460. "extra": {
  2461. "branch-alias": {
  2462. "dev-master": "1.1-dev"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\Flysystem\\": "src/"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frenky.net"
  2478. }
  2479. ],
  2480. "description": "Filesystem abstraction: Many filesystems, one API.",
  2481. "keywords": [
  2482. "Cloud Files",
  2483. "WebDAV",
  2484. "abstraction",
  2485. "aws",
  2486. "cloud",
  2487. "copy.com",
  2488. "dropbox",
  2489. "file systems",
  2490. "files",
  2491. "filesystem",
  2492. "filesystems",
  2493. "ftp",
  2494. "rackspace",
  2495. "remote",
  2496. "s3",
  2497. "sftp",
  2498. "storage"
  2499. ],
  2500. "support": {
  2501. "issues": "https://github.com/thephpleague/flysystem/issues",
  2502. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2503. },
  2504. "funding": [
  2505. {
  2506. "url": "https://offset.earth/frankdejonge",
  2507. "type": "other"
  2508. }
  2509. ],
  2510. "time": "2020-08-23T07:39:11+00:00"
  2511. },
  2512. {
  2513. "name": "league/mime-type-detection",
  2514. "version": "1.7.0",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2518. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2523. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2524. "shasum": "",
  2525. "mirrors": [
  2526. {
  2527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2528. "preferred": true
  2529. }
  2530. ]
  2531. },
  2532. "require": {
  2533. "ext-fileinfo": "*",
  2534. "php": "^7.2 || ^8.0"
  2535. },
  2536. "require-dev": {
  2537. "friendsofphp/php-cs-fixer": "^2.18",
  2538. "phpstan/phpstan": "^0.12.68",
  2539. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2540. },
  2541. "type": "library",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "League\\MimeTypeDetection\\": "src"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Frank de Jonge",
  2554. "email": "info@frankdejonge.nl"
  2555. }
  2556. ],
  2557. "description": "Mime-type detection for Flysystem",
  2558. "support": {
  2559. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2560. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2561. },
  2562. "funding": [
  2563. {
  2564. "url": "https://github.com/frankdejonge",
  2565. "type": "github"
  2566. },
  2567. {
  2568. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2569. "type": "tidelift"
  2570. }
  2571. ],
  2572. "time": "2021-01-18T20:58:21+00:00"
  2573. },
  2574. {
  2575. "name": "maatwebsite/excel",
  2576. "version": "3.1.30",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2580. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2585. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2586. "shasum": "",
  2587. "mirrors": [
  2588. {
  2589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2590. "preferred": true
  2591. }
  2592. ]
  2593. },
  2594. "require": {
  2595. "ext-json": "*",
  2596. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2597. "php": "^7.0|^8.0",
  2598. "phpoffice/phpspreadsheet": "1.16.*"
  2599. },
  2600. "require-dev": {
  2601. "orchestra/testbench": "^6.0",
  2602. "predis/predis": "^1.1"
  2603. },
  2604. "type": "library",
  2605. "extra": {
  2606. "laravel": {
  2607. "providers": [
  2608. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2609. ],
  2610. "aliases": {
  2611. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2612. }
  2613. }
  2614. },
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Maatwebsite\\Excel\\": "src/"
  2618. }
  2619. },
  2620. "notification-url": "https://packagist.org/downloads/",
  2621. "license": [
  2622. "MIT"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "Patrick Brouwers",
  2627. "email": "patrick@maatwebsite.nl"
  2628. }
  2629. ],
  2630. "description": "Supercharged Excel exports and imports in Laravel",
  2631. "keywords": [
  2632. "PHPExcel",
  2633. "batch",
  2634. "csv",
  2635. "excel",
  2636. "export",
  2637. "import",
  2638. "laravel",
  2639. "php",
  2640. "phpspreadsheet"
  2641. ],
  2642. "support": {
  2643. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2644. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.30"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://laravel-excel.com/commercial-support",
  2649. "type": "custom"
  2650. },
  2651. {
  2652. "url": "https://github.com/patrickbrouwers",
  2653. "type": "github"
  2654. }
  2655. ],
  2656. "time": "2021-04-06T17:17:02+00:00"
  2657. },
  2658. {
  2659. "name": "maennchen/zipstream-php",
  2660. "version": "2.1.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2664. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2669. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "myclabs/php-enum": "^1.5",
  2680. "php": ">= 7.1",
  2681. "psr/http-message": "^1.0",
  2682. "symfony/polyfill-mbstring": "^1.0"
  2683. },
  2684. "require-dev": {
  2685. "ext-zip": "*",
  2686. "guzzlehttp/guzzle": ">= 6.3",
  2687. "mikey179/vfsstream": "^1.6",
  2688. "phpunit/phpunit": ">= 7.5"
  2689. },
  2690. "type": "library",
  2691. "autoload": {
  2692. "psr-4": {
  2693. "ZipStream\\": "src/"
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "MIT"
  2699. ],
  2700. "authors": [
  2701. {
  2702. "name": "Paul Duncan",
  2703. "email": "pabs@pablotron.org"
  2704. },
  2705. {
  2706. "name": "Jonatan Männchen",
  2707. "email": "jonatan@maennchen.ch"
  2708. },
  2709. {
  2710. "name": "Jesse Donat",
  2711. "email": "donatj@gmail.com"
  2712. },
  2713. {
  2714. "name": "András Kolesár",
  2715. "email": "kolesar@kolesar.hu"
  2716. }
  2717. ],
  2718. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2719. "keywords": [
  2720. "stream",
  2721. "zip"
  2722. ],
  2723. "support": {
  2724. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2725. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2726. },
  2727. "funding": [
  2728. {
  2729. "url": "https://opencollective.com/zipstream",
  2730. "type": "open_collective"
  2731. }
  2732. ],
  2733. "time": "2020-05-30T13:11:16+00:00"
  2734. },
  2735. {
  2736. "name": "markbaker/complex",
  2737. "version": "2.0.0",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2741. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2746. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2747. "shasum": "",
  2748. "mirrors": [
  2749. {
  2750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2751. "preferred": true
  2752. }
  2753. ]
  2754. },
  2755. "require": {
  2756. "php": "^7.2 || ^8.0"
  2757. },
  2758. "require-dev": {
  2759. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2760. "phpcompatibility/php-compatibility": "^9.0",
  2761. "phpdocumentor/phpdocumentor": "2.*",
  2762. "phploc/phploc": "^4.0",
  2763. "phpmd/phpmd": "2.*",
  2764. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2765. "sebastian/phpcpd": "^4.0",
  2766. "squizlabs/php_codesniffer": "^3.4"
  2767. },
  2768. "type": "library",
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Complex\\": "classes/src/"
  2772. },
  2773. "files": [
  2774. "classes/src/functions/abs.php",
  2775. "classes/src/functions/acos.php",
  2776. "classes/src/functions/acosh.php",
  2777. "classes/src/functions/acot.php",
  2778. "classes/src/functions/acoth.php",
  2779. "classes/src/functions/acsc.php",
  2780. "classes/src/functions/acsch.php",
  2781. "classes/src/functions/argument.php",
  2782. "classes/src/functions/asec.php",
  2783. "classes/src/functions/asech.php",
  2784. "classes/src/functions/asin.php",
  2785. "classes/src/functions/asinh.php",
  2786. "classes/src/functions/atan.php",
  2787. "classes/src/functions/atanh.php",
  2788. "classes/src/functions/conjugate.php",
  2789. "classes/src/functions/cos.php",
  2790. "classes/src/functions/cosh.php",
  2791. "classes/src/functions/cot.php",
  2792. "classes/src/functions/coth.php",
  2793. "classes/src/functions/csc.php",
  2794. "classes/src/functions/csch.php",
  2795. "classes/src/functions/exp.php",
  2796. "classes/src/functions/inverse.php",
  2797. "classes/src/functions/ln.php",
  2798. "classes/src/functions/log2.php",
  2799. "classes/src/functions/log10.php",
  2800. "classes/src/functions/negative.php",
  2801. "classes/src/functions/pow.php",
  2802. "classes/src/functions/rho.php",
  2803. "classes/src/functions/sec.php",
  2804. "classes/src/functions/sech.php",
  2805. "classes/src/functions/sin.php",
  2806. "classes/src/functions/sinh.php",
  2807. "classes/src/functions/sqrt.php",
  2808. "classes/src/functions/tan.php",
  2809. "classes/src/functions/tanh.php",
  2810. "classes/src/functions/theta.php",
  2811. "classes/src/operations/add.php",
  2812. "classes/src/operations/subtract.php",
  2813. "classes/src/operations/multiply.php",
  2814. "classes/src/operations/divideby.php",
  2815. "classes/src/operations/divideinto.php"
  2816. ]
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Mark Baker",
  2825. "email": "mark@lange.demon.co.uk"
  2826. }
  2827. ],
  2828. "description": "PHP Class for working with complex numbers",
  2829. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2830. "keywords": [
  2831. "complex",
  2832. "mathematics"
  2833. ],
  2834. "support": {
  2835. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2836. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2837. },
  2838. "time": "2020-08-26T10:42:07+00:00"
  2839. },
  2840. {
  2841. "name": "markbaker/matrix",
  2842. "version": "2.1.2",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2846. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2851. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2852. "shasum": "",
  2853. "mirrors": [
  2854. {
  2855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2856. "preferred": true
  2857. }
  2858. ]
  2859. },
  2860. "require": {
  2861. "php": "^7.1 || ^8.0"
  2862. },
  2863. "require-dev": {
  2864. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2865. "phpcompatibility/php-compatibility": "^9.0",
  2866. "phpdocumentor/phpdocumentor": "2.*",
  2867. "phploc/phploc": "^4.0",
  2868. "phpmd/phpmd": "2.*",
  2869. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2870. "sebastian/phpcpd": "^4.0",
  2871. "squizlabs/php_codesniffer": "^3.4"
  2872. },
  2873. "type": "library",
  2874. "autoload": {
  2875. "psr-4": {
  2876. "Matrix\\": "classes/src/"
  2877. },
  2878. "files": [
  2879. "classes/src/Functions/adjoint.php",
  2880. "classes/src/Functions/antidiagonal.php",
  2881. "classes/src/Functions/cofactors.php",
  2882. "classes/src/Functions/determinant.php",
  2883. "classes/src/Functions/diagonal.php",
  2884. "classes/src/Functions/identity.php",
  2885. "classes/src/Functions/inverse.php",
  2886. "classes/src/Functions/minors.php",
  2887. "classes/src/Functions/trace.php",
  2888. "classes/src/Functions/transpose.php",
  2889. "classes/src/Operations/add.php",
  2890. "classes/src/Operations/directsum.php",
  2891. "classes/src/Operations/subtract.php",
  2892. "classes/src/Operations/multiply.php",
  2893. "classes/src/Operations/divideby.php",
  2894. "classes/src/Operations/divideinto.php"
  2895. ]
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Mark Baker",
  2904. "email": "mark@demon-angel.eu"
  2905. }
  2906. ],
  2907. "description": "PHP Class for working with matrices",
  2908. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2909. "keywords": [
  2910. "mathematics",
  2911. "matrix",
  2912. "vector"
  2913. ],
  2914. "support": {
  2915. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2916. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2"
  2917. },
  2918. "time": "2021-01-23T16:37:31+00:00"
  2919. },
  2920. {
  2921. "name": "monolog/monolog",
  2922. "version": "2.2.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/Seldaek/monolog.git",
  2926. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2931. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2932. "shasum": "",
  2933. "mirrors": [
  2934. {
  2935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2936. "preferred": true
  2937. }
  2938. ]
  2939. },
  2940. "require": {
  2941. "php": ">=7.2",
  2942. "psr/log": "^1.0.1"
  2943. },
  2944. "provide": {
  2945. "psr/log-implementation": "1.0.0"
  2946. },
  2947. "require-dev": {
  2948. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2949. "doctrine/couchdb": "~1.0@dev",
  2950. "elasticsearch/elasticsearch": "^7",
  2951. "graylog2/gelf-php": "^1.4.2",
  2952. "mongodb/mongodb": "^1.8",
  2953. "php-amqplib/php-amqplib": "~2.4",
  2954. "php-console/php-console": "^3.1.3",
  2955. "phpspec/prophecy": "^1.6.1",
  2956. "phpstan/phpstan": "^0.12.59",
  2957. "phpunit/phpunit": "^8.5",
  2958. "predis/predis": "^1.1",
  2959. "rollbar/rollbar": "^1.3",
  2960. "ruflin/elastica": ">=0.90 <7.0.1",
  2961. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2962. },
  2963. "suggest": {
  2964. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2965. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2966. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2967. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2968. "ext-mbstring": "Allow to work properly with unicode symbols",
  2969. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2970. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2971. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2972. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2973. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2974. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2975. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-main": "2.x-dev"
  2981. }
  2982. },
  2983. "autoload": {
  2984. "psr-4": {
  2985. "Monolog\\": "src/Monolog"
  2986. }
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "MIT"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Jordi Boggiano",
  2995. "email": "j.boggiano@seld.be",
  2996. "homepage": "https://seld.be"
  2997. }
  2998. ],
  2999. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3000. "homepage": "https://github.com/Seldaek/monolog",
  3001. "keywords": [
  3002. "log",
  3003. "logging",
  3004. "psr-3"
  3005. ],
  3006. "support": {
  3007. "issues": "https://github.com/Seldaek/monolog/issues",
  3008. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3009. },
  3010. "funding": [
  3011. {
  3012. "url": "https://github.com/Seldaek",
  3013. "type": "github"
  3014. },
  3015. {
  3016. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3017. "type": "tidelift"
  3018. }
  3019. ],
  3020. "time": "2020-12-14T13:15:25+00:00"
  3021. },
  3022. {
  3023. "name": "myclabs/php-enum",
  3024. "version": "1.7.7",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/myclabs/php-enum.git",
  3028. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  3033. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  3034. "shasum": "",
  3035. "mirrors": [
  3036. {
  3037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3038. "preferred": true
  3039. }
  3040. ]
  3041. },
  3042. "require": {
  3043. "ext-json": "*",
  3044. "php": ">=7.1"
  3045. },
  3046. "require-dev": {
  3047. "phpunit/phpunit": "^7",
  3048. "squizlabs/php_codesniffer": "1.*",
  3049. "vimeo/psalm": "^3.8"
  3050. },
  3051. "type": "library",
  3052. "autoload": {
  3053. "psr-4": {
  3054. "MyCLabs\\Enum\\": "src/"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "PHP Enum contributors",
  3064. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3065. }
  3066. ],
  3067. "description": "PHP Enum implementation",
  3068. "homepage": "http://github.com/myclabs/php-enum",
  3069. "keywords": [
  3070. "enum"
  3071. ],
  3072. "support": {
  3073. "issues": "https://github.com/myclabs/php-enum/issues",
  3074. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  3075. },
  3076. "funding": [
  3077. {
  3078. "url": "https://github.com/mnapoli",
  3079. "type": "github"
  3080. },
  3081. {
  3082. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3083. "type": "tidelift"
  3084. }
  3085. ],
  3086. "time": "2020-11-14T18:14:52+00:00"
  3087. },
  3088. {
  3089. "name": "nesbot/carbon",
  3090. "version": "2.47.0",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/briannesbitt/Carbon.git",
  3094. "reference": "606262fd8888b75317ba9461825a24fc34001e1e"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/606262fd8888b75317ba9461825a24fc34001e1e",
  3099. "reference": "606262fd8888b75317ba9461825a24fc34001e1e",
  3100. "shasum": "",
  3101. "mirrors": [
  3102. {
  3103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3104. "preferred": true
  3105. }
  3106. ]
  3107. },
  3108. "require": {
  3109. "ext-json": "*",
  3110. "php": "^7.1.8 || ^8.0",
  3111. "symfony/polyfill-mbstring": "^1.0",
  3112. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3113. },
  3114. "require-dev": {
  3115. "doctrine/orm": "^2.7",
  3116. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3117. "kylekatarnls/multi-tester": "^2.0",
  3118. "phpmd/phpmd": "^2.9",
  3119. "phpstan/extension-installer": "^1.0",
  3120. "phpstan/phpstan": "^0.12.54",
  3121. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3122. "squizlabs/php_codesniffer": "^3.4"
  3123. },
  3124. "bin": [
  3125. "bin/carbon"
  3126. ],
  3127. "type": "library",
  3128. "extra": {
  3129. "branch-alias": {
  3130. "dev-master": "2.x-dev",
  3131. "dev-3.x": "3.x-dev"
  3132. },
  3133. "laravel": {
  3134. "providers": [
  3135. "Carbon\\Laravel\\ServiceProvider"
  3136. ]
  3137. },
  3138. "phpstan": {
  3139. "includes": [
  3140. "extension.neon"
  3141. ]
  3142. }
  3143. },
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Carbon\\": "src/Carbon/"
  3147. }
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Brian Nesbitt",
  3156. "email": "brian@nesbot.com",
  3157. "homepage": "http://nesbot.com"
  3158. },
  3159. {
  3160. "name": "kylekatarnls",
  3161. "homepage": "http://github.com/kylekatarnls"
  3162. }
  3163. ],
  3164. "description": "An API extension for DateTime that supports 281 different languages.",
  3165. "homepage": "http://carbon.nesbot.com",
  3166. "keywords": [
  3167. "date",
  3168. "datetime",
  3169. "time"
  3170. ],
  3171. "support": {
  3172. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3173. "source": "https://github.com/briannesbitt/Carbon"
  3174. },
  3175. "funding": [
  3176. {
  3177. "url": "https://opencollective.com/Carbon",
  3178. "type": "open_collective"
  3179. },
  3180. {
  3181. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3182. "type": "tidelift"
  3183. }
  3184. ],
  3185. "time": "2021-04-13T21:54:02+00:00"
  3186. },
  3187. {
  3188. "name": "nikic/php-parser",
  3189. "version": "v4.10.5",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/nikic/PHP-Parser.git",
  3193. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3198. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "ext-tokenizer": "*",
  3209. "php": ">=7.0"
  3210. },
  3211. "require-dev": {
  3212. "ircmaxell/php-yacc": "^0.0.7",
  3213. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3214. },
  3215. "bin": [
  3216. "bin/php-parse"
  3217. ],
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "4.9-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "psr-4": {
  3226. "PhpParser\\": "lib/PhpParser"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "BSD-3-Clause"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Nikita Popov"
  3236. }
  3237. ],
  3238. "description": "A PHP parser written in PHP",
  3239. "keywords": [
  3240. "parser",
  3241. "php"
  3242. ],
  3243. "support": {
  3244. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3245. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3246. },
  3247. "time": "2021-05-03T19:11:20+00:00"
  3248. },
  3249. {
  3250. "name": "opis/closure",
  3251. "version": "3.6.2",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/opis/closure.git",
  3255. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3260. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3261. "shasum": "",
  3262. "mirrors": [
  3263. {
  3264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3265. "preferred": true
  3266. }
  3267. ]
  3268. },
  3269. "require": {
  3270. "php": "^5.4 || ^7.0 || ^8.0"
  3271. },
  3272. "require-dev": {
  3273. "jeremeamia/superclosure": "^2.0",
  3274. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "branch-alias": {
  3279. "dev-master": "3.6.x-dev"
  3280. }
  3281. },
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Opis\\Closure\\": "src/"
  3285. },
  3286. "files": [
  3287. "functions.php"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Marius Sarca",
  3297. "email": "marius.sarca@gmail.com"
  3298. },
  3299. {
  3300. "name": "Sorin Sarca",
  3301. "email": "sarca_sorin@hotmail.com"
  3302. }
  3303. ],
  3304. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3305. "homepage": "https://opis.io/closure",
  3306. "keywords": [
  3307. "anonymous functions",
  3308. "closure",
  3309. "function",
  3310. "serializable",
  3311. "serialization",
  3312. "serialize"
  3313. ],
  3314. "support": {
  3315. "issues": "https://github.com/opis/closure/issues",
  3316. "source": "https://github.com/opis/closure/tree/3.6.2"
  3317. },
  3318. "time": "2021-04-09T13:42:10+00:00"
  3319. },
  3320. {
  3321. "name": "oursdreams/export",
  3322. "version": "0.0.7",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/oursdreams/export.git",
  3326. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3331. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3332. "shasum": ""
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "laravel": {
  3337. "providers": [
  3338. "Oursdreams\\Export\\ExportServiceProvider"
  3339. ]
  3340. }
  3341. },
  3342. "autoload": {
  3343. "psr-4": {
  3344. "Oursdreams\\Export\\": "./src"
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "oursdreams",
  3354. "email": "z1792524653@163.com"
  3355. }
  3356. ],
  3357. "description": "A simple export plug-in",
  3358. "support": {
  3359. "issues": "https://github.com/oursdreams/export/issues",
  3360. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3361. },
  3362. "time": "2021-06-01T03:01:13+00:00"
  3363. },
  3364. {
  3365. "name": "overtrue/laravel-pinyin",
  3366. "version": "4.0.0",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3370. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3375. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3376. "shasum": "",
  3377. "mirrors": [
  3378. {
  3379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3380. "preferred": true
  3381. }
  3382. ]
  3383. },
  3384. "require": {
  3385. "overtrue/pinyin": "~4.0"
  3386. },
  3387. "type": "library",
  3388. "extra": {
  3389. "laravel": {
  3390. "providers": [
  3391. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3392. ],
  3393. "aliases": {
  3394. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3395. }
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-4": {
  3400. "Overtrue\\LaravelPinyin\\": "src/"
  3401. },
  3402. "files": [
  3403. "src/helpers.php"
  3404. ]
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "overtrue",
  3413. "email": "anzhengchao@gmail.com"
  3414. }
  3415. ],
  3416. "description": "Chinese to Pinyin translator.",
  3417. "keywords": [
  3418. "Chinese",
  3419. "Pinyin",
  3420. "laravel",
  3421. "overtrue"
  3422. ],
  3423. "support": {
  3424. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3425. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3426. },
  3427. "time": "2018-10-10T09:02:46+00:00"
  3428. },
  3429. {
  3430. "name": "overtrue/pinyin",
  3431. "version": "4.0.7",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/overtrue/pinyin.git",
  3435. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3440. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3441. "shasum": "",
  3442. "mirrors": [
  3443. {
  3444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3445. "preferred": true
  3446. }
  3447. ]
  3448. },
  3449. "require": {
  3450. "php": ">=7.1"
  3451. },
  3452. "require-dev": {
  3453. "brainmaestro/composer-git-hooks": "^2.7",
  3454. "friendsofphp/php-cs-fixer": "^2.16",
  3455. "phpunit/phpunit": "~8.0"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "hooks": {
  3460. "pre-commit": [
  3461. "composer test",
  3462. "composer fix-style"
  3463. ],
  3464. "pre-push": [
  3465. "composer test",
  3466. "composer check-style"
  3467. ]
  3468. }
  3469. },
  3470. "autoload": {
  3471. "psr-4": {
  3472. "Overtrue\\Pinyin\\": "src/"
  3473. },
  3474. "files": [
  3475. "src/const.php"
  3476. ]
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "overtrue",
  3485. "email": "anzhengchao@gmail.com",
  3486. "homepage": "http://github.com/overtrue"
  3487. }
  3488. ],
  3489. "description": "Chinese to pinyin translator.",
  3490. "homepage": "https://github.com/overtrue/pinyin",
  3491. "keywords": [
  3492. "Chinese",
  3493. "Pinyin",
  3494. "cn2pinyin"
  3495. ],
  3496. "support": {
  3497. "issues": "https://github.com/overtrue/pinyin/issues",
  3498. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3499. },
  3500. "funding": [
  3501. {
  3502. "url": "https://www.patreon.com/overtrue",
  3503. "type": "patreon"
  3504. }
  3505. ],
  3506. "time": "2021-04-16T11:13:48+00:00"
  3507. },
  3508. {
  3509. "name": "paragonie/random_compat",
  3510. "version": "v9.99.100",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/paragonie/random_compat.git",
  3514. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3519. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3520. "shasum": "",
  3521. "mirrors": [
  3522. {
  3523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3524. "preferred": true
  3525. }
  3526. ]
  3527. },
  3528. "require": {
  3529. "php": ">= 7"
  3530. },
  3531. "require-dev": {
  3532. "phpunit/phpunit": "4.*|5.*",
  3533. "vimeo/psalm": "^1"
  3534. },
  3535. "suggest": {
  3536. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3537. },
  3538. "type": "library",
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Paragon Initiative Enterprises",
  3546. "email": "security@paragonie.com",
  3547. "homepage": "https://paragonie.com"
  3548. }
  3549. ],
  3550. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3551. "keywords": [
  3552. "csprng",
  3553. "polyfill",
  3554. "pseudorandom",
  3555. "random"
  3556. ],
  3557. "support": {
  3558. "email": "info@paragonie.com",
  3559. "issues": "https://github.com/paragonie/random_compat/issues",
  3560. "source": "https://github.com/paragonie/random_compat"
  3561. },
  3562. "time": "2020-10-15T08:29:30+00:00"
  3563. },
  3564. {
  3565. "name": "paragonie/sodium_compat",
  3566. "version": "v1.15.4",
  3567. "source": {
  3568. "type": "git",
  3569. "url": "https://github.com/paragonie/sodium_compat.git",
  3570. "reference": "8a93bfe047c7f699f819459de8ddda144cd636a4"
  3571. },
  3572. "dist": {
  3573. "type": "zip",
  3574. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/8a93bfe047c7f699f819459de8ddda144cd636a4",
  3575. "reference": "8a93bfe047c7f699f819459de8ddda144cd636a4",
  3576. "shasum": "",
  3577. "mirrors": [
  3578. {
  3579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3580. "preferred": true
  3581. }
  3582. ]
  3583. },
  3584. "require": {
  3585. "paragonie/random_compat": ">=1",
  3586. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3587. },
  3588. "require-dev": {
  3589. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3590. },
  3591. "suggest": {
  3592. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3593. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3594. },
  3595. "type": "library",
  3596. "autoload": {
  3597. "files": [
  3598. "autoload.php"
  3599. ]
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "ISC"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "Paragon Initiative Enterprises",
  3608. "email": "security@paragonie.com"
  3609. },
  3610. {
  3611. "name": "Frank Denis",
  3612. "email": "jedisct1@pureftpd.org"
  3613. }
  3614. ],
  3615. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3616. "keywords": [
  3617. "Authentication",
  3618. "BLAKE2b",
  3619. "ChaCha20",
  3620. "ChaCha20-Poly1305",
  3621. "Chapoly",
  3622. "Curve25519",
  3623. "Ed25519",
  3624. "EdDSA",
  3625. "Edwards-curve Digital Signature Algorithm",
  3626. "Elliptic Curve Diffie-Hellman",
  3627. "Poly1305",
  3628. "Pure-PHP cryptography",
  3629. "RFC 7748",
  3630. "RFC 8032",
  3631. "Salpoly",
  3632. "Salsa20",
  3633. "X25519",
  3634. "XChaCha20-Poly1305",
  3635. "XSalsa20-Poly1305",
  3636. "Xchacha20",
  3637. "Xsalsa20",
  3638. "aead",
  3639. "cryptography",
  3640. "ecdh",
  3641. "elliptic curve",
  3642. "elliptic curve cryptography",
  3643. "encryption",
  3644. "libsodium",
  3645. "php",
  3646. "public-key cryptography",
  3647. "secret-key cryptography",
  3648. "side-channel resistant"
  3649. ],
  3650. "support": {
  3651. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3652. "source": "https://github.com/paragonie/sodium_compat/tree/v1.15.4"
  3653. },
  3654. "time": "2021-04-17T09:00:05+00:00"
  3655. },
  3656. {
  3657. "name": "phpoffice/phpspreadsheet",
  3658. "version": "1.16.0",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3662. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3667. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3668. "shasum": "",
  3669. "mirrors": [
  3670. {
  3671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3672. "preferred": true
  3673. }
  3674. ]
  3675. },
  3676. "require": {
  3677. "ext-ctype": "*",
  3678. "ext-dom": "*",
  3679. "ext-fileinfo": "*",
  3680. "ext-gd": "*",
  3681. "ext-iconv": "*",
  3682. "ext-libxml": "*",
  3683. "ext-mbstring": "*",
  3684. "ext-simplexml": "*",
  3685. "ext-xml": "*",
  3686. "ext-xmlreader": "*",
  3687. "ext-xmlwriter": "*",
  3688. "ext-zip": "*",
  3689. "ext-zlib": "*",
  3690. "ezyang/htmlpurifier": "^4.13",
  3691. "maennchen/zipstream-php": "^2.1",
  3692. "markbaker/complex": "^1.5||^2.0",
  3693. "markbaker/matrix": "^1.2||^2.0",
  3694. "php": "^7.2||^8.0",
  3695. "psr/http-client": "^1.0",
  3696. "psr/http-factory": "^1.0",
  3697. "psr/simple-cache": "^1.0"
  3698. },
  3699. "require-dev": {
  3700. "dompdf/dompdf": "^0.8.5",
  3701. "friendsofphp/php-cs-fixer": "^2.16",
  3702. "jpgraph/jpgraph": "^4.0",
  3703. "mpdf/mpdf": "^8.0",
  3704. "phpcompatibility/php-compatibility": "^9.3",
  3705. "phpunit/phpunit": "^8.5||^9.3",
  3706. "squizlabs/php_codesniffer": "^3.5",
  3707. "tecnickcom/tcpdf": "^6.3"
  3708. },
  3709. "suggest": {
  3710. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3711. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3712. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3713. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3714. },
  3715. "type": "library",
  3716. "autoload": {
  3717. "psr-4": {
  3718. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3719. }
  3720. },
  3721. "notification-url": "https://packagist.org/downloads/",
  3722. "license": [
  3723. "MIT"
  3724. ],
  3725. "authors": [
  3726. {
  3727. "name": "Maarten Balliauw",
  3728. "homepage": "https://blog.maartenballiauw.be"
  3729. },
  3730. {
  3731. "name": "Mark Baker",
  3732. "homepage": "https://markbakeruk.net"
  3733. },
  3734. {
  3735. "name": "Franck Lefevre",
  3736. "homepage": "https://rootslabs.net"
  3737. },
  3738. {
  3739. "name": "Erik Tilt"
  3740. },
  3741. {
  3742. "name": "Adrien Crivelli"
  3743. }
  3744. ],
  3745. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3746. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3747. "keywords": [
  3748. "OpenXML",
  3749. "excel",
  3750. "gnumeric",
  3751. "ods",
  3752. "php",
  3753. "spreadsheet",
  3754. "xls",
  3755. "xlsx"
  3756. ],
  3757. "support": {
  3758. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3759. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3760. },
  3761. "time": "2020-12-31T18:03:49+00:00"
  3762. },
  3763. {
  3764. "name": "phpoption/phpoption",
  3765. "version": "1.7.5",
  3766. "source": {
  3767. "type": "git",
  3768. "url": "https://github.com/schmittjoh/php-option.git",
  3769. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3770. },
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3774. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3775. "shasum": "",
  3776. "mirrors": [
  3777. {
  3778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3779. "preferred": true
  3780. }
  3781. ]
  3782. },
  3783. "require": {
  3784. "php": "^5.5.9 || ^7.0 || ^8.0"
  3785. },
  3786. "require-dev": {
  3787. "bamarni/composer-bin-plugin": "^1.4.1",
  3788. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "branch-alias": {
  3793. "dev-master": "1.7-dev"
  3794. }
  3795. },
  3796. "autoload": {
  3797. "psr-4": {
  3798. "PhpOption\\": "src/PhpOption/"
  3799. }
  3800. },
  3801. "notification-url": "https://packagist.org/downloads/",
  3802. "license": [
  3803. "Apache-2.0"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "Johannes M. Schmitt",
  3808. "email": "schmittjoh@gmail.com"
  3809. },
  3810. {
  3811. "name": "Graham Campbell",
  3812. "email": "graham@alt-three.com"
  3813. }
  3814. ],
  3815. "description": "Option Type for PHP",
  3816. "keywords": [
  3817. "language",
  3818. "option",
  3819. "php",
  3820. "type"
  3821. ],
  3822. "support": {
  3823. "issues": "https://github.com/schmittjoh/php-option/issues",
  3824. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3825. },
  3826. "funding": [
  3827. {
  3828. "url": "https://github.com/GrahamCampbell",
  3829. "type": "github"
  3830. },
  3831. {
  3832. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3833. "type": "tidelift"
  3834. }
  3835. ],
  3836. "time": "2020-07-20T17:29:33+00:00"
  3837. },
  3838. {
  3839. "name": "predis/predis",
  3840. "version": "v1.1.7",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/predis/predis.git",
  3844. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3849. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3850. "shasum": "",
  3851. "mirrors": [
  3852. {
  3853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3854. "preferred": true
  3855. }
  3856. ]
  3857. },
  3858. "require": {
  3859. "php": ">=5.3.9"
  3860. },
  3861. "require-dev": {
  3862. "phpunit/phpunit": "~4.8"
  3863. },
  3864. "suggest": {
  3865. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3866. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3867. },
  3868. "type": "library",
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Predis\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "authors": [
  3879. {
  3880. "name": "Daniele Alessandri",
  3881. "email": "suppakilla@gmail.com",
  3882. "homepage": "http://clorophilla.net",
  3883. "role": "Creator & Maintainer"
  3884. },
  3885. {
  3886. "name": "Till Krüss",
  3887. "homepage": "https://till.im",
  3888. "role": "Maintainer"
  3889. }
  3890. ],
  3891. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3892. "homepage": "http://github.com/predis/predis",
  3893. "keywords": [
  3894. "nosql",
  3895. "predis",
  3896. "redis"
  3897. ],
  3898. "support": {
  3899. "issues": "https://github.com/predis/predis/issues",
  3900. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3901. },
  3902. "funding": [
  3903. {
  3904. "url": "https://github.com/sponsors/tillkruss",
  3905. "type": "github"
  3906. }
  3907. ],
  3908. "time": "2021-04-04T19:34:46+00:00"
  3909. },
  3910. {
  3911. "name": "psr/container",
  3912. "version": "1.1.1",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/php-fig/container.git",
  3916. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3921. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3922. "shasum": "",
  3923. "mirrors": [
  3924. {
  3925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3926. "preferred": true
  3927. }
  3928. ]
  3929. },
  3930. "require": {
  3931. "php": ">=7.2.0"
  3932. },
  3933. "type": "library",
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Psr\\Container\\": "src/"
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "PHP-FIG",
  3946. "homepage": "https://www.php-fig.org/"
  3947. }
  3948. ],
  3949. "description": "Common Container Interface (PHP FIG PSR-11)",
  3950. "homepage": "https://github.com/php-fig/container",
  3951. "keywords": [
  3952. "PSR-11",
  3953. "container",
  3954. "container-interface",
  3955. "container-interop",
  3956. "psr"
  3957. ],
  3958. "support": {
  3959. "issues": "https://github.com/php-fig/container/issues",
  3960. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3961. },
  3962. "time": "2021-03-05T17:36:06+00:00"
  3963. },
  3964. {
  3965. "name": "psr/event-dispatcher",
  3966. "version": "1.0.0",
  3967. "source": {
  3968. "type": "git",
  3969. "url": "https://github.com/php-fig/event-dispatcher.git",
  3970. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3971. },
  3972. "dist": {
  3973. "type": "zip",
  3974. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3975. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3976. "shasum": "",
  3977. "mirrors": [
  3978. {
  3979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3980. "preferred": true
  3981. }
  3982. ]
  3983. },
  3984. "require": {
  3985. "php": ">=7.2.0"
  3986. },
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-master": "1.0.x-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "Psr\\EventDispatcher\\": "src/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "PHP-FIG",
  4005. "homepage": "http://www.php-fig.org/"
  4006. }
  4007. ],
  4008. "description": "Standard interfaces for event handling.",
  4009. "keywords": [
  4010. "events",
  4011. "psr",
  4012. "psr-14"
  4013. ],
  4014. "support": {
  4015. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4016. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4017. },
  4018. "time": "2019-01-08T18:20:26+00:00"
  4019. },
  4020. {
  4021. "name": "psr/http-client",
  4022. "version": "1.0.1",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://github.com/php-fig/http-client.git",
  4026. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4031. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4032. "shasum": "",
  4033. "mirrors": [
  4034. {
  4035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4036. "preferred": true
  4037. }
  4038. ]
  4039. },
  4040. "require": {
  4041. "php": "^7.0 || ^8.0",
  4042. "psr/http-message": "^1.0"
  4043. },
  4044. "type": "library",
  4045. "extra": {
  4046. "branch-alias": {
  4047. "dev-master": "1.0.x-dev"
  4048. }
  4049. },
  4050. "autoload": {
  4051. "psr-4": {
  4052. "Psr\\Http\\Client\\": "src/"
  4053. }
  4054. },
  4055. "notification-url": "https://packagist.org/downloads/",
  4056. "license": [
  4057. "MIT"
  4058. ],
  4059. "authors": [
  4060. {
  4061. "name": "PHP-FIG",
  4062. "homepage": "http://www.php-fig.org/"
  4063. }
  4064. ],
  4065. "description": "Common interface for HTTP clients",
  4066. "homepage": "https://github.com/php-fig/http-client",
  4067. "keywords": [
  4068. "http",
  4069. "http-client",
  4070. "psr",
  4071. "psr-18"
  4072. ],
  4073. "support": {
  4074. "source": "https://github.com/php-fig/http-client/tree/master"
  4075. },
  4076. "time": "2020-06-29T06:28:15+00:00"
  4077. },
  4078. {
  4079. "name": "psr/http-factory",
  4080. "version": "1.0.1",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://github.com/php-fig/http-factory.git",
  4084. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4089. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4090. "shasum": "",
  4091. "mirrors": [
  4092. {
  4093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4094. "preferred": true
  4095. }
  4096. ]
  4097. },
  4098. "require": {
  4099. "php": ">=7.0.0",
  4100. "psr/http-message": "^1.0"
  4101. },
  4102. "type": "library",
  4103. "extra": {
  4104. "branch-alias": {
  4105. "dev-master": "1.0.x-dev"
  4106. }
  4107. },
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Psr\\Http\\Message\\": "src/"
  4111. }
  4112. },
  4113. "notification-url": "https://packagist.org/downloads/",
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "PHP-FIG",
  4120. "homepage": "http://www.php-fig.org/"
  4121. }
  4122. ],
  4123. "description": "Common interfaces for PSR-7 HTTP message factories",
  4124. "keywords": [
  4125. "factory",
  4126. "http",
  4127. "message",
  4128. "psr",
  4129. "psr-17",
  4130. "psr-7",
  4131. "request",
  4132. "response"
  4133. ],
  4134. "support": {
  4135. "source": "https://github.com/php-fig/http-factory/tree/master"
  4136. },
  4137. "time": "2019-04-30T12:38:16+00:00"
  4138. },
  4139. {
  4140. "name": "psr/http-message",
  4141. "version": "1.0.1",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/php-fig/http-message.git",
  4145. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4150. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4151. "shasum": "",
  4152. "mirrors": [
  4153. {
  4154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4155. "preferred": true
  4156. }
  4157. ]
  4158. },
  4159. "require": {
  4160. "php": ">=5.3.0"
  4161. },
  4162. "type": "library",
  4163. "extra": {
  4164. "branch-alias": {
  4165. "dev-master": "1.0.x-dev"
  4166. }
  4167. },
  4168. "autoload": {
  4169. "psr-4": {
  4170. "Psr\\Http\\Message\\": "src/"
  4171. }
  4172. },
  4173. "notification-url": "https://packagist.org/downloads/",
  4174. "license": [
  4175. "MIT"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "PHP-FIG",
  4180. "homepage": "http://www.php-fig.org/"
  4181. }
  4182. ],
  4183. "description": "Common interface for HTTP messages",
  4184. "homepage": "https://github.com/php-fig/http-message",
  4185. "keywords": [
  4186. "http",
  4187. "http-message",
  4188. "psr",
  4189. "psr-7",
  4190. "request",
  4191. "response"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/php-fig/http-message/tree/master"
  4195. },
  4196. "time": "2016-08-06T14:39:51+00:00"
  4197. },
  4198. {
  4199. "name": "psr/log",
  4200. "version": "1.1.4",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/php-fig/log.git",
  4204. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4209. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4210. "shasum": "",
  4211. "mirrors": [
  4212. {
  4213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4214. "preferred": true
  4215. }
  4216. ]
  4217. },
  4218. "require": {
  4219. "php": ">=5.3.0"
  4220. },
  4221. "type": "library",
  4222. "extra": {
  4223. "branch-alias": {
  4224. "dev-master": "1.1.x-dev"
  4225. }
  4226. },
  4227. "autoload": {
  4228. "psr-4": {
  4229. "Psr\\Log\\": "Psr/Log/"
  4230. }
  4231. },
  4232. "notification-url": "https://packagist.org/downloads/",
  4233. "license": [
  4234. "MIT"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "PHP-FIG",
  4239. "homepage": "https://www.php-fig.org/"
  4240. }
  4241. ],
  4242. "description": "Common interface for logging libraries",
  4243. "homepage": "https://github.com/php-fig/log",
  4244. "keywords": [
  4245. "log",
  4246. "psr",
  4247. "psr-3"
  4248. ],
  4249. "support": {
  4250. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4251. },
  4252. "time": "2021-05-03T11:20:27+00:00"
  4253. },
  4254. {
  4255. "name": "psr/simple-cache",
  4256. "version": "1.0.1",
  4257. "source": {
  4258. "type": "git",
  4259. "url": "https://github.com/php-fig/simple-cache.git",
  4260. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4261. },
  4262. "dist": {
  4263. "type": "zip",
  4264. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4265. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4266. "shasum": "",
  4267. "mirrors": [
  4268. {
  4269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4270. "preferred": true
  4271. }
  4272. ]
  4273. },
  4274. "require": {
  4275. "php": ">=5.3.0"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "branch-alias": {
  4280. "dev-master": "1.0.x-dev"
  4281. }
  4282. },
  4283. "autoload": {
  4284. "psr-4": {
  4285. "Psr\\SimpleCache\\": "src/"
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "PHP-FIG",
  4295. "homepage": "http://www.php-fig.org/"
  4296. }
  4297. ],
  4298. "description": "Common interfaces for simple caching",
  4299. "keywords": [
  4300. "cache",
  4301. "caching",
  4302. "psr",
  4303. "psr-16",
  4304. "simple-cache"
  4305. ],
  4306. "support": {
  4307. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4308. },
  4309. "time": "2017-10-23T01:57:42+00:00"
  4310. },
  4311. {
  4312. "name": "psy/psysh",
  4313. "version": "v0.10.8",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/bobthecow/psysh.git",
  4317. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4322. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4323. "shasum": "",
  4324. "mirrors": [
  4325. {
  4326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4327. "preferred": true
  4328. }
  4329. ]
  4330. },
  4331. "require": {
  4332. "ext-json": "*",
  4333. "ext-tokenizer": "*",
  4334. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4335. "php": "^8.0 || ^7.0 || ^5.5.9",
  4336. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4337. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4338. },
  4339. "require-dev": {
  4340. "bamarni/composer-bin-plugin": "^1.2",
  4341. "hoa/console": "3.17.*"
  4342. },
  4343. "suggest": {
  4344. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4345. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4346. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4347. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4348. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4349. },
  4350. "bin": [
  4351. "bin/psysh"
  4352. ],
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-main": "0.10.x-dev"
  4357. }
  4358. },
  4359. "autoload": {
  4360. "files": [
  4361. "src/functions.php"
  4362. ],
  4363. "psr-4": {
  4364. "Psy\\": "src/"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Justin Hileman",
  4374. "email": "justin@justinhileman.info",
  4375. "homepage": "http://justinhileman.com"
  4376. }
  4377. ],
  4378. "description": "An interactive shell for modern PHP.",
  4379. "homepage": "http://psysh.org",
  4380. "keywords": [
  4381. "REPL",
  4382. "console",
  4383. "interactive",
  4384. "shell"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/bobthecow/psysh/issues",
  4388. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4389. },
  4390. "time": "2021-04-10T16:23:39+00:00"
  4391. },
  4392. {
  4393. "name": "pusher/pusher-php-server",
  4394. "version": "v4.1.5",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/pusher/pusher-http-php.git",
  4398. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4403. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "ext-curl": "*",
  4414. "paragonie/sodium_compat": "^1.6",
  4415. "php": "^7.1|^8.0",
  4416. "psr/log": "^1.0"
  4417. },
  4418. "require-dev": {
  4419. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "3.4-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "psr-4": {
  4429. "Pusher\\": "src/"
  4430. }
  4431. },
  4432. "notification-url": "https://packagist.org/downloads/",
  4433. "license": [
  4434. "MIT"
  4435. ],
  4436. "description": "Library for interacting with the Pusher REST API",
  4437. "keywords": [
  4438. "events",
  4439. "messaging",
  4440. "php-pusher-server",
  4441. "publish",
  4442. "push",
  4443. "pusher",
  4444. "real time",
  4445. "real-time",
  4446. "realtime",
  4447. "rest",
  4448. "trigger"
  4449. ],
  4450. "support": {
  4451. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4452. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4453. },
  4454. "time": "2020-12-09T09:38:19+00:00"
  4455. },
  4456. {
  4457. "name": "ralouphie/getallheaders",
  4458. "version": "3.0.3",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/ralouphie/getallheaders.git",
  4462. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4467. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4468. "shasum": "",
  4469. "mirrors": [
  4470. {
  4471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4472. "preferred": true
  4473. }
  4474. ]
  4475. },
  4476. "require": {
  4477. "php": ">=5.6"
  4478. },
  4479. "require-dev": {
  4480. "php-coveralls/php-coveralls": "^2.1",
  4481. "phpunit/phpunit": "^5 || ^6.5"
  4482. },
  4483. "type": "library",
  4484. "autoload": {
  4485. "files": [
  4486. "src/getallheaders.php"
  4487. ]
  4488. },
  4489. "notification-url": "https://packagist.org/downloads/",
  4490. "license": [
  4491. "MIT"
  4492. ],
  4493. "authors": [
  4494. {
  4495. "name": "Ralph Khattar",
  4496. "email": "ralph.khattar@gmail.com"
  4497. }
  4498. ],
  4499. "description": "A polyfill for getallheaders.",
  4500. "support": {
  4501. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4502. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4503. },
  4504. "time": "2019-03-08T08:55:37+00:00"
  4505. },
  4506. {
  4507. "name": "ramsey/collection",
  4508. "version": "1.1.3",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/ramsey/collection.git",
  4512. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4517. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4518. "shasum": "",
  4519. "mirrors": [
  4520. {
  4521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4522. "preferred": true
  4523. }
  4524. ]
  4525. },
  4526. "require": {
  4527. "php": "^7.2 || ^8"
  4528. },
  4529. "require-dev": {
  4530. "captainhook/captainhook": "^5.3",
  4531. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4532. "ergebnis/composer-normalize": "^2.6",
  4533. "fakerphp/faker": "^1.5",
  4534. "hamcrest/hamcrest-php": "^2",
  4535. "jangregor/phpstan-prophecy": "^0.8",
  4536. "mockery/mockery": "^1.3",
  4537. "phpstan/extension-installer": "^1",
  4538. "phpstan/phpstan": "^0.12.32",
  4539. "phpstan/phpstan-mockery": "^0.12.5",
  4540. "phpstan/phpstan-phpunit": "^0.12.11",
  4541. "phpunit/phpunit": "^8.5 || ^9",
  4542. "psy/psysh": "^0.10.4",
  4543. "slevomat/coding-standard": "^6.3",
  4544. "squizlabs/php_codesniffer": "^3.5",
  4545. "vimeo/psalm": "^4.4"
  4546. },
  4547. "type": "library",
  4548. "autoload": {
  4549. "psr-4": {
  4550. "Ramsey\\Collection\\": "src/"
  4551. }
  4552. },
  4553. "notification-url": "https://packagist.org/downloads/",
  4554. "license": [
  4555. "MIT"
  4556. ],
  4557. "authors": [
  4558. {
  4559. "name": "Ben Ramsey",
  4560. "email": "ben@benramsey.com",
  4561. "homepage": "https://benramsey.com"
  4562. }
  4563. ],
  4564. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4565. "keywords": [
  4566. "array",
  4567. "collection",
  4568. "hash",
  4569. "map",
  4570. "queue",
  4571. "set"
  4572. ],
  4573. "support": {
  4574. "issues": "https://github.com/ramsey/collection/issues",
  4575. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4576. },
  4577. "funding": [
  4578. {
  4579. "url": "https://github.com/ramsey",
  4580. "type": "github"
  4581. },
  4582. {
  4583. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4584. "type": "tidelift"
  4585. }
  4586. ],
  4587. "time": "2021-01-21T17:40:04+00:00"
  4588. },
  4589. {
  4590. "name": "ramsey/uuid",
  4591. "version": "4.1.1",
  4592. "source": {
  4593. "type": "git",
  4594. "url": "https://github.com/ramsey/uuid.git",
  4595. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4596. },
  4597. "dist": {
  4598. "type": "zip",
  4599. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4600. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4601. "shasum": "",
  4602. "mirrors": [
  4603. {
  4604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4605. "preferred": true
  4606. }
  4607. ]
  4608. },
  4609. "require": {
  4610. "brick/math": "^0.8 || ^0.9",
  4611. "ext-json": "*",
  4612. "php": "^7.2 || ^8",
  4613. "ramsey/collection": "^1.0",
  4614. "symfony/polyfill-ctype": "^1.8"
  4615. },
  4616. "replace": {
  4617. "rhumsaa/uuid": "self.version"
  4618. },
  4619. "require-dev": {
  4620. "codeception/aspect-mock": "^3",
  4621. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4622. "doctrine/annotations": "^1.8",
  4623. "goaop/framework": "^2",
  4624. "mockery/mockery": "^1.3",
  4625. "moontoast/math": "^1.1",
  4626. "paragonie/random-lib": "^2",
  4627. "php-mock/php-mock-mockery": "^1.3",
  4628. "php-mock/php-mock-phpunit": "^2.5",
  4629. "php-parallel-lint/php-parallel-lint": "^1.1",
  4630. "phpbench/phpbench": "^0.17.1",
  4631. "phpstan/extension-installer": "^1.0",
  4632. "phpstan/phpstan": "^0.12",
  4633. "phpstan/phpstan-mockery": "^0.12",
  4634. "phpstan/phpstan-phpunit": "^0.12",
  4635. "phpunit/phpunit": "^8.5",
  4636. "psy/psysh": "^0.10.0",
  4637. "slevomat/coding-standard": "^6.0",
  4638. "squizlabs/php_codesniffer": "^3.5",
  4639. "vimeo/psalm": "3.9.4"
  4640. },
  4641. "suggest": {
  4642. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4643. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4644. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4645. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4646. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4647. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4648. },
  4649. "type": "library",
  4650. "extra": {
  4651. "branch-alias": {
  4652. "dev-master": "4.x-dev"
  4653. }
  4654. },
  4655. "autoload": {
  4656. "psr-4": {
  4657. "Ramsey\\Uuid\\": "src/"
  4658. },
  4659. "files": [
  4660. "src/functions.php"
  4661. ]
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "MIT"
  4666. ],
  4667. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4668. "homepage": "https://github.com/ramsey/uuid",
  4669. "keywords": [
  4670. "guid",
  4671. "identifier",
  4672. "uuid"
  4673. ],
  4674. "support": {
  4675. "issues": "https://github.com/ramsey/uuid/issues",
  4676. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4677. "source": "https://github.com/ramsey/uuid"
  4678. },
  4679. "funding": [
  4680. {
  4681. "url": "https://github.com/ramsey",
  4682. "type": "github"
  4683. }
  4684. ],
  4685. "time": "2020-08-18T17:17:46+00:00"
  4686. },
  4687. {
  4688. "name": "scrivo/highlight.php",
  4689. "version": "v9.18.1.6",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/scrivo/highlight.php.git",
  4693. "reference": "44a3d4136edb5ad8551590bf90f437db80b2d466"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/44a3d4136edb5ad8551590bf90f437db80b2d466",
  4698. "reference": "44a3d4136edb5ad8551590bf90f437db80b2d466",
  4699. "shasum": "",
  4700. "mirrors": [
  4701. {
  4702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4703. "preferred": true
  4704. }
  4705. ]
  4706. },
  4707. "require": {
  4708. "ext-json": "*",
  4709. "ext-mbstring": "*",
  4710. "php": ">=5.4"
  4711. },
  4712. "require-dev": {
  4713. "phpunit/phpunit": "^4.8|^5.7",
  4714. "sabberworm/php-css-parser": "^8.3",
  4715. "symfony/finder": "^2.8|^3.4",
  4716. "symfony/var-dumper": "^2.8|^3.4"
  4717. },
  4718. "type": "library",
  4719. "autoload": {
  4720. "psr-0": {
  4721. "Highlight\\": "",
  4722. "HighlightUtilities\\": ""
  4723. },
  4724. "files": [
  4725. "HighlightUtilities/functions.php"
  4726. ]
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "BSD-3-Clause"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Geert Bergman",
  4735. "homepage": "http://www.scrivo.org/",
  4736. "role": "Project Author"
  4737. },
  4738. {
  4739. "name": "Vladimir Jimenez",
  4740. "homepage": "https://allejo.io",
  4741. "role": "Maintainer"
  4742. },
  4743. {
  4744. "name": "Martin Folkers",
  4745. "homepage": "https://twobrain.io",
  4746. "role": "Contributor"
  4747. }
  4748. ],
  4749. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  4750. "keywords": [
  4751. "code",
  4752. "highlight",
  4753. "highlight.js",
  4754. "highlight.php",
  4755. "syntax"
  4756. ],
  4757. "support": {
  4758. "issues": "https://github.com/scrivo/highlight.php/issues",
  4759. "source": "https://github.com/scrivo/highlight.php"
  4760. },
  4761. "funding": [
  4762. {
  4763. "url": "https://github.com/allejo",
  4764. "type": "github"
  4765. }
  4766. ],
  4767. "time": "2020-12-22T19:20:29+00:00"
  4768. },
  4769. {
  4770. "name": "swiftmailer/swiftmailer",
  4771. "version": "v6.2.7",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4775. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4780. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  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. "egulias/email-validator": "^2.0|^3.1",
  4791. "php": ">=7.0.0",
  4792. "symfony/polyfill-iconv": "^1.0",
  4793. "symfony/polyfill-intl-idn": "^1.10",
  4794. "symfony/polyfill-mbstring": "^1.0"
  4795. },
  4796. "require-dev": {
  4797. "mockery/mockery": "^1.0",
  4798. "symfony/phpunit-bridge": "^4.4|^5.0"
  4799. },
  4800. "suggest": {
  4801. "ext-intl": "Needed to support internationalized email addresses"
  4802. },
  4803. "type": "library",
  4804. "extra": {
  4805. "branch-alias": {
  4806. "dev-master": "6.2-dev"
  4807. }
  4808. },
  4809. "autoload": {
  4810. "files": [
  4811. "lib/swift_required.php"
  4812. ]
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "MIT"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "Chris Corbyn"
  4821. },
  4822. {
  4823. "name": "Fabien Potencier",
  4824. "email": "fabien@symfony.com"
  4825. }
  4826. ],
  4827. "description": "Swiftmailer, free feature-rich PHP mailer",
  4828. "homepage": "https://swiftmailer.symfony.com",
  4829. "keywords": [
  4830. "email",
  4831. "mail",
  4832. "mailer"
  4833. ],
  4834. "support": {
  4835. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4836. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4837. },
  4838. "funding": [
  4839. {
  4840. "url": "https://github.com/fabpot",
  4841. "type": "github"
  4842. },
  4843. {
  4844. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4845. "type": "tidelift"
  4846. }
  4847. ],
  4848. "time": "2021-03-09T12:30:35+00:00"
  4849. },
  4850. {
  4851. "name": "symfony/console",
  4852. "version": "v5.2.7",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/symfony/console.git",
  4856. "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/symfony/console/zipball/90374b8ed059325b49a29b55b3f8bb4062c87629",
  4861. "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629",
  4862. "shasum": "",
  4863. "mirrors": [
  4864. {
  4865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4866. "preferred": true
  4867. }
  4868. ]
  4869. },
  4870. "require": {
  4871. "php": ">=7.2.5",
  4872. "symfony/polyfill-mbstring": "~1.0",
  4873. "symfony/polyfill-php73": "^1.8",
  4874. "symfony/polyfill-php80": "^1.15",
  4875. "symfony/service-contracts": "^1.1|^2",
  4876. "symfony/string": "^5.1"
  4877. },
  4878. "conflict": {
  4879. "symfony/dependency-injection": "<4.4",
  4880. "symfony/dotenv": "<5.1",
  4881. "symfony/event-dispatcher": "<4.4",
  4882. "symfony/lock": "<4.4",
  4883. "symfony/process": "<4.4"
  4884. },
  4885. "provide": {
  4886. "psr/log-implementation": "1.0"
  4887. },
  4888. "require-dev": {
  4889. "psr/log": "~1.0",
  4890. "symfony/config": "^4.4|^5.0",
  4891. "symfony/dependency-injection": "^4.4|^5.0",
  4892. "symfony/event-dispatcher": "^4.4|^5.0",
  4893. "symfony/lock": "^4.4|^5.0",
  4894. "symfony/process": "^4.4|^5.0",
  4895. "symfony/var-dumper": "^4.4|^5.0"
  4896. },
  4897. "suggest": {
  4898. "psr/log": "For using the console logger",
  4899. "symfony/event-dispatcher": "",
  4900. "symfony/lock": "",
  4901. "symfony/process": ""
  4902. },
  4903. "type": "library",
  4904. "autoload": {
  4905. "psr-4": {
  4906. "Symfony\\Component\\Console\\": ""
  4907. },
  4908. "exclude-from-classmap": [
  4909. "/Tests/"
  4910. ]
  4911. },
  4912. "notification-url": "https://packagist.org/downloads/",
  4913. "license": [
  4914. "MIT"
  4915. ],
  4916. "authors": [
  4917. {
  4918. "name": "Fabien Potencier",
  4919. "email": "fabien@symfony.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Eases the creation of beautiful and testable command line interfaces",
  4927. "homepage": "https://symfony.com",
  4928. "keywords": [
  4929. "cli",
  4930. "command line",
  4931. "console",
  4932. "terminal"
  4933. ],
  4934. "support": {
  4935. "source": "https://github.com/symfony/console/tree/v5.2.7"
  4936. },
  4937. "funding": [
  4938. {
  4939. "url": "https://symfony.com/sponsor",
  4940. "type": "custom"
  4941. },
  4942. {
  4943. "url": "https://github.com/fabpot",
  4944. "type": "github"
  4945. },
  4946. {
  4947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4948. "type": "tidelift"
  4949. }
  4950. ],
  4951. "time": "2021-04-19T14:07:32+00:00"
  4952. },
  4953. {
  4954. "name": "symfony/css-selector",
  4955. "version": "v5.2.7",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/symfony/css-selector.git",
  4959. "reference": "59a684f5ac454f066ecbe6daecce6719aed283fb"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/symfony/css-selector/zipball/59a684f5ac454f066ecbe6daecce6719aed283fb",
  4964. "reference": "59a684f5ac454f066ecbe6daecce6719aed283fb",
  4965. "shasum": "",
  4966. "mirrors": [
  4967. {
  4968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4969. "preferred": true
  4970. }
  4971. ]
  4972. },
  4973. "require": {
  4974. "php": ">=7.2.5"
  4975. },
  4976. "type": "library",
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Symfony\\Component\\CssSelector\\": ""
  4980. },
  4981. "exclude-from-classmap": [
  4982. "/Tests/"
  4983. ]
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Fabien Potencier",
  4992. "email": "fabien@symfony.com"
  4993. },
  4994. {
  4995. "name": "Jean-François Simon",
  4996. "email": "jeanfrancois.simon@sensiolabs.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Converts CSS selectors to XPath expressions",
  5004. "homepage": "https://symfony.com",
  5005. "support": {
  5006. "source": "https://github.com/symfony/css-selector/tree/v5.3.0-BETA1"
  5007. },
  5008. "funding": [
  5009. {
  5010. "url": "https://symfony.com/sponsor",
  5011. "type": "custom"
  5012. },
  5013. {
  5014. "url": "https://github.com/fabpot",
  5015. "type": "github"
  5016. },
  5017. {
  5018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5019. "type": "tidelift"
  5020. }
  5021. ],
  5022. "time": "2021-04-07T16:07:52+00:00"
  5023. },
  5024. {
  5025. "name": "symfony/deprecation-contracts",
  5026. "version": "v2.4.0",
  5027. "source": {
  5028. "type": "git",
  5029. "url": "https://github.com/symfony/deprecation-contracts.git",
  5030. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5031. },
  5032. "dist": {
  5033. "type": "zip",
  5034. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5035. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5036. "shasum": "",
  5037. "mirrors": [
  5038. {
  5039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5040. "preferred": true
  5041. }
  5042. ]
  5043. },
  5044. "require": {
  5045. "php": ">=7.1"
  5046. },
  5047. "type": "library",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-main": "2.4-dev"
  5051. },
  5052. "thanks": {
  5053. "name": "symfony/contracts",
  5054. "url": "https://github.com/symfony/contracts"
  5055. }
  5056. },
  5057. "autoload": {
  5058. "files": [
  5059. "function.php"
  5060. ]
  5061. },
  5062. "notification-url": "https://packagist.org/downloads/",
  5063. "license": [
  5064. "MIT"
  5065. ],
  5066. "authors": [
  5067. {
  5068. "name": "Nicolas Grekas",
  5069. "email": "p@tchwork.com"
  5070. },
  5071. {
  5072. "name": "Symfony Community",
  5073. "homepage": "https://symfony.com/contributors"
  5074. }
  5075. ],
  5076. "description": "A generic function and convention to trigger deprecation notices",
  5077. "homepage": "https://symfony.com",
  5078. "support": {
  5079. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5080. },
  5081. "funding": [
  5082. {
  5083. "url": "https://symfony.com/sponsor",
  5084. "type": "custom"
  5085. },
  5086. {
  5087. "url": "https://github.com/fabpot",
  5088. "type": "github"
  5089. },
  5090. {
  5091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5092. "type": "tidelift"
  5093. }
  5094. ],
  5095. "time": "2021-03-23T23:28:01+00:00"
  5096. },
  5097. {
  5098. "name": "symfony/error-handler",
  5099. "version": "v5.2.7",
  5100. "source": {
  5101. "type": "git",
  5102. "url": "https://github.com/symfony/error-handler.git",
  5103. "reference": "ea3ddbf67615e883ca7c33a4de61213789846782"
  5104. },
  5105. "dist": {
  5106. "type": "zip",
  5107. "url": "https://api.github.com/repos/symfony/error-handler/zipball/ea3ddbf67615e883ca7c33a4de61213789846782",
  5108. "reference": "ea3ddbf67615e883ca7c33a4de61213789846782",
  5109. "shasum": "",
  5110. "mirrors": [
  5111. {
  5112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5113. "preferred": true
  5114. }
  5115. ]
  5116. },
  5117. "require": {
  5118. "php": ">=7.2.5",
  5119. "psr/log": "^1.0",
  5120. "symfony/polyfill-php80": "^1.15",
  5121. "symfony/var-dumper": "^4.4|^5.0"
  5122. },
  5123. "require-dev": {
  5124. "symfony/deprecation-contracts": "^2.1",
  5125. "symfony/http-kernel": "^4.4|^5.0",
  5126. "symfony/serializer": "^4.4|^5.0"
  5127. },
  5128. "type": "library",
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Symfony\\Component\\ErrorHandler\\": ""
  5132. },
  5133. "exclude-from-classmap": [
  5134. "/Tests/"
  5135. ]
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Fabien Potencier",
  5144. "email": "fabien@symfony.com"
  5145. },
  5146. {
  5147. "name": "Symfony Community",
  5148. "homepage": "https://symfony.com/contributors"
  5149. }
  5150. ],
  5151. "description": "Provides tools to manage errors and ease debugging PHP code",
  5152. "homepage": "https://symfony.com",
  5153. "support": {
  5154. "source": "https://github.com/symfony/error-handler/tree/v5.2.7"
  5155. },
  5156. "funding": [
  5157. {
  5158. "url": "https://symfony.com/sponsor",
  5159. "type": "custom"
  5160. },
  5161. {
  5162. "url": "https://github.com/fabpot",
  5163. "type": "github"
  5164. },
  5165. {
  5166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5167. "type": "tidelift"
  5168. }
  5169. ],
  5170. "time": "2021-04-07T15:57:33+00:00"
  5171. },
  5172. {
  5173. "name": "symfony/event-dispatcher",
  5174. "version": "v5.2.4",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/symfony/event-dispatcher.git",
  5178. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  5183. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  5184. "shasum": "",
  5185. "mirrors": [
  5186. {
  5187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5188. "preferred": true
  5189. }
  5190. ]
  5191. },
  5192. "require": {
  5193. "php": ">=7.2.5",
  5194. "symfony/deprecation-contracts": "^2.1",
  5195. "symfony/event-dispatcher-contracts": "^2",
  5196. "symfony/polyfill-php80": "^1.15"
  5197. },
  5198. "conflict": {
  5199. "symfony/dependency-injection": "<4.4"
  5200. },
  5201. "provide": {
  5202. "psr/event-dispatcher-implementation": "1.0",
  5203. "symfony/event-dispatcher-implementation": "2.0"
  5204. },
  5205. "require-dev": {
  5206. "psr/log": "~1.0",
  5207. "symfony/config": "^4.4|^5.0",
  5208. "symfony/dependency-injection": "^4.4|^5.0",
  5209. "symfony/error-handler": "^4.4|^5.0",
  5210. "symfony/expression-language": "^4.4|^5.0",
  5211. "symfony/http-foundation": "^4.4|^5.0",
  5212. "symfony/service-contracts": "^1.1|^2",
  5213. "symfony/stopwatch": "^4.4|^5.0"
  5214. },
  5215. "suggest": {
  5216. "symfony/dependency-injection": "",
  5217. "symfony/http-kernel": ""
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "psr-4": {
  5222. "Symfony\\Component\\EventDispatcher\\": ""
  5223. },
  5224. "exclude-from-classmap": [
  5225. "/Tests/"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Fabien Potencier",
  5235. "email": "fabien@symfony.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5243. "homepage": "https://symfony.com",
  5244. "support": {
  5245. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  5246. },
  5247. "funding": [
  5248. {
  5249. "url": "https://symfony.com/sponsor",
  5250. "type": "custom"
  5251. },
  5252. {
  5253. "url": "https://github.com/fabpot",
  5254. "type": "github"
  5255. },
  5256. {
  5257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5258. "type": "tidelift"
  5259. }
  5260. ],
  5261. "time": "2021-02-18T17:12:37+00:00"
  5262. },
  5263. {
  5264. "name": "symfony/event-dispatcher-contracts",
  5265. "version": "v2.4.0",
  5266. "source": {
  5267. "type": "git",
  5268. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5269. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5270. },
  5271. "dist": {
  5272. "type": "zip",
  5273. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5274. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5275. "shasum": "",
  5276. "mirrors": [
  5277. {
  5278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5279. "preferred": true
  5280. }
  5281. ]
  5282. },
  5283. "require": {
  5284. "php": ">=7.2.5",
  5285. "psr/event-dispatcher": "^1"
  5286. },
  5287. "suggest": {
  5288. "symfony/event-dispatcher-implementation": ""
  5289. },
  5290. "type": "library",
  5291. "extra": {
  5292. "branch-alias": {
  5293. "dev-main": "2.4-dev"
  5294. },
  5295. "thanks": {
  5296. "name": "symfony/contracts",
  5297. "url": "https://github.com/symfony/contracts"
  5298. }
  5299. },
  5300. "autoload": {
  5301. "psr-4": {
  5302. "Symfony\\Contracts\\EventDispatcher\\": ""
  5303. }
  5304. },
  5305. "notification-url": "https://packagist.org/downloads/",
  5306. "license": [
  5307. "MIT"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "Nicolas Grekas",
  5312. "email": "p@tchwork.com"
  5313. },
  5314. {
  5315. "name": "Symfony Community",
  5316. "homepage": "https://symfony.com/contributors"
  5317. }
  5318. ],
  5319. "description": "Generic abstractions related to dispatching event",
  5320. "homepage": "https://symfony.com",
  5321. "keywords": [
  5322. "abstractions",
  5323. "contracts",
  5324. "decoupling",
  5325. "interfaces",
  5326. "interoperability",
  5327. "standards"
  5328. ],
  5329. "support": {
  5330. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5331. },
  5332. "funding": [
  5333. {
  5334. "url": "https://symfony.com/sponsor",
  5335. "type": "custom"
  5336. },
  5337. {
  5338. "url": "https://github.com/fabpot",
  5339. "type": "github"
  5340. },
  5341. {
  5342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5343. "type": "tidelift"
  5344. }
  5345. ],
  5346. "time": "2021-03-23T23:28:01+00:00"
  5347. },
  5348. {
  5349. "name": "symfony/finder",
  5350. "version": "v5.2.4",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://github.com/symfony/finder.git",
  5354. "reference": "0d639a0943822626290d169965804f79400e6a04"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  5359. "reference": "0d639a0943822626290d169965804f79400e6a04",
  5360. "shasum": "",
  5361. "mirrors": [
  5362. {
  5363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5364. "preferred": true
  5365. }
  5366. ]
  5367. },
  5368. "require": {
  5369. "php": ">=7.2.5"
  5370. },
  5371. "type": "library",
  5372. "autoload": {
  5373. "psr-4": {
  5374. "Symfony\\Component\\Finder\\": ""
  5375. },
  5376. "exclude-from-classmap": [
  5377. "/Tests/"
  5378. ]
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "MIT"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Fabien Potencier",
  5387. "email": "fabien@symfony.com"
  5388. },
  5389. {
  5390. "name": "Symfony Community",
  5391. "homepage": "https://symfony.com/contributors"
  5392. }
  5393. ],
  5394. "description": "Finds files and directories via an intuitive fluent interface",
  5395. "homepage": "https://symfony.com",
  5396. "support": {
  5397. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  5398. },
  5399. "funding": [
  5400. {
  5401. "url": "https://symfony.com/sponsor",
  5402. "type": "custom"
  5403. },
  5404. {
  5405. "url": "https://github.com/fabpot",
  5406. "type": "github"
  5407. },
  5408. {
  5409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5410. "type": "tidelift"
  5411. }
  5412. ],
  5413. "time": "2021-02-15T18:55:04+00:00"
  5414. },
  5415. {
  5416. "name": "symfony/http-client-contracts",
  5417. "version": "v2.4.0",
  5418. "source": {
  5419. "type": "git",
  5420. "url": "https://github.com/symfony/http-client-contracts.git",
  5421. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5422. },
  5423. "dist": {
  5424. "type": "zip",
  5425. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5426. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5427. "shasum": "",
  5428. "mirrors": [
  5429. {
  5430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5431. "preferred": true
  5432. }
  5433. ]
  5434. },
  5435. "require": {
  5436. "php": ">=7.2.5"
  5437. },
  5438. "suggest": {
  5439. "symfony/http-client-implementation": ""
  5440. },
  5441. "type": "library",
  5442. "extra": {
  5443. "branch-alias": {
  5444. "dev-main": "2.4-dev"
  5445. },
  5446. "thanks": {
  5447. "name": "symfony/contracts",
  5448. "url": "https://github.com/symfony/contracts"
  5449. }
  5450. },
  5451. "autoload": {
  5452. "psr-4": {
  5453. "Symfony\\Contracts\\HttpClient\\": ""
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "MIT"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Nicolas Grekas",
  5463. "email": "p@tchwork.com"
  5464. },
  5465. {
  5466. "name": "Symfony Community",
  5467. "homepage": "https://symfony.com/contributors"
  5468. }
  5469. ],
  5470. "description": "Generic abstractions related to HTTP clients",
  5471. "homepage": "https://symfony.com",
  5472. "keywords": [
  5473. "abstractions",
  5474. "contracts",
  5475. "decoupling",
  5476. "interfaces",
  5477. "interoperability",
  5478. "standards"
  5479. ],
  5480. "support": {
  5481. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5482. },
  5483. "funding": [
  5484. {
  5485. "url": "https://symfony.com/sponsor",
  5486. "type": "custom"
  5487. },
  5488. {
  5489. "url": "https://github.com/fabpot",
  5490. "type": "github"
  5491. },
  5492. {
  5493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5494. "type": "tidelift"
  5495. }
  5496. ],
  5497. "time": "2021-04-11T23:07:08+00:00"
  5498. },
  5499. {
  5500. "name": "symfony/http-foundation",
  5501. "version": "v5.2.7",
  5502. "source": {
  5503. "type": "git",
  5504. "url": "https://github.com/symfony/http-foundation.git",
  5505. "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f"
  5506. },
  5507. "dist": {
  5508. "type": "zip",
  5509. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f",
  5510. "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f",
  5511. "shasum": "",
  5512. "mirrors": [
  5513. {
  5514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5515. "preferred": true
  5516. }
  5517. ]
  5518. },
  5519. "require": {
  5520. "php": ">=7.2.5",
  5521. "symfony/deprecation-contracts": "^2.1",
  5522. "symfony/polyfill-mbstring": "~1.1",
  5523. "symfony/polyfill-php80": "^1.15"
  5524. },
  5525. "require-dev": {
  5526. "predis/predis": "~1.0",
  5527. "symfony/cache": "^4.4|^5.0",
  5528. "symfony/expression-language": "^4.4|^5.0",
  5529. "symfony/mime": "^4.4|^5.0"
  5530. },
  5531. "suggest": {
  5532. "symfony/mime": "To use the file extension guesser"
  5533. },
  5534. "type": "library",
  5535. "autoload": {
  5536. "psr-4": {
  5537. "Symfony\\Component\\HttpFoundation\\": ""
  5538. },
  5539. "exclude-from-classmap": [
  5540. "/Tests/"
  5541. ]
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "MIT"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Fabien Potencier",
  5550. "email": "fabien@symfony.com"
  5551. },
  5552. {
  5553. "name": "Symfony Community",
  5554. "homepage": "https://symfony.com/contributors"
  5555. }
  5556. ],
  5557. "description": "Defines an object-oriented layer for the HTTP specification",
  5558. "homepage": "https://symfony.com",
  5559. "support": {
  5560. "source": "https://github.com/symfony/http-foundation/tree/v5.2.7"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://symfony.com/sponsor",
  5565. "type": "custom"
  5566. },
  5567. {
  5568. "url": "https://github.com/fabpot",
  5569. "type": "github"
  5570. },
  5571. {
  5572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5573. "type": "tidelift"
  5574. }
  5575. ],
  5576. "time": "2021-05-01T13:46:24+00:00"
  5577. },
  5578. {
  5579. "name": "symfony/http-kernel",
  5580. "version": "v5.2.7",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/symfony/http-kernel.git",
  5584. "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1e9f6879f070f718e0055fbac232a56f67b8b6bd",
  5589. "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd",
  5590. "shasum": "",
  5591. "mirrors": [
  5592. {
  5593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5594. "preferred": true
  5595. }
  5596. ]
  5597. },
  5598. "require": {
  5599. "php": ">=7.2.5",
  5600. "psr/log": "~1.0",
  5601. "symfony/deprecation-contracts": "^2.1",
  5602. "symfony/error-handler": "^4.4|^5.0",
  5603. "symfony/event-dispatcher": "^5.0",
  5604. "symfony/http-client-contracts": "^1.1|^2",
  5605. "symfony/http-foundation": "^4.4|^5.0",
  5606. "symfony/polyfill-ctype": "^1.8",
  5607. "symfony/polyfill-php73": "^1.9",
  5608. "symfony/polyfill-php80": "^1.15"
  5609. },
  5610. "conflict": {
  5611. "symfony/browser-kit": "<4.4",
  5612. "symfony/cache": "<5.0",
  5613. "symfony/config": "<5.0",
  5614. "symfony/console": "<4.4",
  5615. "symfony/dependency-injection": "<5.1.8",
  5616. "symfony/doctrine-bridge": "<5.0",
  5617. "symfony/form": "<5.0",
  5618. "symfony/http-client": "<5.0",
  5619. "symfony/mailer": "<5.0",
  5620. "symfony/messenger": "<5.0",
  5621. "symfony/translation": "<5.0",
  5622. "symfony/twig-bridge": "<5.0",
  5623. "symfony/validator": "<5.0",
  5624. "twig/twig": "<2.13"
  5625. },
  5626. "provide": {
  5627. "psr/log-implementation": "1.0"
  5628. },
  5629. "require-dev": {
  5630. "psr/cache": "^1.0|^2.0|^3.0",
  5631. "symfony/browser-kit": "^4.4|^5.0",
  5632. "symfony/config": "^5.0",
  5633. "symfony/console": "^4.4|^5.0",
  5634. "symfony/css-selector": "^4.4|^5.0",
  5635. "symfony/dependency-injection": "^5.1.8",
  5636. "symfony/dom-crawler": "^4.4|^5.0",
  5637. "symfony/expression-language": "^4.4|^5.0",
  5638. "symfony/finder": "^4.4|^5.0",
  5639. "symfony/process": "^4.4|^5.0",
  5640. "symfony/routing": "^4.4|^5.0",
  5641. "symfony/stopwatch": "^4.4|^5.0",
  5642. "symfony/translation": "^4.4|^5.0",
  5643. "symfony/translation-contracts": "^1.1|^2",
  5644. "twig/twig": "^2.13|^3.0.4"
  5645. },
  5646. "suggest": {
  5647. "symfony/browser-kit": "",
  5648. "symfony/config": "",
  5649. "symfony/console": "",
  5650. "symfony/dependency-injection": ""
  5651. },
  5652. "type": "library",
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Symfony\\Component\\HttpKernel\\": ""
  5656. },
  5657. "exclude-from-classmap": [
  5658. "/Tests/"
  5659. ]
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Fabien Potencier",
  5668. "email": "fabien@symfony.com"
  5669. },
  5670. {
  5671. "name": "Symfony Community",
  5672. "homepage": "https://symfony.com/contributors"
  5673. }
  5674. ],
  5675. "description": "Provides a structured process for converting a Request into a Response",
  5676. "homepage": "https://symfony.com",
  5677. "support": {
  5678. "source": "https://github.com/symfony/http-kernel/tree/v5.2.7"
  5679. },
  5680. "funding": [
  5681. {
  5682. "url": "https://symfony.com/sponsor",
  5683. "type": "custom"
  5684. },
  5685. {
  5686. "url": "https://github.com/fabpot",
  5687. "type": "github"
  5688. },
  5689. {
  5690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5691. "type": "tidelift"
  5692. }
  5693. ],
  5694. "time": "2021-05-01T14:53:15+00:00"
  5695. },
  5696. {
  5697. "name": "symfony/mime",
  5698. "version": "v5.2.7",
  5699. "source": {
  5700. "type": "git",
  5701. "url": "https://github.com/symfony/mime.git",
  5702. "reference": "7af452bf51c46f18da00feb32e1ad36db9426515"
  5703. },
  5704. "dist": {
  5705. "type": "zip",
  5706. "url": "https://api.github.com/repos/symfony/mime/zipball/7af452bf51c46f18da00feb32e1ad36db9426515",
  5707. "reference": "7af452bf51c46f18da00feb32e1ad36db9426515",
  5708. "shasum": "",
  5709. "mirrors": [
  5710. {
  5711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5712. "preferred": true
  5713. }
  5714. ]
  5715. },
  5716. "require": {
  5717. "php": ">=7.2.5",
  5718. "symfony/deprecation-contracts": "^2.1",
  5719. "symfony/polyfill-intl-idn": "^1.10",
  5720. "symfony/polyfill-mbstring": "^1.0",
  5721. "symfony/polyfill-php80": "^1.15"
  5722. },
  5723. "conflict": {
  5724. "egulias/email-validator": "~3.0.0",
  5725. "phpdocumentor/reflection-docblock": "<3.2.2",
  5726. "phpdocumentor/type-resolver": "<1.4.0",
  5727. "symfony/mailer": "<4.4"
  5728. },
  5729. "require-dev": {
  5730. "egulias/email-validator": "^2.1.10|^3.1",
  5731. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5732. "symfony/dependency-injection": "^4.4|^5.0",
  5733. "symfony/property-access": "^4.4|^5.1",
  5734. "symfony/property-info": "^4.4|^5.1",
  5735. "symfony/serializer": "^5.2"
  5736. },
  5737. "type": "library",
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Symfony\\Component\\Mime\\": ""
  5741. },
  5742. "exclude-from-classmap": [
  5743. "/Tests/"
  5744. ]
  5745. },
  5746. "notification-url": "https://packagist.org/downloads/",
  5747. "license": [
  5748. "MIT"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "Fabien Potencier",
  5753. "email": "fabien@symfony.com"
  5754. },
  5755. {
  5756. "name": "Symfony Community",
  5757. "homepage": "https://symfony.com/contributors"
  5758. }
  5759. ],
  5760. "description": "Allows manipulating MIME messages",
  5761. "homepage": "https://symfony.com",
  5762. "keywords": [
  5763. "mime",
  5764. "mime-type"
  5765. ],
  5766. "support": {
  5767. "source": "https://github.com/symfony/mime/tree/v5.2.7"
  5768. },
  5769. "funding": [
  5770. {
  5771. "url": "https://symfony.com/sponsor",
  5772. "type": "custom"
  5773. },
  5774. {
  5775. "url": "https://github.com/fabpot",
  5776. "type": "github"
  5777. },
  5778. {
  5779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5780. "type": "tidelift"
  5781. }
  5782. ],
  5783. "time": "2021-04-29T20:47:09+00:00"
  5784. },
  5785. {
  5786. "name": "symfony/options-resolver",
  5787. "version": "v5.2.4",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://github.com/symfony/options-resolver.git",
  5791. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5796. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5797. "shasum": "",
  5798. "mirrors": [
  5799. {
  5800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5801. "preferred": true
  5802. }
  5803. ]
  5804. },
  5805. "require": {
  5806. "php": ">=7.2.5",
  5807. "symfony/deprecation-contracts": "^2.1",
  5808. "symfony/polyfill-php73": "~1.0",
  5809. "symfony/polyfill-php80": "^1.15"
  5810. },
  5811. "type": "library",
  5812. "autoload": {
  5813. "psr-4": {
  5814. "Symfony\\Component\\OptionsResolver\\": ""
  5815. },
  5816. "exclude-from-classmap": [
  5817. "/Tests/"
  5818. ]
  5819. },
  5820. "notification-url": "https://packagist.org/downloads/",
  5821. "license": [
  5822. "MIT"
  5823. ],
  5824. "authors": [
  5825. {
  5826. "name": "Fabien Potencier",
  5827. "email": "fabien@symfony.com"
  5828. },
  5829. {
  5830. "name": "Symfony Community",
  5831. "homepage": "https://symfony.com/contributors"
  5832. }
  5833. ],
  5834. "description": "Provides an improved replacement for the array_replace PHP function",
  5835. "homepage": "https://symfony.com",
  5836. "keywords": [
  5837. "config",
  5838. "configuration",
  5839. "options"
  5840. ],
  5841. "support": {
  5842. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5843. },
  5844. "funding": [
  5845. {
  5846. "url": "https://symfony.com/sponsor",
  5847. "type": "custom"
  5848. },
  5849. {
  5850. "url": "https://github.com/fabpot",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5855. "type": "tidelift"
  5856. }
  5857. ],
  5858. "time": "2021-01-27T12:56:27+00:00"
  5859. },
  5860. {
  5861. "name": "symfony/polyfill-ctype",
  5862. "version": "v1.22.1",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/symfony/polyfill-ctype.git",
  5866. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5871. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5872. "shasum": "",
  5873. "mirrors": [
  5874. {
  5875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5876. "preferred": true
  5877. }
  5878. ]
  5879. },
  5880. "require": {
  5881. "php": ">=7.1"
  5882. },
  5883. "suggest": {
  5884. "ext-ctype": "For best performance"
  5885. },
  5886. "type": "library",
  5887. "extra": {
  5888. "branch-alias": {
  5889. "dev-main": "1.22-dev"
  5890. },
  5891. "thanks": {
  5892. "name": "symfony/polyfill",
  5893. "url": "https://github.com/symfony/polyfill"
  5894. }
  5895. },
  5896. "autoload": {
  5897. "psr-4": {
  5898. "Symfony\\Polyfill\\Ctype\\": ""
  5899. },
  5900. "files": [
  5901. "bootstrap.php"
  5902. ]
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Gert de Pagter",
  5911. "email": "BackEndTea@gmail.com"
  5912. },
  5913. {
  5914. "name": "Symfony Community",
  5915. "homepage": "https://symfony.com/contributors"
  5916. }
  5917. ],
  5918. "description": "Symfony polyfill for ctype functions",
  5919. "homepage": "https://symfony.com",
  5920. "keywords": [
  5921. "compatibility",
  5922. "ctype",
  5923. "polyfill",
  5924. "portable"
  5925. ],
  5926. "support": {
  5927. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  5928. },
  5929. "funding": [
  5930. {
  5931. "url": "https://symfony.com/sponsor",
  5932. "type": "custom"
  5933. },
  5934. {
  5935. "url": "https://github.com/fabpot",
  5936. "type": "github"
  5937. },
  5938. {
  5939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5940. "type": "tidelift"
  5941. }
  5942. ],
  5943. "time": "2021-01-07T16:49:33+00:00"
  5944. },
  5945. {
  5946. "name": "symfony/polyfill-iconv",
  5947. "version": "v1.22.1",
  5948. "source": {
  5949. "type": "git",
  5950. "url": "https://github.com/symfony/polyfill-iconv.git",
  5951. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  5952. },
  5953. "dist": {
  5954. "type": "zip",
  5955. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5956. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5957. "shasum": "",
  5958. "mirrors": [
  5959. {
  5960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5961. "preferred": true
  5962. }
  5963. ]
  5964. },
  5965. "require": {
  5966. "php": ">=7.1"
  5967. },
  5968. "suggest": {
  5969. "ext-iconv": "For best performance"
  5970. },
  5971. "type": "library",
  5972. "extra": {
  5973. "branch-alias": {
  5974. "dev-main": "1.22-dev"
  5975. },
  5976. "thanks": {
  5977. "name": "symfony/polyfill",
  5978. "url": "https://github.com/symfony/polyfill"
  5979. }
  5980. },
  5981. "autoload": {
  5982. "psr-4": {
  5983. "Symfony\\Polyfill\\Iconv\\": ""
  5984. },
  5985. "files": [
  5986. "bootstrap.php"
  5987. ]
  5988. },
  5989. "notification-url": "https://packagist.org/downloads/",
  5990. "license": [
  5991. "MIT"
  5992. ],
  5993. "authors": [
  5994. {
  5995. "name": "Nicolas Grekas",
  5996. "email": "p@tchwork.com"
  5997. },
  5998. {
  5999. "name": "Symfony Community",
  6000. "homepage": "https://symfony.com/contributors"
  6001. }
  6002. ],
  6003. "description": "Symfony polyfill for the Iconv extension",
  6004. "homepage": "https://symfony.com",
  6005. "keywords": [
  6006. "compatibility",
  6007. "iconv",
  6008. "polyfill",
  6009. "portable",
  6010. "shim"
  6011. ],
  6012. "support": {
  6013. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  6014. },
  6015. "funding": [
  6016. {
  6017. "url": "https://symfony.com/sponsor",
  6018. "type": "custom"
  6019. },
  6020. {
  6021. "url": "https://github.com/fabpot",
  6022. "type": "github"
  6023. },
  6024. {
  6025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6026. "type": "tidelift"
  6027. }
  6028. ],
  6029. "time": "2021-01-22T09:19:47+00:00"
  6030. },
  6031. {
  6032. "name": "symfony/polyfill-intl-grapheme",
  6033. "version": "v1.22.1",
  6034. "source": {
  6035. "type": "git",
  6036. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6037. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  6038. },
  6039. "dist": {
  6040. "type": "zip",
  6041. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6042. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6043. "shasum": "",
  6044. "mirrors": [
  6045. {
  6046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6047. "preferred": true
  6048. }
  6049. ]
  6050. },
  6051. "require": {
  6052. "php": ">=7.1"
  6053. },
  6054. "suggest": {
  6055. "ext-intl": "For best performance"
  6056. },
  6057. "type": "library",
  6058. "extra": {
  6059. "branch-alias": {
  6060. "dev-main": "1.22-dev"
  6061. },
  6062. "thanks": {
  6063. "name": "symfony/polyfill",
  6064. "url": "https://github.com/symfony/polyfill"
  6065. }
  6066. },
  6067. "autoload": {
  6068. "psr-4": {
  6069. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6070. },
  6071. "files": [
  6072. "bootstrap.php"
  6073. ]
  6074. },
  6075. "notification-url": "https://packagist.org/downloads/",
  6076. "license": [
  6077. "MIT"
  6078. ],
  6079. "authors": [
  6080. {
  6081. "name": "Nicolas Grekas",
  6082. "email": "p@tchwork.com"
  6083. },
  6084. {
  6085. "name": "Symfony Community",
  6086. "homepage": "https://symfony.com/contributors"
  6087. }
  6088. ],
  6089. "description": "Symfony polyfill for intl's grapheme_* functions",
  6090. "homepage": "https://symfony.com",
  6091. "keywords": [
  6092. "compatibility",
  6093. "grapheme",
  6094. "intl",
  6095. "polyfill",
  6096. "portable",
  6097. "shim"
  6098. ],
  6099. "support": {
  6100. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  6101. },
  6102. "funding": [
  6103. {
  6104. "url": "https://symfony.com/sponsor",
  6105. "type": "custom"
  6106. },
  6107. {
  6108. "url": "https://github.com/fabpot",
  6109. "type": "github"
  6110. },
  6111. {
  6112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6113. "type": "tidelift"
  6114. }
  6115. ],
  6116. "time": "2021-01-22T09:19:47+00:00"
  6117. },
  6118. {
  6119. "name": "symfony/polyfill-intl-idn",
  6120. "version": "v1.22.1",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6124. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6129. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6130. "shasum": "",
  6131. "mirrors": [
  6132. {
  6133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6134. "preferred": true
  6135. }
  6136. ]
  6137. },
  6138. "require": {
  6139. "php": ">=7.1",
  6140. "symfony/polyfill-intl-normalizer": "^1.10",
  6141. "symfony/polyfill-php72": "^1.10"
  6142. },
  6143. "suggest": {
  6144. "ext-intl": "For best performance"
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-main": "1.22-dev"
  6150. },
  6151. "thanks": {
  6152. "name": "symfony/polyfill",
  6153. "url": "https://github.com/symfony/polyfill"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "psr-4": {
  6158. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6159. },
  6160. "files": [
  6161. "bootstrap.php"
  6162. ]
  6163. },
  6164. "notification-url": "https://packagist.org/downloads/",
  6165. "license": [
  6166. "MIT"
  6167. ],
  6168. "authors": [
  6169. {
  6170. "name": "Laurent Bassin",
  6171. "email": "laurent@bassin.info"
  6172. },
  6173. {
  6174. "name": "Trevor Rowbotham",
  6175. "email": "trevor.rowbotham@pm.me"
  6176. },
  6177. {
  6178. "name": "Symfony Community",
  6179. "homepage": "https://symfony.com/contributors"
  6180. }
  6181. ],
  6182. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6183. "homepage": "https://symfony.com",
  6184. "keywords": [
  6185. "compatibility",
  6186. "idn",
  6187. "intl",
  6188. "polyfill",
  6189. "portable",
  6190. "shim"
  6191. ],
  6192. "support": {
  6193. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6194. },
  6195. "funding": [
  6196. {
  6197. "url": "https://symfony.com/sponsor",
  6198. "type": "custom"
  6199. },
  6200. {
  6201. "url": "https://github.com/fabpot",
  6202. "type": "github"
  6203. },
  6204. {
  6205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6206. "type": "tidelift"
  6207. }
  6208. ],
  6209. "time": "2021-01-22T09:19:47+00:00"
  6210. },
  6211. {
  6212. "name": "symfony/polyfill-intl-normalizer",
  6213. "version": "v1.22.1",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6217. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6222. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6223. "shasum": "",
  6224. "mirrors": [
  6225. {
  6226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6227. "preferred": true
  6228. }
  6229. ]
  6230. },
  6231. "require": {
  6232. "php": ">=7.1"
  6233. },
  6234. "suggest": {
  6235. "ext-intl": "For best performance"
  6236. },
  6237. "type": "library",
  6238. "extra": {
  6239. "branch-alias": {
  6240. "dev-main": "1.22-dev"
  6241. },
  6242. "thanks": {
  6243. "name": "symfony/polyfill",
  6244. "url": "https://github.com/symfony/polyfill"
  6245. }
  6246. },
  6247. "autoload": {
  6248. "psr-4": {
  6249. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6250. },
  6251. "files": [
  6252. "bootstrap.php"
  6253. ],
  6254. "classmap": [
  6255. "Resources/stubs"
  6256. ]
  6257. },
  6258. "notification-url": "https://packagist.org/downloads/",
  6259. "license": [
  6260. "MIT"
  6261. ],
  6262. "authors": [
  6263. {
  6264. "name": "Nicolas Grekas",
  6265. "email": "p@tchwork.com"
  6266. },
  6267. {
  6268. "name": "Symfony Community",
  6269. "homepage": "https://symfony.com/contributors"
  6270. }
  6271. ],
  6272. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6273. "homepage": "https://symfony.com",
  6274. "keywords": [
  6275. "compatibility",
  6276. "intl",
  6277. "normalizer",
  6278. "polyfill",
  6279. "portable",
  6280. "shim"
  6281. ],
  6282. "support": {
  6283. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6284. },
  6285. "funding": [
  6286. {
  6287. "url": "https://symfony.com/sponsor",
  6288. "type": "custom"
  6289. },
  6290. {
  6291. "url": "https://github.com/fabpot",
  6292. "type": "github"
  6293. },
  6294. {
  6295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6296. "type": "tidelift"
  6297. }
  6298. ],
  6299. "time": "2021-01-22T09:19:47+00:00"
  6300. },
  6301. {
  6302. "name": "symfony/polyfill-mbstring",
  6303. "version": "v1.22.1",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6307. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6312. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6313. "shasum": "",
  6314. "mirrors": [
  6315. {
  6316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6317. "preferred": true
  6318. }
  6319. ]
  6320. },
  6321. "require": {
  6322. "php": ">=7.1"
  6323. },
  6324. "suggest": {
  6325. "ext-mbstring": "For best performance"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "branch-alias": {
  6330. "dev-main": "1.22-dev"
  6331. },
  6332. "thanks": {
  6333. "name": "symfony/polyfill",
  6334. "url": "https://github.com/symfony/polyfill"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "psr-4": {
  6339. "Symfony\\Polyfill\\Mbstring\\": ""
  6340. },
  6341. "files": [
  6342. "bootstrap.php"
  6343. ]
  6344. },
  6345. "notification-url": "https://packagist.org/downloads/",
  6346. "license": [
  6347. "MIT"
  6348. ],
  6349. "authors": [
  6350. {
  6351. "name": "Nicolas Grekas",
  6352. "email": "p@tchwork.com"
  6353. },
  6354. {
  6355. "name": "Symfony Community",
  6356. "homepage": "https://symfony.com/contributors"
  6357. }
  6358. ],
  6359. "description": "Symfony polyfill for the Mbstring extension",
  6360. "homepage": "https://symfony.com",
  6361. "keywords": [
  6362. "compatibility",
  6363. "mbstring",
  6364. "polyfill",
  6365. "portable",
  6366. "shim"
  6367. ],
  6368. "support": {
  6369. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6370. },
  6371. "funding": [
  6372. {
  6373. "url": "https://symfony.com/sponsor",
  6374. "type": "custom"
  6375. },
  6376. {
  6377. "url": "https://github.com/fabpot",
  6378. "type": "github"
  6379. },
  6380. {
  6381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6382. "type": "tidelift"
  6383. }
  6384. ],
  6385. "time": "2021-01-22T09:19:47+00:00"
  6386. },
  6387. {
  6388. "name": "symfony/polyfill-php72",
  6389. "version": "v1.22.1",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://github.com/symfony/polyfill-php72.git",
  6393. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6398. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6399. "shasum": "",
  6400. "mirrors": [
  6401. {
  6402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6403. "preferred": true
  6404. }
  6405. ]
  6406. },
  6407. "require": {
  6408. "php": ">=7.1"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-main": "1.22-dev"
  6414. },
  6415. "thanks": {
  6416. "name": "symfony/polyfill",
  6417. "url": "https://github.com/symfony/polyfill"
  6418. }
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Polyfill\\Php72\\": ""
  6423. },
  6424. "files": [
  6425. "bootstrap.php"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Nicolas Grekas",
  6435. "email": "p@tchwork.com"
  6436. },
  6437. {
  6438. "name": "Symfony Community",
  6439. "homepage": "https://symfony.com/contributors"
  6440. }
  6441. ],
  6442. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6443. "homepage": "https://symfony.com",
  6444. "keywords": [
  6445. "compatibility",
  6446. "polyfill",
  6447. "portable",
  6448. "shim"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2021-01-07T16:49:33+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/polyfill-php73",
  6471. "version": "v1.22.1",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/polyfill-php73.git",
  6475. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6480. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6481. "shasum": "",
  6482. "mirrors": [
  6483. {
  6484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6485. "preferred": true
  6486. }
  6487. ]
  6488. },
  6489. "require": {
  6490. "php": ">=7.1"
  6491. },
  6492. "type": "library",
  6493. "extra": {
  6494. "branch-alias": {
  6495. "dev-main": "1.22-dev"
  6496. },
  6497. "thanks": {
  6498. "name": "symfony/polyfill",
  6499. "url": "https://github.com/symfony/polyfill"
  6500. }
  6501. },
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Symfony\\Polyfill\\Php73\\": ""
  6505. },
  6506. "files": [
  6507. "bootstrap.php"
  6508. ],
  6509. "classmap": [
  6510. "Resources/stubs"
  6511. ]
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Nicolas Grekas",
  6520. "email": "p@tchwork.com"
  6521. },
  6522. {
  6523. "name": "Symfony Community",
  6524. "homepage": "https://symfony.com/contributors"
  6525. }
  6526. ],
  6527. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6528. "homepage": "https://symfony.com",
  6529. "keywords": [
  6530. "compatibility",
  6531. "polyfill",
  6532. "portable",
  6533. "shim"
  6534. ],
  6535. "support": {
  6536. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://symfony.com/sponsor",
  6541. "type": "custom"
  6542. },
  6543. {
  6544. "url": "https://github.com/fabpot",
  6545. "type": "github"
  6546. },
  6547. {
  6548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6549. "type": "tidelift"
  6550. }
  6551. ],
  6552. "time": "2021-01-07T16:49:33+00:00"
  6553. },
  6554. {
  6555. "name": "symfony/polyfill-php80",
  6556. "version": "v1.22.1",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/symfony/polyfill-php80.git",
  6560. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6565. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6566. "shasum": "",
  6567. "mirrors": [
  6568. {
  6569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6570. "preferred": true
  6571. }
  6572. ]
  6573. },
  6574. "require": {
  6575. "php": ">=7.1"
  6576. },
  6577. "type": "library",
  6578. "extra": {
  6579. "branch-alias": {
  6580. "dev-main": "1.22-dev"
  6581. },
  6582. "thanks": {
  6583. "name": "symfony/polyfill",
  6584. "url": "https://github.com/symfony/polyfill"
  6585. }
  6586. },
  6587. "autoload": {
  6588. "psr-4": {
  6589. "Symfony\\Polyfill\\Php80\\": ""
  6590. },
  6591. "files": [
  6592. "bootstrap.php"
  6593. ],
  6594. "classmap": [
  6595. "Resources/stubs"
  6596. ]
  6597. },
  6598. "notification-url": "https://packagist.org/downloads/",
  6599. "license": [
  6600. "MIT"
  6601. ],
  6602. "authors": [
  6603. {
  6604. "name": "Ion Bazan",
  6605. "email": "ion.bazan@gmail.com"
  6606. },
  6607. {
  6608. "name": "Nicolas Grekas",
  6609. "email": "p@tchwork.com"
  6610. },
  6611. {
  6612. "name": "Symfony Community",
  6613. "homepage": "https://symfony.com/contributors"
  6614. }
  6615. ],
  6616. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6617. "homepage": "https://symfony.com",
  6618. "keywords": [
  6619. "compatibility",
  6620. "polyfill",
  6621. "portable",
  6622. "shim"
  6623. ],
  6624. "support": {
  6625. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6626. },
  6627. "funding": [
  6628. {
  6629. "url": "https://symfony.com/sponsor",
  6630. "type": "custom"
  6631. },
  6632. {
  6633. "url": "https://github.com/fabpot",
  6634. "type": "github"
  6635. },
  6636. {
  6637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6638. "type": "tidelift"
  6639. }
  6640. ],
  6641. "time": "2021-01-07T16:49:33+00:00"
  6642. },
  6643. {
  6644. "name": "symfony/process",
  6645. "version": "v5.2.7",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/symfony/process.git",
  6649. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/symfony/process/zipball/98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6654. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6655. "shasum": "",
  6656. "mirrors": [
  6657. {
  6658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6659. "preferred": true
  6660. }
  6661. ]
  6662. },
  6663. "require": {
  6664. "php": ">=7.2.5",
  6665. "symfony/polyfill-php80": "^1.15"
  6666. },
  6667. "type": "library",
  6668. "autoload": {
  6669. "psr-4": {
  6670. "Symfony\\Component\\Process\\": ""
  6671. },
  6672. "exclude-from-classmap": [
  6673. "/Tests/"
  6674. ]
  6675. },
  6676. "notification-url": "https://packagist.org/downloads/",
  6677. "license": [
  6678. "MIT"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Fabien Potencier",
  6683. "email": "fabien@symfony.com"
  6684. },
  6685. {
  6686. "name": "Symfony Community",
  6687. "homepage": "https://symfony.com/contributors"
  6688. }
  6689. ],
  6690. "description": "Executes commands in sub-processes",
  6691. "homepage": "https://symfony.com",
  6692. "support": {
  6693. "source": "https://github.com/symfony/process/tree/v5.3.0-BETA1"
  6694. },
  6695. "funding": [
  6696. {
  6697. "url": "https://symfony.com/sponsor",
  6698. "type": "custom"
  6699. },
  6700. {
  6701. "url": "https://github.com/fabpot",
  6702. "type": "github"
  6703. },
  6704. {
  6705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6706. "type": "tidelift"
  6707. }
  6708. ],
  6709. "time": "2021-04-08T10:27:02+00:00"
  6710. },
  6711. {
  6712. "name": "symfony/property-access",
  6713. "version": "v5.2.4",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://github.com/symfony/property-access.git",
  6717. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6722. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6723. "shasum": "",
  6724. "mirrors": [
  6725. {
  6726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6727. "preferred": true
  6728. }
  6729. ]
  6730. },
  6731. "require": {
  6732. "php": ">=7.2.5",
  6733. "symfony/deprecation-contracts": "^2.1",
  6734. "symfony/polyfill-php80": "^1.15",
  6735. "symfony/property-info": "^5.2"
  6736. },
  6737. "require-dev": {
  6738. "symfony/cache": "^4.4|^5.0"
  6739. },
  6740. "suggest": {
  6741. "psr/cache-implementation": "To cache access methods."
  6742. },
  6743. "type": "library",
  6744. "autoload": {
  6745. "psr-4": {
  6746. "Symfony\\Component\\PropertyAccess\\": ""
  6747. },
  6748. "exclude-from-classmap": [
  6749. "/Tests/"
  6750. ]
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "MIT"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Fabien Potencier",
  6759. "email": "fabien@symfony.com"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "https://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6767. "homepage": "https://symfony.com",
  6768. "keywords": [
  6769. "access",
  6770. "array",
  6771. "extraction",
  6772. "index",
  6773. "injection",
  6774. "object",
  6775. "property",
  6776. "property path",
  6777. "reflection"
  6778. ],
  6779. "support": {
  6780. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6781. },
  6782. "funding": [
  6783. {
  6784. "url": "https://symfony.com/sponsor",
  6785. "type": "custom"
  6786. },
  6787. {
  6788. "url": "https://github.com/fabpot",
  6789. "type": "github"
  6790. },
  6791. {
  6792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6793. "type": "tidelift"
  6794. }
  6795. ],
  6796. "time": "2021-01-27T10:15:41+00:00"
  6797. },
  6798. {
  6799. "name": "symfony/property-info",
  6800. "version": "v5.2.7",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://github.com/symfony/property-info.git",
  6804. "reference": "f5850c8d4d987fd1990e2cbdf29f48c663c433e7"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://api.github.com/repos/symfony/property-info/zipball/f5850c8d4d987fd1990e2cbdf29f48c663c433e7",
  6809. "reference": "f5850c8d4d987fd1990e2cbdf29f48c663c433e7",
  6810. "shasum": "",
  6811. "mirrors": [
  6812. {
  6813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6814. "preferred": true
  6815. }
  6816. ]
  6817. },
  6818. "require": {
  6819. "php": ">=7.2.5",
  6820. "symfony/deprecation-contracts": "^2.1",
  6821. "symfony/polyfill-php80": "^1.15",
  6822. "symfony/string": "^5.1"
  6823. },
  6824. "conflict": {
  6825. "phpdocumentor/reflection-docblock": "<3.2.2",
  6826. "phpdocumentor/type-resolver": "<1.4.0",
  6827. "symfony/dependency-injection": "<4.4"
  6828. },
  6829. "require-dev": {
  6830. "doctrine/annotations": "^1.10.4",
  6831. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6832. "symfony/cache": "^4.4|^5.0",
  6833. "symfony/dependency-injection": "^4.4|^5.0",
  6834. "symfony/serializer": "^4.4|^5.0"
  6835. },
  6836. "suggest": {
  6837. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6838. "psr/cache-implementation": "To cache results",
  6839. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6840. "symfony/serializer": "To use Serializer metadata"
  6841. },
  6842. "type": "library",
  6843. "autoload": {
  6844. "psr-4": {
  6845. "Symfony\\Component\\PropertyInfo\\": ""
  6846. },
  6847. "exclude-from-classmap": [
  6848. "/Tests/"
  6849. ]
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Kévin Dunglas",
  6858. "email": "dunglas@gmail.com"
  6859. },
  6860. {
  6861. "name": "Symfony Community",
  6862. "homepage": "https://symfony.com/contributors"
  6863. }
  6864. ],
  6865. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6866. "homepage": "https://symfony.com",
  6867. "keywords": [
  6868. "doctrine",
  6869. "phpdoc",
  6870. "property",
  6871. "symfony",
  6872. "type",
  6873. "validator"
  6874. ],
  6875. "support": {
  6876. "source": "https://github.com/symfony/property-info/tree/v5.2.7"
  6877. },
  6878. "funding": [
  6879. {
  6880. "url": "https://symfony.com/sponsor",
  6881. "type": "custom"
  6882. },
  6883. {
  6884. "url": "https://github.com/fabpot",
  6885. "type": "github"
  6886. },
  6887. {
  6888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6889. "type": "tidelift"
  6890. }
  6891. ],
  6892. "time": "2021-04-16T17:25:34+00:00"
  6893. },
  6894. {
  6895. "name": "symfony/routing",
  6896. "version": "v5.2.7",
  6897. "source": {
  6898. "type": "git",
  6899. "url": "https://github.com/symfony/routing.git",
  6900. "reference": "3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c"
  6901. },
  6902. "dist": {
  6903. "type": "zip",
  6904. "url": "https://api.github.com/repos/symfony/routing/zipball/3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c",
  6905. "reference": "3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c",
  6906. "shasum": "",
  6907. "mirrors": [
  6908. {
  6909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6910. "preferred": true
  6911. }
  6912. ]
  6913. },
  6914. "require": {
  6915. "php": ">=7.2.5",
  6916. "symfony/deprecation-contracts": "^2.1",
  6917. "symfony/polyfill-php80": "^1.15"
  6918. },
  6919. "conflict": {
  6920. "symfony/config": "<5.0",
  6921. "symfony/dependency-injection": "<4.4",
  6922. "symfony/yaml": "<4.4"
  6923. },
  6924. "require-dev": {
  6925. "doctrine/annotations": "^1.10.4",
  6926. "psr/log": "~1.0",
  6927. "symfony/config": "^5.0",
  6928. "symfony/dependency-injection": "^4.4|^5.0",
  6929. "symfony/expression-language": "^4.4|^5.0",
  6930. "symfony/http-foundation": "^4.4|^5.0",
  6931. "symfony/yaml": "^4.4|^5.0"
  6932. },
  6933. "suggest": {
  6934. "symfony/config": "For using the all-in-one router or any loader",
  6935. "symfony/expression-language": "For using expression matching",
  6936. "symfony/http-foundation": "For using a Symfony Request object",
  6937. "symfony/yaml": "For using the YAML loader"
  6938. },
  6939. "type": "library",
  6940. "autoload": {
  6941. "psr-4": {
  6942. "Symfony\\Component\\Routing\\": ""
  6943. },
  6944. "exclude-from-classmap": [
  6945. "/Tests/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "MIT"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Fabien Potencier",
  6955. "email": "fabien@symfony.com"
  6956. },
  6957. {
  6958. "name": "Symfony Community",
  6959. "homepage": "https://symfony.com/contributors"
  6960. }
  6961. ],
  6962. "description": "Maps an HTTP request to a set of configuration variables",
  6963. "homepage": "https://symfony.com",
  6964. "keywords": [
  6965. "router",
  6966. "routing",
  6967. "uri",
  6968. "url"
  6969. ],
  6970. "support": {
  6971. "source": "https://github.com/symfony/routing/tree/v5.2.7"
  6972. },
  6973. "funding": [
  6974. {
  6975. "url": "https://symfony.com/sponsor",
  6976. "type": "custom"
  6977. },
  6978. {
  6979. "url": "https://github.com/fabpot",
  6980. "type": "github"
  6981. },
  6982. {
  6983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6984. "type": "tidelift"
  6985. }
  6986. ],
  6987. "time": "2021-04-11T22:55:21+00:00"
  6988. },
  6989. {
  6990. "name": "symfony/service-contracts",
  6991. "version": "v2.4.0",
  6992. "source": {
  6993. "type": "git",
  6994. "url": "https://github.com/symfony/service-contracts.git",
  6995. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6996. },
  6997. "dist": {
  6998. "type": "zip",
  6999. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7000. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7001. "shasum": "",
  7002. "mirrors": [
  7003. {
  7004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7005. "preferred": true
  7006. }
  7007. ]
  7008. },
  7009. "require": {
  7010. "php": ">=7.2.5",
  7011. "psr/container": "^1.1"
  7012. },
  7013. "suggest": {
  7014. "symfony/service-implementation": ""
  7015. },
  7016. "type": "library",
  7017. "extra": {
  7018. "branch-alias": {
  7019. "dev-main": "2.4-dev"
  7020. },
  7021. "thanks": {
  7022. "name": "symfony/contracts",
  7023. "url": "https://github.com/symfony/contracts"
  7024. }
  7025. },
  7026. "autoload": {
  7027. "psr-4": {
  7028. "Symfony\\Contracts\\Service\\": ""
  7029. }
  7030. },
  7031. "notification-url": "https://packagist.org/downloads/",
  7032. "license": [
  7033. "MIT"
  7034. ],
  7035. "authors": [
  7036. {
  7037. "name": "Nicolas Grekas",
  7038. "email": "p@tchwork.com"
  7039. },
  7040. {
  7041. "name": "Symfony Community",
  7042. "homepage": "https://symfony.com/contributors"
  7043. }
  7044. ],
  7045. "description": "Generic abstractions related to writing services",
  7046. "homepage": "https://symfony.com",
  7047. "keywords": [
  7048. "abstractions",
  7049. "contracts",
  7050. "decoupling",
  7051. "interfaces",
  7052. "interoperability",
  7053. "standards"
  7054. ],
  7055. "support": {
  7056. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7057. },
  7058. "funding": [
  7059. {
  7060. "url": "https://symfony.com/sponsor",
  7061. "type": "custom"
  7062. },
  7063. {
  7064. "url": "https://github.com/fabpot",
  7065. "type": "github"
  7066. },
  7067. {
  7068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7069. "type": "tidelift"
  7070. }
  7071. ],
  7072. "time": "2021-04-01T10:43:52+00:00"
  7073. },
  7074. {
  7075. "name": "symfony/string",
  7076. "version": "v5.2.6",
  7077. "source": {
  7078. "type": "git",
  7079. "url": "https://github.com/symfony/string.git",
  7080. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
  7081. },
  7082. "dist": {
  7083. "type": "zip",
  7084. "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7085. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7086. "shasum": "",
  7087. "mirrors": [
  7088. {
  7089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7090. "preferred": true
  7091. }
  7092. ]
  7093. },
  7094. "require": {
  7095. "php": ">=7.2.5",
  7096. "symfony/polyfill-ctype": "~1.8",
  7097. "symfony/polyfill-intl-grapheme": "~1.0",
  7098. "symfony/polyfill-intl-normalizer": "~1.0",
  7099. "symfony/polyfill-mbstring": "~1.0",
  7100. "symfony/polyfill-php80": "~1.15"
  7101. },
  7102. "require-dev": {
  7103. "symfony/error-handler": "^4.4|^5.0",
  7104. "symfony/http-client": "^4.4|^5.0",
  7105. "symfony/translation-contracts": "^1.1|^2",
  7106. "symfony/var-exporter": "^4.4|^5.0"
  7107. },
  7108. "type": "library",
  7109. "autoload": {
  7110. "psr-4": {
  7111. "Symfony\\Component\\String\\": ""
  7112. },
  7113. "files": [
  7114. "Resources/functions.php"
  7115. ],
  7116. "exclude-from-classmap": [
  7117. "/Tests/"
  7118. ]
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Nicolas Grekas",
  7127. "email": "p@tchwork.com"
  7128. },
  7129. {
  7130. "name": "Symfony Community",
  7131. "homepage": "https://symfony.com/contributors"
  7132. }
  7133. ],
  7134. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7135. "homepage": "https://symfony.com",
  7136. "keywords": [
  7137. "grapheme",
  7138. "i18n",
  7139. "string",
  7140. "unicode",
  7141. "utf-8",
  7142. "utf8"
  7143. ],
  7144. "support": {
  7145. "source": "https://github.com/symfony/string/tree/v5.2.6"
  7146. },
  7147. "funding": [
  7148. {
  7149. "url": "https://symfony.com/sponsor",
  7150. "type": "custom"
  7151. },
  7152. {
  7153. "url": "https://github.com/fabpot",
  7154. "type": "github"
  7155. },
  7156. {
  7157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7158. "type": "tidelift"
  7159. }
  7160. ],
  7161. "time": "2021-03-17T17:12:15+00:00"
  7162. },
  7163. {
  7164. "name": "symfony/translation",
  7165. "version": "v5.2.7",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/symfony/translation.git",
  7169. "reference": "e37ece5242564bceea54d709eafc948377ec9749"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/symfony/translation/zipball/e37ece5242564bceea54d709eafc948377ec9749",
  7174. "reference": "e37ece5242564bceea54d709eafc948377ec9749",
  7175. "shasum": "",
  7176. "mirrors": [
  7177. {
  7178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7179. "preferred": true
  7180. }
  7181. ]
  7182. },
  7183. "require": {
  7184. "php": ">=7.2.5",
  7185. "symfony/polyfill-mbstring": "~1.0",
  7186. "symfony/polyfill-php80": "^1.15",
  7187. "symfony/translation-contracts": "^2.3"
  7188. },
  7189. "conflict": {
  7190. "symfony/config": "<4.4",
  7191. "symfony/dependency-injection": "<5.0",
  7192. "symfony/http-kernel": "<5.0",
  7193. "symfony/twig-bundle": "<5.0",
  7194. "symfony/yaml": "<4.4"
  7195. },
  7196. "provide": {
  7197. "symfony/translation-implementation": "2.3"
  7198. },
  7199. "require-dev": {
  7200. "psr/log": "~1.0",
  7201. "symfony/config": "^4.4|^5.0",
  7202. "symfony/console": "^4.4|^5.0",
  7203. "symfony/dependency-injection": "^5.0",
  7204. "symfony/finder": "^4.4|^5.0",
  7205. "symfony/http-kernel": "^5.0",
  7206. "symfony/intl": "^4.4|^5.0",
  7207. "symfony/service-contracts": "^1.1.2|^2",
  7208. "symfony/yaml": "^4.4|^5.0"
  7209. },
  7210. "suggest": {
  7211. "psr/log-implementation": "To use logging capability in translator",
  7212. "symfony/config": "",
  7213. "symfony/yaml": ""
  7214. },
  7215. "type": "library",
  7216. "autoload": {
  7217. "files": [
  7218. "Resources/functions.php"
  7219. ],
  7220. "psr-4": {
  7221. "Symfony\\Component\\Translation\\": ""
  7222. },
  7223. "exclude-from-classmap": [
  7224. "/Tests/"
  7225. ]
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Fabien Potencier",
  7234. "email": "fabien@symfony.com"
  7235. },
  7236. {
  7237. "name": "Symfony Community",
  7238. "homepage": "https://symfony.com/contributors"
  7239. }
  7240. ],
  7241. "description": "Provides tools to internationalize your application",
  7242. "homepage": "https://symfony.com",
  7243. "support": {
  7244. "source": "https://github.com/symfony/translation/tree/v5.2.7"
  7245. },
  7246. "funding": [
  7247. {
  7248. "url": "https://symfony.com/sponsor",
  7249. "type": "custom"
  7250. },
  7251. {
  7252. "url": "https://github.com/fabpot",
  7253. "type": "github"
  7254. },
  7255. {
  7256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7257. "type": "tidelift"
  7258. }
  7259. ],
  7260. "time": "2021-04-01T08:15:21+00:00"
  7261. },
  7262. {
  7263. "name": "symfony/translation-contracts",
  7264. "version": "v2.4.0",
  7265. "source": {
  7266. "type": "git",
  7267. "url": "https://github.com/symfony/translation-contracts.git",
  7268. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7269. },
  7270. "dist": {
  7271. "type": "zip",
  7272. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7273. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7274. "shasum": "",
  7275. "mirrors": [
  7276. {
  7277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7278. "preferred": true
  7279. }
  7280. ]
  7281. },
  7282. "require": {
  7283. "php": ">=7.2.5"
  7284. },
  7285. "suggest": {
  7286. "symfony/translation-implementation": ""
  7287. },
  7288. "type": "library",
  7289. "extra": {
  7290. "branch-alias": {
  7291. "dev-main": "2.4-dev"
  7292. },
  7293. "thanks": {
  7294. "name": "symfony/contracts",
  7295. "url": "https://github.com/symfony/contracts"
  7296. }
  7297. },
  7298. "autoload": {
  7299. "psr-4": {
  7300. "Symfony\\Contracts\\Translation\\": ""
  7301. }
  7302. },
  7303. "notification-url": "https://packagist.org/downloads/",
  7304. "license": [
  7305. "MIT"
  7306. ],
  7307. "authors": [
  7308. {
  7309. "name": "Nicolas Grekas",
  7310. "email": "p@tchwork.com"
  7311. },
  7312. {
  7313. "name": "Symfony Community",
  7314. "homepage": "https://symfony.com/contributors"
  7315. }
  7316. ],
  7317. "description": "Generic abstractions related to translation",
  7318. "homepage": "https://symfony.com",
  7319. "keywords": [
  7320. "abstractions",
  7321. "contracts",
  7322. "decoupling",
  7323. "interfaces",
  7324. "interoperability",
  7325. "standards"
  7326. ],
  7327. "support": {
  7328. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7329. },
  7330. "funding": [
  7331. {
  7332. "url": "https://symfony.com/sponsor",
  7333. "type": "custom"
  7334. },
  7335. {
  7336. "url": "https://github.com/fabpot",
  7337. "type": "github"
  7338. },
  7339. {
  7340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7341. "type": "tidelift"
  7342. }
  7343. ],
  7344. "time": "2021-03-23T23:28:01+00:00"
  7345. },
  7346. {
  7347. "name": "symfony/var-dumper",
  7348. "version": "v5.2.7",
  7349. "source": {
  7350. "type": "git",
  7351. "url": "https://github.com/symfony/var-dumper.git",
  7352. "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636"
  7353. },
  7354. "dist": {
  7355. "type": "zip",
  7356. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/27cb9f7cfa3853c736425c7233a8f68814b19636",
  7357. "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636",
  7358. "shasum": "",
  7359. "mirrors": [
  7360. {
  7361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7362. "preferred": true
  7363. }
  7364. ]
  7365. },
  7366. "require": {
  7367. "php": ">=7.2.5",
  7368. "symfony/polyfill-mbstring": "~1.0",
  7369. "symfony/polyfill-php80": "^1.15"
  7370. },
  7371. "conflict": {
  7372. "phpunit/phpunit": "<5.4.3",
  7373. "symfony/console": "<4.4"
  7374. },
  7375. "require-dev": {
  7376. "ext-iconv": "*",
  7377. "symfony/console": "^4.4|^5.0",
  7378. "symfony/process": "^4.4|^5.0",
  7379. "twig/twig": "^2.13|^3.0.4"
  7380. },
  7381. "suggest": {
  7382. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7383. "ext-intl": "To show region name in time zone dump",
  7384. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7385. },
  7386. "bin": [
  7387. "Resources/bin/var-dump-server"
  7388. ],
  7389. "type": "library",
  7390. "autoload": {
  7391. "files": [
  7392. "Resources/functions/dump.php"
  7393. ],
  7394. "psr-4": {
  7395. "Symfony\\Component\\VarDumper\\": ""
  7396. },
  7397. "exclude-from-classmap": [
  7398. "/Tests/"
  7399. ]
  7400. },
  7401. "notification-url": "https://packagist.org/downloads/",
  7402. "license": [
  7403. "MIT"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Nicolas Grekas",
  7408. "email": "p@tchwork.com"
  7409. },
  7410. {
  7411. "name": "Symfony Community",
  7412. "homepage": "https://symfony.com/contributors"
  7413. }
  7414. ],
  7415. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7416. "homepage": "https://symfony.com",
  7417. "keywords": [
  7418. "debug",
  7419. "dump"
  7420. ],
  7421. "support": {
  7422. "source": "https://github.com/symfony/var-dumper/tree/v5.2.7"
  7423. },
  7424. "funding": [
  7425. {
  7426. "url": "https://symfony.com/sponsor",
  7427. "type": "custom"
  7428. },
  7429. {
  7430. "url": "https://github.com/fabpot",
  7431. "type": "github"
  7432. },
  7433. {
  7434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7435. "type": "tidelift"
  7436. }
  7437. ],
  7438. "time": "2021-04-19T14:07:32+00:00"
  7439. },
  7440. {
  7441. "name": "te7a-houdini/laravel-trix",
  7442. "version": "2.0.4",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://github.com/amaelftah/laravel-trix.git",
  7446. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7451. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7452. "shasum": "",
  7453. "mirrors": [
  7454. {
  7455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7456. "preferred": true
  7457. }
  7458. ]
  7459. },
  7460. "require": {
  7461. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7462. "php": "^7.1"
  7463. },
  7464. "require-dev": {
  7465. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7466. },
  7467. "type": "library",
  7468. "extra": {
  7469. "laravel": {
  7470. "providers": [
  7471. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7472. ]
  7473. }
  7474. },
  7475. "autoload": {
  7476. "psr-4": {
  7477. "Te7aHoudini\\LaravelTrix\\": "src"
  7478. }
  7479. },
  7480. "notification-url": "https://packagist.org/downloads/",
  7481. "license": [
  7482. "MIT"
  7483. ],
  7484. "authors": [
  7485. {
  7486. "name": "Ahmed Abd El Ftah",
  7487. "email": "ahmedabdelftah95165@gmail.com",
  7488. "role": "Developer"
  7489. }
  7490. ],
  7491. "description": "trix editor for laravel inspired by ActionText for rails",
  7492. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7493. "keywords": [
  7494. "laravel-trix",
  7495. "te7a-houdini"
  7496. ],
  7497. "support": {
  7498. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7499. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7500. },
  7501. "time": "2020-11-12T10:48:06+00:00"
  7502. },
  7503. {
  7504. "name": "tightenco/collect",
  7505. "version": "v5.6.33",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/tighten/collect.git",
  7509. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7514. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7515. "shasum": "",
  7516. "mirrors": [
  7517. {
  7518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7519. "preferred": true
  7520. }
  7521. ]
  7522. },
  7523. "require": {
  7524. "php": ">=7.1.3",
  7525. "symfony/var-dumper": ">=3.1.10"
  7526. },
  7527. "require-dev": {
  7528. "mockery/mockery": "~1.0",
  7529. "nesbot/carbon": "~1.20",
  7530. "phpunit/phpunit": "~7.0"
  7531. },
  7532. "type": "library",
  7533. "autoload": {
  7534. "files": [
  7535. "src/Collect/Support/helpers.php",
  7536. "src/Collect/Support/alias.php"
  7537. ],
  7538. "psr-4": {
  7539. "Tightenco\\Collect\\": "src/Collect"
  7540. }
  7541. },
  7542. "notification-url": "https://packagist.org/downloads/",
  7543. "license": [
  7544. "MIT"
  7545. ],
  7546. "authors": [
  7547. {
  7548. "name": "Taylor Otwell",
  7549. "email": "taylorotwell@gmail.com"
  7550. }
  7551. ],
  7552. "description": "Collect - Illuminate Collections as a separate package.",
  7553. "keywords": [
  7554. "collection",
  7555. "laravel"
  7556. ],
  7557. "support": {
  7558. "issues": "https://github.com/tighten/collect/issues",
  7559. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7560. },
  7561. "time": "2018-08-09T16:56:26+00:00"
  7562. },
  7563. {
  7564. "name": "tijsverkoyen/css-to-inline-styles",
  7565. "version": "2.2.3",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7569. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7574. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7575. "shasum": "",
  7576. "mirrors": [
  7577. {
  7578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7579. "preferred": true
  7580. }
  7581. ]
  7582. },
  7583. "require": {
  7584. "ext-dom": "*",
  7585. "ext-libxml": "*",
  7586. "php": "^5.5 || ^7.0 || ^8.0",
  7587. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7588. },
  7589. "require-dev": {
  7590. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7591. },
  7592. "type": "library",
  7593. "extra": {
  7594. "branch-alias": {
  7595. "dev-master": "2.2.x-dev"
  7596. }
  7597. },
  7598. "autoload": {
  7599. "psr-4": {
  7600. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7601. }
  7602. },
  7603. "notification-url": "https://packagist.org/downloads/",
  7604. "license": [
  7605. "BSD-3-Clause"
  7606. ],
  7607. "authors": [
  7608. {
  7609. "name": "Tijs Verkoyen",
  7610. "email": "css_to_inline_styles@verkoyen.eu",
  7611. "role": "Developer"
  7612. }
  7613. ],
  7614. "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.",
  7615. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7616. "support": {
  7617. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7618. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7619. },
  7620. "time": "2020-07-13T06:12:54+00:00"
  7621. },
  7622. {
  7623. "name": "vlucas/phpdotenv",
  7624. "version": "v4.2.0",
  7625. "source": {
  7626. "type": "git",
  7627. "url": "https://github.com/vlucas/phpdotenv.git",
  7628. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7629. },
  7630. "dist": {
  7631. "type": "zip",
  7632. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7633. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7634. "shasum": "",
  7635. "mirrors": [
  7636. {
  7637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7638. "preferred": true
  7639. }
  7640. ]
  7641. },
  7642. "require": {
  7643. "php": "^5.5.9 || ^7.0 || ^8.0",
  7644. "phpoption/phpoption": "^1.7.3",
  7645. "symfony/polyfill-ctype": "^1.17"
  7646. },
  7647. "require-dev": {
  7648. "bamarni/composer-bin-plugin": "^1.4.1",
  7649. "ext-filter": "*",
  7650. "ext-pcre": "*",
  7651. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7652. },
  7653. "suggest": {
  7654. "ext-filter": "Required to use the boolean validator.",
  7655. "ext-pcre": "Required to use most of the library."
  7656. },
  7657. "type": "library",
  7658. "extra": {
  7659. "branch-alias": {
  7660. "dev-master": "4.1-dev"
  7661. }
  7662. },
  7663. "autoload": {
  7664. "psr-4": {
  7665. "Dotenv\\": "src/"
  7666. }
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "BSD-3-Clause"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Graham Campbell",
  7675. "email": "graham@alt-three.com",
  7676. "homepage": "https://gjcampbell.co.uk/"
  7677. },
  7678. {
  7679. "name": "Vance Lucas",
  7680. "email": "vance@vancelucas.com",
  7681. "homepage": "https://vancelucas.com/"
  7682. }
  7683. ],
  7684. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7685. "keywords": [
  7686. "dotenv",
  7687. "env",
  7688. "environment"
  7689. ],
  7690. "support": {
  7691. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7692. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7693. },
  7694. "funding": [
  7695. {
  7696. "url": "https://github.com/GrahamCampbell",
  7697. "type": "github"
  7698. },
  7699. {
  7700. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7701. "type": "tidelift"
  7702. }
  7703. ],
  7704. "time": "2021-01-20T15:11:48+00:00"
  7705. },
  7706. {
  7707. "name": "voku/portable-ascii",
  7708. "version": "1.5.6",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/voku/portable-ascii.git",
  7712. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7717. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7718. "shasum": "",
  7719. "mirrors": [
  7720. {
  7721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7722. "preferred": true
  7723. }
  7724. ]
  7725. },
  7726. "require": {
  7727. "php": ">=7.0.0"
  7728. },
  7729. "require-dev": {
  7730. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7731. },
  7732. "suggest": {
  7733. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "voku\\": "src/voku/"
  7739. }
  7740. },
  7741. "notification-url": "https://packagist.org/downloads/",
  7742. "license": [
  7743. "MIT"
  7744. ],
  7745. "authors": [
  7746. {
  7747. "name": "Lars Moelleken",
  7748. "homepage": "http://www.moelleken.org/"
  7749. }
  7750. ],
  7751. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7752. "homepage": "https://github.com/voku/portable-ascii",
  7753. "keywords": [
  7754. "ascii",
  7755. "clean",
  7756. "php"
  7757. ],
  7758. "support": {
  7759. "issues": "https://github.com/voku/portable-ascii/issues",
  7760. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7761. },
  7762. "funding": [
  7763. {
  7764. "url": "https://www.paypal.me/moelleken",
  7765. "type": "custom"
  7766. },
  7767. {
  7768. "url": "https://github.com/voku",
  7769. "type": "github"
  7770. },
  7771. {
  7772. "url": "https://opencollective.com/portable-ascii",
  7773. "type": "open_collective"
  7774. },
  7775. {
  7776. "url": "https://www.patreon.com/voku",
  7777. "type": "patreon"
  7778. },
  7779. {
  7780. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7781. "type": "tidelift"
  7782. }
  7783. ],
  7784. "time": "2020-11-12T00:07:28+00:00"
  7785. },
  7786. {
  7787. "name": "yajra/laravel-oci8",
  7788. "version": "v7.0.0",
  7789. "source": {
  7790. "type": "git",
  7791. "url": "https://github.com/yajra/laravel-oci8.git",
  7792. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7793. },
  7794. "dist": {
  7795. "type": "zip",
  7796. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7797. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7798. "shasum": "",
  7799. "mirrors": [
  7800. {
  7801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7802. "preferred": true
  7803. }
  7804. ]
  7805. },
  7806. "require": {
  7807. "ext-oci8": ">=2.0.0",
  7808. "ext-pdo": "*",
  7809. "illuminate/database": "^7",
  7810. "illuminate/support": "^7",
  7811. "php": "^7.2.5",
  7812. "yajra/laravel-pdo-via-oci8": "^2"
  7813. },
  7814. "require-dev": {
  7815. "mockery/mockery": "^1.3.1",
  7816. "phpunit/phpunit": "^8.4|^9.0",
  7817. "scrutinizer/ocular": "~1.1"
  7818. },
  7819. "type": "library",
  7820. "extra": {
  7821. "branch-alias": {
  7822. "dev-master": "7.x-dev"
  7823. },
  7824. "laravel": {
  7825. "providers": [
  7826. "Yajra\\Oci8\\Oci8ServiceProvider"
  7827. ]
  7828. }
  7829. },
  7830. "autoload": {
  7831. "files": [
  7832. "src/helper.php"
  7833. ],
  7834. "psr-4": {
  7835. "Yajra\\": "src/"
  7836. }
  7837. },
  7838. "notification-url": "https://packagist.org/downloads/",
  7839. "license": [
  7840. "MIT"
  7841. ],
  7842. "authors": [
  7843. {
  7844. "name": "Arjay Angeles",
  7845. "email": "aqangeles@gmail.com"
  7846. }
  7847. ],
  7848. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7849. "keywords": [
  7850. "laravel",
  7851. "oci8",
  7852. "oracle",
  7853. "pdo_oci"
  7854. ],
  7855. "support": {
  7856. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7857. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7858. },
  7859. "funding": [
  7860. {
  7861. "url": "https://www.paypal.me/yajra",
  7862. "type": "custom"
  7863. },
  7864. {
  7865. "url": "https://www.patreon.com/yajra",
  7866. "type": "patreon"
  7867. }
  7868. ],
  7869. "time": "2020-03-04T02:15:19+00:00"
  7870. },
  7871. {
  7872. "name": "yajra/laravel-pdo-via-oci8",
  7873. "version": "v2.2.0",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7877. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7882. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7883. "shasum": "",
  7884. "mirrors": [
  7885. {
  7886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7887. "preferred": true
  7888. }
  7889. ]
  7890. },
  7891. "require-dev": {
  7892. "phpunit/phpunit": "^6.4"
  7893. },
  7894. "type": "library",
  7895. "extra": {
  7896. "branch-alias": {
  7897. "dev-master": "2.0-dev"
  7898. }
  7899. },
  7900. "autoload": {
  7901. "psr-4": {
  7902. "Yajra\\": "src/"
  7903. }
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "MIT"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Arjay Angeles",
  7912. "email": "aqangeles@gmail.com"
  7913. }
  7914. ],
  7915. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7916. "support": {
  7917. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7918. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7919. },
  7920. "time": "2020-12-11T12:29:18+00:00"
  7921. }
  7922. ],
  7923. "packages-dev": [
  7924. {
  7925. "name": "barryvdh/laravel-debugbar",
  7926. "version": "v3.5.5",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7930. "reference": "6420113d90bb746423fa70b9940e9e7c26ebc121"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/6420113d90bb746423fa70b9940e9e7c26ebc121",
  7935. "reference": "6420113d90bb746423fa70b9940e9e7c26ebc121",
  7936. "shasum": "",
  7937. "mirrors": [
  7938. {
  7939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7940. "preferred": true
  7941. }
  7942. ]
  7943. },
  7944. "require": {
  7945. "illuminate/routing": "^6|^7|^8",
  7946. "illuminate/session": "^6|^7|^8",
  7947. "illuminate/support": "^6|^7|^8",
  7948. "maximebf/debugbar": "^1.16.3",
  7949. "php": ">=7.2",
  7950. "symfony/debug": "^4.3|^5",
  7951. "symfony/finder": "^4.3|^5"
  7952. },
  7953. "require-dev": {
  7954. "mockery/mockery": "^1.3.3",
  7955. "orchestra/testbench-dusk": "^4|^5|^6",
  7956. "phpunit/phpunit": "^8.5|^9.0",
  7957. "squizlabs/php_codesniffer": "^3.5"
  7958. },
  7959. "type": "library",
  7960. "extra": {
  7961. "branch-alias": {
  7962. "dev-master": "3.5-dev"
  7963. },
  7964. "laravel": {
  7965. "providers": [
  7966. "Barryvdh\\Debugbar\\ServiceProvider"
  7967. ],
  7968. "aliases": {
  7969. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7970. }
  7971. }
  7972. },
  7973. "autoload": {
  7974. "psr-4": {
  7975. "Barryvdh\\Debugbar\\": "src/"
  7976. },
  7977. "files": [
  7978. "src/helpers.php"
  7979. ]
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "MIT"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "Barry vd. Heuvel",
  7988. "email": "barryvdh@gmail.com"
  7989. }
  7990. ],
  7991. "description": "PHP Debugbar integration for Laravel",
  7992. "keywords": [
  7993. "debug",
  7994. "debugbar",
  7995. "laravel",
  7996. "profiler",
  7997. "webprofiler"
  7998. ],
  7999. "support": {
  8000. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8001. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.5"
  8002. },
  8003. "funding": [
  8004. {
  8005. "url": "https://github.com/barryvdh",
  8006. "type": "github"
  8007. }
  8008. ],
  8009. "time": "2021-04-07T11:19:20+00:00"
  8010. },
  8011. {
  8012. "name": "beyondcode/laravel-dump-server",
  8013. "version": "1.7.0",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  8017. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  8022. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  8023. "shasum": "",
  8024. "mirrors": [
  8025. {
  8026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8027. "preferred": true
  8028. }
  8029. ]
  8030. },
  8031. "require": {
  8032. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8033. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8034. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8035. "php": ">=7.2.5",
  8036. "symfony/var-dumper": "^5.0"
  8037. },
  8038. "require-dev": {
  8039. "larapack/dd": "^1.0",
  8040. "phpunit/phpunit": "^7.0|^9.3"
  8041. },
  8042. "type": "library",
  8043. "extra": {
  8044. "laravel": {
  8045. "providers": [
  8046. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  8047. ]
  8048. }
  8049. },
  8050. "autoload": {
  8051. "psr-4": {
  8052. "BeyondCode\\DumpServer\\": "src"
  8053. },
  8054. "files": [
  8055. "helpers.php"
  8056. ]
  8057. },
  8058. "notification-url": "https://packagist.org/downloads/",
  8059. "license": [
  8060. "MIT"
  8061. ],
  8062. "authors": [
  8063. {
  8064. "name": "Marcel Pociot",
  8065. "email": "marcel@beyondco.de",
  8066. "homepage": "https://beyondco.de",
  8067. "role": "Developer"
  8068. }
  8069. ],
  8070. "description": "Symfony Var-Dump Server for Laravel",
  8071. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8072. "keywords": [
  8073. "beyondcode",
  8074. "laravel-dump-server"
  8075. ],
  8076. "support": {
  8077. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8078. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8079. },
  8080. "time": "2020-12-15T10:57:43+00:00"
  8081. },
  8082. {
  8083. "name": "doctrine/instantiator",
  8084. "version": "1.4.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/doctrine/instantiator.git",
  8088. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8093. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8094. "shasum": "",
  8095. "mirrors": [
  8096. {
  8097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8098. "preferred": true
  8099. }
  8100. ]
  8101. },
  8102. "require": {
  8103. "php": "^7.1 || ^8.0"
  8104. },
  8105. "require-dev": {
  8106. "doctrine/coding-standard": "^8.0",
  8107. "ext-pdo": "*",
  8108. "ext-phar": "*",
  8109. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8110. "phpstan/phpstan": "^0.12",
  8111. "phpstan/phpstan-phpunit": "^0.12",
  8112. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8113. },
  8114. "type": "library",
  8115. "autoload": {
  8116. "psr-4": {
  8117. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8118. }
  8119. },
  8120. "notification-url": "https://packagist.org/downloads/",
  8121. "license": [
  8122. "MIT"
  8123. ],
  8124. "authors": [
  8125. {
  8126. "name": "Marco Pivetta",
  8127. "email": "ocramius@gmail.com",
  8128. "homepage": "https://ocramius.github.io/"
  8129. }
  8130. ],
  8131. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8132. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8133. "keywords": [
  8134. "constructor",
  8135. "instantiate"
  8136. ],
  8137. "support": {
  8138. "issues": "https://github.com/doctrine/instantiator/issues",
  8139. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8140. },
  8141. "funding": [
  8142. {
  8143. "url": "https://www.doctrine-project.org/sponsorship.html",
  8144. "type": "custom"
  8145. },
  8146. {
  8147. "url": "https://www.patreon.com/phpdoctrine",
  8148. "type": "patreon"
  8149. },
  8150. {
  8151. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8152. "type": "tidelift"
  8153. }
  8154. ],
  8155. "time": "2020-11-10T18:47:58+00:00"
  8156. },
  8157. {
  8158. "name": "fzaninotto/faker",
  8159. "version": "v1.9.2",
  8160. "source": {
  8161. "type": "git",
  8162. "url": "https://github.com/fzaninotto/Faker.git",
  8163. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8164. },
  8165. "dist": {
  8166. "type": "zip",
  8167. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8168. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8169. "shasum": "",
  8170. "mirrors": [
  8171. {
  8172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8173. "preferred": true
  8174. }
  8175. ]
  8176. },
  8177. "require": {
  8178. "php": "^5.3.3 || ^7.0"
  8179. },
  8180. "require-dev": {
  8181. "ext-intl": "*",
  8182. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8183. "squizlabs/php_codesniffer": "^2.9.2"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-master": "1.9-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Faker\\": "src/Faker/"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "François Zaninotto"
  8203. }
  8204. ],
  8205. "description": "Faker is a PHP library that generates fake data for you.",
  8206. "keywords": [
  8207. "data",
  8208. "faker",
  8209. "fixtures"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/fzaninotto/Faker/issues",
  8213. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8214. },
  8215. "abandoned": true,
  8216. "time": "2020-12-11T09:56:16+00:00"
  8217. },
  8218. {
  8219. "name": "hamcrest/hamcrest-php",
  8220. "version": "v2.0.1",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8224. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8229. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8230. "shasum": "",
  8231. "mirrors": [
  8232. {
  8233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8234. "preferred": true
  8235. }
  8236. ]
  8237. },
  8238. "require": {
  8239. "php": "^5.3|^7.0|^8.0"
  8240. },
  8241. "replace": {
  8242. "cordoval/hamcrest-php": "*",
  8243. "davedevelopment/hamcrest-php": "*",
  8244. "kodova/hamcrest-php": "*"
  8245. },
  8246. "require-dev": {
  8247. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8248. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8249. },
  8250. "type": "library",
  8251. "extra": {
  8252. "branch-alias": {
  8253. "dev-master": "2.1-dev"
  8254. }
  8255. },
  8256. "autoload": {
  8257. "classmap": [
  8258. "hamcrest"
  8259. ]
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "BSD-3-Clause"
  8264. ],
  8265. "description": "This is the PHP port of Hamcrest Matchers",
  8266. "keywords": [
  8267. "test"
  8268. ],
  8269. "support": {
  8270. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8271. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8272. },
  8273. "time": "2020-07-09T08:09:16+00:00"
  8274. },
  8275. {
  8276. "name": "maximebf/debugbar",
  8277. "version": "v1.16.5",
  8278. "source": {
  8279. "type": "git",
  8280. "url": "https://github.com/maximebf/php-debugbar.git",
  8281. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8282. },
  8283. "dist": {
  8284. "type": "zip",
  8285. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8286. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8287. "shasum": "",
  8288. "mirrors": [
  8289. {
  8290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8291. "preferred": true
  8292. }
  8293. ]
  8294. },
  8295. "require": {
  8296. "php": "^7.1|^8",
  8297. "psr/log": "^1.0",
  8298. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8299. },
  8300. "require-dev": {
  8301. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8302. },
  8303. "suggest": {
  8304. "kriswallsmith/assetic": "The best way to manage assets",
  8305. "monolog/monolog": "Log using Monolog",
  8306. "predis/predis": "Redis storage"
  8307. },
  8308. "type": "library",
  8309. "extra": {
  8310. "branch-alias": {
  8311. "dev-master": "1.16-dev"
  8312. }
  8313. },
  8314. "autoload": {
  8315. "psr-4": {
  8316. "DebugBar\\": "src/DebugBar/"
  8317. }
  8318. },
  8319. "notification-url": "https://packagist.org/downloads/",
  8320. "license": [
  8321. "MIT"
  8322. ],
  8323. "authors": [
  8324. {
  8325. "name": "Maxime Bouroumeau-Fuseau",
  8326. "email": "maxime.bouroumeau@gmail.com",
  8327. "homepage": "http://maximebf.com"
  8328. },
  8329. {
  8330. "name": "Barry vd. Heuvel",
  8331. "email": "barryvdh@gmail.com"
  8332. }
  8333. ],
  8334. "description": "Debug bar in the browser for php application",
  8335. "homepage": "https://github.com/maximebf/php-debugbar",
  8336. "keywords": [
  8337. "debug",
  8338. "debugbar"
  8339. ],
  8340. "support": {
  8341. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8342. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8343. },
  8344. "time": "2020-12-07T11:07:24+00:00"
  8345. },
  8346. {
  8347. "name": "mockery/mockery",
  8348. "version": "1.3.4",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/mockery/mockery.git",
  8352. "reference": "31467aeb3ca3188158613322d66df81cedd86626"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/mockery/mockery/zipball/31467aeb3ca3188158613322d66df81cedd86626",
  8357. "reference": "31467aeb3ca3188158613322d66df81cedd86626",
  8358. "shasum": "",
  8359. "mirrors": [
  8360. {
  8361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8362. "preferred": true
  8363. }
  8364. ]
  8365. },
  8366. "require": {
  8367. "hamcrest/hamcrest-php": "^2.0.1",
  8368. "lib-pcre": ">=7.0",
  8369. "php": ">=5.6.0"
  8370. },
  8371. "require-dev": {
  8372. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  8373. },
  8374. "type": "library",
  8375. "extra": {
  8376. "branch-alias": {
  8377. "dev-master": "1.3.x-dev"
  8378. }
  8379. },
  8380. "autoload": {
  8381. "psr-0": {
  8382. "Mockery": "library/"
  8383. }
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "BSD-3-Clause"
  8388. ],
  8389. "authors": [
  8390. {
  8391. "name": "Pádraic Brady",
  8392. "email": "padraic.brady@gmail.com",
  8393. "homepage": "http://blog.astrumfutura.com"
  8394. },
  8395. {
  8396. "name": "Dave Marshall",
  8397. "email": "dave.marshall@atstsolutions.co.uk",
  8398. "homepage": "http://davedevelopment.co.uk"
  8399. }
  8400. ],
  8401. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8402. "homepage": "https://github.com/mockery/mockery",
  8403. "keywords": [
  8404. "BDD",
  8405. "TDD",
  8406. "library",
  8407. "mock",
  8408. "mock objects",
  8409. "mockery",
  8410. "stub",
  8411. "test",
  8412. "test double",
  8413. "testing"
  8414. ],
  8415. "support": {
  8416. "issues": "https://github.com/mockery/mockery/issues",
  8417. "source": "https://github.com/mockery/mockery/tree/1.3.4"
  8418. },
  8419. "time": "2021-02-24T09:51:00+00:00"
  8420. },
  8421. {
  8422. "name": "myclabs/deep-copy",
  8423. "version": "1.10.2",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/myclabs/DeepCopy.git",
  8427. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8432. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8433. "shasum": "",
  8434. "mirrors": [
  8435. {
  8436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8437. "preferred": true
  8438. }
  8439. ]
  8440. },
  8441. "require": {
  8442. "php": "^7.1 || ^8.0"
  8443. },
  8444. "replace": {
  8445. "myclabs/deep-copy": "self.version"
  8446. },
  8447. "require-dev": {
  8448. "doctrine/collections": "^1.0",
  8449. "doctrine/common": "^2.6",
  8450. "phpunit/phpunit": "^7.1"
  8451. },
  8452. "type": "library",
  8453. "autoload": {
  8454. "psr-4": {
  8455. "DeepCopy\\": "src/DeepCopy/"
  8456. },
  8457. "files": [
  8458. "src/DeepCopy/deep_copy.php"
  8459. ]
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "description": "Create deep copies (clones) of your objects",
  8466. "keywords": [
  8467. "clone",
  8468. "copy",
  8469. "duplicate",
  8470. "object",
  8471. "object graph"
  8472. ],
  8473. "support": {
  8474. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8475. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8476. },
  8477. "funding": [
  8478. {
  8479. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8480. "type": "tidelift"
  8481. }
  8482. ],
  8483. "time": "2020-11-13T09:40:50+00:00"
  8484. },
  8485. {
  8486. "name": "nunomaduro/collision",
  8487. "version": "v4.3.0",
  8488. "source": {
  8489. "type": "git",
  8490. "url": "https://github.com/nunomaduro/collision.git",
  8491. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8492. },
  8493. "dist": {
  8494. "type": "zip",
  8495. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8496. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8497. "shasum": "",
  8498. "mirrors": [
  8499. {
  8500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8501. "preferred": true
  8502. }
  8503. ]
  8504. },
  8505. "require": {
  8506. "facade/ignition-contracts": "^1.0",
  8507. "filp/whoops": "^2.4",
  8508. "php": "^7.2.5 || ^8.0",
  8509. "symfony/console": "^5.0"
  8510. },
  8511. "require-dev": {
  8512. "facade/ignition": "^2.0",
  8513. "fideloper/proxy": "^4.2",
  8514. "friendsofphp/php-cs-fixer": "^2.16",
  8515. "fruitcake/laravel-cors": "^1.0",
  8516. "laravel/framework": "^7.0",
  8517. "laravel/tinker": "^2.0",
  8518. "nunomaduro/larastan": "^0.6",
  8519. "orchestra/testbench": "^5.0",
  8520. "phpstan/phpstan": "^0.12.3",
  8521. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "laravel": {
  8526. "providers": [
  8527. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8528. ]
  8529. }
  8530. },
  8531. "autoload": {
  8532. "psr-4": {
  8533. "NunoMaduro\\Collision\\": "src/"
  8534. }
  8535. },
  8536. "notification-url": "https://packagist.org/downloads/",
  8537. "license": [
  8538. "MIT"
  8539. ],
  8540. "authors": [
  8541. {
  8542. "name": "Nuno Maduro",
  8543. "email": "enunomaduro@gmail.com"
  8544. }
  8545. ],
  8546. "description": "Cli error handling for console/command-line PHP applications.",
  8547. "keywords": [
  8548. "artisan",
  8549. "cli",
  8550. "command-line",
  8551. "console",
  8552. "error",
  8553. "handling",
  8554. "laravel",
  8555. "laravel-zero",
  8556. "php",
  8557. "symfony"
  8558. ],
  8559. "support": {
  8560. "issues": "https://github.com/nunomaduro/collision/issues",
  8561. "source": "https://github.com/nunomaduro/collision"
  8562. },
  8563. "funding": [
  8564. {
  8565. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8566. "type": "custom"
  8567. },
  8568. {
  8569. "url": "https://github.com/nunomaduro",
  8570. "type": "github"
  8571. },
  8572. {
  8573. "url": "https://www.patreon.com/nunomaduro",
  8574. "type": "patreon"
  8575. }
  8576. ],
  8577. "time": "2020-10-29T15:12:23+00:00"
  8578. },
  8579. {
  8580. "name": "phar-io/manifest",
  8581. "version": "2.0.1",
  8582. "source": {
  8583. "type": "git",
  8584. "url": "https://github.com/phar-io/manifest.git",
  8585. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8586. },
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8590. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8591. "shasum": "",
  8592. "mirrors": [
  8593. {
  8594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8595. "preferred": true
  8596. }
  8597. ]
  8598. },
  8599. "require": {
  8600. "ext-dom": "*",
  8601. "ext-phar": "*",
  8602. "ext-xmlwriter": "*",
  8603. "phar-io/version": "^3.0.1",
  8604. "php": "^7.2 || ^8.0"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "branch-alias": {
  8609. "dev-master": "2.0.x-dev"
  8610. }
  8611. },
  8612. "autoload": {
  8613. "classmap": [
  8614. "src/"
  8615. ]
  8616. },
  8617. "notification-url": "https://packagist.org/downloads/",
  8618. "license": [
  8619. "BSD-3-Clause"
  8620. ],
  8621. "authors": [
  8622. {
  8623. "name": "Arne Blankerts",
  8624. "email": "arne@blankerts.de",
  8625. "role": "Developer"
  8626. },
  8627. {
  8628. "name": "Sebastian Heuer",
  8629. "email": "sebastian@phpeople.de",
  8630. "role": "Developer"
  8631. },
  8632. {
  8633. "name": "Sebastian Bergmann",
  8634. "email": "sebastian@phpunit.de",
  8635. "role": "Developer"
  8636. }
  8637. ],
  8638. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8639. "support": {
  8640. "issues": "https://github.com/phar-io/manifest/issues",
  8641. "source": "https://github.com/phar-io/manifest/tree/master"
  8642. },
  8643. "time": "2020-06-27T14:33:11+00:00"
  8644. },
  8645. {
  8646. "name": "phar-io/version",
  8647. "version": "3.1.0",
  8648. "source": {
  8649. "type": "git",
  8650. "url": "https://github.com/phar-io/version.git",
  8651. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8652. },
  8653. "dist": {
  8654. "type": "zip",
  8655. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8656. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8657. "shasum": "",
  8658. "mirrors": [
  8659. {
  8660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8661. "preferred": true
  8662. }
  8663. ]
  8664. },
  8665. "require": {
  8666. "php": "^7.2 || ^8.0"
  8667. },
  8668. "type": "library",
  8669. "autoload": {
  8670. "classmap": [
  8671. "src/"
  8672. ]
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "BSD-3-Clause"
  8677. ],
  8678. "authors": [
  8679. {
  8680. "name": "Arne Blankerts",
  8681. "email": "arne@blankerts.de",
  8682. "role": "Developer"
  8683. },
  8684. {
  8685. "name": "Sebastian Heuer",
  8686. "email": "sebastian@phpeople.de",
  8687. "role": "Developer"
  8688. },
  8689. {
  8690. "name": "Sebastian Bergmann",
  8691. "email": "sebastian@phpunit.de",
  8692. "role": "Developer"
  8693. }
  8694. ],
  8695. "description": "Library for handling version information and constraints",
  8696. "support": {
  8697. "issues": "https://github.com/phar-io/version/issues",
  8698. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8699. },
  8700. "time": "2021-02-23T14:00:09+00:00"
  8701. },
  8702. {
  8703. "name": "phpdocumentor/reflection-common",
  8704. "version": "2.2.0",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8708. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8713. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8714. "shasum": "",
  8715. "mirrors": [
  8716. {
  8717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8718. "preferred": true
  8719. }
  8720. ]
  8721. },
  8722. "require": {
  8723. "php": "^7.2 || ^8.0"
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-2.x": "2.x-dev"
  8729. }
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "phpDocumentor\\Reflection\\": "src/"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Jaap van Otterdijk",
  8743. "email": "opensource@ijaap.nl"
  8744. }
  8745. ],
  8746. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8747. "homepage": "http://www.phpdoc.org",
  8748. "keywords": [
  8749. "FQSEN",
  8750. "phpDocumentor",
  8751. "phpdoc",
  8752. "reflection",
  8753. "static analysis"
  8754. ],
  8755. "support": {
  8756. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8757. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8758. },
  8759. "time": "2020-06-27T09:03:43+00:00"
  8760. },
  8761. {
  8762. "name": "phpdocumentor/reflection-docblock",
  8763. "version": "5.2.2",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8767. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8772. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8773. "shasum": "",
  8774. "mirrors": [
  8775. {
  8776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8777. "preferred": true
  8778. }
  8779. ]
  8780. },
  8781. "require": {
  8782. "ext-filter": "*",
  8783. "php": "^7.2 || ^8.0",
  8784. "phpdocumentor/reflection-common": "^2.2",
  8785. "phpdocumentor/type-resolver": "^1.3",
  8786. "webmozart/assert": "^1.9.1"
  8787. },
  8788. "require-dev": {
  8789. "mockery/mockery": "~1.3.2"
  8790. },
  8791. "type": "library",
  8792. "extra": {
  8793. "branch-alias": {
  8794. "dev-master": "5.x-dev"
  8795. }
  8796. },
  8797. "autoload": {
  8798. "psr-4": {
  8799. "phpDocumentor\\Reflection\\": "src"
  8800. }
  8801. },
  8802. "notification-url": "https://packagist.org/downloads/",
  8803. "license": [
  8804. "MIT"
  8805. ],
  8806. "authors": [
  8807. {
  8808. "name": "Mike van Riel",
  8809. "email": "me@mikevanriel.com"
  8810. },
  8811. {
  8812. "name": "Jaap van Otterdijk",
  8813. "email": "account@ijaap.nl"
  8814. }
  8815. ],
  8816. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8817. "support": {
  8818. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8819. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8820. },
  8821. "time": "2020-09-03T19:13:55+00:00"
  8822. },
  8823. {
  8824. "name": "phpdocumentor/type-resolver",
  8825. "version": "1.4.0",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8829. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8834. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8835. "shasum": "",
  8836. "mirrors": [
  8837. {
  8838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8839. "preferred": true
  8840. }
  8841. ]
  8842. },
  8843. "require": {
  8844. "php": "^7.2 || ^8.0",
  8845. "phpdocumentor/reflection-common": "^2.0"
  8846. },
  8847. "require-dev": {
  8848. "ext-tokenizer": "*"
  8849. },
  8850. "type": "library",
  8851. "extra": {
  8852. "branch-alias": {
  8853. "dev-1.x": "1.x-dev"
  8854. }
  8855. },
  8856. "autoload": {
  8857. "psr-4": {
  8858. "phpDocumentor\\Reflection\\": "src"
  8859. }
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Mike van Riel",
  8868. "email": "me@mikevanriel.com"
  8869. }
  8870. ],
  8871. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8872. "support": {
  8873. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8874. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8875. },
  8876. "time": "2020-09-17T18:55:26+00:00"
  8877. },
  8878. {
  8879. "name": "phpspec/prophecy",
  8880. "version": "1.13.0",
  8881. "source": {
  8882. "type": "git",
  8883. "url": "https://github.com/phpspec/prophecy.git",
  8884. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8885. },
  8886. "dist": {
  8887. "type": "zip",
  8888. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8889. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8890. "shasum": "",
  8891. "mirrors": [
  8892. {
  8893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8894. "preferred": true
  8895. }
  8896. ]
  8897. },
  8898. "require": {
  8899. "doctrine/instantiator": "^1.2",
  8900. "php": "^7.2 || ~8.0, <8.1",
  8901. "phpdocumentor/reflection-docblock": "^5.2",
  8902. "sebastian/comparator": "^3.0 || ^4.0",
  8903. "sebastian/recursion-context": "^3.0 || ^4.0"
  8904. },
  8905. "require-dev": {
  8906. "phpspec/phpspec": "^6.0",
  8907. "phpunit/phpunit": "^8.0 || ^9.0"
  8908. },
  8909. "type": "library",
  8910. "extra": {
  8911. "branch-alias": {
  8912. "dev-master": "1.11.x-dev"
  8913. }
  8914. },
  8915. "autoload": {
  8916. "psr-4": {
  8917. "Prophecy\\": "src/Prophecy"
  8918. }
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "MIT"
  8923. ],
  8924. "authors": [
  8925. {
  8926. "name": "Konstantin Kudryashov",
  8927. "email": "ever.zet@gmail.com",
  8928. "homepage": "http://everzet.com"
  8929. },
  8930. {
  8931. "name": "Marcello Duarte",
  8932. "email": "marcello.duarte@gmail.com"
  8933. }
  8934. ],
  8935. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8936. "homepage": "https://github.com/phpspec/prophecy",
  8937. "keywords": [
  8938. "Double",
  8939. "Dummy",
  8940. "fake",
  8941. "mock",
  8942. "spy",
  8943. "stub"
  8944. ],
  8945. "support": {
  8946. "issues": "https://github.com/phpspec/prophecy/issues",
  8947. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8948. },
  8949. "time": "2021-03-17T13:42:18+00:00"
  8950. },
  8951. {
  8952. "name": "phpunit/php-code-coverage",
  8953. "version": "7.0.14",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8957. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8962. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8963. "shasum": "",
  8964. "mirrors": [
  8965. {
  8966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8967. "preferred": true
  8968. }
  8969. ]
  8970. },
  8971. "require": {
  8972. "ext-dom": "*",
  8973. "ext-xmlwriter": "*",
  8974. "php": ">=7.2",
  8975. "phpunit/php-file-iterator": "^2.0.2",
  8976. "phpunit/php-text-template": "^1.2.1",
  8977. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8978. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8979. "sebastian/environment": "^4.2.2",
  8980. "sebastian/version": "^2.0.1",
  8981. "theseer/tokenizer": "^1.1.3"
  8982. },
  8983. "require-dev": {
  8984. "phpunit/phpunit": "^8.2.2"
  8985. },
  8986. "suggest": {
  8987. "ext-xdebug": "^2.7.2"
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-master": "7.0-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "classmap": [
  8997. "src/"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "BSD-3-Clause"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Sebastian Bergmann",
  9007. "email": "sebastian@phpunit.de",
  9008. "role": "lead"
  9009. }
  9010. ],
  9011. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9012. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9013. "keywords": [
  9014. "coverage",
  9015. "testing",
  9016. "xunit"
  9017. ],
  9018. "support": {
  9019. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9020. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  9021. },
  9022. "funding": [
  9023. {
  9024. "url": "https://github.com/sebastianbergmann",
  9025. "type": "github"
  9026. }
  9027. ],
  9028. "time": "2020-12-02T13:39:03+00:00"
  9029. },
  9030. {
  9031. "name": "phpunit/php-file-iterator",
  9032. "version": "2.0.3",
  9033. "source": {
  9034. "type": "git",
  9035. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9036. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  9037. },
  9038. "dist": {
  9039. "type": "zip",
  9040. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9041. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9042. "shasum": "",
  9043. "mirrors": [
  9044. {
  9045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9046. "preferred": true
  9047. }
  9048. ]
  9049. },
  9050. "require": {
  9051. "php": ">=7.1"
  9052. },
  9053. "require-dev": {
  9054. "phpunit/phpunit": "^8.5"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-master": "2.0.x-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "classmap": [
  9064. "src/"
  9065. ]
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Sebastian Bergmann",
  9074. "email": "sebastian@phpunit.de",
  9075. "role": "lead"
  9076. }
  9077. ],
  9078. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9079. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9080. "keywords": [
  9081. "filesystem",
  9082. "iterator"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9086. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://github.com/sebastianbergmann",
  9091. "type": "github"
  9092. }
  9093. ],
  9094. "time": "2020-11-30T08:25:21+00:00"
  9095. },
  9096. {
  9097. "name": "phpunit/php-text-template",
  9098. "version": "1.2.1",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9102. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9107. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9108. "shasum": "",
  9109. "mirrors": [
  9110. {
  9111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9112. "preferred": true
  9113. }
  9114. ]
  9115. },
  9116. "require": {
  9117. "php": ">=5.3.3"
  9118. },
  9119. "type": "library",
  9120. "autoload": {
  9121. "classmap": [
  9122. "src/"
  9123. ]
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "BSD-3-Clause"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Sebastian Bergmann",
  9132. "email": "sebastian@phpunit.de",
  9133. "role": "lead"
  9134. }
  9135. ],
  9136. "description": "Simple template engine.",
  9137. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9138. "keywords": [
  9139. "template"
  9140. ],
  9141. "support": {
  9142. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9143. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9144. },
  9145. "time": "2015-06-21T13:50:34+00:00"
  9146. },
  9147. {
  9148. "name": "phpunit/php-timer",
  9149. "version": "2.1.3",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9153. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9158. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9159. "shasum": "",
  9160. "mirrors": [
  9161. {
  9162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9163. "preferred": true
  9164. }
  9165. ]
  9166. },
  9167. "require": {
  9168. "php": ">=7.1"
  9169. },
  9170. "require-dev": {
  9171. "phpunit/phpunit": "^8.5"
  9172. },
  9173. "type": "library",
  9174. "extra": {
  9175. "branch-alias": {
  9176. "dev-master": "2.1-dev"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "classmap": [
  9181. "src/"
  9182. ]
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "BSD-3-Clause"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Sebastian Bergmann",
  9191. "email": "sebastian@phpunit.de",
  9192. "role": "lead"
  9193. }
  9194. ],
  9195. "description": "Utility class for timing",
  9196. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9197. "keywords": [
  9198. "timer"
  9199. ],
  9200. "support": {
  9201. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9202. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9203. },
  9204. "funding": [
  9205. {
  9206. "url": "https://github.com/sebastianbergmann",
  9207. "type": "github"
  9208. }
  9209. ],
  9210. "time": "2020-11-30T08:20:02+00:00"
  9211. },
  9212. {
  9213. "name": "phpunit/php-token-stream",
  9214. "version": "3.1.2",
  9215. "source": {
  9216. "type": "git",
  9217. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9218. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  9219. },
  9220. "dist": {
  9221. "type": "zip",
  9222. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  9223. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  9224. "shasum": "",
  9225. "mirrors": [
  9226. {
  9227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9228. "preferred": true
  9229. }
  9230. ]
  9231. },
  9232. "require": {
  9233. "ext-tokenizer": "*",
  9234. "php": ">=7.1"
  9235. },
  9236. "require-dev": {
  9237. "phpunit/phpunit": "^7.0"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-master": "3.1-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "classmap": [
  9247. "src/"
  9248. ]
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "BSD-3-Clause"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "Sebastian Bergmann",
  9257. "email": "sebastian@phpunit.de"
  9258. }
  9259. ],
  9260. "description": "Wrapper around PHP's tokenizer extension.",
  9261. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9262. "keywords": [
  9263. "tokenizer"
  9264. ],
  9265. "support": {
  9266. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9267. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  9268. },
  9269. "funding": [
  9270. {
  9271. "url": "https://github.com/sebastianbergmann",
  9272. "type": "github"
  9273. }
  9274. ],
  9275. "abandoned": true,
  9276. "time": "2020-11-30T08:38:46+00:00"
  9277. },
  9278. {
  9279. "name": "phpunit/phpunit",
  9280. "version": "8.5.15",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9284. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9289. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9290. "shasum": "",
  9291. "mirrors": [
  9292. {
  9293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9294. "preferred": true
  9295. }
  9296. ]
  9297. },
  9298. "require": {
  9299. "doctrine/instantiator": "^1.3.1",
  9300. "ext-dom": "*",
  9301. "ext-json": "*",
  9302. "ext-libxml": "*",
  9303. "ext-mbstring": "*",
  9304. "ext-xml": "*",
  9305. "ext-xmlwriter": "*",
  9306. "myclabs/deep-copy": "^1.10.0",
  9307. "phar-io/manifest": "^2.0.1",
  9308. "phar-io/version": "^3.0.2",
  9309. "php": ">=7.2",
  9310. "phpspec/prophecy": "^1.10.3",
  9311. "phpunit/php-code-coverage": "^7.0.12",
  9312. "phpunit/php-file-iterator": "^2.0.2",
  9313. "phpunit/php-text-template": "^1.2.1",
  9314. "phpunit/php-timer": "^2.1.2",
  9315. "sebastian/comparator": "^3.0.2",
  9316. "sebastian/diff": "^3.0.2",
  9317. "sebastian/environment": "^4.2.3",
  9318. "sebastian/exporter": "^3.1.2",
  9319. "sebastian/global-state": "^3.0.0",
  9320. "sebastian/object-enumerator": "^3.0.3",
  9321. "sebastian/resource-operations": "^2.0.1",
  9322. "sebastian/type": "^1.1.3",
  9323. "sebastian/version": "^2.0.1"
  9324. },
  9325. "require-dev": {
  9326. "ext-pdo": "*"
  9327. },
  9328. "suggest": {
  9329. "ext-soap": "*",
  9330. "ext-xdebug": "*",
  9331. "phpunit/php-invoker": "^2.0.0"
  9332. },
  9333. "bin": [
  9334. "phpunit"
  9335. ],
  9336. "type": "library",
  9337. "extra": {
  9338. "branch-alias": {
  9339. "dev-master": "8.5-dev"
  9340. }
  9341. },
  9342. "autoload": {
  9343. "classmap": [
  9344. "src/"
  9345. ]
  9346. },
  9347. "notification-url": "https://packagist.org/downloads/",
  9348. "license": [
  9349. "BSD-3-Clause"
  9350. ],
  9351. "authors": [
  9352. {
  9353. "name": "Sebastian Bergmann",
  9354. "email": "sebastian@phpunit.de",
  9355. "role": "lead"
  9356. }
  9357. ],
  9358. "description": "The PHP Unit Testing framework.",
  9359. "homepage": "https://phpunit.de/",
  9360. "keywords": [
  9361. "phpunit",
  9362. "testing",
  9363. "xunit"
  9364. ],
  9365. "support": {
  9366. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9367. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.15"
  9368. },
  9369. "funding": [
  9370. {
  9371. "url": "https://phpunit.de/donate.html",
  9372. "type": "custom"
  9373. },
  9374. {
  9375. "url": "https://github.com/sebastianbergmann",
  9376. "type": "github"
  9377. }
  9378. ],
  9379. "time": "2021-03-17T07:27:54+00:00"
  9380. },
  9381. {
  9382. "name": "sebastian/code-unit-reverse-lookup",
  9383. "version": "1.0.2",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9387. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9392. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9393. "shasum": "",
  9394. "mirrors": [
  9395. {
  9396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9397. "preferred": true
  9398. }
  9399. ]
  9400. },
  9401. "require": {
  9402. "php": ">=5.6"
  9403. },
  9404. "require-dev": {
  9405. "phpunit/phpunit": "^8.5"
  9406. },
  9407. "type": "library",
  9408. "extra": {
  9409. "branch-alias": {
  9410. "dev-master": "1.0.x-dev"
  9411. }
  9412. },
  9413. "autoload": {
  9414. "classmap": [
  9415. "src/"
  9416. ]
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "BSD-3-Clause"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Sebastian Bergmann",
  9425. "email": "sebastian@phpunit.de"
  9426. }
  9427. ],
  9428. "description": "Looks up which function or method a line of code belongs to",
  9429. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9430. "support": {
  9431. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9432. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9433. },
  9434. "funding": [
  9435. {
  9436. "url": "https://github.com/sebastianbergmann",
  9437. "type": "github"
  9438. }
  9439. ],
  9440. "time": "2020-11-30T08:15:22+00:00"
  9441. },
  9442. {
  9443. "name": "sebastian/comparator",
  9444. "version": "3.0.3",
  9445. "source": {
  9446. "type": "git",
  9447. "url": "https://github.com/sebastianbergmann/comparator.git",
  9448. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9449. },
  9450. "dist": {
  9451. "type": "zip",
  9452. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9453. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9454. "shasum": "",
  9455. "mirrors": [
  9456. {
  9457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9458. "preferred": true
  9459. }
  9460. ]
  9461. },
  9462. "require": {
  9463. "php": ">=7.1",
  9464. "sebastian/diff": "^3.0",
  9465. "sebastian/exporter": "^3.1"
  9466. },
  9467. "require-dev": {
  9468. "phpunit/phpunit": "^8.5"
  9469. },
  9470. "type": "library",
  9471. "extra": {
  9472. "branch-alias": {
  9473. "dev-master": "3.0-dev"
  9474. }
  9475. },
  9476. "autoload": {
  9477. "classmap": [
  9478. "src/"
  9479. ]
  9480. },
  9481. "notification-url": "https://packagist.org/downloads/",
  9482. "license": [
  9483. "BSD-3-Clause"
  9484. ],
  9485. "authors": [
  9486. {
  9487. "name": "Sebastian Bergmann",
  9488. "email": "sebastian@phpunit.de"
  9489. },
  9490. {
  9491. "name": "Jeff Welch",
  9492. "email": "whatthejeff@gmail.com"
  9493. },
  9494. {
  9495. "name": "Volker Dusch",
  9496. "email": "github@wallbash.com"
  9497. },
  9498. {
  9499. "name": "Bernhard Schussek",
  9500. "email": "bschussek@2bepublished.at"
  9501. }
  9502. ],
  9503. "description": "Provides the functionality to compare PHP values for equality",
  9504. "homepage": "https://github.com/sebastianbergmann/comparator",
  9505. "keywords": [
  9506. "comparator",
  9507. "compare",
  9508. "equality"
  9509. ],
  9510. "support": {
  9511. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9512. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9513. },
  9514. "funding": [
  9515. {
  9516. "url": "https://github.com/sebastianbergmann",
  9517. "type": "github"
  9518. }
  9519. ],
  9520. "time": "2020-11-30T08:04:30+00:00"
  9521. },
  9522. {
  9523. "name": "sebastian/diff",
  9524. "version": "3.0.3",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/sebastianbergmann/diff.git",
  9528. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9533. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9534. "shasum": "",
  9535. "mirrors": [
  9536. {
  9537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9538. "preferred": true
  9539. }
  9540. ]
  9541. },
  9542. "require": {
  9543. "php": ">=7.1"
  9544. },
  9545. "require-dev": {
  9546. "phpunit/phpunit": "^7.5 || ^8.0",
  9547. "symfony/process": "^2 || ^3.3 || ^4"
  9548. },
  9549. "type": "library",
  9550. "extra": {
  9551. "branch-alias": {
  9552. "dev-master": "3.0-dev"
  9553. }
  9554. },
  9555. "autoload": {
  9556. "classmap": [
  9557. "src/"
  9558. ]
  9559. },
  9560. "notification-url": "https://packagist.org/downloads/",
  9561. "license": [
  9562. "BSD-3-Clause"
  9563. ],
  9564. "authors": [
  9565. {
  9566. "name": "Sebastian Bergmann",
  9567. "email": "sebastian@phpunit.de"
  9568. },
  9569. {
  9570. "name": "Kore Nordmann",
  9571. "email": "mail@kore-nordmann.de"
  9572. }
  9573. ],
  9574. "description": "Diff implementation",
  9575. "homepage": "https://github.com/sebastianbergmann/diff",
  9576. "keywords": [
  9577. "diff",
  9578. "udiff",
  9579. "unidiff",
  9580. "unified diff"
  9581. ],
  9582. "support": {
  9583. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9584. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://github.com/sebastianbergmann",
  9589. "type": "github"
  9590. }
  9591. ],
  9592. "time": "2020-11-30T07:59:04+00:00"
  9593. },
  9594. {
  9595. "name": "sebastian/environment",
  9596. "version": "4.2.4",
  9597. "source": {
  9598. "type": "git",
  9599. "url": "https://github.com/sebastianbergmann/environment.git",
  9600. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9601. },
  9602. "dist": {
  9603. "type": "zip",
  9604. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9605. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9606. "shasum": "",
  9607. "mirrors": [
  9608. {
  9609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9610. "preferred": true
  9611. }
  9612. ]
  9613. },
  9614. "require": {
  9615. "php": ">=7.1"
  9616. },
  9617. "require-dev": {
  9618. "phpunit/phpunit": "^7.5"
  9619. },
  9620. "suggest": {
  9621. "ext-posix": "*"
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "4.2-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "classmap": [
  9631. "src/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "BSD-3-Clause"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Sebastian Bergmann",
  9641. "email": "sebastian@phpunit.de"
  9642. }
  9643. ],
  9644. "description": "Provides functionality to handle HHVM/PHP environments",
  9645. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9646. "keywords": [
  9647. "Xdebug",
  9648. "environment",
  9649. "hhvm"
  9650. ],
  9651. "support": {
  9652. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9653. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9654. },
  9655. "funding": [
  9656. {
  9657. "url": "https://github.com/sebastianbergmann",
  9658. "type": "github"
  9659. }
  9660. ],
  9661. "time": "2020-11-30T07:53:42+00:00"
  9662. },
  9663. {
  9664. "name": "sebastian/exporter",
  9665. "version": "3.1.3",
  9666. "source": {
  9667. "type": "git",
  9668. "url": "https://github.com/sebastianbergmann/exporter.git",
  9669. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9670. },
  9671. "dist": {
  9672. "type": "zip",
  9673. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9674. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9675. "shasum": "",
  9676. "mirrors": [
  9677. {
  9678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9679. "preferred": true
  9680. }
  9681. ]
  9682. },
  9683. "require": {
  9684. "php": ">=7.0",
  9685. "sebastian/recursion-context": "^3.0"
  9686. },
  9687. "require-dev": {
  9688. "ext-mbstring": "*",
  9689. "phpunit/phpunit": "^6.0"
  9690. },
  9691. "type": "library",
  9692. "extra": {
  9693. "branch-alias": {
  9694. "dev-master": "3.1.x-dev"
  9695. }
  9696. },
  9697. "autoload": {
  9698. "classmap": [
  9699. "src/"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "BSD-3-Clause"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Sebastian Bergmann",
  9709. "email": "sebastian@phpunit.de"
  9710. },
  9711. {
  9712. "name": "Jeff Welch",
  9713. "email": "whatthejeff@gmail.com"
  9714. },
  9715. {
  9716. "name": "Volker Dusch",
  9717. "email": "github@wallbash.com"
  9718. },
  9719. {
  9720. "name": "Adam Harvey",
  9721. "email": "aharvey@php.net"
  9722. },
  9723. {
  9724. "name": "Bernhard Schussek",
  9725. "email": "bschussek@gmail.com"
  9726. }
  9727. ],
  9728. "description": "Provides the functionality to export PHP variables for visualization",
  9729. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9730. "keywords": [
  9731. "export",
  9732. "exporter"
  9733. ],
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9736. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2020-11-30T07:47:53+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/global-state",
  9748. "version": "3.0.1",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/global-state.git",
  9752. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9757. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9758. "shasum": "",
  9759. "mirrors": [
  9760. {
  9761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9762. "preferred": true
  9763. }
  9764. ]
  9765. },
  9766. "require": {
  9767. "php": ">=7.2",
  9768. "sebastian/object-reflector": "^1.1.1",
  9769. "sebastian/recursion-context": "^3.0"
  9770. },
  9771. "require-dev": {
  9772. "ext-dom": "*",
  9773. "phpunit/phpunit": "^8.0"
  9774. },
  9775. "suggest": {
  9776. "ext-uopz": "*"
  9777. },
  9778. "type": "library",
  9779. "extra": {
  9780. "branch-alias": {
  9781. "dev-master": "3.0-dev"
  9782. }
  9783. },
  9784. "autoload": {
  9785. "classmap": [
  9786. "src/"
  9787. ]
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "BSD-3-Clause"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Sebastian Bergmann",
  9796. "email": "sebastian@phpunit.de"
  9797. }
  9798. ],
  9799. "description": "Snapshotting of global state",
  9800. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9801. "keywords": [
  9802. "global state"
  9803. ],
  9804. "support": {
  9805. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9806. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9807. },
  9808. "funding": [
  9809. {
  9810. "url": "https://github.com/sebastianbergmann",
  9811. "type": "github"
  9812. }
  9813. ],
  9814. "time": "2020-11-30T07:43:24+00:00"
  9815. },
  9816. {
  9817. "name": "sebastian/object-enumerator",
  9818. "version": "3.0.4",
  9819. "source": {
  9820. "type": "git",
  9821. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9822. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9823. },
  9824. "dist": {
  9825. "type": "zip",
  9826. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9827. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9828. "shasum": "",
  9829. "mirrors": [
  9830. {
  9831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9832. "preferred": true
  9833. }
  9834. ]
  9835. },
  9836. "require": {
  9837. "php": ">=7.0",
  9838. "sebastian/object-reflector": "^1.1.1",
  9839. "sebastian/recursion-context": "^3.0"
  9840. },
  9841. "require-dev": {
  9842. "phpunit/phpunit": "^6.0"
  9843. },
  9844. "type": "library",
  9845. "extra": {
  9846. "branch-alias": {
  9847. "dev-master": "3.0.x-dev"
  9848. }
  9849. },
  9850. "autoload": {
  9851. "classmap": [
  9852. "src/"
  9853. ]
  9854. },
  9855. "notification-url": "https://packagist.org/downloads/",
  9856. "license": [
  9857. "BSD-3-Clause"
  9858. ],
  9859. "authors": [
  9860. {
  9861. "name": "Sebastian Bergmann",
  9862. "email": "sebastian@phpunit.de"
  9863. }
  9864. ],
  9865. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9866. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9867. "support": {
  9868. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9869. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9870. },
  9871. "funding": [
  9872. {
  9873. "url": "https://github.com/sebastianbergmann",
  9874. "type": "github"
  9875. }
  9876. ],
  9877. "time": "2020-11-30T07:40:27+00:00"
  9878. },
  9879. {
  9880. "name": "sebastian/object-reflector",
  9881. "version": "1.1.2",
  9882. "source": {
  9883. "type": "git",
  9884. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9885. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9886. },
  9887. "dist": {
  9888. "type": "zip",
  9889. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9890. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9891. "shasum": "",
  9892. "mirrors": [
  9893. {
  9894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9895. "preferred": true
  9896. }
  9897. ]
  9898. },
  9899. "require": {
  9900. "php": ">=7.0"
  9901. },
  9902. "require-dev": {
  9903. "phpunit/phpunit": "^6.0"
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-master": "1.1-dev"
  9909. }
  9910. },
  9911. "autoload": {
  9912. "classmap": [
  9913. "src/"
  9914. ]
  9915. },
  9916. "notification-url": "https://packagist.org/downloads/",
  9917. "license": [
  9918. "BSD-3-Clause"
  9919. ],
  9920. "authors": [
  9921. {
  9922. "name": "Sebastian Bergmann",
  9923. "email": "sebastian@phpunit.de"
  9924. }
  9925. ],
  9926. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9927. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9928. "support": {
  9929. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9930. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9931. },
  9932. "funding": [
  9933. {
  9934. "url": "https://github.com/sebastianbergmann",
  9935. "type": "github"
  9936. }
  9937. ],
  9938. "time": "2020-11-30T07:37:18+00:00"
  9939. },
  9940. {
  9941. "name": "sebastian/recursion-context",
  9942. "version": "3.0.1",
  9943. "source": {
  9944. "type": "git",
  9945. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9946. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9947. },
  9948. "dist": {
  9949. "type": "zip",
  9950. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9951. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9952. "shasum": "",
  9953. "mirrors": [
  9954. {
  9955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9956. "preferred": true
  9957. }
  9958. ]
  9959. },
  9960. "require": {
  9961. "php": ">=7.0"
  9962. },
  9963. "require-dev": {
  9964. "phpunit/phpunit": "^6.0"
  9965. },
  9966. "type": "library",
  9967. "extra": {
  9968. "branch-alias": {
  9969. "dev-master": "3.0.x-dev"
  9970. }
  9971. },
  9972. "autoload": {
  9973. "classmap": [
  9974. "src/"
  9975. ]
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "BSD-3-Clause"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Sebastian Bergmann",
  9984. "email": "sebastian@phpunit.de"
  9985. },
  9986. {
  9987. "name": "Jeff Welch",
  9988. "email": "whatthejeff@gmail.com"
  9989. },
  9990. {
  9991. "name": "Adam Harvey",
  9992. "email": "aharvey@php.net"
  9993. }
  9994. ],
  9995. "description": "Provides functionality to recursively process PHP variables",
  9996. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9997. "support": {
  9998. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9999. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10000. },
  10001. "funding": [
  10002. {
  10003. "url": "https://github.com/sebastianbergmann",
  10004. "type": "github"
  10005. }
  10006. ],
  10007. "time": "2020-11-30T07:34:24+00:00"
  10008. },
  10009. {
  10010. "name": "sebastian/resource-operations",
  10011. "version": "2.0.2",
  10012. "source": {
  10013. "type": "git",
  10014. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10015. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10016. },
  10017. "dist": {
  10018. "type": "zip",
  10019. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10020. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10021. "shasum": "",
  10022. "mirrors": [
  10023. {
  10024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10025. "preferred": true
  10026. }
  10027. ]
  10028. },
  10029. "require": {
  10030. "php": ">=7.1"
  10031. },
  10032. "type": "library",
  10033. "extra": {
  10034. "branch-alias": {
  10035. "dev-master": "2.0-dev"
  10036. }
  10037. },
  10038. "autoload": {
  10039. "classmap": [
  10040. "src/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "BSD-3-Clause"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Sebastian Bergmann",
  10050. "email": "sebastian@phpunit.de"
  10051. }
  10052. ],
  10053. "description": "Provides a list of PHP built-in functions that operate on resources",
  10054. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10055. "support": {
  10056. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10057. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10058. },
  10059. "funding": [
  10060. {
  10061. "url": "https://github.com/sebastianbergmann",
  10062. "type": "github"
  10063. }
  10064. ],
  10065. "time": "2020-11-30T07:30:19+00:00"
  10066. },
  10067. {
  10068. "name": "sebastian/type",
  10069. "version": "1.1.4",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/sebastianbergmann/type.git",
  10073. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10078. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10079. "shasum": "",
  10080. "mirrors": [
  10081. {
  10082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10083. "preferred": true
  10084. }
  10085. ]
  10086. },
  10087. "require": {
  10088. "php": ">=7.2"
  10089. },
  10090. "require-dev": {
  10091. "phpunit/phpunit": "^8.2"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "1.1-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "classmap": [
  10101. "src/"
  10102. ]
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "BSD-3-Clause"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Sebastian Bergmann",
  10111. "email": "sebastian@phpunit.de",
  10112. "role": "lead"
  10113. }
  10114. ],
  10115. "description": "Collection of value objects that represent the types of the PHP type system",
  10116. "homepage": "https://github.com/sebastianbergmann/type",
  10117. "support": {
  10118. "issues": "https://github.com/sebastianbergmann/type/issues",
  10119. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10120. },
  10121. "funding": [
  10122. {
  10123. "url": "https://github.com/sebastianbergmann",
  10124. "type": "github"
  10125. }
  10126. ],
  10127. "time": "2020-11-30T07:25:11+00:00"
  10128. },
  10129. {
  10130. "name": "sebastian/version",
  10131. "version": "2.0.1",
  10132. "source": {
  10133. "type": "git",
  10134. "url": "https://github.com/sebastianbergmann/version.git",
  10135. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10136. },
  10137. "dist": {
  10138. "type": "zip",
  10139. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10140. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10141. "shasum": "",
  10142. "mirrors": [
  10143. {
  10144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10145. "preferred": true
  10146. }
  10147. ]
  10148. },
  10149. "require": {
  10150. "php": ">=5.6"
  10151. },
  10152. "type": "library",
  10153. "extra": {
  10154. "branch-alias": {
  10155. "dev-master": "2.0.x-dev"
  10156. }
  10157. },
  10158. "autoload": {
  10159. "classmap": [
  10160. "src/"
  10161. ]
  10162. },
  10163. "notification-url": "https://packagist.org/downloads/",
  10164. "license": [
  10165. "BSD-3-Clause"
  10166. ],
  10167. "authors": [
  10168. {
  10169. "name": "Sebastian Bergmann",
  10170. "email": "sebastian@phpunit.de",
  10171. "role": "lead"
  10172. }
  10173. ],
  10174. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10175. "homepage": "https://github.com/sebastianbergmann/version",
  10176. "support": {
  10177. "issues": "https://github.com/sebastianbergmann/version/issues",
  10178. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10179. },
  10180. "time": "2016-10-03T07:35:21+00:00"
  10181. },
  10182. {
  10183. "name": "symfony/debug",
  10184. "version": "v4.4.22",
  10185. "source": {
  10186. "type": "git",
  10187. "url": "https://github.com/symfony/debug.git",
  10188. "reference": "45b2136377cca5f10af858968d6079a482bca473"
  10189. },
  10190. "dist": {
  10191. "type": "zip",
  10192. "url": "https://api.github.com/repos/symfony/debug/zipball/45b2136377cca5f10af858968d6079a482bca473",
  10193. "reference": "45b2136377cca5f10af858968d6079a482bca473",
  10194. "shasum": "",
  10195. "mirrors": [
  10196. {
  10197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10198. "preferred": true
  10199. }
  10200. ]
  10201. },
  10202. "require": {
  10203. "php": ">=7.1.3",
  10204. "psr/log": "~1.0",
  10205. "symfony/polyfill-php80": "^1.15"
  10206. },
  10207. "conflict": {
  10208. "symfony/http-kernel": "<3.4"
  10209. },
  10210. "require-dev": {
  10211. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10212. },
  10213. "type": "library",
  10214. "autoload": {
  10215. "psr-4": {
  10216. "Symfony\\Component\\Debug\\": ""
  10217. },
  10218. "exclude-from-classmap": [
  10219. "/Tests/"
  10220. ]
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Fabien Potencier",
  10229. "email": "fabien@symfony.com"
  10230. },
  10231. {
  10232. "name": "Symfony Community",
  10233. "homepage": "https://symfony.com/contributors"
  10234. }
  10235. ],
  10236. "description": "Provides tools to ease debugging PHP code",
  10237. "homepage": "https://symfony.com",
  10238. "support": {
  10239. "source": "https://github.com/symfony/debug/tree/v4.4.22"
  10240. },
  10241. "funding": [
  10242. {
  10243. "url": "https://symfony.com/sponsor",
  10244. "type": "custom"
  10245. },
  10246. {
  10247. "url": "https://github.com/fabpot",
  10248. "type": "github"
  10249. },
  10250. {
  10251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10252. "type": "tidelift"
  10253. }
  10254. ],
  10255. "time": "2021-04-02T07:50:12+00:00"
  10256. },
  10257. {
  10258. "name": "theseer/tokenizer",
  10259. "version": "1.2.0",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/theseer/tokenizer.git",
  10263. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10268. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10269. "shasum": "",
  10270. "mirrors": [
  10271. {
  10272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10273. "preferred": true
  10274. }
  10275. ]
  10276. },
  10277. "require": {
  10278. "ext-dom": "*",
  10279. "ext-tokenizer": "*",
  10280. "ext-xmlwriter": "*",
  10281. "php": "^7.2 || ^8.0"
  10282. },
  10283. "type": "library",
  10284. "autoload": {
  10285. "classmap": [
  10286. "src/"
  10287. ]
  10288. },
  10289. "notification-url": "https://packagist.org/downloads/",
  10290. "license": [
  10291. "BSD-3-Clause"
  10292. ],
  10293. "authors": [
  10294. {
  10295. "name": "Arne Blankerts",
  10296. "email": "arne@blankerts.de",
  10297. "role": "Developer"
  10298. }
  10299. ],
  10300. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10301. "support": {
  10302. "issues": "https://github.com/theseer/tokenizer/issues",
  10303. "source": "https://github.com/theseer/tokenizer/tree/master"
  10304. },
  10305. "funding": [
  10306. {
  10307. "url": "https://github.com/theseer",
  10308. "type": "github"
  10309. }
  10310. ],
  10311. "time": "2020-07-12T23:59:07+00:00"
  10312. },
  10313. {
  10314. "name": "webmozart/assert",
  10315. "version": "1.10.0",
  10316. "source": {
  10317. "type": "git",
  10318. "url": "https://github.com/webmozarts/assert.git",
  10319. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10320. },
  10321. "dist": {
  10322. "type": "zip",
  10323. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10324. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10325. "shasum": "",
  10326. "mirrors": [
  10327. {
  10328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10329. "preferred": true
  10330. }
  10331. ]
  10332. },
  10333. "require": {
  10334. "php": "^7.2 || ^8.0",
  10335. "symfony/polyfill-ctype": "^1.8"
  10336. },
  10337. "conflict": {
  10338. "phpstan/phpstan": "<0.12.20",
  10339. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10340. },
  10341. "require-dev": {
  10342. "phpunit/phpunit": "^8.5.13"
  10343. },
  10344. "type": "library",
  10345. "extra": {
  10346. "branch-alias": {
  10347. "dev-master": "1.10-dev"
  10348. }
  10349. },
  10350. "autoload": {
  10351. "psr-4": {
  10352. "Webmozart\\Assert\\": "src/"
  10353. }
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "MIT"
  10358. ],
  10359. "authors": [
  10360. {
  10361. "name": "Bernhard Schussek",
  10362. "email": "bschussek@gmail.com"
  10363. }
  10364. ],
  10365. "description": "Assertions to validate method input/output with nice error messages.",
  10366. "keywords": [
  10367. "assert",
  10368. "check",
  10369. "validate"
  10370. ],
  10371. "support": {
  10372. "issues": "https://github.com/webmozarts/assert/issues",
  10373. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10374. },
  10375. "time": "2021-03-09T10:59:23+00:00"
  10376. }
  10377. ],
  10378. "aliases": [],
  10379. "minimum-stability": "dev",
  10380. "stability-flags": [],
  10381. "prefer-stable": true,
  10382. "prefer-lowest": false,
  10383. "platform": {
  10384. "php": "^7.2.14",
  10385. "ext-bcmath": "*",
  10386. "ext-json": "*",
  10387. "ext-mbstring": "*",
  10388. "ext-openssl": "*",
  10389. "ext-pdo": "*"
  10390. },
  10391. "platform-dev": [],
  10392. "platform-overrides": {
  10393. "ext-pcntl": "7.2",
  10394. "ext-posix": "7.2"
  10395. },
  10396. "plugin-api-version": "2.0.0"
  10397. }