|
1 | 1 | { |
2 | | - "name": "codeigniter4projects/playground", |
3 | | - "description": "A space to learn and experience CodeIgniter 4", |
4 | | - "license": "MIT", |
5 | | - "type": "project", |
6 | | - "keywords": [ |
7 | | - "codeigniter", |
8 | | - "codeigniter4" |
9 | | - ], |
10 | | - "authors": [ |
11 | | - { |
12 | | - "name": "Matthew Gatner", |
13 | | - "email": "mgatner@tattersoftware.com", |
14 | | - "homepage": "https://tattersoftware.com", |
15 | | - "role": "Developer" |
16 | | - } |
17 | | - ], |
18 | | - "homepage": "https://codeigniter.com", |
19 | | - "support": { |
20 | | - "forum": "http://forum.codeigniter.com/", |
21 | | - "source": "https://github.com/codeigniter4projects/playground", |
22 | | - "slack": "https://codeigniterchat.slack.com" |
23 | | - }, |
24 | | - "require": { |
25 | | - "php": "^7.4 || ^8.0", |
26 | | - "codeigniter4/framework": "^4.1" |
27 | | - }, |
28 | | - "require-dev": { |
29 | | - "psr/container": "1.1.2", |
30 | | - "codeigniter4/devkit": "^1.0" |
31 | | - }, |
32 | | - "config": { |
33 | | - "allow-plugins": { |
34 | | - "phpstan/extension-installer": true |
35 | | - } |
36 | | - }, |
37 | | - "minimum-stability": "dev", |
38 | | - "prefer-stable": true, |
39 | | - "autoload": { |
40 | | - "exclude-from-classmap": [ |
41 | | - "**/Database/Migrations/**" |
42 | | - ] |
43 | | - }, |
44 | | - "autoload-dev": { |
45 | | - "psr-4": { |
46 | | - "Tests\\Support\\": "tests/_support" |
47 | | - } |
48 | | - }, |
49 | | - "config": { |
50 | | - "allow-plugins": { |
51 | | - "phpstan/extension-installer": true |
52 | | - } |
53 | | - }, |
54 | | - "scripts": { |
55 | | - "analyze": "phpstan analyze", |
56 | | - "ci": [ |
57 | | - "Composer\\Config::disableProcessTimeout", |
58 | | - "@deduplicate", |
59 | | - "@analyze", |
60 | | - "@test", |
61 | | - "@inspect", |
62 | | - "rector process", |
63 | | - "@style" |
64 | | - ], |
65 | | - "deduplicate": "phpcpd app/ src/", |
66 | | - "inspect": "deptrac analyze --cache-file=build/deptrac.cache", |
67 | | - "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit", |
68 | | - "patch": "patch", |
69 | | - "retool": "retool", |
70 | | - "style": "php-cs-fixer fix --verbose --ansi --using-cache=no", |
71 | | - "test": "phpunit" |
| 2 | + "name": "codeigniter4projects/playground", |
| 3 | + "description": "A space to learn and experience CodeIgniter 4", |
| 4 | + "license": "MIT", |
| 5 | + "type": "project", |
| 6 | + "keywords": [ |
| 7 | + "codeigniter", |
| 8 | + "codeigniter4" |
| 9 | + ], |
| 10 | + "authors": [ |
| 11 | + { |
| 12 | + "name": "Matthew Gatner", |
| 13 | + "email": "mgatner@tattersoftware.com", |
| 14 | + "homepage": "https://tattersoftware.com", |
| 15 | + "role": "Developer" |
| 16 | + } |
| 17 | + ], |
| 18 | + "homepage": "https://codeigniter.com", |
| 19 | + "support": { |
| 20 | + "forum": "http://forum.codeigniter.com/", |
| 21 | + "source": "https://github.com/codeigniter4projects/playground", |
| 22 | + "slack": "https://codeigniterchat.slack.com" |
| 23 | + }, |
| 24 | + "require": { |
| 25 | + "php": "^7.4 || ^8.0", |
| 26 | + "codeigniter4/framework": "^4.3" |
| 27 | + }, |
| 28 | + "require-dev": { |
| 29 | + "psr/container": "1.1.2", |
| 30 | + "codeigniter4/devkit": "^1.0" |
| 31 | + }, |
| 32 | + "config": { |
| 33 | + "allow-plugins": { |
| 34 | + "phpstan/extension-installer": true |
72 | 35 | } |
| 36 | + }, |
| 37 | + "minimum-stability": "dev", |
| 38 | + "prefer-stable": true, |
| 39 | + "autoload": { |
| 40 | + "exclude-from-classmap": [ |
| 41 | + "**/Database/Migrations/**" |
| 42 | + ] |
| 43 | + }, |
| 44 | + "autoload-dev": { |
| 45 | + "psr-4": { |
| 46 | + "Tests\\Support\\": "tests/_support" |
| 47 | + } |
| 48 | + }, |
| 49 | + "config": { |
| 50 | + "allow-plugins": { |
| 51 | + "phpstan/extension-installer": true |
| 52 | + } |
| 53 | + }, |
| 54 | + "scripts": { |
| 55 | + "analyze": "phpstan analyze", |
| 56 | + "ci": [ |
| 57 | + "Composer\\Config::disableProcessTimeout", |
| 58 | + "@deduplicate", |
| 59 | + "@analyze", |
| 60 | + "@test", |
| 61 | + "@inspect", |
| 62 | + "rector process", |
| 63 | + "@style" |
| 64 | + ], |
| 65 | + "deduplicate": "phpcpd app/ src/", |
| 66 | + "inspect": "deptrac analyze --cache-file=build/deptrac.cache", |
| 67 | + "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit", |
| 68 | + "patch": "patch", |
| 69 | + "retool": "retool", |
| 70 | + "style": "php-cs-fixer fix --verbose --ansi --using-cache=no", |
| 71 | + "test": "phpunit" |
| 72 | + } |
73 | 73 | } |
0 commit comments