-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.72 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
{
"name": "numberninecms/faker",
"description": "Faker provider for NumberNine CMS",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"faker",
"blog"
],
"authors": [
{
"name": "William Arin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"fakerphp/faker": "^1.12.0",
"numberninecms/common": "^0.1",
"symfony/config": "^5.1 || ^6.0",
"symfony/dependency-injection": "^5.1 || ^6.0",
"symfony/finder": "^5.1 || ^6.0",
"symfony/http-kernel": "^5.1 || ^6.0",
"symfony/yaml": "^5.1 || ^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.0",
"phpstan/phpstan": "^0.12.25",
"phpstan/phpstan-doctrine": "^0.12.13",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-symfony": "^0.12.6",
"phpunit/phpunit": "^9.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NumberNine\\FakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NumberNine\\FakerBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"test": "vendor/bin/grumphp run --no-interaction"
}
}