composer.lock 303 KB

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