composer.lock 189 KB

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