composer.lock 243 KB

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