installed.json 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098
  1. {
  2. "packages": [
  3. {
  4. "name": "adldap2/adldap2",
  5. "version": "v10.4.1",
  6. "version_normalized": "10.4.1.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/Adldap2/Adldap2.git",
  10. "reference": "81aeb283f56e216ae925a9cc4241de56b1fd4453"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/Adldap2/Adldap2/zipball/81aeb283f56e216ae925a9cc4241de56b1fd4453",
  15. "reference": "81aeb283f56e216ae925a9cc4241de56b1fd4453",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "ext-json": "*",
  20. "ext-ldap": "*",
  21. "illuminate/contracts": "~5.0|~6.0|~7.0|~8.0|~9.0",
  22. "php": ">=7.0",
  23. "psr/log": "~1.0|~2.0|~3.0",
  24. "psr/simple-cache": "~1.0|~2.0",
  25. "tightenco/collect": "~5.0|~6.0|~7.0|~8.0"
  26. },
  27. "require-dev": {
  28. "mockery/mockery": "~1.0",
  29. "symfony/phpunit-bridge": "~5.2|~6.0"
  30. },
  31. "suggest": {
  32. "ext-fileinfo": "fileinfo is required when retrieving user encoded thumbnails"
  33. },
  34. "time": "2022-02-09T13:54:20+00:00",
  35. "type": "library",
  36. "installation-source": "dist",
  37. "autoload": {
  38. "psr-4": {
  39. "Adldap\\": "src/"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Steve Bauman",
  49. "email": "steven_bauman@outlook.com",
  50. "role": "Developer"
  51. }
  52. ],
  53. "description": "A PHP LDAP Package for humans.",
  54. "keywords": [
  55. "active directory",
  56. "ad",
  57. "adLDAP",
  58. "adldap2",
  59. "directory",
  60. "ldap",
  61. "windows"
  62. ],
  63. "support": {
  64. "docs": "https://github.com/Adldap2/Adldap2/blob/master/readme.md",
  65. "email": "steven_bauman@outlook.com",
  66. "issues": "https://github.com/Adldap2/Adldap2/issues",
  67. "source": "https://github.com/Adldap2/Adldap2"
  68. },
  69. "install-path": "../adldap2/adldap2"
  70. },
  71. {
  72. "name": "bcremer/line-reader",
  73. "version": "1.1.0",
  74. "version_normalized": "1.1.0.0",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/bcremer/LineReader.git",
  78. "reference": "3ec3e200577630f1e58d30b4c1c468b877d8d0a7"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/bcremer/LineReader/zipball/3ec3e200577630f1e58d30b4c1c468b877d8d0a7",
  83. "reference": "3ec3e200577630f1e58d30b4c1c468b877d8d0a7",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "php": "^7.3|^7.4|^8.0"
  88. },
  89. "require-dev": {
  90. "infection/infection": "^0.18",
  91. "phpunit/phpunit": "^9.4"
  92. },
  93. "time": "2020-12-08T13:58:53+00:00",
  94. "type": "library",
  95. "installation-source": "dist",
  96. "autoload": {
  97. "psr-4": {
  98. "Bcremer\\LineReader\\": "src/"
  99. }
  100. },
  101. "notification-url": "https://packagist.org/downloads/",
  102. "license": [
  103. "MIT"
  104. ],
  105. "authors": [
  106. {
  107. "name": "Benjamin Cremer",
  108. "email": "bc@benjamin-cremer.de"
  109. }
  110. ],
  111. "description": "Read large files line by line in a memory efficient (constant) way.",
  112. "support": {
  113. "issues": "https://github.com/bcremer/LineReader/issues",
  114. "source": "https://github.com/bcremer/LineReader/tree/1.1.0"
  115. },
  116. "install-path": "../bcremer/line-reader"
  117. },
  118. {
  119. "name": "bogstag/oauth2-trakt",
  120. "version": "v1.0.1",
  121. "version_normalized": "1.0.1.0",
  122. "source": {
  123. "type": "git",
  124. "url": "https://github.com/Bogstag/oauth2-trakt.git",
  125. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2"
  126. },
  127. "dist": {
  128. "type": "zip",
  129. "url": "https://api.github.com/repos/Bogstag/oauth2-trakt/zipball/fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  130. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  131. "shasum": ""
  132. },
  133. "require": {
  134. "league/oauth2-client": "^2.0",
  135. "php": ">=5.6.0"
  136. },
  137. "require-dev": {
  138. "mockery/mockery": "~0.9",
  139. "phpunit/phpunit": "^5.0",
  140. "squizlabs/php_codesniffer": "~2.0"
  141. },
  142. "time": "2017-02-26T18:30:14+00:00",
  143. "type": "library",
  144. "installation-source": "dist",
  145. "autoload": {
  146. "psr-4": {
  147. "Bogstag\\OAuth2\\Client\\": "src/"
  148. }
  149. },
  150. "notification-url": "https://packagist.org/downloads/",
  151. "license": [
  152. "MIT"
  153. ],
  154. "authors": [
  155. {
  156. "name": "Bogstag",
  157. "email": "krister@bogstag.se",
  158. "homepage": "https://github.com/bogstag"
  159. }
  160. ],
  161. "description": "trakt.tv OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  162. "keywords": [
  163. "Authentication",
  164. "authorization",
  165. "client",
  166. "oauth",
  167. "oauth2",
  168. "trakt"
  169. ],
  170. "support": {
  171. "issues": "https://github.com/Bogstag/oauth2-trakt/issues",
  172. "source": "https://github.com/Bogstag/oauth2-trakt/tree/master"
  173. },
  174. "install-path": "../bogstag/oauth2-trakt"
  175. },
  176. {
  177. "name": "composer/semver",
  178. "version": "1.7.2",
  179. "version_normalized": "1.7.2.0",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/composer/semver.git",
  183. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  188. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "php": "^5.3.2 || ^7.0 || ^8.0"
  193. },
  194. "require-dev": {
  195. "phpunit/phpunit": "^4.5 || ^5.0.5"
  196. },
  197. "time": "2020-12-03T15:47:16+00:00",
  198. "type": "library",
  199. "extra": {
  200. "branch-alias": {
  201. "dev-master": "1.x-dev"
  202. }
  203. },
  204. "installation-source": "dist",
  205. "autoload": {
  206. "psr-4": {
  207. "Composer\\Semver\\": "src"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "Nils Adermann",
  217. "email": "naderman@naderman.de",
  218. "homepage": "http://www.naderman.de"
  219. },
  220. {
  221. "name": "Jordi Boggiano",
  222. "email": "j.boggiano@seld.be",
  223. "homepage": "http://seld.be"
  224. },
  225. {
  226. "name": "Rob Bast",
  227. "email": "rob.bast@gmail.com",
  228. "homepage": "http://robbast.nl"
  229. }
  230. ],
  231. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  232. "keywords": [
  233. "semantic",
  234. "semver",
  235. "validation",
  236. "versioning"
  237. ],
  238. "support": {
  239. "irc": "irc://irc.freenode.org/composer",
  240. "issues": "https://github.com/composer/semver/issues",
  241. "source": "https://github.com/composer/semver/tree/1.7.2"
  242. },
  243. "funding": [
  244. {
  245. "url": "https://packagist.com",
  246. "type": "custom"
  247. },
  248. {
  249. "url": "https://github.com/composer",
  250. "type": "github"
  251. },
  252. {
  253. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  254. "type": "tidelift"
  255. }
  256. ],
  257. "install-path": "./semver"
  258. },
  259. {
  260. "name": "dibi/dibi",
  261. "version": "v4.2.6",
  262. "version_normalized": "4.2.6.0",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/dg/dibi.git",
  266. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/dg/dibi/zipball/9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  271. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": ">=7.2"
  276. },
  277. "replace": {
  278. "dg/dibi": "*"
  279. },
  280. "require-dev": {
  281. "nette/di": "^3.0",
  282. "nette/tester": "~2.0",
  283. "phpstan/phpstan": "^0.12",
  284. "tracy/tracy": "~2.2"
  285. },
  286. "time": "2022-01-19T17:38:15+00:00",
  287. "type": "library",
  288. "extra": {
  289. "branch-alias": {
  290. "dev-master": "4.2-dev"
  291. }
  292. },
  293. "installation-source": "dist",
  294. "autoload": {
  295. "classmap": [
  296. "src/"
  297. ]
  298. },
  299. "notification-url": "https://packagist.org/downloads/",
  300. "license": [
  301. "BSD-3-Clause",
  302. "GPL-2.0-only",
  303. "GPL-3.0-only"
  304. ],
  305. "authors": [
  306. {
  307. "name": "David Grudl",
  308. "homepage": "https://davidgrudl.com"
  309. }
  310. ],
  311. "description": "Dibi is Database Abstraction Library for PHP",
  312. "homepage": "https://dibiphp.com",
  313. "keywords": [
  314. "access",
  315. "database",
  316. "dbal",
  317. "mssql",
  318. "mysql",
  319. "odbc",
  320. "oracle",
  321. "pdo",
  322. "postgresql",
  323. "sqlite",
  324. "sqlsrv"
  325. ],
  326. "support": {
  327. "issues": "https://github.com/dg/dibi/issues",
  328. "source": "https://github.com/dg/dibi/tree/v4.2.6"
  329. },
  330. "install-path": "../dibi/dibi"
  331. },
  332. {
  333. "name": "doctrine/annotations",
  334. "version": "1.10.3",
  335. "version_normalized": "1.10.3.0",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/annotations.git",
  339. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
  344. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/lexer": "1.*",
  349. "ext-tokenizer": "*",
  350. "php": "^7.1 || ^8.0"
  351. },
  352. "require-dev": {
  353. "doctrine/cache": "1.*",
  354. "phpunit/phpunit": "^7.5"
  355. },
  356. "time": "2020-05-25T17:24:27+00:00",
  357. "type": "library",
  358. "extra": {
  359. "branch-alias": {
  360. "dev-master": "1.9.x-dev"
  361. }
  362. },
  363. "installation-source": "dist",
  364. "autoload": {
  365. "psr-4": {
  366. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "authors": [
  374. {
  375. "name": "Guilherme Blanco",
  376. "email": "guilhermeblanco@gmail.com"
  377. },
  378. {
  379. "name": "Roman Borschel",
  380. "email": "roman@code-factory.org"
  381. },
  382. {
  383. "name": "Benjamin Eberlei",
  384. "email": "kontakt@beberlei.de"
  385. },
  386. {
  387. "name": "Jonathan Wage",
  388. "email": "jonwage@gmail.com"
  389. },
  390. {
  391. "name": "Johannes Schmitt",
  392. "email": "schmittjoh@gmail.com"
  393. }
  394. ],
  395. "description": "Docblock Annotations Parser",
  396. "homepage": "http://www.doctrine-project.org",
  397. "keywords": [
  398. "annotations",
  399. "docblock",
  400. "parser"
  401. ],
  402. "install-path": "../doctrine/annotations"
  403. },
  404. {
  405. "name": "doctrine/collections",
  406. "version": "1.6.8",
  407. "version_normalized": "1.6.8.0",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/doctrine/collections.git",
  411. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  416. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "php": "^7.1.3 || ^8.0"
  421. },
  422. "require-dev": {
  423. "doctrine/coding-standard": "^9.0",
  424. "phpstan/phpstan": "^0.12",
  425. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  426. "vimeo/psalm": "^4.2.1"
  427. },
  428. "time": "2021-08-10T18:51:53+00:00",
  429. "type": "library",
  430. "installation-source": "dist",
  431. "autoload": {
  432. "psr-4": {
  433. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "MIT"
  439. ],
  440. "authors": [
  441. {
  442. "name": "Guilherme Blanco",
  443. "email": "guilhermeblanco@gmail.com"
  444. },
  445. {
  446. "name": "Roman Borschel",
  447. "email": "roman@code-factory.org"
  448. },
  449. {
  450. "name": "Benjamin Eberlei",
  451. "email": "kontakt@beberlei.de"
  452. },
  453. {
  454. "name": "Jonathan Wage",
  455. "email": "jonwage@gmail.com"
  456. },
  457. {
  458. "name": "Johannes Schmitt",
  459. "email": "schmittjoh@gmail.com"
  460. }
  461. ],
  462. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  463. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  464. "keywords": [
  465. "array",
  466. "collections",
  467. "iterators",
  468. "php"
  469. ],
  470. "support": {
  471. "issues": "https://github.com/doctrine/collections/issues",
  472. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  473. },
  474. "install-path": "../doctrine/collections"
  475. },
  476. {
  477. "name": "doctrine/lexer",
  478. "version": "1.2.1",
  479. "version_normalized": "1.2.1.0",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/doctrine/lexer.git",
  483. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  488. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "php": "^7.2 || ^8.0"
  493. },
  494. "require-dev": {
  495. "doctrine/coding-standard": "^6.0",
  496. "phpstan/phpstan": "^0.11.8",
  497. "phpunit/phpunit": "^8.2"
  498. },
  499. "time": "2020-05-25T17:44:05+00:00",
  500. "type": "library",
  501. "extra": {
  502. "branch-alias": {
  503. "dev-master": "1.2.x-dev"
  504. }
  505. },
  506. "installation-source": "dist",
  507. "autoload": {
  508. "psr-4": {
  509. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "MIT"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Guilherme Blanco",
  519. "email": "guilhermeblanco@gmail.com"
  520. },
  521. {
  522. "name": "Roman Borschel",
  523. "email": "roman@code-factory.org"
  524. },
  525. {
  526. "name": "Johannes Schmitt",
  527. "email": "schmittjoh@gmail.com"
  528. }
  529. ],
  530. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  531. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  532. "keywords": [
  533. "annotations",
  534. "docblock",
  535. "lexer",
  536. "parser",
  537. "php"
  538. ],
  539. "install-path": "../doctrine/lexer"
  540. },
  541. {
  542. "name": "dragonmantank/cron-expression",
  543. "version": "v3.1.0",
  544. "version_normalized": "3.1.0.0",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/dragonmantank/cron-expression.git",
  548. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  553. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  554. "shasum": ""
  555. },
  556. "require": {
  557. "php": "^7.2|^8.0",
  558. "webmozart/assert": "^1.7.0"
  559. },
  560. "replace": {
  561. "mtdowling/cron-expression": "^1.0"
  562. },
  563. "require-dev": {
  564. "phpstan/extension-installer": "^1.0",
  565. "phpstan/phpstan": "^0.12",
  566. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  567. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  568. },
  569. "time": "2020-11-24T19:55:57+00:00",
  570. "type": "library",
  571. "installation-source": "dist",
  572. "autoload": {
  573. "psr-4": {
  574. "Cron\\": "src/Cron/"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Chris Tankersley",
  584. "email": "chris@ctankersley.com",
  585. "homepage": "https://github.com/dragonmantank"
  586. }
  587. ],
  588. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  589. "keywords": [
  590. "cron",
  591. "schedule"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  595. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  596. },
  597. "funding": [
  598. {
  599. "url": "https://github.com/dragonmantank",
  600. "type": "github"
  601. }
  602. ],
  603. "install-path": "../dragonmantank/cron-expression"
  604. },
  605. {
  606. "name": "fig/http-message-util",
  607. "version": "1.1.4",
  608. "version_normalized": "1.1.4.0",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/php-fig/http-message-util.git",
  612. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  617. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  618. "shasum": ""
  619. },
  620. "require": {
  621. "php": "^5.3 || ^7.0"
  622. },
  623. "suggest": {
  624. "psr/http-message": "The package containing the PSR-7 interfaces"
  625. },
  626. "time": "2020-02-05T20:36:27+00:00",
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "1.1.x-dev"
  631. }
  632. },
  633. "installation-source": "dist",
  634. "autoload": {
  635. "psr-4": {
  636. "Fig\\Http\\Message\\": "src/"
  637. }
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "MIT"
  642. ],
  643. "authors": [
  644. {
  645. "name": "PHP-FIG",
  646. "homepage": "http://www.php-fig.org/"
  647. }
  648. ],
  649. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  650. "keywords": [
  651. "http",
  652. "http-message",
  653. "psr",
  654. "psr-7",
  655. "request",
  656. "response"
  657. ],
  658. "install-path": "../fig/http-message-util"
  659. },
  660. {
  661. "name": "guzzlehttp/guzzle",
  662. "version": "7.3.0",
  663. "version_normalized": "7.3.0.0",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/guzzle/guzzle.git",
  667. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  672. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "ext-json": "*",
  677. "guzzlehttp/promises": "^1.4",
  678. "guzzlehttp/psr7": "^1.7 || ^2.0",
  679. "php": "^7.2.5 || ^8.0",
  680. "psr/http-client": "^1.0"
  681. },
  682. "provide": {
  683. "psr/http-client-implementation": "1.0"
  684. },
  685. "require-dev": {
  686. "bamarni/composer-bin-plugin": "^1.4.1",
  687. "ext-curl": "*",
  688. "php-http/client-integration-tests": "^3.0",
  689. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  690. "psr/log": "^1.1"
  691. },
  692. "suggest": {
  693. "ext-curl": "Required for CURL handler support",
  694. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  695. "psr/log": "Required for using the Log middleware"
  696. },
  697. "time": "2021-03-23T11:33:13+00:00",
  698. "type": "library",
  699. "extra": {
  700. "branch-alias": {
  701. "dev-master": "7.3-dev"
  702. }
  703. },
  704. "installation-source": "dist",
  705. "autoload": {
  706. "psr-4": {
  707. "GuzzleHttp\\": "src/"
  708. },
  709. "files": [
  710. "src/functions_include.php"
  711. ]
  712. },
  713. "notification-url": "https://packagist.org/downloads/",
  714. "license": [
  715. "MIT"
  716. ],
  717. "authors": [
  718. {
  719. "name": "Michael Dowling",
  720. "email": "mtdowling@gmail.com",
  721. "homepage": "https://github.com/mtdowling"
  722. },
  723. {
  724. "name": "Márk Sági-Kazár",
  725. "email": "mark.sagikazar@gmail.com",
  726. "homepage": "https://sagikazarmark.hu"
  727. }
  728. ],
  729. "description": "Guzzle is a PHP HTTP client library",
  730. "homepage": "http://guzzlephp.org/",
  731. "keywords": [
  732. "client",
  733. "curl",
  734. "framework",
  735. "http",
  736. "http client",
  737. "psr-18",
  738. "psr-7",
  739. "rest",
  740. "web service"
  741. ],
  742. "support": {
  743. "issues": "https://github.com/guzzle/guzzle/issues",
  744. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  745. },
  746. "funding": [
  747. {
  748. "url": "https://github.com/GrahamCampbell",
  749. "type": "github"
  750. },
  751. {
  752. "url": "https://github.com/Nyholm",
  753. "type": "github"
  754. },
  755. {
  756. "url": "https://github.com/alexeyshockov",
  757. "type": "github"
  758. },
  759. {
  760. "url": "https://github.com/gmponos",
  761. "type": "github"
  762. }
  763. ],
  764. "install-path": "../guzzlehttp/guzzle"
  765. },
  766. {
  767. "name": "guzzlehttp/promises",
  768. "version": "1.4.1",
  769. "version_normalized": "1.4.1.0",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/guzzle/promises.git",
  773. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  778. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  779. "shasum": ""
  780. },
  781. "require": {
  782. "php": ">=5.5"
  783. },
  784. "require-dev": {
  785. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  786. },
  787. "time": "2021-03-07T09:25:29+00:00",
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-master": "1.4-dev"
  792. }
  793. },
  794. "installation-source": "dist",
  795. "autoload": {
  796. "psr-4": {
  797. "GuzzleHttp\\Promise\\": "src/"
  798. },
  799. "files": [
  800. "src/functions_include.php"
  801. ]
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "authors": [
  808. {
  809. "name": "Michael Dowling",
  810. "email": "mtdowling@gmail.com",
  811. "homepage": "https://github.com/mtdowling"
  812. }
  813. ],
  814. "description": "Guzzle promises library",
  815. "keywords": [
  816. "promise"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/guzzle/promises/issues",
  820. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  821. },
  822. "install-path": "../guzzlehttp/promises"
  823. },
  824. {
  825. "name": "guzzlehttp/psr7",
  826. "version": "1.8.2",
  827. "version_normalized": "1.8.2.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/guzzle/psr7.git",
  831. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  836. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "php": ">=5.4.0",
  841. "psr/http-message": "~1.0",
  842. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  843. },
  844. "provide": {
  845. "psr/http-message-implementation": "1.0"
  846. },
  847. "require-dev": {
  848. "ext-zlib": "*",
  849. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  850. },
  851. "suggest": {
  852. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  853. },
  854. "time": "2021-04-26T09:17:50+00:00",
  855. "type": "library",
  856. "extra": {
  857. "branch-alias": {
  858. "dev-master": "1.7-dev"
  859. }
  860. },
  861. "installation-source": "dist",
  862. "autoload": {
  863. "psr-4": {
  864. "GuzzleHttp\\Psr7\\": "src/"
  865. },
  866. "files": [
  867. "src/functions_include.php"
  868. ]
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Michael Dowling",
  877. "email": "mtdowling@gmail.com",
  878. "homepage": "https://github.com/mtdowling"
  879. },
  880. {
  881. "name": "Tobias Schultze",
  882. "homepage": "https://github.com/Tobion"
  883. }
  884. ],
  885. "description": "PSR-7 message implementation that also provides common utility methods",
  886. "keywords": [
  887. "http",
  888. "message",
  889. "psr-7",
  890. "request",
  891. "response",
  892. "stream",
  893. "uri",
  894. "url"
  895. ],
  896. "support": {
  897. "issues": "https://github.com/guzzle/psr7/issues",
  898. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  899. },
  900. "install-path": "../guzzlehttp/psr7"
  901. },
  902. {
  903. "name": "illuminate/contracts",
  904. "version": "v5.8.0",
  905. "version_normalized": "5.8.0.0",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/illuminate/contracts.git",
  909. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/illuminate/contracts/zipball/3e3a9a654adbf798e05491a5dbf90112df1effde",
  914. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde",
  915. "shasum": ""
  916. },
  917. "require": {
  918. "php": "^7.1.3",
  919. "psr/container": "^1.0",
  920. "psr/simple-cache": "^1.0"
  921. },
  922. "time": "2019-02-18T18:37:54+00:00",
  923. "type": "library",
  924. "extra": {
  925. "branch-alias": {
  926. "dev-master": "5.8-dev"
  927. }
  928. },
  929. "installation-source": "dist",
  930. "autoload": {
  931. "psr-4": {
  932. "Illuminate\\Contracts\\": ""
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Taylor Otwell",
  942. "email": "taylor@laravel.com"
  943. }
  944. ],
  945. "description": "The Illuminate Contracts package.",
  946. "homepage": "https://laravel.com",
  947. "install-path": "../illuminate/contracts"
  948. },
  949. {
  950. "name": "kryptonit3/couchpotato",
  951. "version": "1.0.0",
  952. "version_normalized": "1.0.0.0",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/Kryptonit3/CouchPotato.git",
  956. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/Kryptonit3/CouchPotato/zipball/7a1fc892f70f120f74ff005850e923a0f1566376",
  961. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376",
  962. "shasum": ""
  963. },
  964. "require": {
  965. "guzzlehttp/guzzle": "^6.1"
  966. },
  967. "time": "2016-02-06T22:02:39+00:00",
  968. "type": "library",
  969. "installation-source": "dist",
  970. "autoload": {
  971. "psr-4": {
  972. "Kryptonit3\\CouchPotato\\": "src/"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Jesse Szypulski",
  982. "email": "jesse.szypulski@gmail.com"
  983. }
  984. ],
  985. "description": "PHP Wrapper for CouchPotato API",
  986. "install-path": "../kryptonit3/couchpotato"
  987. },
  988. {
  989. "name": "kryptonit3/sickrage",
  990. "version": "1.0.1",
  991. "version_normalized": "1.0.1.0",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/Kryptonit3/SickRage.git",
  995. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/Kryptonit3/SickRage/zipball/441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  1000. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  1001. "shasum": ""
  1002. },
  1003. "require": {
  1004. "guzzlehttp/guzzle": "^6.1"
  1005. },
  1006. "time": "2016-08-08T00:57:46+00:00",
  1007. "type": "library",
  1008. "installation-source": "dist",
  1009. "autoload": {
  1010. "psr-4": {
  1011. "Kryptonit3\\SickRage\\": "src/"
  1012. }
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Jesse Szypulski",
  1021. "email": "jesse.szypulski@gmail.com"
  1022. }
  1023. ],
  1024. "description": "PHP Wrapper for SickRage / SickBeard API",
  1025. "install-path": "../kryptonit3/sickrage"
  1026. },
  1027. {
  1028. "name": "kryptonit3/sonarr",
  1029. "version": "1.0.6.1",
  1030. "version_normalized": "1.0.6.1",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/Kryptonit3/Sonarr.git",
  1034. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/Kryptonit3/Sonarr/zipball/e30c5c783a837270bcef81571ca9b95909c52e5e",
  1039. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e",
  1040. "shasum": ""
  1041. },
  1042. "require": {
  1043. "guzzlehttp/guzzle": "^6.1"
  1044. },
  1045. "time": "2017-06-30T01:25:49+00:00",
  1046. "type": "library",
  1047. "installation-source": "dist",
  1048. "autoload": {
  1049. "psr-4": {
  1050. "Kryptonit3\\Sonarr\\": "src/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Jesse Szypulski",
  1060. "email": "jesse.szypulski@gmail.com"
  1061. }
  1062. ],
  1063. "description": "PHP Sonarr API Wrapper",
  1064. "install-path": "../kryptonit3/sonarr"
  1065. },
  1066. {
  1067. "name": "lcobucci/clock",
  1068. "version": "2.0.0",
  1069. "version_normalized": "2.0.0.0",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/lcobucci/clock.git",
  1073. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  1078. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "php": "^7.4 || ^8.0"
  1083. },
  1084. "require-dev": {
  1085. "infection/infection": "^0.17",
  1086. "lcobucci/coding-standard": "^6.0",
  1087. "phpstan/extension-installer": "^1.0",
  1088. "phpstan/phpstan": "^0.12",
  1089. "phpstan/phpstan-deprecation-rules": "^0.12",
  1090. "phpstan/phpstan-phpunit": "^0.12",
  1091. "phpstan/phpstan-strict-rules": "^0.12",
  1092. "phpunit/php-code-coverage": "9.1.4",
  1093. "phpunit/phpunit": "9.3.7"
  1094. },
  1095. "time": "2020-08-27T18:56:02+00:00",
  1096. "type": "library",
  1097. "installation-source": "dist",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Lcobucci\\Clock\\": "src"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Luís Cobucci",
  1110. "email": "lcobucci@gmail.com"
  1111. }
  1112. ],
  1113. "description": "Yet another clock abstraction",
  1114. "support": {
  1115. "issues": "https://github.com/lcobucci/clock/issues",
  1116. "source": "https://github.com/lcobucci/clock/tree/2.0.x"
  1117. },
  1118. "funding": [
  1119. {
  1120. "url": "https://github.com/lcobucci",
  1121. "type": "github"
  1122. },
  1123. {
  1124. "url": "https://www.patreon.com/lcobucci",
  1125. "type": "patreon"
  1126. }
  1127. ],
  1128. "install-path": "../lcobucci/clock"
  1129. },
  1130. {
  1131. "name": "lcobucci/jwt",
  1132. "version": "4.1.5",
  1133. "version_normalized": "4.1.5.0",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/lcobucci/jwt.git",
  1137. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  1142. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  1143. "shasum": ""
  1144. },
  1145. "require": {
  1146. "ext-hash": "*",
  1147. "ext-json": "*",
  1148. "ext-mbstring": "*",
  1149. "ext-openssl": "*",
  1150. "ext-sodium": "*",
  1151. "lcobucci/clock": "^2.0",
  1152. "php": "^7.4 || ^8.0"
  1153. },
  1154. "require-dev": {
  1155. "infection/infection": "^0.21",
  1156. "lcobucci/coding-standard": "^6.0",
  1157. "mikey179/vfsstream": "^1.6.7",
  1158. "phpbench/phpbench": "^1.0",
  1159. "phpstan/extension-installer": "^1.0",
  1160. "phpstan/phpstan": "^0.12",
  1161. "phpstan/phpstan-deprecation-rules": "^0.12",
  1162. "phpstan/phpstan-phpunit": "^0.12",
  1163. "phpstan/phpstan-strict-rules": "^0.12",
  1164. "phpunit/php-invoker": "^3.1",
  1165. "phpunit/phpunit": "^9.5"
  1166. },
  1167. "time": "2021-09-28T19:34:56+00:00",
  1168. "type": "library",
  1169. "installation-source": "dist",
  1170. "autoload": {
  1171. "psr-4": {
  1172. "Lcobucci\\JWT\\": "src"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "BSD-3-Clause"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Luís Cobucci",
  1182. "email": "lcobucci@gmail.com",
  1183. "role": "Developer"
  1184. }
  1185. ],
  1186. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1187. "keywords": [
  1188. "JWS",
  1189. "jwt"
  1190. ],
  1191. "support": {
  1192. "issues": "https://github.com/lcobucci/jwt/issues",
  1193. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  1194. },
  1195. "funding": [
  1196. {
  1197. "url": "https://github.com/lcobucci",
  1198. "type": "github"
  1199. },
  1200. {
  1201. "url": "https://www.patreon.com/lcobucci",
  1202. "type": "patreon"
  1203. }
  1204. ],
  1205. "install-path": "../lcobucci/jwt"
  1206. },
  1207. {
  1208. "name": "league/oauth2-client",
  1209. "version": "2.6.0",
  1210. "version_normalized": "2.6.0.0",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/thephpleague/oauth2-client.git",
  1214. "reference": "badb01e62383430706433191b82506b6df24ad98"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98",
  1219. "reference": "badb01e62383430706433191b82506b6df24ad98",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  1224. "paragonie/random_compat": "^1 || ^2 || ^9.99",
  1225. "php": "^5.6 || ^7.0 || ^8.0"
  1226. },
  1227. "require-dev": {
  1228. "mockery/mockery": "^1.3",
  1229. "php-parallel-lint/php-parallel-lint": "^1.2",
  1230. "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3",
  1231. "squizlabs/php_codesniffer": "^2.3 || ^3.0"
  1232. },
  1233. "time": "2020-10-28T02:03:40+00:00",
  1234. "type": "library",
  1235. "extra": {
  1236. "branch-alias": {
  1237. "dev-2.x": "2.0.x-dev"
  1238. }
  1239. },
  1240. "installation-source": "dist",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "League\\OAuth2\\Client\\": "src/"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Alex Bilbie",
  1253. "email": "hello@alexbilbie.com",
  1254. "homepage": "http://www.alexbilbie.com",
  1255. "role": "Developer"
  1256. },
  1257. {
  1258. "name": "Woody Gilk",
  1259. "homepage": "https://github.com/shadowhand",
  1260. "role": "Contributor"
  1261. }
  1262. ],
  1263. "description": "OAuth 2.0 Client Library",
  1264. "keywords": [
  1265. "Authentication",
  1266. "SSO",
  1267. "authorization",
  1268. "identity",
  1269. "idp",
  1270. "oauth",
  1271. "oauth2",
  1272. "single sign on"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/thephpleague/oauth2-client/issues",
  1276. "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0"
  1277. },
  1278. "install-path": "../league/oauth2-client"
  1279. },
  1280. {
  1281. "name": "monolog/monolog",
  1282. "version": "1.26.1",
  1283. "version_normalized": "1.26.1.0",
  1284. "source": {
  1285. "type": "git",
  1286. "url": "https://github.com/Seldaek/monolog.git",
  1287. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  1288. },
  1289. "dist": {
  1290. "type": "zip",
  1291. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1292. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1293. "shasum": ""
  1294. },
  1295. "require": {
  1296. "php": ">=5.3.0",
  1297. "psr/log": "~1.0"
  1298. },
  1299. "provide": {
  1300. "psr/log-implementation": "1.0.0"
  1301. },
  1302. "require-dev": {
  1303. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1304. "doctrine/couchdb": "~1.0@dev",
  1305. "graylog2/gelf-php": "~1.0",
  1306. "php-amqplib/php-amqplib": "~2.4",
  1307. "php-console/php-console": "^3.1.3",
  1308. "phpstan/phpstan": "^0.12.59",
  1309. "phpunit/phpunit": "~4.5",
  1310. "ruflin/elastica": ">=0.90 <3.0",
  1311. "sentry/sentry": "^0.13",
  1312. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1313. },
  1314. "suggest": {
  1315. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1316. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1317. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1318. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1319. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1320. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1321. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1322. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1323. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1324. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1325. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1326. },
  1327. "time": "2021-05-28T08:32:12+00:00",
  1328. "type": "library",
  1329. "installation-source": "dist",
  1330. "autoload": {
  1331. "psr-4": {
  1332. "Monolog\\": "src/Monolog"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Jordi Boggiano",
  1342. "email": "j.boggiano@seld.be",
  1343. "homepage": "http://seld.be"
  1344. }
  1345. ],
  1346. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1347. "homepage": "http://github.com/Seldaek/monolog",
  1348. "keywords": [
  1349. "log",
  1350. "logging",
  1351. "psr-3"
  1352. ],
  1353. "support": {
  1354. "issues": "https://github.com/Seldaek/monolog/issues",
  1355. "source": "https://github.com/Seldaek/monolog/tree/1.26.1"
  1356. },
  1357. "funding": [
  1358. {
  1359. "url": "https://github.com/Seldaek",
  1360. "type": "github"
  1361. },
  1362. {
  1363. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1364. "type": "tidelift"
  1365. }
  1366. ],
  1367. "install-path": "../monolog/monolog"
  1368. },
  1369. {
  1370. "name": "myclabs/php-enum",
  1371. "version": "1.8.0",
  1372. "version_normalized": "1.8.0.0",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/myclabs/php-enum.git",
  1376. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  1381. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "ext-json": "*",
  1386. "php": "^7.3 || ^8.0"
  1387. },
  1388. "require-dev": {
  1389. "phpunit/phpunit": "^9.5",
  1390. "squizlabs/php_codesniffer": "1.*",
  1391. "vimeo/psalm": "^4.5.1"
  1392. },
  1393. "time": "2021-02-15T16:11:48+00:00",
  1394. "type": "library",
  1395. "installation-source": "dist",
  1396. "autoload": {
  1397. "psr-4": {
  1398. "MyCLabs\\Enum\\": "src/"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "PHP Enum contributors",
  1408. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1409. }
  1410. ],
  1411. "description": "PHP Enum implementation",
  1412. "homepage": "http://github.com/myclabs/php-enum",
  1413. "keywords": [
  1414. "enum"
  1415. ],
  1416. "support": {
  1417. "issues": "https://github.com/myclabs/php-enum/issues",
  1418. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  1419. },
  1420. "funding": [
  1421. {
  1422. "url": "https://github.com/mnapoli",
  1423. "type": "github"
  1424. },
  1425. {
  1426. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1427. "type": "tidelift"
  1428. }
  1429. ],
  1430. "install-path": "../myclabs/php-enum"
  1431. },
  1432. {
  1433. "name": "nekonomokochan/php-json-logger",
  1434. "version": "v1.3.1",
  1435. "version_normalized": "1.3.1.0",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/nekonomokochan/php-json-logger.git",
  1439. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/nekonomokochan/php-json-logger/zipball/6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1444. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "monolog/monolog": "^1.24",
  1449. "php": "~7.1",
  1450. "ramsey/uuid": "^3.8"
  1451. },
  1452. "require-dev": {
  1453. "friendsofphp/php-cs-fixer": "^2.14",
  1454. "php": "~7.1",
  1455. "php-coveralls/php-coveralls": "^2.1",
  1456. "phpunit/phpcov": "^5.0",
  1457. "phpunit/phpunit": "^7.5"
  1458. },
  1459. "time": "2019-02-18T06:07:14+00:00",
  1460. "type": "library",
  1461. "installation-source": "dist",
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Nekonomokochan\\PhpJsonLogger\\": "src/PhpJsonLogger"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "MIT"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "keitakn",
  1474. "email": "keita.koga.work@gmail.com"
  1475. }
  1476. ],
  1477. "description": "LoggingLibrary for PHP. Output by JSON Format",
  1478. "support": {
  1479. "issues": "https://github.com/nekonomokochan/php-json-logger/issues",
  1480. "source": "https://github.com/nekonomokochan/php-json-logger/tree/feature/issue63"
  1481. },
  1482. "install-path": "../nekonomokochan/php-json-logger"
  1483. },
  1484. {
  1485. "name": "nikic/fast-route",
  1486. "version": "v1.3.0",
  1487. "version_normalized": "1.3.0.0",
  1488. "source": {
  1489. "type": "git",
  1490. "url": "https://github.com/nikic/FastRoute.git",
  1491. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1492. },
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1496. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1497. "shasum": ""
  1498. },
  1499. "require": {
  1500. "php": ">=5.4.0"
  1501. },
  1502. "require-dev": {
  1503. "phpunit/phpunit": "^4.8.35|~5.7"
  1504. },
  1505. "time": "2018-02-13T20:26:39+00:00",
  1506. "type": "library",
  1507. "installation-source": "dist",
  1508. "autoload": {
  1509. "psr-4": {
  1510. "FastRoute\\": "src/"
  1511. },
  1512. "files": [
  1513. "src/functions.php"
  1514. ]
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "BSD-3-Clause"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Nikita Popov",
  1523. "email": "nikic@php.net"
  1524. }
  1525. ],
  1526. "description": "Fast request router for PHP",
  1527. "keywords": [
  1528. "router",
  1529. "routing"
  1530. ],
  1531. "install-path": "../nikic/fast-route"
  1532. },
  1533. {
  1534. "name": "paquettg/php-html-parser",
  1535. "version": "3.1.1",
  1536. "version_normalized": "3.1.1.0",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/paquettg/php-html-parser.git",
  1540. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/paquettg/php-html-parser/zipball/4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1545. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1546. "shasum": ""
  1547. },
  1548. "require": {
  1549. "ext-curl": "*",
  1550. "ext-mbstring": "*",
  1551. "ext-zlib": "*",
  1552. "guzzlehttp/guzzle": "^7.0",
  1553. "guzzlehttp/psr7": "^1.6",
  1554. "myclabs/php-enum": "^1.7",
  1555. "paquettg/string-encode": "~1.0.0",
  1556. "php": ">=7.2",
  1557. "php-http/httplug": "^2.1"
  1558. },
  1559. "require-dev": {
  1560. "friendsofphp/php-cs-fixer": "^2.16",
  1561. "infection/infection": "^0.13.4",
  1562. "mockery/mockery": "^1.2",
  1563. "phan/phan": "^2.4",
  1564. "phpunit/phpunit": "^7.5.1"
  1565. },
  1566. "time": "2020-11-01T20:34:43+00:00",
  1567. "type": "library",
  1568. "installation-source": "dist",
  1569. "autoload": {
  1570. "psr-4": {
  1571. "PHPHtmlParser\\": "src/PHPHtmlParser"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Gilles Paquette",
  1581. "email": "paquettg@gmail.com",
  1582. "homepage": "http://gillespaquette.ca"
  1583. }
  1584. ],
  1585. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  1586. "homepage": "https://github.com/paquettg/php-html-parser",
  1587. "keywords": [
  1588. "dom",
  1589. "html",
  1590. "parser"
  1591. ],
  1592. "support": {
  1593. "issues": "https://github.com/paquettg/php-html-parser/issues",
  1594. "source": "https://github.com/paquettg/php-html-parser/tree/3.1.1"
  1595. },
  1596. "funding": [
  1597. {
  1598. "url": "https://tidelift.com/funding/github/packagist/paquettg/php-html-parser",
  1599. "type": "tidelift"
  1600. }
  1601. ],
  1602. "install-path": "../paquettg/php-html-parser"
  1603. },
  1604. {
  1605. "name": "paquettg/string-encode",
  1606. "version": "1.0.1",
  1607. "version_normalized": "1.0.1.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/paquettg/string-encoder.git",
  1611. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/paquettg/string-encoder/zipball/a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1616. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=7.1"
  1621. },
  1622. "require-dev": {
  1623. "phpunit/phpunit": "^7.5.1"
  1624. },
  1625. "time": "2018-12-21T02:25:09+00:00",
  1626. "type": "library",
  1627. "installation-source": "dist",
  1628. "autoload": {
  1629. "psr-0": {
  1630. "stringEncode": "src/"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Gilles Paquette",
  1640. "email": "paquettg@gmail.com",
  1641. "homepage": "http://gillespaquette.ca"
  1642. }
  1643. ],
  1644. "description": "Facilitating the process of altering string encoding in PHP.",
  1645. "homepage": "https://github.com/paquettg/string-encoder",
  1646. "keywords": [
  1647. "charset",
  1648. "encoding",
  1649. "string"
  1650. ],
  1651. "support": {
  1652. "issues": "https://github.com/paquettg/string-encoder/issues",
  1653. "source": "https://github.com/paquettg/string-encoder/tree/1.0.1"
  1654. },
  1655. "install-path": "../paquettg/string-encode"
  1656. },
  1657. {
  1658. "name": "paragonie/constant_time_encoding",
  1659. "version": "v2.2.2",
  1660. "version_normalized": "2.2.2.0",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/paragonie/constant_time_encoding.git",
  1664. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1669. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "php": "^7"
  1674. },
  1675. "require-dev": {
  1676. "phpunit/phpunit": "^6|^7",
  1677. "vimeo/psalm": "^1"
  1678. },
  1679. "time": "2018-03-10T19:47:49+00:00",
  1680. "type": "library",
  1681. "installation-source": "dist",
  1682. "autoload": {
  1683. "psr-4": {
  1684. "ParagonIE\\ConstantTime\\": "src/"
  1685. }
  1686. },
  1687. "notification-url": "https://packagist.org/downloads/",
  1688. "license": [
  1689. "MIT"
  1690. ],
  1691. "authors": [
  1692. {
  1693. "name": "Paragon Initiative Enterprises",
  1694. "email": "security@paragonie.com",
  1695. "homepage": "https://paragonie.com",
  1696. "role": "Maintainer"
  1697. },
  1698. {
  1699. "name": "Steve 'Sc00bz' Thomas",
  1700. "email": "steve@tobtu.com",
  1701. "homepage": "https://www.tobtu.com",
  1702. "role": "Original Developer"
  1703. }
  1704. ],
  1705. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  1706. "keywords": [
  1707. "base16",
  1708. "base32",
  1709. "base32_decode",
  1710. "base32_encode",
  1711. "base64",
  1712. "base64_decode",
  1713. "base64_encode",
  1714. "bin2hex",
  1715. "encoding",
  1716. "hex",
  1717. "hex2bin",
  1718. "rfc4648"
  1719. ],
  1720. "install-path": "../paragonie/constant_time_encoding"
  1721. },
  1722. {
  1723. "name": "paragonie/random_compat",
  1724. "version": "v9.99.100",
  1725. "version_normalized": "9.99.100.0",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/paragonie/random_compat.git",
  1729. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1734. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": ">= 7"
  1739. },
  1740. "require-dev": {
  1741. "phpunit/phpunit": "4.*|5.*",
  1742. "vimeo/psalm": "^1"
  1743. },
  1744. "suggest": {
  1745. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1746. },
  1747. "time": "2020-10-15T08:29:30+00:00",
  1748. "type": "library",
  1749. "installation-source": "dist",
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "MIT"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Paragon Initiative Enterprises",
  1757. "email": "security@paragonie.com",
  1758. "homepage": "https://paragonie.com"
  1759. }
  1760. ],
  1761. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1762. "keywords": [
  1763. "csprng",
  1764. "polyfill",
  1765. "pseudorandom",
  1766. "random"
  1767. ],
  1768. "support": {
  1769. "email": "info@paragonie.com",
  1770. "issues": "https://github.com/paragonie/random_compat/issues",
  1771. "source": "https://github.com/paragonie/random_compat"
  1772. },
  1773. "install-path": "../paragonie/random_compat"
  1774. },
  1775. {
  1776. "name": "paragonie/sodium_compat",
  1777. "version": "v1.6.4",
  1778. "version_normalized": "1.6.4.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/paragonie/sodium_compat.git",
  1782. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1787. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "paragonie/random_compat": ">=1",
  1792. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  1793. },
  1794. "require-dev": {
  1795. "phpunit/phpunit": "^3|^4|^5"
  1796. },
  1797. "suggest": {
  1798. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1799. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1800. },
  1801. "time": "2018-08-29T22:02:48+00:00",
  1802. "type": "library",
  1803. "installation-source": "dist",
  1804. "autoload": {
  1805. "files": [
  1806. "autoload.php"
  1807. ]
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "ISC"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Paragon Initiative Enterprises",
  1816. "email": "security@paragonie.com"
  1817. },
  1818. {
  1819. "name": "Frank Denis",
  1820. "email": "jedisct1@pureftpd.org"
  1821. }
  1822. ],
  1823. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1824. "keywords": [
  1825. "Authentication",
  1826. "BLAKE2b",
  1827. "ChaCha20",
  1828. "ChaCha20-Poly1305",
  1829. "Chapoly",
  1830. "Curve25519",
  1831. "Ed25519",
  1832. "EdDSA",
  1833. "Edwards-curve Digital Signature Algorithm",
  1834. "Elliptic Curve Diffie-Hellman",
  1835. "Poly1305",
  1836. "Pure-PHP cryptography",
  1837. "RFC 7748",
  1838. "RFC 8032",
  1839. "Salpoly",
  1840. "Salsa20",
  1841. "X25519",
  1842. "XChaCha20-Poly1305",
  1843. "XSalsa20-Poly1305",
  1844. "Xchacha20",
  1845. "Xsalsa20",
  1846. "aead",
  1847. "cryptography",
  1848. "ecdh",
  1849. "elliptic curve",
  1850. "elliptic curve cryptography",
  1851. "encryption",
  1852. "libsodium",
  1853. "php",
  1854. "public-key cryptography",
  1855. "secret-key cryptography",
  1856. "side-channel resistant"
  1857. ],
  1858. "install-path": "../paragonie/sodium_compat"
  1859. },
  1860. {
  1861. "name": "peppeocchi/php-cron-scheduler",
  1862. "version": "v4.0",
  1863. "version_normalized": "4.0.0.0",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/peppeocchi/php-cron-scheduler.git",
  1867. "reference": "0acfa032e60f0ea22a27b96a6b15a673a31d3448"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/peppeocchi/php-cron-scheduler/zipball/0acfa032e60f0ea22a27b96a6b15a673a31d3448",
  1872. "reference": "0acfa032e60f0ea22a27b96a6b15a673a31d3448",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "dragonmantank/cron-expression": "^3.0",
  1877. "php": "^7.3 || ^8.0"
  1878. },
  1879. "require-dev": {
  1880. "php-coveralls/php-coveralls": "^2.4",
  1881. "phpunit/phpunit": "~9.5",
  1882. "swiftmailer/swiftmailer": "~5.4 || ^6.0"
  1883. },
  1884. "suggest": {
  1885. "swiftmailer/swiftmailer": "Required to send the output of a job to email address/es (~5.4 || ^6.0)."
  1886. },
  1887. "time": "2021-04-22T21:32:03+00:00",
  1888. "type": "library",
  1889. "installation-source": "dist",
  1890. "autoload": {
  1891. "psr-4": {
  1892. "GO\\": "src/GO/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Giuseppe Occhipinti",
  1902. "email": "peppeocchi@gmail.com"
  1903. },
  1904. {
  1905. "name": "Carsten Windler",
  1906. "email": "carsten@carstenwindler.de",
  1907. "homepage": "http://carstenwindler.de",
  1908. "role": "Contributor"
  1909. }
  1910. ],
  1911. "description": "PHP Cron Job Scheduler",
  1912. "keywords": [
  1913. "cron job",
  1914. "scheduler"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/peppeocchi/php-cron-scheduler/issues",
  1918. "source": "https://github.com/peppeocchi/php-cron-scheduler/tree/v4.0"
  1919. },
  1920. "install-path": "../peppeocchi/php-cron-scheduler"
  1921. },
  1922. {
  1923. "name": "php-http/httplug",
  1924. "version": "2.2.0",
  1925. "version_normalized": "2.2.0.0",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/php-http/httplug.git",
  1929. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1934. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1935. "shasum": ""
  1936. },
  1937. "require": {
  1938. "php": "^7.1 || ^8.0",
  1939. "php-http/promise": "^1.1",
  1940. "psr/http-client": "^1.0",
  1941. "psr/http-message": "^1.0"
  1942. },
  1943. "require-dev": {
  1944. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  1945. "phpspec/phpspec": "^5.1 || ^6.0"
  1946. },
  1947. "time": "2020-07-13T15:43:23+00:00",
  1948. "type": "library",
  1949. "extra": {
  1950. "branch-alias": {
  1951. "dev-master": "2.x-dev"
  1952. }
  1953. },
  1954. "installation-source": "dist",
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Http\\Client\\": "src/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Eric GELOEN",
  1967. "email": "geloen.eric@gmail.com"
  1968. },
  1969. {
  1970. "name": "Márk Sági-Kazár",
  1971. "email": "mark.sagikazar@gmail.com",
  1972. "homepage": "https://sagikazarmark.hu"
  1973. }
  1974. ],
  1975. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1976. "homepage": "http://httplug.io",
  1977. "keywords": [
  1978. "client",
  1979. "http"
  1980. ],
  1981. "support": {
  1982. "issues": "https://github.com/php-http/httplug/issues",
  1983. "source": "https://github.com/php-http/httplug/tree/master"
  1984. },
  1985. "install-path": "../php-http/httplug"
  1986. },
  1987. {
  1988. "name": "php-http/promise",
  1989. "version": "1.1.0",
  1990. "version_normalized": "1.1.0.0",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/php-http/promise.git",
  1994. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1999. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": "^7.1 || ^8.0"
  2004. },
  2005. "require-dev": {
  2006. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  2007. "phpspec/phpspec": "^5.1.2 || ^6.2"
  2008. },
  2009. "time": "2020-07-07T09:29:14+00:00",
  2010. "type": "library",
  2011. "extra": {
  2012. "branch-alias": {
  2013. "dev-master": "1.1-dev"
  2014. }
  2015. },
  2016. "installation-source": "dist",
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Http\\Promise\\": "src/"
  2020. }
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "MIT"
  2025. ],
  2026. "authors": [
  2027. {
  2028. "name": "Joel Wurtz",
  2029. "email": "joel.wurtz@gmail.com"
  2030. },
  2031. {
  2032. "name": "Márk Sági-Kazár",
  2033. "email": "mark.sagikazar@gmail.com"
  2034. }
  2035. ],
  2036. "description": "Promise used for asynchronous HTTP requests",
  2037. "homepage": "http://httplug.io",
  2038. "keywords": [
  2039. "promise"
  2040. ],
  2041. "support": {
  2042. "issues": "https://github.com/php-http/promise/issues",
  2043. "source": "https://github.com/php-http/promise/tree/1.1.0"
  2044. },
  2045. "install-path": "../php-http/promise"
  2046. },
  2047. {
  2048. "name": "phpmailer/phpmailer",
  2049. "version": "v6.5.0",
  2050. "version_normalized": "6.5.0.0",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2054. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a5b5c43e50b7fba655f793ad27303cd74c57363c",
  2059. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c",
  2060. "shasum": ""
  2061. },
  2062. "require": {
  2063. "ext-ctype": "*",
  2064. "ext-filter": "*",
  2065. "ext-hash": "*",
  2066. "php": ">=5.5.0"
  2067. },
  2068. "require-dev": {
  2069. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2070. "doctrine/annotations": "^1.2",
  2071. "phpcompatibility/php-compatibility": "^9.3.5",
  2072. "roave/security-advisories": "dev-latest",
  2073. "squizlabs/php_codesniffer": "^3.5.6",
  2074. "yoast/phpunit-polyfills": "^0.2.0"
  2075. },
  2076. "suggest": {
  2077. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2078. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2079. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2080. "psr/log": "For optional PSR-3 debug logging",
  2081. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  2082. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  2083. },
  2084. "time": "2021-06-16T14:33:43+00:00",
  2085. "type": "library",
  2086. "installation-source": "dist",
  2087. "autoload": {
  2088. "psr-4": {
  2089. "PHPMailer\\PHPMailer\\": "src/"
  2090. }
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "LGPL-2.1-only"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "Marcus Bointon",
  2099. "email": "phpmailer@synchromedia.co.uk"
  2100. },
  2101. {
  2102. "name": "Jim Jagielski",
  2103. "email": "jimjag@gmail.com"
  2104. },
  2105. {
  2106. "name": "Andy Prevost",
  2107. "email": "codeworxtech@users.sourceforge.net"
  2108. },
  2109. {
  2110. "name": "Brent R. Matzelle"
  2111. }
  2112. ],
  2113. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2114. "support": {
  2115. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2116. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.0"
  2117. },
  2118. "funding": [
  2119. {
  2120. "url": "https://github.com/Synchro",
  2121. "type": "github"
  2122. }
  2123. ],
  2124. "install-path": "../phpmailer/phpmailer"
  2125. },
  2126. {
  2127. "name": "pragmarx/google2fa",
  2128. "version": "v3.0.3",
  2129. "version_normalized": "3.0.3.0",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/antonioribeiro/google2fa.git",
  2133. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  2138. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "paragonie/constant_time_encoding": "~1.0|~2.0",
  2143. "paragonie/random_compat": ">=1",
  2144. "php": ">=5.4",
  2145. "symfony/polyfill-php56": "~1.2"
  2146. },
  2147. "require-dev": {
  2148. "bacon/bacon-qr-code": "~1.0",
  2149. "phpunit/phpunit": "~4|~5|~6"
  2150. },
  2151. "suggest": {
  2152. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  2153. },
  2154. "time": "2018-08-29T13:28:06+00:00",
  2155. "type": "library",
  2156. "extra": {
  2157. "component": "package",
  2158. "branch-alias": {
  2159. "dev-master": "2.0-dev"
  2160. }
  2161. },
  2162. "installation-source": "dist",
  2163. "autoload": {
  2164. "psr-4": {
  2165. "PragmaRX\\Google2FA\\": "src/",
  2166. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "MIT"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "Antonio Carlos Ribeiro",
  2176. "email": "acr@antoniocarlosribeiro.com",
  2177. "role": "Creator & Designer"
  2178. }
  2179. ],
  2180. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  2181. "keywords": [
  2182. "2fa",
  2183. "Authentication",
  2184. "Two Factor Authentication",
  2185. "google2fa",
  2186. "laravel"
  2187. ],
  2188. "install-path": "../pragmarx/google2fa"
  2189. },
  2190. {
  2191. "name": "psr/container",
  2192. "version": "1.1.1",
  2193. "version_normalized": "1.1.1.0",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/php-fig/container.git",
  2197. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2202. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2203. "shasum": ""
  2204. },
  2205. "require": {
  2206. "php": ">=7.2.0"
  2207. },
  2208. "time": "2021-03-05T17:36:06+00:00",
  2209. "type": "library",
  2210. "installation-source": "dist",
  2211. "autoload": {
  2212. "psr-4": {
  2213. "Psr\\Container\\": "src/"
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "PHP-FIG",
  2223. "homepage": "https://www.php-fig.org/"
  2224. }
  2225. ],
  2226. "description": "Common Container Interface (PHP FIG PSR-11)",
  2227. "homepage": "https://github.com/php-fig/container",
  2228. "keywords": [
  2229. "PSR-11",
  2230. "container",
  2231. "container-interface",
  2232. "container-interop",
  2233. "psr"
  2234. ],
  2235. "support": {
  2236. "issues": "https://github.com/php-fig/container/issues",
  2237. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2238. },
  2239. "install-path": "../psr/container"
  2240. },
  2241. {
  2242. "name": "psr/http-client",
  2243. "version": "1.0.1",
  2244. "version_normalized": "1.0.1.0",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/php-fig/http-client.git",
  2248. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2253. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "php": "^7.0 || ^8.0",
  2258. "psr/http-message": "^1.0"
  2259. },
  2260. "time": "2020-06-29T06:28:15+00:00",
  2261. "type": "library",
  2262. "extra": {
  2263. "branch-alias": {
  2264. "dev-master": "1.0.x-dev"
  2265. }
  2266. },
  2267. "installation-source": "dist",
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Psr\\Http\\Client\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "PHP-FIG",
  2280. "homepage": "http://www.php-fig.org/"
  2281. }
  2282. ],
  2283. "description": "Common interface for HTTP clients",
  2284. "homepage": "https://github.com/php-fig/http-client",
  2285. "keywords": [
  2286. "http",
  2287. "http-client",
  2288. "psr",
  2289. "psr-18"
  2290. ],
  2291. "support": {
  2292. "source": "https://github.com/php-fig/http-client/tree/master"
  2293. },
  2294. "install-path": "../psr/http-client"
  2295. },
  2296. {
  2297. "name": "psr/http-factory",
  2298. "version": "1.0.1",
  2299. "version_normalized": "1.0.1.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/php-fig/http-factory.git",
  2303. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2308. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "php": ">=7.0.0",
  2313. "psr/http-message": "^1.0"
  2314. },
  2315. "time": "2019-04-30T12:38:16+00:00",
  2316. "type": "library",
  2317. "extra": {
  2318. "branch-alias": {
  2319. "dev-master": "1.0.x-dev"
  2320. }
  2321. },
  2322. "installation-source": "dist",
  2323. "autoload": {
  2324. "psr-4": {
  2325. "Psr\\Http\\Message\\": "src/"
  2326. }
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "MIT"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "PHP-FIG",
  2335. "homepage": "http://www.php-fig.org/"
  2336. }
  2337. ],
  2338. "description": "Common interfaces for PSR-7 HTTP message factories",
  2339. "keywords": [
  2340. "factory",
  2341. "http",
  2342. "message",
  2343. "psr",
  2344. "psr-17",
  2345. "psr-7",
  2346. "request",
  2347. "response"
  2348. ],
  2349. "install-path": "../psr/http-factory"
  2350. },
  2351. {
  2352. "name": "psr/http-message",
  2353. "version": "1.0.1",
  2354. "version_normalized": "1.0.1.0",
  2355. "source": {
  2356. "type": "git",
  2357. "url": "https://github.com/php-fig/http-message.git",
  2358. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2359. },
  2360. "dist": {
  2361. "type": "zip",
  2362. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2363. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2364. "shasum": ""
  2365. },
  2366. "require": {
  2367. "php": ">=5.3.0"
  2368. },
  2369. "time": "2016-08-06T14:39:51+00:00",
  2370. "type": "library",
  2371. "extra": {
  2372. "branch-alias": {
  2373. "dev-master": "1.0.x-dev"
  2374. }
  2375. },
  2376. "installation-source": "dist",
  2377. "autoload": {
  2378. "psr-4": {
  2379. "Psr\\Http\\Message\\": "src/"
  2380. }
  2381. },
  2382. "notification-url": "https://packagist.org/downloads/",
  2383. "license": [
  2384. "MIT"
  2385. ],
  2386. "authors": [
  2387. {
  2388. "name": "PHP-FIG",
  2389. "homepage": "http://www.php-fig.org/"
  2390. }
  2391. ],
  2392. "description": "Common interface for HTTP messages",
  2393. "homepage": "https://github.com/php-fig/http-message",
  2394. "keywords": [
  2395. "http",
  2396. "http-message",
  2397. "psr",
  2398. "psr-7",
  2399. "request",
  2400. "response"
  2401. ],
  2402. "install-path": "../psr/http-message"
  2403. },
  2404. {
  2405. "name": "psr/http-server-handler",
  2406. "version": "1.0.1",
  2407. "version_normalized": "1.0.1.0",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/php-fig/http-server-handler.git",
  2411. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2416. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": ">=7.0",
  2421. "psr/http-message": "^1.0"
  2422. },
  2423. "time": "2018-10-30T16:46:14+00:00",
  2424. "type": "library",
  2425. "extra": {
  2426. "branch-alias": {
  2427. "dev-master": "1.0.x-dev"
  2428. }
  2429. },
  2430. "installation-source": "dist",
  2431. "autoload": {
  2432. "psr-4": {
  2433. "Psr\\Http\\Server\\": "src/"
  2434. }
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "MIT"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "PHP-FIG",
  2443. "homepage": "http://www.php-fig.org/"
  2444. }
  2445. ],
  2446. "description": "Common interface for HTTP server-side request handler",
  2447. "keywords": [
  2448. "handler",
  2449. "http",
  2450. "http-interop",
  2451. "psr",
  2452. "psr-15",
  2453. "psr-7",
  2454. "request",
  2455. "response",
  2456. "server"
  2457. ],
  2458. "install-path": "../psr/http-server-handler"
  2459. },
  2460. {
  2461. "name": "psr/http-server-middleware",
  2462. "version": "1.0.1",
  2463. "version_normalized": "1.0.1.0",
  2464. "source": {
  2465. "type": "git",
  2466. "url": "https://github.com/php-fig/http-server-middleware.git",
  2467. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  2468. },
  2469. "dist": {
  2470. "type": "zip",
  2471. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2472. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2473. "shasum": ""
  2474. },
  2475. "require": {
  2476. "php": ">=7.0",
  2477. "psr/http-message": "^1.0",
  2478. "psr/http-server-handler": "^1.0"
  2479. },
  2480. "time": "2018-10-30T17:12:04+00:00",
  2481. "type": "library",
  2482. "extra": {
  2483. "branch-alias": {
  2484. "dev-master": "1.0.x-dev"
  2485. }
  2486. },
  2487. "installation-source": "dist",
  2488. "autoload": {
  2489. "psr-4": {
  2490. "Psr\\Http\\Server\\": "src/"
  2491. }
  2492. },
  2493. "notification-url": "https://packagist.org/downloads/",
  2494. "license": [
  2495. "MIT"
  2496. ],
  2497. "authors": [
  2498. {
  2499. "name": "PHP-FIG",
  2500. "homepage": "http://www.php-fig.org/"
  2501. }
  2502. ],
  2503. "description": "Common interface for HTTP server-side middleware",
  2504. "keywords": [
  2505. "http",
  2506. "http-interop",
  2507. "middleware",
  2508. "psr",
  2509. "psr-15",
  2510. "psr-7",
  2511. "request",
  2512. "response"
  2513. ],
  2514. "install-path": "../psr/http-server-middleware"
  2515. },
  2516. {
  2517. "name": "psr/log",
  2518. "version": "1.1.4",
  2519. "version_normalized": "1.1.4.0",
  2520. "source": {
  2521. "type": "git",
  2522. "url": "https://github.com/php-fig/log.git",
  2523. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2524. },
  2525. "dist": {
  2526. "type": "zip",
  2527. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2528. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2529. "shasum": ""
  2530. },
  2531. "require": {
  2532. "php": ">=5.3.0"
  2533. },
  2534. "time": "2021-05-03T11:20:27+00:00",
  2535. "type": "library",
  2536. "extra": {
  2537. "branch-alias": {
  2538. "dev-master": "1.1.x-dev"
  2539. }
  2540. },
  2541. "installation-source": "dist",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Psr\\Log\\": "Psr/Log/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "PHP-FIG",
  2554. "homepage": "https://www.php-fig.org/"
  2555. }
  2556. ],
  2557. "description": "Common interface for logging libraries",
  2558. "homepage": "https://github.com/php-fig/log",
  2559. "keywords": [
  2560. "log",
  2561. "psr",
  2562. "psr-3"
  2563. ],
  2564. "support": {
  2565. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2566. },
  2567. "install-path": "../psr/log"
  2568. },
  2569. {
  2570. "name": "psr/simple-cache",
  2571. "version": "1.0.1",
  2572. "version_normalized": "1.0.1.0",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/php-fig/simple-cache.git",
  2576. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2581. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "php": ">=5.3.0"
  2586. },
  2587. "time": "2017-10-23T01:57:42+00:00",
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "1.0.x-dev"
  2592. }
  2593. },
  2594. "installation-source": "dist",
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Psr\\SimpleCache\\": "src/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "PHP-FIG",
  2607. "homepage": "http://www.php-fig.org/"
  2608. }
  2609. ],
  2610. "description": "Common interfaces for simple caching",
  2611. "keywords": [
  2612. "cache",
  2613. "caching",
  2614. "psr",
  2615. "psr-16",
  2616. "simple-cache"
  2617. ],
  2618. "install-path": "../psr/simple-cache"
  2619. },
  2620. {
  2621. "name": "pusher/pusher-php-server",
  2622. "version": "v4.1.5",
  2623. "version_normalized": "4.1.5.0",
  2624. "source": {
  2625. "type": "git",
  2626. "url": "https://github.com/pusher/pusher-http-php.git",
  2627. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  2628. },
  2629. "dist": {
  2630. "type": "zip",
  2631. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2632. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2633. "shasum": ""
  2634. },
  2635. "require": {
  2636. "ext-curl": "*",
  2637. "paragonie/sodium_compat": "^1.6",
  2638. "php": "^7.1|^8.0",
  2639. "psr/log": "^1.0"
  2640. },
  2641. "require-dev": {
  2642. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  2643. },
  2644. "time": "2020-12-09T09:38:19+00:00",
  2645. "type": "library",
  2646. "extra": {
  2647. "branch-alias": {
  2648. "dev-master": "3.4-dev"
  2649. }
  2650. },
  2651. "installation-source": "dist",
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Pusher\\": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "description": "Library for interacting with the Pusher REST API",
  2662. "keywords": [
  2663. "events",
  2664. "messaging",
  2665. "php-pusher-server",
  2666. "publish",
  2667. "push",
  2668. "pusher",
  2669. "real time",
  2670. "real-time",
  2671. "realtime",
  2672. "rest",
  2673. "trigger"
  2674. ],
  2675. "support": {
  2676. "issues": "https://github.com/pusher/pusher-http-php/issues",
  2677. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  2678. },
  2679. "install-path": "../pusher/pusher-php-server"
  2680. },
  2681. {
  2682. "name": "ralouphie/getallheaders",
  2683. "version": "3.0.3",
  2684. "version_normalized": "3.0.3.0",
  2685. "source": {
  2686. "type": "git",
  2687. "url": "https://github.com/ralouphie/getallheaders.git",
  2688. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2689. },
  2690. "dist": {
  2691. "type": "zip",
  2692. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2693. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2694. "shasum": ""
  2695. },
  2696. "require": {
  2697. "php": ">=5.6"
  2698. },
  2699. "require-dev": {
  2700. "php-coveralls/php-coveralls": "^2.1",
  2701. "phpunit/phpunit": "^5 || ^6.5"
  2702. },
  2703. "time": "2019-03-08T08:55:37+00:00",
  2704. "type": "library",
  2705. "installation-source": "dist",
  2706. "autoload": {
  2707. "files": [
  2708. "src/getallheaders.php"
  2709. ]
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Ralph Khattar",
  2718. "email": "ralph.khattar@gmail.com"
  2719. }
  2720. ],
  2721. "description": "A polyfill for getallheaders.",
  2722. "install-path": "../ralouphie/getallheaders"
  2723. },
  2724. {
  2725. "name": "ramsey/uuid",
  2726. "version": "3.9.6",
  2727. "version_normalized": "3.9.6.0",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/ramsey/uuid.git",
  2731. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2736. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "ext-json": "*",
  2741. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  2742. "php": "^5.4 | ^7.0 | ^8.0",
  2743. "symfony/polyfill-ctype": "^1.8"
  2744. },
  2745. "replace": {
  2746. "rhumsaa/uuid": "self.version"
  2747. },
  2748. "require-dev": {
  2749. "codeception/aspect-mock": "^1 | ^2",
  2750. "doctrine/annotations": "^1.2",
  2751. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  2752. "mockery/mockery": "^0.9.11 | ^1",
  2753. "moontoast/math": "^1.1",
  2754. "nikic/php-parser": "<=4.5.0",
  2755. "paragonie/random-lib": "^2",
  2756. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  2757. "php-parallel-lint/php-parallel-lint": "^1.3",
  2758. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  2759. "squizlabs/php_codesniffer": "^3.5",
  2760. "yoast/phpunit-polyfills": "^1.0"
  2761. },
  2762. "suggest": {
  2763. "ext-ctype": "Provides support for PHP Ctype functions",
  2764. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2765. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  2766. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2767. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2768. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2769. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2770. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2771. },
  2772. "time": "2021-09-25T23:07:42+00:00",
  2773. "type": "library",
  2774. "extra": {
  2775. "branch-alias": {
  2776. "dev-master": "3.x-dev"
  2777. }
  2778. },
  2779. "installation-source": "dist",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Ramsey\\Uuid\\": "src/"
  2783. },
  2784. "files": [
  2785. "src/functions.php"
  2786. ]
  2787. },
  2788. "notification-url": "https://packagist.org/downloads/",
  2789. "license": [
  2790. "MIT"
  2791. ],
  2792. "authors": [
  2793. {
  2794. "name": "Ben Ramsey",
  2795. "email": "ben@benramsey.com",
  2796. "homepage": "https://benramsey.com"
  2797. },
  2798. {
  2799. "name": "Marijn Huizendveld",
  2800. "email": "marijn.huizendveld@gmail.com"
  2801. },
  2802. {
  2803. "name": "Thibaud Fabre",
  2804. "email": "thibaud@aztech.io"
  2805. }
  2806. ],
  2807. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2808. "homepage": "https://github.com/ramsey/uuid",
  2809. "keywords": [
  2810. "guid",
  2811. "identifier",
  2812. "uuid"
  2813. ],
  2814. "support": {
  2815. "issues": "https://github.com/ramsey/uuid/issues",
  2816. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2817. "source": "https://github.com/ramsey/uuid",
  2818. "wiki": "https://github.com/ramsey/uuid/wiki"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://github.com/ramsey",
  2823. "type": "github"
  2824. },
  2825. {
  2826. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2827. "type": "tidelift"
  2828. }
  2829. ],
  2830. "install-path": "../ramsey/uuid"
  2831. },
  2832. {
  2833. "name": "rmccue/requests",
  2834. "version": "v1.8.0",
  2835. "version_normalized": "1.8.0.0",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/WordPress/Requests.git",
  2839. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/WordPress/Requests/zipball/afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2844. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2845. "shasum": ""
  2846. },
  2847. "require": {
  2848. "php": ">=5.2"
  2849. },
  2850. "require-dev": {
  2851. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  2852. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2853. "php-parallel-lint/php-parallel-lint": "^1.3",
  2854. "phpcompatibility/php-compatibility": "^9.0",
  2855. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  2856. "requests/test-server": "dev-master",
  2857. "squizlabs/php_codesniffer": "^3.5",
  2858. "wp-coding-standards/wpcs": "^2.0"
  2859. },
  2860. "time": "2021-04-27T11:05:25+00:00",
  2861. "type": "library",
  2862. "installation-source": "dist",
  2863. "autoload": {
  2864. "psr-0": {
  2865. "Requests": "library/"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "ISC"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Ryan McCue",
  2875. "homepage": "http://ryanmccue.info"
  2876. }
  2877. ],
  2878. "description": "A HTTP library written in PHP, for human beings.",
  2879. "homepage": "http://github.com/WordPress/Requests",
  2880. "keywords": [
  2881. "curl",
  2882. "fsockopen",
  2883. "http",
  2884. "idna",
  2885. "ipv6",
  2886. "iri",
  2887. "sockets"
  2888. ],
  2889. "support": {
  2890. "issues": "https://github.com/WordPress/Requests/issues",
  2891. "source": "https://github.com/WordPress/Requests/tree/v1.8.0"
  2892. },
  2893. "install-path": "../rmccue/requests"
  2894. },
  2895. {
  2896. "name": "simshaun/recurr",
  2897. "version": "v5.0.0",
  2898. "version_normalized": "5.0.0.0",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://github.com/simshaun/recurr.git",
  2902. "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://api.github.com/repos/simshaun/recurr/zipball/b5aa5b07a595023b67a558b810390dfa7160e3f5",
  2907. "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5",
  2908. "shasum": ""
  2909. },
  2910. "require": {
  2911. "doctrine/collections": "~1.6",
  2912. "php": "^7.2||^8.0"
  2913. },
  2914. "require-dev": {
  2915. "phpunit/phpunit": "^8.5.16",
  2916. "symfony/yaml": "^5.3"
  2917. },
  2918. "time": "2021-09-09T03:42:57+00:00",
  2919. "type": "library",
  2920. "extra": {
  2921. "branch-alias": {
  2922. "dev-master": "0.x-dev"
  2923. }
  2924. },
  2925. "installation-source": "dist",
  2926. "autoload": {
  2927. "psr-4": {
  2928. "Recurr\\": "src/Recurr/"
  2929. }
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "MIT"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "Shaun Simmons",
  2938. "email": "shaun@shaun.pub",
  2939. "homepage": "https://shaun.pub"
  2940. }
  2941. ],
  2942. "description": "PHP library for working with recurrence rules",
  2943. "homepage": "https://github.com/simshaun/recurr",
  2944. "keywords": [
  2945. "dates",
  2946. "events",
  2947. "recurrence",
  2948. "recurring",
  2949. "rrule"
  2950. ],
  2951. "support": {
  2952. "issues": "https://github.com/simshaun/recurr/issues",
  2953. "source": "https://github.com/simshaun/recurr/tree/v5.0.0"
  2954. },
  2955. "install-path": "../simshaun/recurr"
  2956. },
  2957. {
  2958. "name": "slim/psr7",
  2959. "version": "1.3.0",
  2960. "version_normalized": "1.3.0.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/slimphp/Slim-Psr7.git",
  2964. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2969. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "fig/http-message-util": "^1.1.4",
  2974. "php": "^7.2 || ^8.0",
  2975. "psr/http-factory": "^1.0",
  2976. "psr/http-message": "^1.0",
  2977. "ralouphie/getallheaders": "^3",
  2978. "symfony/polyfill-php80": "^1.18"
  2979. },
  2980. "provide": {
  2981. "psr/http-factory-implementation": "1.0",
  2982. "psr/http-message-implementation": "1.0"
  2983. },
  2984. "require-dev": {
  2985. "adriansuter/php-autoload-override": "^1.2",
  2986. "ext-json": "*",
  2987. "http-interop/http-factory-tests": "^0.7.0",
  2988. "php-http/psr7-integration-tests": "dev-master",
  2989. "phpstan/phpstan": "^0.12",
  2990. "phpunit/phpunit": "^8.5 || ^9.3",
  2991. "squizlabs/php_codesniffer": "^3.5",
  2992. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  2993. },
  2994. "time": "2020-11-28T06:28:46+00:00",
  2995. "type": "library",
  2996. "installation-source": "dist",
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Slim\\Psr7\\": "src"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "Josh Lockhart",
  3009. "email": "hello@joshlockhart.com",
  3010. "homepage": "http://joshlockhart.com"
  3011. },
  3012. {
  3013. "name": "Andrew Smith",
  3014. "email": "a.smith@silentworks.co.uk",
  3015. "homepage": "http://silentworks.co.uk"
  3016. },
  3017. {
  3018. "name": "Rob Allen",
  3019. "email": "rob@akrabat.com",
  3020. "homepage": "http://akrabat.com"
  3021. },
  3022. {
  3023. "name": "Pierre Berube",
  3024. "email": "pierre@lgse.com",
  3025. "homepage": "http://www.lgse.com"
  3026. }
  3027. ],
  3028. "description": "Strict PSR-7 implementation",
  3029. "homepage": "https://www.slimframework.com",
  3030. "keywords": [
  3031. "http",
  3032. "psr-7",
  3033. "psr7"
  3034. ],
  3035. "support": {
  3036. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  3037. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.3.0"
  3038. },
  3039. "install-path": "../slim/psr7"
  3040. },
  3041. {
  3042. "name": "slim/slim",
  3043. "version": "4.7.1",
  3044. "version_normalized": "4.7.1.0",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/slimphp/Slim.git",
  3048. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/slimphp/Slim/zipball/0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  3053. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  3054. "shasum": ""
  3055. },
  3056. "require": {
  3057. "ext-json": "*",
  3058. "nikic/fast-route": "^1.3",
  3059. "php": "^7.2 || ^8.0",
  3060. "psr/container": "^1.0",
  3061. "psr/http-factory": "^1.0",
  3062. "psr/http-message": "^1.0",
  3063. "psr/http-server-handler": "^1.0",
  3064. "psr/http-server-middleware": "^1.0",
  3065. "psr/log": "^1.1"
  3066. },
  3067. "require-dev": {
  3068. "adriansuter/php-autoload-override": "^1.2",
  3069. "ext-simplexml": "*",
  3070. "guzzlehttp/psr7": "^1.7",
  3071. "http-interop/http-factory-guzzle": "^1.0",
  3072. "laminas/laminas-diactoros": "^2.4",
  3073. "nyholm/psr7": "^1.3",
  3074. "nyholm/psr7-server": "^1.0.1",
  3075. "phpspec/prophecy": "^1.12",
  3076. "phpstan/phpstan": "^0.12.58",
  3077. "phpunit/phpunit": "^8.5.13",
  3078. "slim/http": "^1.2",
  3079. "slim/psr7": "^1.3",
  3080. "squizlabs/php_codesniffer": "^3.5",
  3081. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  3082. },
  3083. "suggest": {
  3084. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  3085. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  3086. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  3087. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  3088. },
  3089. "time": "2020-12-01T19:41:22+00:00",
  3090. "type": "library",
  3091. "installation-source": "dist",
  3092. "autoload": {
  3093. "psr-4": {
  3094. "Slim\\": "Slim"
  3095. }
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Josh Lockhart",
  3104. "email": "hello@joshlockhart.com",
  3105. "homepage": "https://joshlockhart.com"
  3106. },
  3107. {
  3108. "name": "Andrew Smith",
  3109. "email": "a.smith@silentworks.co.uk",
  3110. "homepage": "http://silentworks.co.uk"
  3111. },
  3112. {
  3113. "name": "Rob Allen",
  3114. "email": "rob@akrabat.com",
  3115. "homepage": "http://akrabat.com"
  3116. },
  3117. {
  3118. "name": "Pierre Berube",
  3119. "email": "pierre@lgse.com",
  3120. "homepage": "http://www.lgse.com"
  3121. },
  3122. {
  3123. "name": "Gabriel Manricks",
  3124. "email": "gmanricks@me.com",
  3125. "homepage": "http://gabrielmanricks.com"
  3126. }
  3127. ],
  3128. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  3129. "homepage": "https://www.slimframework.com",
  3130. "keywords": [
  3131. "api",
  3132. "framework",
  3133. "micro",
  3134. "router"
  3135. ],
  3136. "support": {
  3137. "docs": "https://www.slimframework.com/docs/v4/",
  3138. "forum": "https://discourse.slimframework.com/",
  3139. "irc": "irc://irc.freenode.net:6667/slimphp",
  3140. "issues": "https://github.com/slimphp/Slim/issues",
  3141. "rss": "https://www.slimframework.com/blog/feed.rss",
  3142. "slack": "https://slimphp.slack.com/",
  3143. "source": "https://github.com/slimphp/Slim",
  3144. "wiki": "https://github.com/slimphp/Slim/wiki"
  3145. },
  3146. "funding": [
  3147. {
  3148. "url": "https://opencollective.com/slimphp",
  3149. "type": "open_collective"
  3150. },
  3151. {
  3152. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  3153. "type": "tidelift"
  3154. }
  3155. ],
  3156. "install-path": "../slim/slim"
  3157. },
  3158. {
  3159. "name": "stripe/stripe-php",
  3160. "version": "v7.116.0",
  3161. "version_normalized": "7.116.0.0",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/stripe/stripe-php.git",
  3165. "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7a39f594f213ed3f443a95adf769d1ecbc8393e7",
  3170. "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "ext-curl": "*",
  3175. "ext-json": "*",
  3176. "ext-mbstring": "*",
  3177. "php": ">=5.6.0"
  3178. },
  3179. "require-dev": {
  3180. "friendsofphp/php-cs-fixer": "3.5.0",
  3181. "phpstan/phpstan": "^1.2",
  3182. "phpunit/phpunit": "^5.7 || ^9.0",
  3183. "squizlabs/php_codesniffer": "^3.3"
  3184. },
  3185. "time": "2022-03-02T15:51:15+00:00",
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-master": "2.0-dev"
  3190. }
  3191. },
  3192. "installation-source": "dist",
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Stripe\\": "lib/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Stripe and contributors",
  3205. "homepage": "https://github.com/stripe/stripe-php/contributors"
  3206. }
  3207. ],
  3208. "description": "Stripe PHP Library",
  3209. "homepage": "https://stripe.com/",
  3210. "keywords": [
  3211. "api",
  3212. "payment processing",
  3213. "stripe"
  3214. ],
  3215. "support": {
  3216. "issues": "https://github.com/stripe/stripe-php/issues",
  3217. "source": "https://github.com/stripe/stripe-php/tree/v7.116.0"
  3218. },
  3219. "install-path": "../stripe/stripe-php"
  3220. },
  3221. {
  3222. "name": "symfony/deprecation-contracts",
  3223. "version": "v2.1.3",
  3224. "version_normalized": "2.1.3.0",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/symfony/deprecation-contracts.git",
  3228. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3233. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=7.1"
  3238. },
  3239. "time": "2020-06-06T08:49:21+00:00",
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "2.1-dev"
  3244. },
  3245. "thanks": {
  3246. "name": "symfony/contracts",
  3247. "url": "https://github.com/symfony/contracts"
  3248. }
  3249. },
  3250. "installation-source": "dist",
  3251. "autoload": {
  3252. "files": [
  3253. "function.php"
  3254. ]
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Nicolas Grekas",
  3263. "email": "p@tchwork.com"
  3264. },
  3265. {
  3266. "name": "Symfony Community",
  3267. "homepage": "https://symfony.com/contributors"
  3268. }
  3269. ],
  3270. "description": "A generic function and convention to trigger deprecation notices",
  3271. "homepage": "https://symfony.com",
  3272. "install-path": "../symfony/deprecation-contracts"
  3273. },
  3274. {
  3275. "name": "symfony/finder",
  3276. "version": "v5.1.3",
  3277. "version_normalized": "5.1.3.0",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://github.com/symfony/finder.git",
  3281. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  3286. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "php": ">=7.2.5"
  3291. },
  3292. "time": "2020-05-20T17:43:50+00:00",
  3293. "type": "library",
  3294. "extra": {
  3295. "branch-alias": {
  3296. "dev-master": "5.1-dev"
  3297. }
  3298. },
  3299. "installation-source": "dist",
  3300. "autoload": {
  3301. "psr-4": {
  3302. "Symfony\\Component\\Finder\\": ""
  3303. },
  3304. "exclude-from-classmap": [
  3305. "/Tests/"
  3306. ]
  3307. },
  3308. "notification-url": "https://packagist.org/downloads/",
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "Fabien Potencier",
  3315. "email": "fabien@symfony.com"
  3316. },
  3317. {
  3318. "name": "Symfony Community",
  3319. "homepage": "https://symfony.com/contributors"
  3320. }
  3321. ],
  3322. "description": "Symfony Finder Component",
  3323. "homepage": "https://symfony.com",
  3324. "install-path": "../symfony/finder"
  3325. },
  3326. {
  3327. "name": "symfony/polyfill-ctype",
  3328. "version": "v1.22.1",
  3329. "version_normalized": "1.22.1.0",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://github.com/symfony/polyfill-ctype.git",
  3333. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  3338. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  3339. "shasum": ""
  3340. },
  3341. "require": {
  3342. "php": ">=7.1"
  3343. },
  3344. "suggest": {
  3345. "ext-ctype": "For best performance"
  3346. },
  3347. "time": "2021-01-07T16:49:33+00:00",
  3348. "type": "library",
  3349. "extra": {
  3350. "branch-alias": {
  3351. "dev-main": "1.22-dev"
  3352. },
  3353. "thanks": {
  3354. "name": "symfony/polyfill",
  3355. "url": "https://github.com/symfony/polyfill"
  3356. }
  3357. },
  3358. "installation-source": "dist",
  3359. "autoload": {
  3360. "psr-4": {
  3361. "Symfony\\Polyfill\\Ctype\\": ""
  3362. },
  3363. "files": [
  3364. "bootstrap.php"
  3365. ]
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Gert de Pagter",
  3374. "email": "BackEndTea@gmail.com"
  3375. },
  3376. {
  3377. "name": "Symfony Community",
  3378. "homepage": "https://symfony.com/contributors"
  3379. }
  3380. ],
  3381. "description": "Symfony polyfill for ctype functions",
  3382. "homepage": "https://symfony.com",
  3383. "keywords": [
  3384. "compatibility",
  3385. "ctype",
  3386. "polyfill",
  3387. "portable"
  3388. ],
  3389. "support": {
  3390. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  3391. },
  3392. "funding": [
  3393. {
  3394. "url": "https://symfony.com/sponsor",
  3395. "type": "custom"
  3396. },
  3397. {
  3398. "url": "https://github.com/fabpot",
  3399. "type": "github"
  3400. },
  3401. {
  3402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3403. "type": "tidelift"
  3404. }
  3405. ],
  3406. "install-path": "../symfony/polyfill-ctype"
  3407. },
  3408. {
  3409. "name": "symfony/polyfill-mbstring",
  3410. "version": "v1.22.1",
  3411. "version_normalized": "1.22.1.0",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3415. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  3420. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  3421. "shasum": ""
  3422. },
  3423. "require": {
  3424. "php": ">=7.1"
  3425. },
  3426. "suggest": {
  3427. "ext-mbstring": "For best performance"
  3428. },
  3429. "time": "2021-01-22T09:19:47+00:00",
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-main": "1.22-dev"
  3434. },
  3435. "thanks": {
  3436. "name": "symfony/polyfill",
  3437. "url": "https://github.com/symfony/polyfill"
  3438. }
  3439. },
  3440. "installation-source": "dist",
  3441. "autoload": {
  3442. "psr-4": {
  3443. "Symfony\\Polyfill\\Mbstring\\": ""
  3444. },
  3445. "files": [
  3446. "bootstrap.php"
  3447. ]
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "MIT"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Nicolas Grekas",
  3456. "email": "p@tchwork.com"
  3457. },
  3458. {
  3459. "name": "Symfony Community",
  3460. "homepage": "https://symfony.com/contributors"
  3461. }
  3462. ],
  3463. "description": "Symfony polyfill for the Mbstring extension",
  3464. "homepage": "https://symfony.com",
  3465. "keywords": [
  3466. "compatibility",
  3467. "mbstring",
  3468. "polyfill",
  3469. "portable",
  3470. "shim"
  3471. ],
  3472. "support": {
  3473. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  3474. },
  3475. "funding": [
  3476. {
  3477. "url": "https://symfony.com/sponsor",
  3478. "type": "custom"
  3479. },
  3480. {
  3481. "url": "https://github.com/fabpot",
  3482. "type": "github"
  3483. },
  3484. {
  3485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3486. "type": "tidelift"
  3487. }
  3488. ],
  3489. "install-path": "../symfony/polyfill-mbstring"
  3490. },
  3491. {
  3492. "name": "symfony/polyfill-php56",
  3493. "version": "v1.9.0",
  3494. "version_normalized": "1.9.0.0",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://github.com/symfony/polyfill-php56.git",
  3498. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  3503. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  3504. "shasum": ""
  3505. },
  3506. "require": {
  3507. "php": ">=5.3.3",
  3508. "symfony/polyfill-util": "~1.0"
  3509. },
  3510. "time": "2018-08-06T14:22:27+00:00",
  3511. "type": "library",
  3512. "extra": {
  3513. "branch-alias": {
  3514. "dev-master": "1.9-dev"
  3515. }
  3516. },
  3517. "installation-source": "dist",
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Symfony\\Polyfill\\Php56\\": ""
  3521. },
  3522. "files": [
  3523. "bootstrap.php"
  3524. ]
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "authors": [
  3531. {
  3532. "name": "Nicolas Grekas",
  3533. "email": "p@tchwork.com"
  3534. },
  3535. {
  3536. "name": "Symfony Community",
  3537. "homepage": "https://symfony.com/contributors"
  3538. }
  3539. ],
  3540. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3541. "homepage": "https://symfony.com",
  3542. "keywords": [
  3543. "compatibility",
  3544. "polyfill",
  3545. "portable",
  3546. "shim"
  3547. ],
  3548. "install-path": "../symfony/polyfill-php56"
  3549. },
  3550. {
  3551. "name": "symfony/polyfill-php72",
  3552. "version": "v1.22.1",
  3553. "version_normalized": "1.22.1.0",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/symfony/polyfill-php72.git",
  3557. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3562. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3563. "shasum": ""
  3564. },
  3565. "require": {
  3566. "php": ">=7.1"
  3567. },
  3568. "time": "2021-01-07T16:49:33+00:00",
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-main": "1.22-dev"
  3573. },
  3574. "thanks": {
  3575. "name": "symfony/polyfill",
  3576. "url": "https://github.com/symfony/polyfill"
  3577. }
  3578. },
  3579. "installation-source": "dist",
  3580. "autoload": {
  3581. "psr-4": {
  3582. "Symfony\\Polyfill\\Php72\\": ""
  3583. },
  3584. "files": [
  3585. "bootstrap.php"
  3586. ]
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "Nicolas Grekas",
  3595. "email": "p@tchwork.com"
  3596. },
  3597. {
  3598. "name": "Symfony Community",
  3599. "homepage": "https://symfony.com/contributors"
  3600. }
  3601. ],
  3602. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3603. "homepage": "https://symfony.com",
  3604. "keywords": [
  3605. "compatibility",
  3606. "polyfill",
  3607. "portable",
  3608. "shim"
  3609. ],
  3610. "support": {
  3611. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  3612. },
  3613. "funding": [
  3614. {
  3615. "url": "https://symfony.com/sponsor",
  3616. "type": "custom"
  3617. },
  3618. {
  3619. "url": "https://github.com/fabpot",
  3620. "type": "github"
  3621. },
  3622. {
  3623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3624. "type": "tidelift"
  3625. }
  3626. ],
  3627. "install-path": "../symfony/polyfill-php72"
  3628. },
  3629. {
  3630. "name": "symfony/polyfill-php80",
  3631. "version": "v1.22.1",
  3632. "version_normalized": "1.22.1.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/symfony/polyfill-php80.git",
  3636. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3641. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=7.1"
  3646. },
  3647. "time": "2021-01-07T16:49:33+00:00",
  3648. "type": "library",
  3649. "extra": {
  3650. "branch-alias": {
  3651. "dev-main": "1.22-dev"
  3652. },
  3653. "thanks": {
  3654. "name": "symfony/polyfill",
  3655. "url": "https://github.com/symfony/polyfill"
  3656. }
  3657. },
  3658. "installation-source": "dist",
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Symfony\\Polyfill\\Php80\\": ""
  3662. },
  3663. "files": [
  3664. "bootstrap.php"
  3665. ],
  3666. "classmap": [
  3667. "Resources/stubs"
  3668. ]
  3669. },
  3670. "notification-url": "https://packagist.org/downloads/",
  3671. "license": [
  3672. "MIT"
  3673. ],
  3674. "authors": [
  3675. {
  3676. "name": "Ion Bazan",
  3677. "email": "ion.bazan@gmail.com"
  3678. },
  3679. {
  3680. "name": "Nicolas Grekas",
  3681. "email": "p@tchwork.com"
  3682. },
  3683. {
  3684. "name": "Symfony Community",
  3685. "homepage": "https://symfony.com/contributors"
  3686. }
  3687. ],
  3688. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3689. "homepage": "https://symfony.com",
  3690. "keywords": [
  3691. "compatibility",
  3692. "polyfill",
  3693. "portable",
  3694. "shim"
  3695. ],
  3696. "support": {
  3697. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  3698. },
  3699. "funding": [
  3700. {
  3701. "url": "https://symfony.com/sponsor",
  3702. "type": "custom"
  3703. },
  3704. {
  3705. "url": "https://github.com/fabpot",
  3706. "type": "github"
  3707. },
  3708. {
  3709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3710. "type": "tidelift"
  3711. }
  3712. ],
  3713. "install-path": "../symfony/polyfill-php80"
  3714. },
  3715. {
  3716. "name": "symfony/polyfill-util",
  3717. "version": "v1.9.0",
  3718. "version_normalized": "1.9.0.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/symfony/polyfill-util.git",
  3722. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3727. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "php": ">=5.3.3"
  3732. },
  3733. "time": "2018-08-06T14:22:27+00:00",
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-master": "1.9-dev"
  3738. }
  3739. },
  3740. "installation-source": "dist",
  3741. "autoload": {
  3742. "psr-4": {
  3743. "Symfony\\Polyfill\\Util\\": ""
  3744. }
  3745. },
  3746. "notification-url": "https://packagist.org/downloads/",
  3747. "license": [
  3748. "MIT"
  3749. ],
  3750. "authors": [
  3751. {
  3752. "name": "Nicolas Grekas",
  3753. "email": "p@tchwork.com"
  3754. },
  3755. {
  3756. "name": "Symfony Community",
  3757. "homepage": "https://symfony.com/contributors"
  3758. }
  3759. ],
  3760. "description": "Symfony utilities for portability of PHP codes",
  3761. "homepage": "https://symfony.com",
  3762. "keywords": [
  3763. "compat",
  3764. "compatibility",
  3765. "polyfill",
  3766. "shim"
  3767. ],
  3768. "install-path": "../symfony/polyfill-util"
  3769. },
  3770. {
  3771. "name": "symfony/var-dumper",
  3772. "version": "v4.2.3",
  3773. "version_normalized": "4.2.3.0",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/symfony/var-dumper.git",
  3777. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  3782. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "php": "^7.1.3",
  3787. "symfony/polyfill-mbstring": "~1.0",
  3788. "symfony/polyfill-php72": "~1.5"
  3789. },
  3790. "conflict": {
  3791. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3792. "symfony/console": "<3.4"
  3793. },
  3794. "require-dev": {
  3795. "ext-iconv": "*",
  3796. "symfony/console": "~3.4|~4.0",
  3797. "symfony/process": "~3.4|~4.0",
  3798. "twig/twig": "~1.34|~2.4"
  3799. },
  3800. "suggest": {
  3801. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3802. "ext-intl": "To show region name in time zone dump",
  3803. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3804. },
  3805. "time": "2019-01-30T11:44:30+00:00",
  3806. "bin": [
  3807. "Resources/bin/var-dump-server"
  3808. ],
  3809. "type": "library",
  3810. "extra": {
  3811. "branch-alias": {
  3812. "dev-master": "4.2-dev"
  3813. }
  3814. },
  3815. "installation-source": "dist",
  3816. "autoload": {
  3817. "files": [
  3818. "Resources/functions/dump.php"
  3819. ],
  3820. "psr-4": {
  3821. "Symfony\\Component\\VarDumper\\": ""
  3822. },
  3823. "exclude-from-classmap": [
  3824. "/Tests/"
  3825. ]
  3826. },
  3827. "notification-url": "https://packagist.org/downloads/",
  3828. "license": [
  3829. "MIT"
  3830. ],
  3831. "authors": [
  3832. {
  3833. "name": "Nicolas Grekas",
  3834. "email": "p@tchwork.com"
  3835. },
  3836. {
  3837. "name": "Symfony Community",
  3838. "homepage": "https://symfony.com/contributors"
  3839. }
  3840. ],
  3841. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3842. "homepage": "https://symfony.com",
  3843. "keywords": [
  3844. "debug",
  3845. "dump"
  3846. ],
  3847. "install-path": "../symfony/var-dumper"
  3848. },
  3849. {
  3850. "name": "symfony/yaml",
  3851. "version": "v5.1.3",
  3852. "version_normalized": "5.1.3.0",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/symfony/yaml.git",
  3856. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  3861. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  3862. "shasum": ""
  3863. },
  3864. "require": {
  3865. "php": ">=7.2.5",
  3866. "symfony/deprecation-contracts": "^2.1",
  3867. "symfony/polyfill-ctype": "~1.8"
  3868. },
  3869. "conflict": {
  3870. "symfony/console": "<4.4"
  3871. },
  3872. "require-dev": {
  3873. "symfony/console": "^4.4|^5.0"
  3874. },
  3875. "suggest": {
  3876. "symfony/console": "For validating YAML files using the lint command"
  3877. },
  3878. "time": "2020-05-20T17:43:50+00:00",
  3879. "bin": [
  3880. "Resources/bin/yaml-lint"
  3881. ],
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-master": "5.1-dev"
  3886. }
  3887. },
  3888. "installation-source": "dist",
  3889. "autoload": {
  3890. "psr-4": {
  3891. "Symfony\\Component\\Yaml\\": ""
  3892. },
  3893. "exclude-from-classmap": [
  3894. "/Tests/"
  3895. ]
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Fabien Potencier",
  3904. "email": "fabien@symfony.com"
  3905. },
  3906. {
  3907. "name": "Symfony Community",
  3908. "homepage": "https://symfony.com/contributors"
  3909. }
  3910. ],
  3911. "description": "Symfony Yaml Component",
  3912. "homepage": "https://symfony.com",
  3913. "install-path": "../symfony/yaml"
  3914. },
  3915. {
  3916. "name": "tightenco/collect",
  3917. "version": "v5.7.27",
  3918. "version_normalized": "5.7.27.0",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://github.com/tightenco/collect.git",
  3922. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  3923. },
  3924. "dist": {
  3925. "type": "zip",
  3926. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3927. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3928. "shasum": ""
  3929. },
  3930. "require": {
  3931. "php": "^7.1.3",
  3932. "symfony/var-dumper": ">=3.4 <5"
  3933. },
  3934. "require-dev": {
  3935. "mockery/mockery": "^1.0",
  3936. "nesbot/carbon": "^1.26.3",
  3937. "phpunit/phpunit": "^7.0"
  3938. },
  3939. "time": "2019-02-13T19:40:13+00:00",
  3940. "type": "library",
  3941. "installation-source": "dist",
  3942. "autoload": {
  3943. "files": [
  3944. "src/Collect/Support/helpers.php",
  3945. "src/Collect/Support/alias.php"
  3946. ],
  3947. "psr-4": {
  3948. "Tightenco\\Collect\\": "src/Collect"
  3949. }
  3950. },
  3951. "notification-url": "https://packagist.org/downloads/",
  3952. "license": [
  3953. "MIT"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "Taylor Otwell",
  3958. "email": "taylorotwell@gmail.com"
  3959. }
  3960. ],
  3961. "description": "Collect - Illuminate Collections as a separate package.",
  3962. "keywords": [
  3963. "collection",
  3964. "laravel"
  3965. ],
  3966. "install-path": "../tightenco/collect"
  3967. },
  3968. {
  3969. "name": "webmozart/assert",
  3970. "version": "1.10.0",
  3971. "version_normalized": "1.10.0.0",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/webmozarts/assert.git",
  3975. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  3980. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": "^7.2 || ^8.0",
  3985. "symfony/polyfill-ctype": "^1.8"
  3986. },
  3987. "conflict": {
  3988. "phpstan/phpstan": "<0.12.20",
  3989. "vimeo/psalm": "<4.6.1 || 4.6.2"
  3990. },
  3991. "require-dev": {
  3992. "phpunit/phpunit": "^8.5.13"
  3993. },
  3994. "time": "2021-03-09T10:59:23+00:00",
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "1.10-dev"
  3999. }
  4000. },
  4001. "installation-source": "dist",
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Webmozart\\Assert\\": "src/"
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Bernhard Schussek",
  4014. "email": "bschussek@gmail.com"
  4015. }
  4016. ],
  4017. "description": "Assertions to validate method input/output with nice error messages.",
  4018. "keywords": [
  4019. "assert",
  4020. "check",
  4021. "validate"
  4022. ],
  4023. "support": {
  4024. "issues": "https://github.com/webmozarts/assert/issues",
  4025. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  4026. },
  4027. "install-path": "../webmozart/assert"
  4028. },
  4029. {
  4030. "name": "zircote/swagger-php",
  4031. "version": "3.0.4",
  4032. "version_normalized": "3.0.4.0",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://github.com/zircote/swagger-php.git",
  4036. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/fa47d62c22c95272625624fbf8109fa46ffac43b",
  4041. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b",
  4042. "shasum": ""
  4043. },
  4044. "require": {
  4045. "doctrine/annotations": "*",
  4046. "php": ">=7.2",
  4047. "symfony/finder": ">=2.2",
  4048. "symfony/yaml": ">=3.3"
  4049. },
  4050. "require-dev": {
  4051. "phpunit/phpunit": ">=8",
  4052. "squizlabs/php_codesniffer": ">=3.3",
  4053. "zendframework/zend-form": "<2.8"
  4054. },
  4055. "time": "2020-05-07T09:10:49+00:00",
  4056. "bin": [
  4057. "bin/openapi"
  4058. ],
  4059. "type": "library",
  4060. "installation-source": "dist",
  4061. "autoload": {
  4062. "psr-4": {
  4063. "OpenApi\\": "src"
  4064. },
  4065. "files": [
  4066. "src/functions.php"
  4067. ]
  4068. },
  4069. "notification-url": "https://packagist.org/downloads/",
  4070. "license": [
  4071. "Apache-2.0"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "Robert Allen",
  4076. "email": "zircote@gmail.com",
  4077. "homepage": "http://www.zircote.com"
  4078. },
  4079. {
  4080. "name": "Bob Fanger",
  4081. "email": "bfanger@gmail.com",
  4082. "homepage": "http://bfanger.nl"
  4083. }
  4084. ],
  4085. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  4086. "homepage": "https://github.com/zircote/swagger-php/",
  4087. "keywords": [
  4088. "api",
  4089. "json",
  4090. "rest",
  4091. "service discovery"
  4092. ],
  4093. "install-path": "../zircote/swagger-php"
  4094. }
  4095. ],
  4096. "dev": true,
  4097. "dev-package-names": []
  4098. }