-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.68 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
{
"name": "numberninecms/common",
"description": "Shared infrastructure among NumberNine ecosystem",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "William Arin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/string": "^5.4 || ^6.0",
"symfony/translation": "^5.4 || ^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"nikic/php-parser": "^4.10",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp": "^1.1",
"phpstan/phpstan": "^1.8.8",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-symfony": "^1.2.14",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NumberNine\\Common\\": "src/"
},
"files": [
"src/Util/ArrayUtil/functions.php",
"src/Util/ConfigUtil/functions.php",
"src/Util/StringUtil/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"NumberNine\\Common\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/grumphp run --no-interaction"
}
}