composer.lock 235 KB

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