|
1 | 1 | { |
2 | | - "name": "atomic/http-kernel", |
3 | | - "description": "Lightning-fast, ultra-slim PHP HTTP kernel with zero bloat and maximum performance", |
4 | | - "type": "library", |
5 | | - "homepage": "https://github.com/atomic-php/http-kernel", |
6 | | - "readme": "README.md", |
7 | | - "license": "MIT", |
8 | | - "authors": [ |
9 | | - { |
10 | | - "name": "Thavarshan", |
11 | | - "email": "tjthavarshan@gmail.com", |
12 | | - "role": "Author" |
13 | | - } |
| 2 | + "name": "atomic/http-kernel", |
| 3 | + "description": "Lightning-fast, ultra-slim PHP HTTP kernel with zero bloat and maximum performance", |
| 4 | + "type": "library", |
| 5 | + "homepage": "https://github.com/atomic-php/http-kernel", |
| 6 | + "readme": "README.md", |
| 7 | + "license": "MIT", |
| 8 | + "authors": [ |
| 9 | + { |
| 10 | + "name": "Thavarshan", |
| 11 | + "email": "tjthavarshan@gmail.com", |
| 12 | + "role": "Author" |
| 13 | + } |
| 14 | + ], |
| 15 | + "support": { |
| 16 | + "issues": "https://github.com/atomic-php/http-kernel/issues", |
| 17 | + "source": "https://github.com/atomic-php/http-kernel" |
| 18 | + }, |
| 19 | + "keywords": [ |
| 20 | + "http", |
| 21 | + "kernel", |
| 22 | + "middleware", |
| 23 | + "psr-7", |
| 24 | + "psr-15", |
| 25 | + "psr-11", |
| 26 | + "performance", |
| 27 | + "php", |
| 28 | + "fast", |
| 29 | + "zero-overhead", |
| 30 | + "compile-time", |
| 31 | + "optimization" |
| 32 | + ], |
| 33 | + "autoload": { |
| 34 | + "psr-4": { |
| 35 | + "Atomic\\Http\\": "src/" |
| 36 | + } |
| 37 | + }, |
| 38 | + "autoload-dev": { |
| 39 | + "psr-4": { |
| 40 | + "Tests\\": "tests/", |
| 41 | + "Benchmarks\\": "benchmarks/" |
| 42 | + } |
| 43 | + }, |
| 44 | + "require": { |
| 45 | + "php": "^8.4", |
| 46 | + "psr/http-message": "^1.0|^2.0", |
| 47 | + "psr/http-server-handler": "^1.0", |
| 48 | + "psr/http-server-middleware": "^1.0", |
| 49 | + "psr/container": "^1.0|^2.0" |
| 50 | + }, |
| 51 | + "require-dev": { |
| 52 | + "friendsofphp/php-cs-fixer": "^3.0", |
| 53 | + "laminas/laminas-diactoros": "^3.0", |
| 54 | + "mockery/mockery": "^1.6", |
| 55 | + "nyholm/psr7": "^1.5", |
| 56 | + "phpunit/phpunit": "^10.0", |
| 57 | + "vimeo/psalm": "^6.11" |
| 58 | + }, |
| 59 | + "scripts": { |
| 60 | + "test": "phpunit", |
| 61 | + "test-coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-clover=coverage.xml", |
| 62 | + "psalm": "psalm", |
| 63 | + "cs-check": "php-cs-fixer fix --dry-run --diff", |
| 64 | + "cs-fix": "php-cs-fixer fix", |
| 65 | + "benchmark": "php benchmarks/run-benchmarks.php", |
| 66 | + "benchmark-kernel": "php benchmarks/run-benchmarks.php --filter=Kernel", |
| 67 | + "benchmark-middleware": "php benchmarks/run-benchmarks.php --filter=Middleware", |
| 68 | + "qa": [ |
| 69 | + "@psalm", |
| 70 | + "@cs-check", |
| 71 | + "@test" |
14 | 72 | ], |
15 | | - "support": { |
16 | | - "issues": "https://github.com/atomic-php/http-kernel/issues", |
17 | | - "source": "https://github.com/atomic-php/http-kernel" |
18 | | - }, |
19 | | - "keywords": [ |
20 | | - "http", |
21 | | - "kernel", |
22 | | - "middleware", |
23 | | - "psr-7", |
24 | | - "psr-15", |
25 | | - "psr-11", |
26 | | - "performance", |
27 | | - "php", |
28 | | - "fast", |
29 | | - "zero-overhead", |
30 | | - "compile-time", |
31 | | - "optimization" |
32 | | - ], |
33 | | - "autoload": { |
34 | | - "psr-4": { |
35 | | - "Atomic\\Http\\": "src/" |
36 | | - } |
37 | | - }, |
38 | | - "autoload-dev": { |
39 | | - "psr-4": { |
40 | | - "Tests\\": "tests/", |
41 | | - "Benchmarks\\": "benchmarks/" |
42 | | - } |
43 | | - }, |
44 | | - "require": { |
45 | | - "php": "^8.4", |
46 | | - "psr/http-message": "^1.0|^2.0", |
47 | | - "psr/http-server-handler": "^1.0", |
48 | | - "psr/http-server-middleware": "^1.0", |
49 | | - "psr/container": "^1.0|^2.0" |
50 | | - }, |
51 | | - "require-dev": { |
52 | | - "friendsofphp/php-cs-fixer": "^3.0", |
53 | | - "laminas/laminas-diactoros": "^3.0", |
54 | | - "mockery/mockery": "^1.6", |
55 | | - "nyholm/psr7": "^1.5", |
56 | | - "phpunit/phpunit": "^10.0", |
57 | | - "vimeo/psalm": "^6.11" |
58 | | - }, |
59 | | - "scripts": { |
60 | | - "test": "phpunit", |
61 | | - "test-coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-clover=coverage.xml", |
62 | | - "psalm": "psalm", |
63 | | - "cs-check": "php-cs-fixer fix --dry-run --diff", |
64 | | - "cs-fix": "php-cs-fixer fix", |
65 | | - "benchmark": "php benchmarks/run-benchmarks.php", |
66 | | - "benchmark-kernel": "php benchmarks/run-benchmarks.php --filter=Kernel", |
67 | | - "benchmark-middleware": "php benchmarks/run-benchmarks.php --filter=Middleware", |
68 | | - "qa": [ |
69 | | - "@psalm", |
70 | | - "@cs-check", |
71 | | - "@test" |
72 | | - ], |
73 | | - "analyze": [ |
74 | | - "@psalm", |
75 | | - "@cs-check" |
76 | | - ] |
77 | | - }, |
78 | | - "config": { |
79 | | - "sort-packages": true, |
80 | | - "optimize-autoloader": true, |
81 | | - "classmap-authoritative": true |
82 | | - }, |
83 | | - "minimum-stability": "stable", |
84 | | - "prefer-stable": true |
| 73 | + "analyze": [ |
| 74 | + "@psalm", |
| 75 | + "@cs-check" |
| 76 | + ] |
| 77 | + }, |
| 78 | + "config": { |
| 79 | + "sort-packages": true, |
| 80 | + "optimize-autoloader": true, |
| 81 | + "classmap-authoritative": true |
| 82 | + }, |
| 83 | + "minimum-stability": "stable", |
| 84 | + "prefer-stable": true |
85 | 85 | } |
0 commit comments