composer.lock 203 KB

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