composer.lock 260 KB

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