Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/fluentform/composer.json

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + {
2 + "name": "wpfluent/wpfluent",
3 + "type": "project",
4 + "description": "WPFluent - The best framework to build WordPress plugins.",
5 + "keywords": [
6 + "WordPress",
7 + "framework",
8 + "WPFluent"
9 + ],
10 + "license": "MIT",
11 + "authors": [
12 + {
13 + "name": "Sheikh Heera",
14 + "email": "heera.sheikh77@gmail.com"
15 + }
16 + ],
17 + "repositories": [
18 + {
19 + "type": "vcs",
20 + "url": "https://github.com/wpfluent/framework"
21 + }
22 + ],
23 + "require": {
24 + "wpfluent/framework": "^1.0",
25 + "openspout/openspout": "^3.0"
26 + },
27 + "autoload": {
28 + "psr-4": {
29 + "FluentForm\\App\\": "app/",
30 + "FluentForm\\Framework\\": "vendor/wpfluent/framework/src/WPFluent"
31 + },
32 + "classmap": [
33 + "database/"
34 + ],
35 + "files": []
36 + },
37 + "extra": {
38 + "branch-alias": {
39 + "dev-master": "1.0.x-dev"
40 + },
41 + "wpfluent": {
42 + "namespace": {
43 + "current": "FluentForm"
44 + }
45 + }
46 + },
47 + "scripts": {
48 + "post-update-cmd": [
49 + "FluentForm\\App\\ComposerScript::postUpdate"
50 + ]
51 + },
52 + "minimum-stability": "dev",
53 + "prefer-stable": true
54 + }
55 +