composer.lock 202 KB

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