-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.54 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "premierstacks/php-stack",
"description": "premierstacks php stack",
"type": "library",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"Premierstacks",
"php-stack"
],
"homepage": "https://github.com/premierstacks/php-stack",
"readme": "./README.md",
"license": "CC-BY-ND-4.0",
"authors": [
{
"name": "Tomáš Chochola",
"email": "chocholatom1997@gmail.com",
"homepage": "https://github.com/tomchochola",
"role": "Author"
}
],
"support": {
"email": "chocholatom1997@gmail.com",
"issues": "https://github.com/premierstacks/php-stack/issues",
"source": "https://github.com/premierstacks/php-stack.git",
"docs": "https://github.com/premierstacks/php-stack"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
}
],
"require": {
"psr/http-client": "^1.0.3",
"psr/http-factory": "^1.1.0",
"psr/http-message": "^2.0.0",
"symfony/http-foundation": "^7.3.3"
},
"require-dev": {
"phpunit/phpunit": "^12.3.7",
"premierstacks/php-cs-fixer-stack": "@dev",
"premierstacks/phpstan-stack": "@dev",
"symfony/mime": "^7.3.2"
},
"autoload": {
"psr-4": {
"Premierstacks\\PhpStack\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/premierstacks/php-cs-fixer-stack.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/premierstacks/phpstan-stack.git",
"no-api": true
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "fail"
},
"platform-check": true
},
"scripts": {
"composer:audit": "@composer audit",
"composer:install": "@composer install",
"composer:platform": "@composer check-platform-reqs",
"composer:update": "@composer update",
"composer:validate": "@composer validate --strict --no-check-all",
"dump:development": "@composer dump-autoload -o --dev --strict-psr",
"dump:production": "@composer dump-autoload -a --no-dev --strict-psr",
"fix:php-cs-fixer": "php-cs-fixer fix",
"lint:php-cs-fixer": "php-cs-fixer fix --dry-run --diff",
"stan:phpstan": "phpstan analyse",
"test:coverage": "@php -S 0.0.0.0:8000 -t ./.phpunit.coverage/html",
"test:phpunit": "phpunit"
}
}