Skip to content

Commit 5bd1856

Browse files
authored
Merge pull request #3 from plugowski/feature/libraries
Libraries / Packages
2 parents 6c0374f + 306d745 commit 5bd1856

23 files changed

Lines changed: 2034 additions & 410 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/vendor/
2+
/tmp/
23

34
# composer loaded files
45
/webroot/js/*

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,18 @@ Ctrl-S | Command-S | Execute code
8585
Alt-Shift-Up | Option-Shift-Up | Move lines up
8686
Alt-Shift-Down | Option-Shift-Down | Move lines down
8787
Ctrl-D | Command-D | Copy line
88-
Ctrl-Shift-L | Command-Shift-L | Toggle Snippets
88+
Ctrl-Shift-L | Command-Shift-L | Show sidebar
8989
Ctrl-Shift-S | Command-Shift-S | Save Snippet
90+
Ctrl-Shift-P | Command-Shift-P | Add Library / Package
9091

9192
## Changelog
9293

94+
- 1.3
95+
- added library manager, now you are able to add external libraries from packagist, and use it in sandbox directly
9396
- 1.2
9497
- fixed counting of memory used by script (now it is counting only for evaluated script without extra stuff from bootstrap)
9598
- added new PhpStorm shortcut
96-
- changed routing from FatFree to my own (FatFree fired couple ini_sets which might conflict with security settings, where
97-
ini_set() function will be disabled)
99+
- changed routing from FatFree to my own (FatFree fired couple ini_sets which might conflict with security settings, where ini_set() function will be disabled)
98100
- added snippets, which you can save and load in any time
99101
- added possibility to switch between couple of php versions
100102
- 1.1

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616
"require": {
1717
"plugowski/php_router": "dev-master",
1818
"raveren/kint": "dev-cli_detection_fix",
19+
"composer/composer": "dev-master",
1920
"robintail/ace-builds": "*",
2021
"components/jquery": "2.2.*",
2122
"makeusabrew/bootbox": "dev-master",
2223
"bootstrap-select/bootstrap-select": "1.9.4",
2324
"fortawesome/font-awesome": "4.*",
24-
"php": ">=5.3.6"
25+
"php": ">=5.6"
2526
},
2627
"require-dev": {
2728
"phpunit/phpunit": "4.8.9"

0 commit comments

Comments
 (0)