composer.lock 274 KB

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