composer.lock 281 KB

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