-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
121 lines (121 loc) · 3.93 KB
/
composer.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "blitz-php/framework",
"type": "library",
"description": "The Blitz framework core",
"keywords": ["framework", "blitz php", "flash", "rapid"],
"license": "MIT",
"support": {
"issues": "https://github.com/blitz-php/framework/issues",
"source": "https://github.com/blitz-php/framework"
},
"authors": [
{
"name": "Dimitri Sitchet Tomkeu",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"ext-openssl": "*",
"adhocore/cli": "^1.7",
"blitz-php/annotations": "^1.0",
"blitz-php/autoloader": "^1.1",
"blitz-php/cache": "^1.2",
"blitz-php/filesystem": "^1.0",
"blitz-php/session": "^1.0",
"blitz-php/traits": "^1.3",
"blitz-php/translator": "^0.1",
"dflydev/dot-access-data": "^3.0.1",
"dimtrovich/validation": "^1.5",
"guzzlehttp/psr7": "^2.5",
"jawira/case-converter": "^3.5",
"kint-php/kint": "^6.0",
"mirazmac/php-requirements-checker": "^0.2.0",
"monolog/monolog": "^3.0",
"nette/schema": "^1.2",
"php-di/php-di": "^7.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"blitz-php/coding-standard": "^1.5",
"blitz-php/http-client": "^0.0.2",
"filp/whoops": "^2.15",
"kahlan/kahlan": "^5.2",
"mikey179/vfsstream": "^1.6",
"paragonie/csp-builder": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-strict-rules": "^1.6",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"BlitzPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spec\\BlitzPHP\\": "spec/support/application/",
"Spec\\BlitzPHP\\App\\": "spec/support/application/app/",
"Spec\\BlitzPHP\\System\\": "spec/system/"
}
},
"scripts": {
"analyze": [
"Composer\\Config::disableProcessTimeout",
"@phpstan:check",
"vendor/bin/rector process --dry-run"
],
"cs": [
"Composer\\Config::disableProcessTimeout",
"php-cs-fixer check --ansi --verbose --diff"
],
"cs:fix": [
"Composer\\Config::disableProcessTimeout",
"php-cs-fixer fix --ansi --verbose --diff"
],
"phpstan:baseline": [
"Composer\\Config::disableProcessTimeout",
"bash -c \"XDEBUG_MODE=off phpstan analyse --ansi --generate-baseline phpstan-baseline.php\""
],
"phpstan:check": [
"Composer\\Config::disableProcessTimeout",
"bash -c \"XDEBUG_MODE=off phpstan analyse --verbose --ansi\""
],
"sa": "@analyze",
"style": "@cs:fix",
"test": "kahlan",
"test:cov": [
"Composer\\Config::disableProcessTimeout",
"kahlan --coverage=4 --reporter=verbose --clover=scrutinizer.xml"
]
},
"scripts-descriptions": {
"analyze": "Lance l'analyse statique du code du framework",
"cs": "Vérifie les normes de codage",
"cs:fix": "Corrige le style de codage",
"phpstan:baseline": "Exécute PHPStan puis transférer toutes les erreurs vers le fichier de baseline.",
"phpstan:check": "Exécute PHPStan avec la prise en charge des identifiants",
"test": "Execute les tests unitaires"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"suggest": {
"ext-ftp": "Required to use the Flysystem FTP driver.",
"fakerphp/faker": "Required to make seed of database (^1.9.1)."
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}