-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.6 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "phonyland/dev-tools",
"description": "\ud83d\udee0 Development Tools for \ud83d\ude43 Phony Framework",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Yunus Emre Delig\u00f6z",
"email": "ye@deligoz.me"
}
],
"homepage": "http://phony.land",
"require": {
"composer-plugin-api": "^2.0",
"ergebnis/composer-normalize": "^2.23",
"infection/infection": "^0.27",
"laravel/pint": "^1.10",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.14",
"pestphp/pest-plugin-type-coverage": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"simpleregex/srl-php": "^0.1.0",
"symfony/var-dumper": "^6.0"
},
"require-dev": {
"composer/composer": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phonyland\\DevTools\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction"
]
}
}