-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.77 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
{
"name": "kmi/system-information-bundle",
"description": "Simple sonata admin bundle for system information",
"type": "symfony-bundle",
"version": "1.2.3",
"homepage": "https://github.com/jackd248/SystemInformationBundle",
"license": "MIT",
"authors": [
{
"name": "Konrad Michalik",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"sonata-project/admin-bundle": "^3.0 || ^4.0",
"liip/monitor-bundle": "^2.16",
"enlightn/security-checker": "^1.9",
"symfony/requirements-checker": "^2.0"
},
"require-dev": {
"ext-json": "*",
"symfony/config": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/http-kernel": "^4.4 || ^5.3",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/phpunit-bridge": "^4.4 || ^5.3",
"symfony/browser-kit": "^4.4 || ^5.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"friendsofphp/php-cs-fixer": "^3.11",
"pheromone/phpcs-security-audit": "^2.0",
"phpstan/phpstan-symfony": "^1.2"
},
"scripts": {
"php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"php:fix": "@php vendor/bin/php-cs-fixer fix --show-progress=dots",
"php:stan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"php:audit": "@php vendor/bin/phpcs --extensions=php,inc,lib,module,info --standard=./vendor/pheromone/phpcs-security-audit/example_base_ruleset.xml src/"
},
"autoload": {
"psr-4": {
"Kmi\\SystemInformationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kmi\\SystemInformationBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}