|
1 | 1 | { |
2 | | - "name": "strictus/strictus", |
3 | | - "description": "Strict Typing for local variables in PHP", |
4 | | - "type": "library", |
5 | | - "keywords": ["php", "type", "typing", "strict", "strict types", "strict typing"], |
6 | | - "license": "MIT", |
7 | | - "authors": [ |
8 | | - { |
9 | | - "name": "Christopher Miller", |
10 | | - |
11 | | - "role": "Developer" |
12 | | - }, |
13 | | - { |
14 | | - "name": "Wendell Adriel", |
15 | | - |
16 | | - "role": "Developer" |
17 | | - } |
18 | | - ], |
19 | | - "autoload": { |
20 | | - "psr-4": { |
21 | | - "Strictus\\": "src" |
22 | | - } |
23 | | - }, |
24 | | - "autoload-dev": { |
25 | | - "psr-4": { |
26 | | - "Strictus\\Tests\\": "tests" |
27 | | - } |
28 | | - }, |
29 | | - "require": { |
30 | | - "php": "^8.1" |
31 | | - }, |
32 | | - "scripts": { |
33 | | - "lint": ["pint"], |
34 | | - "test:lint": ["pint --test"], |
35 | | - "test:unit": ["pest --order-by random"], |
36 | | - "test": [ |
37 | | - "@test:lint", |
38 | | - "@test:unit" |
39 | | - ] |
40 | | - }, |
41 | | - "require-dev": { |
42 | | - "laravel/pint": "^1.10.1", |
43 | | - "pestphp/pest": "^1.23.0" |
| 2 | + "name": "strictus/strictus", |
| 3 | + "description": "Strict Typing for local variables in PHP", |
| 4 | + "type": "library", |
| 5 | + "keywords": [ |
| 6 | + "php", |
| 7 | + "type", |
| 8 | + "typing", |
| 9 | + "strict", |
| 10 | + "strict types", |
| 11 | + "strict typing" |
| 12 | + ], |
| 13 | + "license": "MIT", |
| 14 | + "authors": [ |
| 15 | + { |
| 16 | + "name": "Christopher Miller", |
| 17 | + |
| 18 | + "role": "Developer" |
44 | 19 | }, |
45 | | - "config": { |
46 | | - "sort-packages": true, |
47 | | - "allow-plugins": { |
48 | | - "pestphp/pest-plugin": true |
49 | | - } |
50 | | - }, |
51 | | - "minimum-stability": "dev", |
52 | | - "prefer-stable": true |
| 20 | + { |
| 21 | + "name": "Wendell Adriel", |
| 22 | + |
| 23 | + "role": "Developer" |
| 24 | + } |
| 25 | + ], |
| 26 | + "autoload": { |
| 27 | + "psr-4": { |
| 28 | + "Strictus\\": "src" |
| 29 | + } |
| 30 | + }, |
| 31 | + "autoload-dev": { |
| 32 | + "psr-4": { |
| 33 | + "Strictus\\Tests\\": "tests" |
| 34 | + } |
| 35 | + }, |
| 36 | + "require": { |
| 37 | + "php": "^8.1" |
| 38 | + }, |
| 39 | + "scripts": { |
| 40 | + "lint": [ |
| 41 | + "pint" |
| 42 | + ], |
| 43 | + "test:lint": [ |
| 44 | + "pint --test" |
| 45 | + ], |
| 46 | + "test:stan": [ |
| 47 | + "phpstan analyse" |
| 48 | + ], |
| 49 | + "test:unit": [ |
| 50 | + "pest --order-by random" |
| 51 | + ], |
| 52 | + "test": [ |
| 53 | + "@test:lint", |
| 54 | + "@test:stan", |
| 55 | + "@test:unit" |
| 56 | + ] |
| 57 | + }, |
| 58 | + "require-dev": { |
| 59 | + "laravel/pint": "^1.10.1", |
| 60 | + "pestphp/pest": "^1.23.0", |
| 61 | + "phpstan/phpstan": "^1.10" |
| 62 | + }, |
| 63 | + "config": { |
| 64 | + "sort-packages": true, |
| 65 | + "allow-plugins": { |
| 66 | + "pestphp/pest-plugin": true |
| 67 | + } |
| 68 | + }, |
| 69 | + "minimum-stability": "dev", |
| 70 | + "prefer-stable": true |
53 | 71 | } |
0 commit comments