|
| 1 | +{ |
| 2 | + "name": "readme/metrics", |
| 3 | + "description": "Track your API metrics within ReadMe.", |
| 4 | + "homepage": "https://readme.com/metrics", |
| 5 | + "license": "ISC", |
| 6 | + "authors": [ |
| 7 | + { |
| 8 | + "name": "Jon Ursenbach", |
| 9 | + |
| 10 | + } |
| 11 | + ], |
| 12 | + "support": { |
| 13 | + "docs": "https://docs.readme.com/docs/sending-api-logs-to-readme", |
| 14 | + "issues": "https://github.com/readmeio/metrics-sdks/issues", |
| 15 | + "source": "https://github.com/readmeio/metrics-sdks" |
| 16 | + }, |
| 17 | + "keywords": [ |
| 18 | + "api-metrics", |
| 19 | + "readme" |
| 20 | + ], |
| 21 | + "require": { |
| 22 | + "php": "^7.2", |
| 23 | + "illuminate/http": "^6.8 | ^7.0", |
| 24 | + "illuminate/support": "^6.8 | ^7.0", |
| 25 | + "guzzlehttp/guzzle": "^6.4", |
| 26 | + "ocramius/package-versions": "^1.4" |
| 27 | + }, |
| 28 | + "require-dev": { |
| 29 | + "phpunit/phpunit": "^8.4", |
| 30 | + "squizlabs/php_codesniffer": "^3.5", |
| 31 | + "mockery/mockery": "^1.3", |
| 32 | + "vimeo/psalm": ">=3.10" |
| 33 | + }, |
| 34 | + "extra": { |
| 35 | + "laravel": { |
| 36 | + "providers": [ |
| 37 | + "ReadMe\\ServiceProvider" |
| 38 | + ] |
| 39 | + } |
| 40 | + }, |
| 41 | + "scripts": { |
| 42 | + "coverage": "phpunit --coverage-html reports/", |
| 43 | + "lint": "phpcs --standard=phpcs.xml src/ tests/", |
| 44 | + "lint:fix": "phpcbf --standard=phpcs.xml src/ tests/", |
| 45 | + "phpunit": "phpunit tests/", |
| 46 | + "psalm": "psalm", |
| 47 | + "psalm:taintAnalysis": "psalm --taint-analysis", |
| 48 | + "test": [ |
| 49 | + "composer run lint", |
| 50 | + "composer run psalm", |
| 51 | + "composer run phpunit" |
| 52 | + ] |
| 53 | + }, |
| 54 | + "config": { |
| 55 | + "optimize-autoloader": true |
| 56 | + }, |
| 57 | + "autoload": { |
| 58 | + "psr-4": { |
| 59 | + "ReadMe\\": "src/" |
| 60 | + } |
| 61 | + }, |
| 62 | + "autoload-dev": { |
| 63 | + "psr-4": { |
| 64 | + "ReadMe\\Tests\\": "tests/" |
| 65 | + } |
| 66 | + } |
| 67 | +} |
0 commit comments