composer.lock 305 KB

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