-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
109 lines (109 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"description": "FakerPress",
"name": "bordoni/fakerpress",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"dummy data",
"faker",
"fake data",
"generator"
],
"homepage": "https://fakerpress.com/",
"license": "GPL-2.0",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"files": [
"src/functions/container.php",
"src/functions/date.php",
"src/functions/variables.php",
"src/functions/conditionals.php",
"src/functions/sorting.php",
"src/functions/assets.php"
],
"psr-4": {
"FakerPress\\": "src/FakerPress/",
"FakerPress\\Dev\\": "dev/src/"
}
},
"require": {
"lucatume/di52": "~3.3",
"fakerphp/faker": "^1.23",
"nesbot/carbon": "^2.66"
},
"authors": [
{
"name": "Gustavo Bordoni",
"homepage": "https://bordoni.me/"
}
],
"support": {
"issues": "https://fakerpress.com/r/github/issues",
"forum": "https://wordpress.org/support/plugin/fakerpress",
"source": "https://fakerpress.com/r/github"
},
"funding": [
{
"type": "github",
"url": "https://fakerpress.com/r/sponsor"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"strauss-install": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.19.1/strauss.phar"
],
"clean-faker-lang": [
"[ -d './vendor/fakerphp/faker/src/Faker/Provider' ] && echo 'Removing folders:' && find ./vendor/fakerphp/faker/src/Faker/Provider -mindepth 1 -maxdepth 1 -type d ! -path './en_US' -print -exec rm -r {} + || true"
],
"strauss": [
"@strauss-install",
"@clean-faker-lang",
"@php bin/strauss.phar",
"@composer dump-autoload"
],
"strauss-release": [
"@strauss-install",
"@php -d display_errors=on bin/strauss.phar --deleteVendorPackages=true",
"@composer dump-autoload"
],
"pup": [
"test -f ./bin/pup.phar || curl -o bin/pup.phar -L -C - https://github.com/stellarwp/pup/releases/download/1.3.1/pup.phar",
"@php bin/pup.phar"
],
"wp-cli": [
"test -f ./bin/wp-cli.phar || curl -o bin/wp-cli.phar -L -C - https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar",
"@php -d memory_limit=4G bin/wp-cli.phar"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"extra": {
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "FakerPress\\ThirdParty\\",
"classmap_prefix": "FakerPress_ThirdParty_",
"constant_prefix": "FAKERPRESS__",
"exclude_from_prefix": {
"file_patterns": []
},
"delete_vendor_packages": true,
"delete_vendor_files": true
}
}
}