|
1 | 1 | { |
2 | | - "name": "tatter/alerts", |
3 | | - "type": "library", |
4 | | - "description": "Lightweight user alerts for CodeIgniter 4", |
5 | | - "keywords": [ |
6 | | - "codeigniter", |
7 | | - "codeigniter4", |
8 | | - "alerts", |
9 | | - "dialogs", |
10 | | - "messages" |
11 | | - ], |
12 | | - "homepage": "https://github.com/tattersoftware/codeigniter4-alerts", |
13 | | - "license": "MIT", |
14 | | - "authors": [ |
15 | | - { |
16 | | - "name": "Matthew Gatner", |
17 | | - |
18 | | - "homepage": "https://tattersoftware.com", |
19 | | - "role": "Developer" |
20 | | - } |
21 | | - ], |
22 | | - "require": { |
23 | | - "php": "^7.3 || ^8.0" |
24 | | - }, |
25 | | - "require-dev": { |
26 | | - "codeigniter4/codeigniter4": "dev-develop", |
27 | | - "tatter/tools": "^1.6" |
28 | | - }, |
29 | | - "autoload": { |
30 | | - "psr-4": { |
31 | | - "Tatter\\Alerts\\": "src" |
32 | | - }, |
33 | | - "exclude-from-classmap": [ |
34 | | - "**/Database/Migrations/**" |
35 | | - ] |
36 | | - }, |
37 | | - "autoload-dev": { |
38 | | - "psr-4": { |
39 | | - "Tests\\Support\\": "tests/_support" |
40 | | - } |
41 | | - }, |
42 | | - "repositories": [ |
43 | | - { |
44 | | - "type": "vcs", |
45 | | - "url": "https://github.com/codeigniter4/CodeIgniter4", |
46 | | - "no-api": true |
47 | | - } |
48 | | - ], |
49 | | - "minimum-stability": "dev", |
50 | | - "prefer-stable": true, |
51 | | - "scripts": { |
52 | | - "analyze": "phpstan analyze", |
53 | | - "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit", |
54 | | - "style": "phpcbf --standard=./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4 tests/ src/", |
55 | | - "test": "phpunit" |
56 | | - } |
| 2 | + "name": "tatter/alerts", |
| 3 | + "type": "library", |
| 4 | + "description": "Lightweight user alerts for CodeIgniter 4", |
| 5 | + "keywords": [ |
| 6 | + "codeigniter", |
| 7 | + "codeigniter4", |
| 8 | + "alerts", |
| 9 | + "dialogs", |
| 10 | + "messages" |
| 11 | + ], |
| 12 | + "homepage": "https://github.com/tattersoftware/codeigniter4-alerts", |
| 13 | + "license": "MIT", |
| 14 | + "authors": [ |
| 15 | + { |
| 16 | + "name": "Matthew Gatner", |
| 17 | + |
| 18 | + "homepage": "https://tattersoftware.com", |
| 19 | + "role": "Developer" |
| 20 | + } |
| 21 | + ], |
| 22 | + "require": { |
| 23 | + "php": "^7.3 || ^8.0" |
| 24 | + }, |
| 25 | + "require-dev": { |
| 26 | + "codeigniter4/codeigniter4": "dev-develop", |
| 27 | + "tatter/tools": "^1.11" |
| 28 | + }, |
| 29 | + "autoload": { |
| 30 | + "psr-4": { |
| 31 | + "Tatter\\Alerts\\": "src" |
| 32 | + }, |
| 33 | + "exclude-from-classmap": [ |
| 34 | + "**/Database/Migrations/**" |
| 35 | + ] |
| 36 | + }, |
| 37 | + "autoload-dev": { |
| 38 | + "psr-4": { |
| 39 | + "Tests\\Support\\": "tests/_support" |
| 40 | + } |
| 41 | + }, |
| 42 | + "repositories": [ |
| 43 | + { |
| 44 | + "type": "vcs", |
| 45 | + "url": "https://github.com/codeigniter4/CodeIgniter4", |
| 46 | + "no-api": true |
| 47 | + } |
| 48 | + ], |
| 49 | + "minimum-stability": "dev", |
| 50 | + "prefer-stable": true, |
| 51 | + "scripts": { |
| 52 | + "analyze": "phpstan analyze", |
| 53 | + "ci": [ |
| 54 | + "Composer\\Config::disableProcessTimeout", |
| 55 | + "@deduplicate", |
| 56 | + "@analyze", |
| 57 | + "@test", |
| 58 | + "@mutate", |
| 59 | + "@inspect", |
| 60 | + "@style" |
| 61 | + ], |
| 62 | + "deduplicate": "phpcpd app/ src/", |
| 63 | + "inspect": "deptrac analyze --cache-file=build/deptrac.cache", |
| 64 | + "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit", |
| 65 | + "style": "php-cs-fixer fix --verbose --ansi", |
| 66 | + "test": "phpunit" |
| 67 | + } |
57 | 68 | } |
0 commit comments