-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 3.56 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
{
"name": "forme/framework",
"description": "An MVC framework for WordPress.",
"license": "MIT",
"authors": [
{
"name": "Moussa Clarke",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"cakephp/core": "^5.0",
"http-interop/response-sender": "^1.0",
"illuminate/config": "^9.52 || ^10.0",
"illuminate/database": "^9.52 || ^10.0",
"illuminate/view": "^9.52.9 || ^10.0",
"laminas/laminas-diactoros": "^3.0",
"laravel/prompts": "^0.1.25",
"league/plates": "^3.5",
"log1x/sage-directives": "^2.0",
"monolog/monolog": "^2.9 || ^3.3",
"papertower/wp-rest-api-psr7": "^0.8.0",
"php-di/php-di": "^7.0.2",
"ramsey/uuid": "^4.7.4",
"rareloop/psr7-server-request-extension": "^2.1",
"relay/relay": "^2.1.2",
"robmorgan/phinx": "^0.15",
"spatie/enum": "^3.13",
"symfony/string": "^6.3",
"symfony/yaml": "^6.3",
"twig/twig": "^3.14",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"Forme\\Framework\\": "src/"
},
"files": [
"src/helpers.php",
"src/View/Plates/Template/match.php",
"src/View/Plates/Extension/Data/data.php",
"src/View/Plates/Extension/Path/path.php",
"src/View/Plates/Extension/RenderContext/func.php",
"src/View/Plates/Extension/RenderContext/render-context.php",
"src/View/Plates/Extension/LayoutSections/layout-sections.php",
"src/View/Plates/Extension/Folders/folders.php",
"src/View/Plates/Util/util.php",
"src/Commands/Wrangle/RunQueueCommand.php"
]
},
"require-dev": {
"fakerphp/faker": "^1.23",
"filp/whoops": "^2.15.2",
"mockery/mockery": "^1.6.2",
"nunomaduro/mock-final-classes": "dev-master",
"pestphp/pest": "^2.0.0",
"php-stubs/acf-pro-stubs": "^6.0.6",
"php-stubs/woocommerce-stubs": "^8.1",
"php-stubs/wp-cli-stubs": "^2.8",
"phpstan/phpstan": "^1.10.18",
"ramsey/conventional-commits": "^1.5",
"rector/rector": "^0.18.3",
"symfony/var-dumper": "^6.3",
"szepeviktor/phpstan-wordpress": "^1.3.0",
"yoast/wp-test-utils": "dev-JRF/update-for-polyfills-2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/moussaclarke/wp-pest-integration-test-setup.git"
}
],
"scripts": {
"test": "./tools/pest",
"test:setup": "./scripts/test_setup.sh",
"stan": "./tools/phpstan",
"rector:check": "./tools/rector process src --dry-run",
"rector:fix": "./tools/rector process src",
"cs:check": "./tools/php-cs-fixer fix --config ./.php-cs-fixer.dist --dry-run --diff",
"cs:fix": "./tools/php-cs-fixer fix --config ./.php-cs-fixer.dist --diff",
"changelog": "git cliff -o CHANGELOG.md",
"hooks": "./tools/captainhook install -f",
"post-install-cmd": "@hooks",
"bump:version": "./scripts/bump.sh",
"infection": "./tools/infection -s",
"infection:log": "./tools/infection --logger-html=infection.html"
},
"config": {
"bin-dir": "tools",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"composer/installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/wrangle"
]
}