composer.lock 299 KB

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