-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 932 Bytes
/
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
{
"name": "fakerphp/core",
"type": "library",
"description": "Faker Core contains the reference implementations for extensions",
"keywords": [
"faker",
"core",
"interface"
],
"license": "MIT",
"authors": [
{
"name": "Pim Jansen",
"homepage": "https://github.com/pimjansen"
},
{
"name": "Bram Ceulemans",
"homepage": "https://github.com/bram-pkg"
},
{
"name": "Graham Campbell",
"homepage": "https://github.com/GrahamCampbell"
},
{
"name": "Tobias Nyholm",
"homepage": "https://github.com/nyholm"
}
],
"require": {
"php": "^8.0",
"psr/container": "^2.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.6"
},
"autoload": {
"psr-4": {
"Faker\\Core\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}