composer.lock 202 KB

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