This repository was archived by the owner on Oct 21, 2024. It is now read-only.
forked from koselig/library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
133 lines (133 loc) · 4.43 KB
/
composer.json
File metadata and controls
133 lines (133 loc) · 4.43 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "pollen/framework",
"description": "Laravel & WordPress blend for coding as sweet as honey. Join the hive!",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Olivier Gorzalka",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Jordan Doyle",
"email": "[email protected]",
"role": "Inspirer"
}
],
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://ruche.amphibee.fr/satispress/"
},
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
}
],
"require": {
"php": "^8.2.0",
"illuminate/support": "^11.0",
"illuminate/database": "^11.0",
"illuminate/routing": "^11.0",
"pollen/entity": "dev-main",
"watson/rememberable": "^6.1",
"cweagans/composer-patches": "^1.7",
"jgrossi/corcel": "^8.0",
"log1x/sage-directives": "^2.0",
"roots/bedrock-autoloader": "^1.0",
"pollen/query": "dev-main"
},
"autoload": {
"psr-4": {
"Pollen\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "dev",
"extra": {
"patches": {
"johnpbloch/wordpress-core": {
"Patch __ method in l10n to stop conflicting with Laravel": "https://raw.githubusercontent.com/AmphiBee/pollen-framework/refs/heads/main/patches/wordpress-core.patch"
},
"php-stubs/wordpress-stubs": {
"Rename __ and wp_mail functions": "https://raw.githubusercontent.com/AmphiBee/pollen-framework/refs/heads/main/patches/wordpress-stubs.patch"
}
},
"laravel": {
"providers": [
"Pollen\\Providers\\PollenServiceProvider"
],
"aliases": {
"Wordpress": "Pollen\\Support\\WordPress",
"Action": "Pollen\\Support\\Facades\\Action",
"Filter": "Pollen\\Support\\Facades\\Filter",
"Query": "Pollen\\Support\\Facades\\Query",
"Hash": "Pollen\\Support\\Facades\\WPHash",
"Loop": "Pollen\\Support\\Facades\\Loop",
"Ajax": "Pollen\\Support\\Facades\\Ajax",
"PostType": "Pollen\\Support\\Facades\\PostType",
"Taxonomy": "Pollen\\Support\\Facades\\Taxonomy",
"Theme": "Pollen\\Support\\Facades\\Theme",
"Asset": "Pollen\\Support\\Facades\\Asset"
}
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"pestphp/pest-plugin": true
}
},
"require-dev": {
"driftingly/rector-laravel": "dev-main",
"larastan/larastan": "^2.0",
"orchestra/testbench": "9.x-dev",
"laravel/pint": "^1.17.3",
"pestphp/pest": "^3.0.7",
"pestphp/pest-plugin-type-coverage": "^3.0",
"symfony/var-dumper": "^7.1.4",
"szepeviktor/phpstan-wordpress": "*",
"php-stubs/wordpress-stubs": "6.*",
"symplify/vendor-patches": "^11.3"
},
"autoload-dev": {
"psr-4": {
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve"
],
"refacto": "rector",
"lint": "pint",
"test:refacto": "rector --dry-run",
"test:lint": "pint --test",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always --coverage --parallel --min=100",
"test": [
"@test:refacto",
"@test:lint",
"@test:types",
"@test:unit"
]
}
}