-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.46 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "numberninecms/chapterone",
"description": "ChapterOne is a full-featured starter theme for NumberNine CMS",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"numbernine",
"theme",
"cms",
"blog",
"blogging",
"symfony"
],
"authors": [
{
"name": "William Arin",
"email": "williamarin.dev@gmail.com"
}
],
"require": {
"php": ">=8.1",
"numberninecms/cms": "^0.4.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"friendsoftwig/twigcs": "^5.0",
"nikic/php-parser": "^4.10",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp": "^1.0.0",
"phpstan/phpstan": "^1.4.6",
"phpstan/phpstan-doctrine": "^1.2.10",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-symfony": "^1.1.5",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NumberNine\\ChapterOne\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/grumphp run --no-interaction"
}
}